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:
00051526
Views:
34
>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
Barbara Paltiel, Paltiel Inc.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform