Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
What is PARAMETERS?
Message
 
 
To
23/08/2001 15:43:02
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00548260
Message ID:
00548271
Views:
13
>What is difference betwen variables (LOCAL, PRIVATE, PUBLIC) and PARAMETERS?
The Local variables and variable arrays can be used and modified only within the procedure or function in which they are created. They are initialized to false (.F.).
The Private command hides specified variables or arrays that were defined in a calling program from the current program. It doesn't create variables. The private variables are visible within the procedure or function in which they are created and all called progam/functions.
The public variables in general all visible thru the application an initialized to false (.F.).
The PARAMETERS statement declares parameters as PRIVATE.
The LPARAMETERS statement declares parameters as LOCAL.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform