|
Hi Steve
I think what I wrote in the last post isn´t clear.
I have the following prototype method:
mDoSomeThing(*cstring result, *cstring message),long
The method mDoSomeThing will return values in result and message cstring variables e a executiong status as a method´s return.
if the mCom is the COM I need execute:
status long
mResult cstring(256)
mMessage cstring(256)
code
status = mCom.mDoSomeThing(mResult, mMessage)
message('Done with Status = ' & status & ' Result: ' & mResult & ' Status Message: ' & mMessage)
How Can I get it using Invoke as it is in the early/late binding example?
Thanks a lot
|