Approach User Support homepage Approach User Support
Answers to Frequently Asked Questions about Lotus Approach
Examples LotusScripts
Example databases
Links to other Lotus Approach support services

[Return to contents]

Turning off screen updates when running a macro

Last updated: 14 Feb 1999

The following LotusScript (by Jerry Sikes) turns off Approach's screen redraw function while it runs your macro. A warning though, if something goes wrong while the script/macro is running, then the screen won't be updated to tell you about it...!

Sub MyPrint
    CurrentWindow.Redraw=False 'Turn off redraw temporarily

    RunApproachMacro("YourMacro")

    CurrentWindow.Redraw=True
    CurrentWindow.Repaint
End Sub

Replace "YourMacro" with the name of your macro.

[Return to contents]

© Copyright, JohnBrown, Trademarks, Disclaimer, Acknowledgements.