Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Refresh order for shapes
Message
De
15/08/2005 19:06:45
 
 
À
15/08/2005 18:59:17
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
01041107
Message ID:
01041180
Vues:
23
This message has been marked as the solution to the initial question of the thread.
>** page.click
>this.refresh
>
>I also tried deleteing the above code and replacing it with
>
>** page.activate
>this.refresh
>
this is ok
>
Well:
* Page refresh Method
NODEFAULT
Thisform.Lockscreen = .T.
Page::Refresh
Thisform.Lockscreen = .F.
You can leave the Form.Refresh code.

The nature of LockScreen is of a semaphore,
but unfortunately VFPT implement it as a simple flag.

If you want, you can use this:
* Page refresh Method
NODEFAULT
IF m.Thisform.Lockscreen
 Page::Refresh
ELSE
 Thisform.Lockscreen = .T.
 Page::Refresh
 Thisform.Lockscreen = .F.
ENDIF
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform