Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using Arrays in Reports
Message
From
11/05/1997 16:40:10
 
 
To
11/05/1997 15:29:03
General information
Forum:
Visual FoxPro
Category:
Reports & Report designer
Miscellaneous
Thread ID:
00031708
Message ID:
00031718
Views:
48
>>
>>The scope (lifetime) of arrays is similar with the scope of any other variable. So, it depends on the way you declare the array and, of course, on where you declare the array (the structure of your app).
>>
>>Basically there are 2 ways to declare an array:
>>DIMENSION MyArray[x]
>>it will create a private array. (Equivalent to DECLARE MyArray[x]). The array will be destroied when the procedure/function that creates it will finish.
>>
>>PUBLIC MyArray[x]
>>it will create a public array. The array will be destroied when:
>>1. RELEASE MyArray is executed
>>2. FoxPro session is terminated
>>
>>So, in your case, the array must be available (like any other variable) in the procedure/function/method where the REPORT FORM is executed.
>>
>>Vlad
>Thanks alot Vlad. You were a great help. I used PUBLIC as suggested and it works like a charm.
>Mark :)

Be sure you release it if you declare it Public.

Vlad
Previous
Reply
Map
View

Click here to load this message in the networking platform