Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Three dimensional Array
Message
De
29/05/2006 13:52:10
 
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Versions des environnements
Visual FoxPro:
VFP 8 SP1
OS:
Windows XP SP2
Divers
Thread ID:
01125053
Message ID:
01125694
Vues:
13
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform