RobBroekhuis
Technical User
I'm used to Excel's VBA, where an
will nicely hide any screen activity from the user. This doesn't seem to work as well with Word - it hides the in-document manipulations, but not any activity of the scrollbar or document switching on the taskbar, to a very distracting effect (and I'm sure it slows execution down).
My application pulls in many text files (each opened as a new document) and assembles them into one large document. So there is lots of switching going on. Any way to keep Word quiet?
Rob
Code:
application.screenupdating=false
My application pulls in many text files (each opened as a new document) and assembles them into one large document. So there is lots of switching going on. Any way to keep Word quiet?
Rob