Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Best Refersh Method
Message
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00600926
Message ID:
00600940
Views:
19
>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
Previous
Reply
Map
View

Click here to load this message in the networking platform