Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
How to declare variables 1,2,3,4,5,etc
Message
De
04/06/2003 17:26:41
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivie
 
 
À
04/06/2003 17:01:18
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00796388
Message ID:
00796408
Vues:
8
>local 1,2,3,4,5,6,7
>
>i want to store a value for each variable.
>
>Thank you very much.

For a group of related variables, you would use an array.

Here is an example, to store 10 different values:
dimension MyValues(10)
for i = 1 to 10
  MyValues = i * 10
next

? MyValues(1) && 10
? MyValues(3) && 30
HTH,

Hilmar.
Difference in opinions hath cost many millions of lives: for instance, whether flesh be bread, or bread be flesh; whether whistling be a vice or a virtue; whether it be better to kiss a post, or throw it into the fire... (from Gulliver's Travels)
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform