Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 266
Default Don't show macro processing

How do I disable the macro processing window - in other words, I don't want
the user to see all the screen flashing as the macro is running. Thanks for
any help on this.


  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,501
Default Don't show macro processing

Hi,

application.screenupdating=false

'your code

application.screenupdating=true

Mike

"dhstein" wrote:

How do I disable the macro processing window - in other words, I don't want
the user to see all the screen flashing as the macro is running. Thanks for
any help on this.


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 45
Default Don't show macro processing

application.screenupdating = false

It generally turns itself back on when the macro finishes, but its good
practice to set it to true at the end to ensure it turns back on.

Cheers
Simon
Excel development website: www.codematic.net


dhstein wrote:
How do I disable the macro processing window - in other words, I don't want
the user to see all the screen flashing as the macro is running. Thanks for
any help on this.


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,533
Default Don't show macro processing

Hi

At the top of your code use this:

Application.ScreenUpdating=False

and remember to set it = True at the end of your code.

Without seeing your code, I suspect that you may have some .Select and
..Activate statements in your code, which you often don't need ( it is also
slowing down your code).

Hopes this helps.
....
Per


"dhstein" skrev i meddelelsen
...
How do I disable the macro processing window - in other words, I don't
want
the user to see all the screen flashing as the macro is running. Thanks
for
any help on this.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 266
Default Don't show macro processing

Thanks for the answers.

"Mike H" wrote:

Hi,

application.screenupdating=false

'your code

application.screenupdating=true

Mike

"dhstein" wrote:

How do I disable the macro processing window - in other words, I don't want
the user to see all the screen flashing as the macro is running. Thanks for
any help on this.


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel processing rob Excel Discussion (Misc queries) 7 January 25th 09 04:28 PM
Interupt processing Dave597 Excel Discussion (Misc queries) 0 April 18th 08 08:07 PM
excel processing Wendy Elizabeth Excel Worksheet Functions 1 June 18th 07 05:17 PM
data processing Youyou Excel Discussion (Misc queries) 1 November 19th 05 10:42 AM
Conditional Processing Daniell Excel Discussion (Misc queries) 3 August 26th 05 12:45 AM


All times are GMT +1. The time now is 01:09 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"