Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Variable Scoping
Message
General information
Forum:
Visual FoxPro
Category:
Object Oriented Programming
Miscellaneous
Thread ID:
00861687
Message ID:
00861715
Views:
19
>Can public variables ever go out of scope? I know it's not good "form" in an OOP language, but sometimes they are VERY handy and make my life easier. I have one form that tries to check the value of this variable, but in that form it doesn't exist for some reason. Every other form that checks this variable sees it just fine. Any ideas???


Besides the var scoping with the same name the other way a public var get's hidden is if you pass it by reference into a procedure or function.

For example
RELEASE gc_test
public gc_test
gc_test = "C"
DO test WITH gc_test

PROCEDURE test
PARAMETER pc_test
? TYPE('gc_test')
RETURN
Charles

"The code knows no master." - Chuck Mautz
"Everybody is ignorant, only on different subjects." - Will Rogers
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform