Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passing object properties by reference
Message
From
23/04/2001 14:45:31
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Passing object properties by reference
Miscellaneous
Thread ID:
00498684
Message ID:
00498684
Views:
42
I have created a container sub-class which has an array property. I want to pass a reference to this array to a method in an embedded object. However, when I try to use the @ to reference the source array it doesn't work. For example,

this.parent.lstSelected.SetRowSource(@this.parent.aInitialList)

...does not work, but this does:

acopy(this.parent.aInitialList, aTempArray)
this.parent.lstSelected.SetRowSource(@aTempArray)

Unfortunately this creates other problems and I'm trying to keep the code as simple as possible anyway.

Q: Does anyone know how to pass an object property by reference?

Thanks.
Next
Reply
Map
View

Click here to load this message in the networking platform