Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Lotus Window Off

Status
Not open for further replies.

d23

Petroleum
Joined
Dec 8, 2002
Messages
297
Location
US
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
 
Yes, you can use
Application.ScreenUpdating = False to disable and
Application.ScreenUpdating = True to re-enable.
 
Thanks Mutt
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top