Click here to Skip to main content
15,913,300 members
Home / Discussions / COM
   

COM

 
Questionbrowser monitering [modified] Pin
_tasleem31-Aug-06 0:44
_tasleem31-Aug-06 0:44 
AnswerRe: browser monitering Pin
prasad_som31-Aug-06 3:12
prasad_som31-Aug-06 3:12 
GeneralRe: browser monitering [modified] Pin
_tasleem31-Aug-06 5:03
_tasleem31-Aug-06 5:03 
AnswerRe: browser monitering Pin
prasad_som31-Aug-06 19:01
prasad_som31-Aug-06 19:01 
GeneralRe: browser monitering Pin
salman kazi31-Aug-06 19:05
salman kazi31-Aug-06 19:05 
QuestionHow to create an ATL\COM dll object in a C++ Client Application? Pin
veenu_kvm30-Aug-06 19:59
veenu_kvm30-Aug-06 19:59 
AnswerRe: How to create an ATL\COM dll object in a C++ Client Application? Pin
prasad_som30-Aug-06 23:33
prasad_som30-Aug-06 23:33 
AnswerRe: How to create an ATL\COM dll object in a C++ Client Application? Pin
satindar_kumar30-Aug-06 23:40
satindar_kumar30-Aug-06 23:40 
do following steps
1. #import .tlb file in your client application. you will find this file in the folder of your com project.
2. Following code should solve your problem.I haven't done any error checking in following
code.

BSTR name;
CoInitialize( NULL );

IExpressionData* pOutputData = NULL;

hResult = CoCreateInstance(CLSID_CExpressionData //replace with your CLSID
, NULL
, CLSCTX_INPROC_SERVER
, IID_IExpressionData /replace with your IID_
, (void**)&pOutputData);


hResult = pOutputData->your_method( &name );

CoUninitialize( );


satindar

QuestionHow to run Dos Command in Dotnet witout opening Command Prompt Pin
Harshad Pednekar29-Aug-06 23:55
Harshad Pednekar29-Aug-06 23:55 
GeneralRe: How to run Dos Command in Dotnet witout opening Command Prompt Pin
prasad_som30-Aug-06 3:00
prasad_som30-Aug-06 3:00 
QuestionRe: How to run Dos Command in Dotnet witout opening Command Prompt Pin
Harshad Pednekar9-Sep-06 0:08
Harshad Pednekar9-Sep-06 0:08 
Questionerror LNK2001: unresolved external symbol _CLSID...... Pin
Rinu_Raj29-Aug-06 23:32
Rinu_Raj29-Aug-06 23:32 
AnswerRe: error LNK2001: unresolved external symbol _CLSID...... Pin
Steve S30-Aug-06 0:30
Steve S30-Aug-06 0:30 
QuestionMethod of WMI Class SystemRestore on Windows Vista doesn't work! Pin
dmitriu29-Aug-06 22:24
dmitriu29-Aug-06 22:24 
QuestionAre user32.dll ,kernel32.dll... COM dlls? Pin
sawerr29-Aug-06 6:45
sawerr29-Aug-06 6:45 
AnswerRe: Are user32.dll ,kernel32.dll... COM dlls? Pin
Mike Dimmick29-Aug-06 6:52
Mike Dimmick29-Aug-06 6:52 
GeneralRe: Are user32.dll ,kernel32.dll... COM dlls? Pin
sawerr29-Aug-06 7:02
sawerr29-Aug-06 7:02 
GeneralRe: Are user32.dll ,kernel32.dll... COM dlls? Pin
Steve S29-Aug-06 21:35
Steve S29-Aug-06 21:35 
QuestionEmbedding an ActiveX control in another Pin
TClarke29-Aug-06 6:06
TClarke29-Aug-06 6:06 
AnswerRe: Embedding an ActiveX control in another Pin
Roger Stoltz30-Aug-06 23:33
Roger Stoltz30-Aug-06 23:33 
GeneralRe: Embedding an ActiveX control in another Pin
TClarke30-Aug-06 23:42
TClarke30-Aug-06 23:42 
GeneralRe: Embedding an ActiveX control in another Pin
TClarke31-Aug-06 1:05
TClarke31-Aug-06 1:05 
GeneralRe: Embedding an ActiveX control in another Pin
Roger Stoltz31-Aug-06 4:10
Roger Stoltz31-Aug-06 4:10 
Questionunregistering COM Pin
_tasleem29-Aug-06 3:05
_tasleem29-Aug-06 3:05 
AnswerRe: unregistering COM Pin
Steve S29-Aug-06 5:12
Steve S29-Aug-06 5:12 

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.