Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Error : Not an array
Message
From
04/07/2001 19:00:18
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00526286
Message ID:
00526799
Views:
22
>>It should be:
>>
>>local array myArray[1]
>>
>>or it could be:
>>local myArray
>>dimension myArray[1]
>>
>>>Try this:
>>>
>>>LOCAL MyArray(1)
>>>
>
>The ARRAY keyword is not necessary. LOCAL arrayname[1] works just fine.

The array keyword provides useful information to the compiler so that
local array myArray
myArray[1] = 1
generates a syntax error on compilation while
local myArray
myArray[1] = 1
generates an error at runtime.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform