Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I just wrote a pretty cool macro (VBA project) but there is some screen
flashing going on and I want to just have the user see a message "Working " and the mouse to be an hour glass during the process, which takes a few seconds. How do I do this? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Application.ScreenUpdating = False
your stuff Application.ScreenUpdating = True you will be surprised how fast your stuff will now run. -- Gary''s Student - gsnu200733 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
i use something like this. i create a form with a label on it.
then in the code: application.screenupdating = false With UserForm1 .Show vbModeless .Caption = "Fresh Production Data Report" .Label1 = "Creating Report .........Please Wait" .BackColor = &H800000 .Label1.ForeColor = &HFFCC99 End With DoEvents 'execute your code Unload UserForm1 application.screenupdating = true -- Gary "Mike H." wrote in message ... I just wrote a pretty cool macro (VBA project) but there is some screen flashing going on and I want to just have the user see a message "Working " and the mouse to be an hour glass during the process, which takes a few seconds. How do I do this? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Screen flashing | Excel Discussion (Misc queries) | |||
Eliminate Screen Flashing | Excel Programming | |||
Screen flashing why? | Excel Discussion (Misc queries) | |||
flashing screen | Excel Programming | |||
flashing screen driving me bonkers! | Excel Programming |