View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Turning off Screen Refresh

' turn it off
Application.ScreenUpdating = False

' turn it back on
Application.ScreenUpdating = True

--
Regards,
Tom Ogilvy

"sullivan" wrote in message
...
Is there any way to turn off screen refresh while running
a program in VB?

Sullivan