Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Array Property
Message
 
À
10/05/2001 08:40:07
Jay Johengen
Altamahaw-Ossipee, Caroline du Nord, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Titre:
Divers
Thread ID:
00505696
Message ID:
00505814
Vues:
20
This message has been marked as the solution to the initial question of the thread.
>What is an array property on a form and how is it different than a regular run-of-the-mill property? Or is the difference in how I use it? Thanks!
>
Renoir,

The others have given you information on creating an array property, but no one has mentioned the difference in usage. With a non-property array, you can pass it directly to a method
* laarray is an array contain data you wish to pass to a method
* and is passed like this
This.SomeMethod(@laarray)
However, with an array property, you can't do this. Instead you must use this to pass the contents
* This.anarray is an array contain data you wish to pass to a method
DIMENSION laarray[1]
= ACOPY(This.anarray, laarray)
This.SomeMethod(@laarray)
George

Ubi caritas et amor, deus ibi est
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform