Click here to Skip to main content
15,894,825 members
Home / Discussions / COM
   

COM

 
AnswerRe: Outlook addin / paste clipboard content in message window Pin
Nicolas Richeton29-Jun-06 4:59
Nicolas Richeton29-Jun-06 4:59 
QuestionIs COM supported on operating systems other than windows? Pin
Ajax9528-Jun-06 14:43
Ajax9528-Jun-06 14:43 
QuestionGetting Exception when two instance of ActiveX control are opened using Ctrl+N in IE Pin
Muhammad Azam28-Jun-06 4:10
Muhammad Azam28-Jun-06 4:10 
AnswerRe: Getting Exception when two instance of ActiveX control are opened using Ctrl+N in IE Pin
Mike Dimmick3-Jul-06 3:25
Mike Dimmick3-Jul-06 3:25 
GeneralRe: Getting Exception when two instance of ActiveX control are opened using Ctrl+N in IE Pin
Muhammad Azam4-Jul-06 23:21
Muhammad Azam4-Jul-06 23:21 
QuestionImporting and using an OCX Pin
Sean Capstick28-Jun-06 3:45
Sean Capstick28-Jun-06 3:45 
Questionchanges in idl file generated by an ocx [modified] Pin
nikhil_ag198528-Jun-06 0:31
nikhil_ag198528-Jun-06 0:31 
AnswerRe: changes in idl file generated by an ocx Pin
Mike Dimmick28-Jun-06 8:54
Mike Dimmick28-Jun-06 8:54 
Spot the keyword enum. This is an enumerated type. IDL follows the C syntax - enums live in a separate namespace from the standard types, so you must use enum foo rather than just foo when using them. To work around this, virtually every enum you'll ever see is put in a typedef declaration to create a type name in the global type namespace. A Microsoft extension to C allows the name of the enum itself to be omitted if you do the typedef in the same declaration as the enum itself, and again this has carried over to IDL.

The [uuid] and [version] attributes are attached to the enum declaration, not the typedef itself. Enumerated types must have GUIDs the same as everything else. You can modify an enumeration without changing the GUID as long as you only add new values; you cannot delete existing ones or renumber them.

Stability. What an interesting concept. -- Chris Maunder
GeneralRe: changes in idl file generated by an ocx Pin
nikhil_ag198528-Jun-06 15:24
nikhil_ag198528-Jun-06 15:24 
GeneralRe: changes in idl file generated by an ocx Pin
nikhil_ag19855-Jul-06 20:11
nikhil_ag19855-Jul-06 20:11 
QuestionAdding picture to outlook command button Pin
Laxman Auti28-Jun-06 0:00
Laxman Auti28-Jun-06 0:00 
AnswerRe: Adding picture to outlook command button Pin
_AnsHUMAN_ 28-Jun-06 0:28
_AnsHUMAN_ 28-Jun-06 0:28 
GeneralRe: Adding picture to outlook command button Pin
Laxman Auti28-Jun-06 0:31
Laxman Auti28-Jun-06 0:31 
AnswerRe: Adding picture to outlook command button Pin
Ganesh_T28-Jun-06 0:48
Ganesh_T28-Jun-06 0:48 
GeneralRe: Adding picture to outlook command button Pin
Laxman Auti28-Jun-06 1:08
Laxman Auti28-Jun-06 1:08 
QuestionInserting ActiveX control in ActiveX server Pin
ptiJean27-Jun-06 21:44
ptiJean27-Jun-06 21:44 
AnswerRe: Inserting ActiveX control in ActiveX server Pin
Muhammad Azam28-Jun-06 4:18
Muhammad Azam28-Jun-06 4:18 
Questionworking with DLL without it's headers Pin
adidas.levy27-Jun-06 4:23
adidas.levy27-Jun-06 4:23 
AnswerRe: working with DLL without it's headers Pin
Michael Dunn27-Jun-06 6:55
sitebuilderMichael Dunn27-Jun-06 6:55 
AnswerRe: working with DLL without it's headers Pin
User 21559727-Jun-06 9:10
User 21559727-Jun-06 9:10 
GeneralRe: working with DLL without it's headers Pin
adidas.levy27-Jun-06 23:03
adidas.levy27-Jun-06 23:03 
QuestionRunning COM interface method from another thread Pin
shadow0127-Jun-06 0:24
shadow0127-Jun-06 0:24 
AnswerRe: Running COM interface method from another thread Pin
Mike Dimmick27-Jun-06 1:37
Mike Dimmick27-Jun-06 1:37 
GeneralRe: Running COM interface method from another thread Pin
shadow0128-Jun-06 0:21
shadow0128-Jun-06 0:21 
QuestionIn Proc COM Server Pin
HakunaMatada26-Jun-06 1:15
HakunaMatada26-Jun-06 1:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.