Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Three dimensional Array
Message
From
29/05/2006 13:52:10
 
General information
Forum:
Visual FoxPro
Category:
Other
Environment versions
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Miscellaneous
Thread ID:
01125053
Message ID:
01125694
Views:
11
>is it possible to create a three dimensional array in VFP?

As other have mentioned, 3 dimensional array are possible.

But, you can create an two-dimensional array and assign objects to the cells.

Here is a simple example.
LOCAL ARRAY laCoord[10,10]

laCoord[5,2] = CREATEOBJECT("Time")

? laCoord[5,2].Time

DEFINE Class Time as Custom
	Time = TIME()
ENDDEFINE 
Greg Reichert
Previous
Reply
Map
View

Click here to load this message in the networking platform