Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Best Refersh Method
Message
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00600926
Message ID:
00600940
Vues:
18
>What is the best method to refresh a form with a pageframe with multiple grids and text fields? I am now using a this.refresh() on the activate for each pageframe.
>
>Thanks,
>Jeff

That is a technique I have used in the past. Are you seeing slowness or something in the way that is being done? Most of the time my refresh is tied to an update of data. If the data is updated then a refresh of the screen will be done. If the screen is choppy when you refresh is done ensure that you bundle your refreshes with a LockScreen. I have used my own method for a long time called RefreshForm:
with This
     .LockScreen = .T.
     .BeforeRefresh()
     .Refresh()
     .AfterRefresh()
     .LockScreen = .F.
endwith
Bret Hobbs

"We'd have been called juvenile delinquents only our neighborhood couldn't afford a sociologist." Bob Hope
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform