View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Simple Dumb Question: App.ScreenUpdating

I have opened and closed files with screen updating turned off many times
and it did not affect the setting nor did I see any activity. So doing
that alone should not affect it.

--
Regards,
Tom Ogilvy


"Steph" wrote in message
...
Thanks guys. The test showed that it does in fact carry through. The

subs
that the main calls do a lot of opening and closing of files. So I still
see the screen popping back and forth as files are opened and closed. I
guess there's no way to prevent that from happening....at least
App.ScreenUpdating doesn't seem to prevent it.

"Tom Ogilvy" wrote in message
...
Should carry through.

There is a possibility that your subs call a function that turns it back

on,
but otherwise it should carry through.

--
Regards,
Tom Ogilvy

"Steph" wrote in message
...
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!!