Click here to Skip to main content
15,914,222 members
Home / Discussions / COM
   

COM

 
GeneralReterive OCX properties from handle Pin
mohandasgandhiG6-Sep-04 23:24
mohandasgandhiG6-Sep-04 23:24 
GeneralWrapping an existing COM object Pin
lemur26-Sep-04 4:43
lemur26-Sep-04 4:43 
GeneralRe: Wrapping an existing COM object Pin
Jörgen Sigvardsson6-Sep-04 8:56
Jörgen Sigvardsson6-Sep-04 8:56 
GeneralRe: Wrapping an existing COM object Pin
lemur26-Sep-04 20:28
lemur26-Sep-04 20:28 
GeneralRe: Wrapping an existing COM object Pin
lemur26-Sep-04 21:15
lemur26-Sep-04 21:15 
GeneralATL dialog with ActiveX control inside Windows service Pin
6-Sep-04 2:42
suss6-Sep-04 2:42 
GeneralDiffernce between ATL DLL, ATL Service and ATL EXE Pin
zahid_ash5-Sep-04 20:20
zahid_ash5-Sep-04 20:20 
GeneralRe: Differnce between ATL DLL, ATL Service and ATL EXE Pin
Jörgen Sigvardsson6-Sep-04 9:02
Jörgen Sigvardsson6-Sep-04 9:02 
zahid_ash wrote:
Differnce between ATL DLL, ATL Service and ATL EXE

A DLL server is in-proc. That means that the code inside the DLL will run within the same process space as the client. This means faster execution, at the cost of not too good reliability. If the server crashes, the entire process will crash with it.


zahid_ash wrote:
ATL EXE

An EXE server out-proc. That means it will run in its own process, separate from the client. Execution will require marshalling and is thus slower than a DLL server. However, if the server crashes, the client may still survive (given that it inspects and act appropriately to the HRESULTs returned by the COM methods)


zahid_ash wrote:
ATL Service

It works sort of like an ATL EXE, but is started by the system at boot time, and not at first client activation.

--
Arigato gozaimashita!
Generalregistering windows service Pin
prasadbs5-Sep-04 17:42
prasadbs5-Sep-04 17:42 
GeneralDo I need to destory a SAFEARRAY that is passed in as an argument Pin
timtanbin3-Sep-04 19:57
timtanbin3-Sep-04 19:57 
GeneralRe: Do I need to destory a SAFEARRAY that is passed in as an argument Pin
Anonymous4-Sep-04 8:23
Anonymous4-Sep-04 8:23 
GeneralRe: Do I need to destory a SAFEARRAY that is passed in as an argument Pin
timtanbin4-Sep-04 13:32
timtanbin4-Sep-04 13:32 
GeneralRe: Do I need to destory a SAFEARRAY that is passed in as an argument Pin
peterchen4-Sep-04 15:00
peterchen4-Sep-04 15:00 
QuestionHow to extract data from VARIANT? Pin
Nirav Doshi3-Sep-04 7:41
Nirav Doshi3-Sep-04 7:41 
AnswerRe: How to extract data from VARIANT? Pin
Jörgen Sigvardsson3-Sep-04 8:33
Jörgen Sigvardsson3-Sep-04 8:33 
GeneralRe: How to extract data from VARIANT? Pin
Nirav Doshi3-Sep-04 8:52
Nirav Doshi3-Sep-04 8:52 
GeneralRe: How to extract data from VARIANT? Pin
Jörgen Sigvardsson3-Sep-04 9:09
Jörgen Sigvardsson3-Sep-04 9:09 
GeneralRe: How to extract data from VARIANT? Pin
Nirav Doshi3-Sep-04 9:16
Nirav Doshi3-Sep-04 9:16 
QuestionActiveX TypeLib Practices: property or method? Pin
KFournier3-Sep-04 6:29
KFournier3-Sep-04 6:29 
AnswerRe: ActiveX TypeLib Practices: property or method? Pin
Jörgen Sigvardsson3-Sep-04 8:40
Jörgen Sigvardsson3-Sep-04 8:40 
AnswerRe: ActiveX TypeLib Practices: property or method? Pin
Jörgen Sigvardsson3-Sep-04 8:41
Jörgen Sigvardsson3-Sep-04 8:41 
GeneralRe: ActiveX TypeLib Practices: property or method? Pin
KFournier3-Sep-04 9:15
KFournier3-Sep-04 9:15 
QuestionIs my client still there? Pin
FearlessBurner2-Sep-04 6:29
FearlessBurner2-Sep-04 6:29 
AnswerRe: Sorted :) Pin
FearlessBurner6-Sep-04 1:50
FearlessBurner6-Sep-04 1:50 
GeneralOut-Process Vs In-Process COM Performnace Issue Pin
DeepakSharma2-Sep-04 1:23
DeepakSharma2-Sep-04 1:23 

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.