Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Do .. with... endwith
Message
 
À
30/06/1998 11:23:48
Koos Veel
Gamma Research
Aruba
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00112459
Message ID:
00113002
Vues:
28
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.
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform