Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
From VB to VFP
Message
From
14/12/2001 20:28:07
 
 
To
14/12/2001 20:02:41
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00594726
Message ID:
00594730
Views:
20
Michel,

Any difference if you pass the parameter BY REFERENCE?

good luck

>I have the following in VB:
>
>
>Dim oEClient As Object
>Dim bstrResponseCode
>Set oEClient = CreateObject("MyObject")
>oEClient.GetResponseCode bstrResponseCode
>display.Text = display.Text + "Response Code: " + bstrResponseCode + Chr(13) + Chr(10)
>
>
>The problem I have in Visual FoxPro, is that the GetReponseCode() method is not able to store the value in my variable. The definition should be a variant.
>
>Here is the code I am using:
>
>
>LOCAL loEClient
>LOCAL lcResponseCode
>loEClient=CREATEOBJECT('MyObject')
>loEClient.GetResponseCode(lcResponseCode)
>? 'Response Code: ' + lcResponseCode
>
>
>The program works but always skipped over assignating the value to lcResponseCode. So, whatever lcResponseCode is before calling the method, it'll remain as is after.
>
>Is there a way to convert that so it'll work?
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform