Refresh
This method updates an object. It's the VFP equivalent of FoxPro 2.x's SHOW GET and SHOW GETS commands.
Usage |
oObject.Refresh( [ lUpdateSourceControl ] ) |
Refresh drills down into contained objects except for Pages. Only the top page (the visible one) of a page frame is refreshed by calling the page frame's Refresh. Microsoft's stated reason is performance. Given the speed of form refreshes generally, it seems like a good choice to us. You can refresh an individual page in its Activate event. |
Example |
* A simplified version of the Click code for a Next button is: SKIP ThisForm.Refresh() |
See Also |