Thread: Printing
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Chris Smith[_2_] Chris Smith[_2_] is offline
external usenet poster
 
Posts: 1
Default Printing

If you're closing the workbooks in succession using

ActiveWorkBook.Close True,

Just put:

With Application
.ScreenUpdating = False
.DisplayAlerts = False
End With

' Your Code

With Application
.ScreenUpdating = True
.DisplayAlerts = True
End With

Hope that helps,

Smitty