Turn off screen updating (1 Viewer)

mbentley

Registered User.
Local time
Yesterday, 19:49
Joined
Feb 1, 2002
Messages
138
I have a form with multiple pages. I have set it to show only certain pages as appropriate based on what the user has entered. (I've done so to simplify things for the users). When the user opens the form, changes records, or changes the appropriate data, 6 pages are hidden or shown. Everything works great except that the form flashes repeatedly as the pages are hidden/shown. Is there any function similar to Excel's "Application.ScreenUpdating = False" that would turn this off while the pages change?

Thanks!
 

Tim K.

Registered User.
Local time
Today, 02:49
Joined
Aug 1, 2002
Messages
242
What about Echo Off/On like this

...
Application.Echo False
.
. ' do sthg here.
.
Application.Echo True
...
 

mbentley

Registered User.
Local time
Yesterday, 19:49
Joined
Feb 1, 2002
Messages
138
Perfect! I knew it had to be something totally simple. Thanks!
 

Users who are viewing this thread

Top Bottom