Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Array Property
Message
 
To
10/05/2001 08:40:07
Jay Johengen
Altamahaw-Ossipee, North Carolina, United States
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00505696
Message ID:
00505814
Views:
21
This message has been marked as the solution to the initial question of the thread.
>What is an array property on a form and how is it different than a regular run-of-the-mill property? Or is the difference in how I use it? Thanks!
>
Renoir,

The others have given you information on creating an array property, but no one has mentioned the difference in usage. With a non-property array, you can pass it directly to a method
* laarray is an array contain data you wish to pass to a method
* and is passed like this
This.SomeMethod(@laarray)
However, with an array property, you can't do this. Instead you must use this to pass the contents
* This.anarray is an array contain data you wish to pass to a method
DIMENSION laarray[1]
= ACOPY(This.anarray, laarray)
This.SomeMethod(@laarray)
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform