Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passing variables
Message
From
21/11/2002 10:55:54
 
 
To
21/11/2002 10:30:44
General information
Forum:
Visual FoxPro
Category:
COM/DCOM and OLE Automation
Miscellaneous
Thread ID:
00725134
Message ID:
00725255
Views:
13
Your local variable must be initialized to a numeric value before passing it to the COM method:
LOCAL MyVar
MyObj = CREATEOBJECT ("MyCOM.SomeClass")
MyObj.SomeMethod (@MyVar)   && SomeMethod assign 1 to MyVar
? MyVar && Print out .T.
LOCAL MyVar
MyVar = 0
MyObj = CREATEOBJECT ("MyCOM.SomeClass")
MyObj.SomeMethod (@MyVar)   && SomeMethod assign 1 to MyVar
? MyVar && Print out 1
HTH

>That's what I thought.
>
>Only I'm sending a local variable using @ to a COM I created in VFP, and it returns as value .T., when it should be a numeric.
>
>When I test this using the class library directly from Fox, it works, but when I access the DLL, it fails.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform