View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Steph[_3_] Steph[_3_] is offline
external usenet poster
 
Posts: 312
Default Simple Dumb Question: App.ScreenUpdating

Hi everyone. I have a question about Application.ScreenUpdating. I run a
bunch of subs from one main sub:

Sub Main()
Application.ScreenUpdating=False
sub1
sub2
sub3
Application.ScreenUpdating=True
end sub

Does the Application.ScreenUpdating carry through to all 3 subs that are
called from the Main, or should I have that in each of the 3 subs? Thank
you!!