Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Save Screen
Message
De
28/01/2009 07:21:24
 
 
À
27/01/2009 15:46:38
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Titre:
Versions des environnements
Visual FoxPro:
VFP 9 SP2
OS:
Windows XP SP2
Divers
Thread ID:
01376877
Message ID:
01377621
Vues:
12
Yossi,

I suppose the VFP clause to save screen and restore from screen (clipper-wise) are:

_screen.Forms(lnForm).visible = .f.
and
_screen.Forms(lnForm).show()

where lnForm = idnumber of forms on your _screen which you would be able to determine with a routine like:

for lnFormnmbr = 1 to _screen.Formcount
if _screen.Forms(lnFormnmbr).name = ' myForm'
lnForm = lnForm
endif
endfor

However a form has a property Visible which you can set to .t. or .f. moreover we have methods hide() and show() all depends on what you want to achieve

regards,

Koen
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform