View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Kevin B Kevin B is offline
external usenet poster
 
Posts: 1,316
Default VBA equivalence tp to DOS "echo off"

To suppress both messages and screen updates you could use the following:

With Application
.DisplayAlerts = False
.ScreenUpdating = False
.StatusBar = "Processing your request, please wait..."
End With

your code goes here

And then reset the environment with the following:

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

--
Kevin Backmann


"Brian" wrote:

How can I stop an Excel macro from displaying the intermediate images on the
screen until after it has finished. I guess I'm looking for the VBA
equivalence to "echo off" as in DOS. Your help will be much appreciated.

Brian