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

COM

 
QuestionWix Editor Pin
kulile3-Sep-06 23:39
kulile3-Sep-06 23:39 
AnswerRe: Wix Editor Pin
Mike Dimmick6-Sep-06 1:06
Mike Dimmick6-Sep-06 1:06 
QuestionOpening MS Excel document in "read only" mode Pin
Roaming Clone3-Sep-06 20:05
Roaming Clone3-Sep-06 20:05 
AnswerRe: Opening MS Excel document in "read only" mode Pin
Roger Stoltz4-Sep-06 5:36
Roger Stoltz4-Sep-06 5:36 
QuestionIcon information?? Pin
Sgg2453-Sep-06 19:27
Sgg2453-Sep-06 19:27 
QuestionVery urgent (plz solve) Pin
SabseJugs3-Sep-06 17:54
SabseJugs3-Sep-06 17:54 
Questionwhat is the meaning of proxy/stub Pin
sawerr1-Sep-06 10:28
sawerr1-Sep-06 10:28 
AnswerRe: what is the meaning of proxy/stub Pin
Stephen Hewitt1-Sep-06 16:57
Stephen Hewitt1-Sep-06 16:57 
In COM, if you create an object in-process you call interface methods directly on the actual object (well technically the object must be in the same apartment but ignore this for now). If the object you're talking to is further away, such as on another machine, this is obviously impossible. In cases like this, when direct a connection isn't possible, proxies and stubs come into play. A proxy is an object that implements the same set of interfaces as the real object and when its methods are called it sends, using whatever communication method is appropriate, information on which method was called and the parameters to the stub which is located near the real object. If the real object is on another machine the network will be used. The stub is an object that receives the data from the proxy and calls into the real object and the sends the return value and any out parameters back to the proxy and thus the client code. The MIDL compiler creates the proxy and stub for you (or info which enables the system to cook some up). Look up marshalling for more details.

Steve

GeneralRe: what is the meaning of proxy/stub Pin
sawerr1-Sep-06 19:36
sawerr1-Sep-06 19:36 
Questionerror Pin
Itanium31-Aug-06 6:32
Itanium31-Aug-06 6:32 
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 
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 

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.