Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Do .. with... endwith
Message
 
To
30/06/1998 11:23:48
Koos Veel
Gamma Research
Aruba
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00112459
Message ID:
00113002
Views:
29
Have a look at the online help topic for With...Endwith. it explains it fully. An example of use might be:

Instead of:

thisform.pgfMain.pagEmployees.text1.enabled=.f.
thisform.pgfMain.pagEmployees.text2.enabled=.t.
thisform.pgfMain.pagEmployees.text3.enabled=.f.

You can do this:

WITH thisform.pgfMain.pagEmployees
.text1.enabled=.f. && Now I don't need the whole object refrerence
.text2.enabled=.t.
.text3.enabled=.f.
ENDWITH

It's just a shortcut in typing out code.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform