Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Identifying properties
Message
 
To
01/05/1998 07:11:03
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00096229
Message ID:
00101653
Views:
25
Allen,

You could do it by simpifying the parameters and calling the external function with the actual object. Then you can get access to all properties, methods, parents, etc.

Ex:
ExternalFunction( This )


function External Function
lparameters loFromObject

*/ Get object hierarchy that you can later parse
*/ as you need
lcHierarcy = sys(1272, loFromObject)

*/ Then you can get anything else from the object
loFromObject.Parent
loFromObject.Parent.OtherButton.Click()
loFromObject.OtherProperty
etc.
etc.
Previous
Reply
Map
View

Click here to load this message in the networking platform