Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passing property by reference.
Message
 
To
28/07/1998 17:12:14
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00122119
Message ID:
00122145
Views:
23
>I have setup a property on my form of type array. I want to pass this array to another program by reference. But there does not seem to be any way to do this.
>
>I have tried the following:
>
>cmdWorkOnArray(@thisform.MyArray)
>cmdWorkOnArray(@(thisform.MyArray))
>cmdWorkOnArray(thisform.@MyArray)
>cmdWorkOnArray(thisform.@(MyArray))
>
>Does anyone know the answer

Jeremy,

You cannot pass properties by reference. You can pass a reference to the fomr though;

cmdWorkOnArray(THISFORM,"MyArray")

in your cmdWorkOnArray you would


LPARAMETERS oForm,cArray

oForm.&cArray(1,1) = "ABC"
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform