Lotus Window Off
Lotus Window Off
(OP)
All:
Lotus had a macro function named "window off." Is there a VBA code that does something like that? I'm am trying to freeze the window while a long macro runs. From memory the Lotus command(s) were:
{windowoff}
{windowon}
Thanks in advance
Lotus had a macro function named "window off." Is there a VBA code that does something like that? I'm am trying to freeze the window while a long macro runs. From memory the Lotus command(s) were:
{windowoff}
{windowon}
Thanks in advance





RE: Lotus Window Off
Application.ScreenUpdating = False to disable and
Application.ScreenUpdating = True to re-enable.
RE: Lotus Window Off