Click here to Skip to main content
15,910,277 members
Home / Discussions / COM
   

COM

 
QuestionDirectShow release of GraphBuilder Pin
douglasjordan7-Nov-05 12:17
douglasjordan7-Nov-05 12:17 
Question.NET to COM+ and vice versa Pin
Chals7-Nov-05 6:00
Chals7-Nov-05 6:00 
QuestionVS 2005 COM DLL issue Pin
pass_x0r7-Nov-05 2:12
pass_x0r7-Nov-05 2:12 
QuestionCOleDispatchDriver.InvokeHelper PROBLEM Pin
Ro_land7-Nov-05 0:16
Ro_land7-Nov-05 0:16 
AnswerRe: COleDispatchDriver.InvokeHelper PROBLEM Pin
Lim Bio Liong9-Nov-05 23:37
Lim Bio Liong9-Nov-05 23:37 
GeneralRe: COleDispatchDriver.InvokeHelper PROBLEM Pin
Ro_land13-Nov-05 9:51
Ro_land13-Nov-05 9:51 
GeneralRe: COleDispatchDriver.InvokeHelper PROBLEM Pin
Lim Bio Liong13-Nov-05 23:26
Lim Bio Liong13-Nov-05 23:26 
AnswerRe: COleDispatchDriver.InvokeHelper PROBLEM Pin
Vi211-Nov-05 4:35
Vi211-Nov-05 4:35 
Take a look into MSDN's "Passing Parameters" topic (or search for these words). From there:

typedef struct FARSTRUCT tagDISPPARAMS{

VARIANTARG FAR* rgvarg;// Array of arguments.
DISPID FAR* rgdispidNamedArgs; // Dispatch IDs of named arguments.
unsigned int cArgs;// Number of arguments.
unsigned int cNamedArgs; // Number of named arguments.

} DISPPARAMS;

The arguments are passed in the array rgvarg[ ], with the number of arguments passed in cArgs. The arguments in the array should be placed from last to first, so rgvarg[0] has the last argument and rgvarg[cArgs -1] has the first argument. The method or property may change the values of elements within the array rgvarg, but only if it has set the VT_BYREF flag. Otherwise, consider the elements as read-only.

With best wishes,
Vita


-- modified at 10:36 Friday 11th November, 2005
GeneralRe: COleDispatchDriver.InvokeHelper PROBLEM Pin
Ro_land13-Nov-05 9:43
Ro_land13-Nov-05 9:43 
QuestionIActveScript and events of run-time object Pin
De Nardis Andrea7-Nov-05 0:13
De Nardis Andrea7-Nov-05 0:13 
QuestionHow to init this VARIANT? Pin
Lane Yu6-Nov-05 7:12
Lane Yu6-Nov-05 7:12 
AnswerRe: How to init this VARIANT? Pin
De Nardis Andrea7-Nov-05 0:23
De Nardis Andrea7-Nov-05 0:23 
GeneralRe: How to init this VARIANT? Pin
Lane Yu7-Nov-05 1:19
Lane Yu7-Nov-05 1:19 
GeneralRe: How to init this VARIANT? Pin
De Nardis Andrea7-Nov-05 4:24
De Nardis Andrea7-Nov-05 4:24 
GeneralRe: How to init this VARIANT? Pin
Lane Yu7-Nov-05 6:56
Lane Yu7-Nov-05 6:56 
GeneralRe: How to init this VARIANT? Pin
De Nardis Andrea7-Nov-05 7:11
De Nardis Andrea7-Nov-05 7:11 
QuestionQuestion on launch/access permissions Pin
Steve S5-Nov-05 3:58
Steve S5-Nov-05 3:58 
Questionfatal Error occured in developing com component in c++ Pin
rkumar_mv4-Nov-05 19:45
rkumar_mv4-Nov-05 19:45 
AnswerRe: fatal Error occured in developing com component in c++ Pin
User 2155977-Nov-05 13:42
User 2155977-Nov-05 13:42 
QuestionProblem with OleCreateLinkToFile() Pin
Jürgen Jung2-Nov-05 22:48
Jürgen Jung2-Nov-05 22:48 
GeneralRe: Problem with OleCreateLinkToFile() Pin
Jörgen Sigvardsson3-Nov-05 6:36
Jörgen Sigvardsson3-Nov-05 6:36 
QuestionWhat I should do to get 2 doubles numbers from a COM server Pin
razvandynalog2-Nov-05 6:50
razvandynalog2-Nov-05 6:50 
AnswerRe: What I should do to get 2 doubles numbers from a COM server Pin
Gizzo3-Nov-05 7:32
Gizzo3-Nov-05 7:32 
GeneralRe: What I should do to get 2 doubles numbers from a COM server Pin
razvandynalog4-Nov-05 6:02
razvandynalog4-Nov-05 6:02 
QuestionHow to use a VC# COM (with .dll and .tlb) files in VC++6 Pin
nonothing2-Nov-05 6:34
nonothing2-Nov-05 6:34 

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.