Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to declare variables 1,2,3,4,5,etc
Message
From
04/06/2003 18:03:53
 
 
To
04/06/2003 17:26:41
Hilmar Zonneveld
Independent Consultant
Cochabamba, Bolivia
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00796388
Message ID:
00796431
Views:
11
>>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.

No it won't. You'll have an array MyValues with 10 entries of 100. You need MyValues[i] = i * 10 to get individual values.
Fred
Microsoft Visual FoxPro MVP

foxcentral.net
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform