Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cycle properties
Message
 
 
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Miscellaneous
Thread ID:
00571121
Message ID:
00571125
Views:
22
This message has been marked as the solution to the initial question of the thread.
>Hi
>
>I have a custom object, with several properties.
>How can I cicle trough this properties, like a for each, I don't know the properties names.
>
>TIA

Take a look at AMEMBERS() function
DIMENSION laList[1]
AMEMBERS(laList, oMyobject)
FOR i=1 TO ALEN(laList)
....
ENDFOR
--sb--
Previous
Reply
Map
View

Click here to load this message in the networking platform