Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How can I get an array ?
Message
 
To
26/02/1999 02:47:03
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00191828
Message ID:
00191829
Views:
15
*Treat it at a Private Variable. For Eg
DIMENSION paMyArray(10,5)
DO FillArray
DISPLAY MEMORY
RETURN

*********************************
PROCEDURE FillArray
FOR I = 1 TO 10
FOR J = 1 TO 5
paMyArray(I,J) = 100* RAND()
NEXT J
NEXT I
RETURN
Previous
Reply
Map
View

Click here to load this message in the networking platform