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.