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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hiding Word when executing a Macro

Status
Not open for further replies.

moontho

Technical User
Jun 4, 2003
85
GB
I now have a lovely long procedure that's doing everything that i want it, i.e grabbing bookmarked information from lots of other documents on a monthly basis and combining it into one monthly report.

It's just that it looks a little messy when it running with the screen flashing away like crazy.

Is there any code that can help stop this problem?

Many thanks

Thom
 
Hi
I've never used these in Word but you could try either of the following

Code:
Application.ScreenUpdating = False
Application.Visible = False

;-)
If a man says something and there are no women there to hear him, is he still wrong? [ponder]
How do I get the best answers?
 
Try
Code:
Application.ScreenUpdating = False
then
Code:
Application.ScreenUpdating = True
at the end of the macro.
 
Loomah. That's done the trick. Thanks. All looking very slick and professional now.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top