Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Passing Object reference to custom buider
Message
From
09/04/2003 13:15:16
 
 
To
09/04/2003 12:34:30
Alhad Marathe
Asm Consulting
Mumbai, India
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00775596
Message ID:
00775624
Views:
18
>How do I pass the object reference of the grid object to my form?

Don't. Use ASELOBJ() to get a reference to the selected object instead and then work with an object reference instead of the name. This approach also lets you get the macros out of your code.

nCount = ASELOBJ( aGrid )
IF nCount <> 1 OR aGrid[1].BaseClass <> "GRID"
* error message that things aren't set up right
ELSE
* do your processing referencing the grid as aGrid[1]
ENDIF

Tamar
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform