g'Day,
Try::-
Sub DoSomething()
Application.ScreenUpdating = False
:
'Something happens here, but changes are not displayed
:
Application.ScreenUpdating = True
End Sub
Word remains visible, but no Screen Updating occurs.
You must also arrange to set ScreenUpdating to True
in the event of the Macro halting due to an Error (i.e. in
your Error Trap).

Signature
Regards,
Pat Garard
Melbourne, Australia
_______________________
> Hi ,
> What command(s) to I use to pause output written to the ActiveWindow while
[quoted text clipped - 6 lines]
>
> Ed
mansky99 - 02 Aug 2005 23:21 GMT
Thanks! Exactly what I was looking for.
> g'Day,
>
[quoted text clipped - 22 lines]
> >
> > Ed