Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Screen Flicker while processing

Ok I know this one is probably simple.

How can I make the screen show something other than all the flicker as a
macro executes. I would like to do something like a logo or Please Wait.
But a blank would be fine.

I would like to add it to the begining of my code and turn it off at the
end.


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,885
Default Screen Flicker while processing

Hi Michael
you may wrap your code in the following statements to prevent the
flickering

-----
Sub foo()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
'...
'enter your code
'...
Application.ScreenUpdating = False
Application.Calculation = xlCalculationAutomatic
end sub
-----


--
Regards
Frank Kabel
Frankfurt, Germany

Michael wrote:
Ok I know this one is probably simple.

How can I make the screen show something other than all the flicker
as a macro executes. I would like to do something like a logo or
Please Wait. But a blank would be fine.

I would like to add it to the begining of my code and turn it off at
the end.


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 54
Default Screen Flicker while processing

Frank,

I think you mean to say:

Application.ScreenUpdating = True

in your second Application.ScreenUpdating statement.

-----
Sub foo()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
'...
'enter your code
'...
Application.ScreenUpdating = False
Application.Calculation = xlCalculationAutomatic
end sub



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,885
Default Screen Flicker while processing

Shatin
thanks for this correction (copy+paste error)


--
Regards
Frank Kabel
Frankfurt, Germany

Shatin wrote:
Frank,

I think you mean to say:

Application.ScreenUpdating = True

in your second Application.ScreenUpdating statement.

-----
Sub foo()
Application.ScreenUpdating = False
Application.Calculation = xlCalculationManual
'...
'enter your code
'...
Application.ScreenUpdating = False
Application.Calculation = xlCalculationAutomatic
end sub

  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Screen Flicker while processing

On 2004-February-Thursday - 05:31:14 was cache-ntc-ab05.proxy.aol.co
( Mozilla/4.0 (compatible; MSIE 6.0; AOL 9.0; Windows NT 5.1; .NE
CLR 1.1.4322) ) with the following IP 198.81.26.42 on your boar

Application.ScreenUpdating = Fals

Turns screen off "True" turns it on... No more flickers.. :-



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
Screen Flicker dim Excel Discussion (Misc queries) 4 November 28th 07 09:42 PM
List box screen flicker [email protected] Excel Discussion (Misc queries) 0 September 25th 07 02:37 PM
In Excel, how can i make text in a sigle sell flash, or flicker? Piersy Excel Discussion (Misc queries) 0 December 14th 06 04:00 AM
Preventing screen flicker Paul Excel Discussion (Misc queries) 2 March 15th 05 09:39 PM
Screen Flicker JonWayn Excel Programming 1 November 1st 03 11:34 PM


All times are GMT +1. The time now is 06:02 AM.

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

About Us

"It's about Microsoft Excel"