Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copy to array: only 1?
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00051523
Message ID:
00051536
Views:
45
>>I have a code table that has Type_Code and Code fields.
>>I am trying to copy to an array all the Type_Code = to "PE" and I don't know why but it only copies the first record to the array. Here is my code:
>>
>>use codes
>>set order to Type_Code
>>count for Type_Code = "PE" TO ctn
>>DIMENSION aCode(ctn)
>>COPY TO ARRAY aCode FIELDS Code FOR Type_Code = "PE"
>>DISPLAY MEMORY LIKE Ape
>>
>>Thanks for your help
>
>Ray, remove the line "DIMENSION aCode(ctn)" That pre-sets the size of the array. Copy to Array will automatically initialize and size the array correctly IF the array doesn't exist.
>
>HTH
>Barbara

Still, why it doesn't work? I exclude the case when there's only PE record. :)

Vlad
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform