Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Objects, Arrays & parameters
Message
 
 
To
23/06/2002 17:23:24
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00671447
Message ID:
00671518
Views:
20
This message has been marked as a message which has helped to the initial question of the thread.
>Further to my last message, one can construct one's own reference and pass that.

Sorry to disappoint you but what you're passing isn't a reference but the full name of the array property. It would only work if the object, array property belongs to, is in the scope in the function. Here's the test code that demonstrates that.
*LOCAL loObj
PRIVATE loObj
loObj = Createobject("Custom")
loObj.AddProperty("aArray[3]",3)
? myfunc("loObj.aArray")
RETURN

FUNCTION myfunc(caArray)
RETURN &caArray[2]
With PRIVATE loObj it works but uncommenting LOCAL loObj'll generate an error because loObj isn't in the scope in the myfunc function.

So, no hum. :)
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform