Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Array property
Message
 
À
15/05/2015 16:01:01
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows 7
Network:
Windows 2008 Server
Database:
Visual FoxPro
Application:
Desktop
Divers
Thread ID:
01619892
Message ID:
01619900
Vues:
58
While you can add arrays to an object as Thierry pointed out, you might want to consider using a Collection instead. Arrays on objects (and anywhere else) are a pain in the butt, due to how they are passed, can't be returned as values, deal with 'empty' arrays etc.

If you're starting something new, I'd consider avoiding arrays.

+++ Rick ---

>Hi All:
>
>I can't figure out how to add an array as a property to an object. Right now I have this:
>
>
>DEFINE CLASS STUFF AS CUSTOM
>
>	NAME = "stuff"
>	aColumns[1] = 0
>
>	PROCEDURE INIT
>
>	ENDPROC
>
>ENDDEFINE
>
>
>Then in the program I say:
>
>
>_SCREEN.ADDOBJECT('oStuff','Stuff')
>DIMENSION laColumns[RECCOUNT('curCustomers')]
>ACOPY(laColumns,_screen.oStuff.aColumns)
>
>
>OR
>
>
>_SCREEN.ADDOBJECT('oStuff','Stuff')
>DIMENSION _screen.oStuff.aColumns[RECCOUNT('curCustomers')]
>
>
>In both cases I get an error:
>
>
>'ACOLUMNS' is not an array
>
>
>Thanks,
>
>Yossi
+++ Rick ---

West Wind Technologies
Maui, Hawaii

west-wind.com/
West Wind Message Board
Rick's Web Log
Markdown Monster
---
Making waves on the Web

Where do you want to surf today?
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform