Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there any way to have a routine pause but still allow the user to
use the worksheet during the pause? For example, I have a cell that has its value changed from nothing to "Updating...". I want my routine to make the font red for a brief period of time (eg., 3 seconds). Currently, I can do this by calling SLEEP, but this makes the code "modal"---users can't do anything until the routine ends. Any way to pause without blocking the user, or is this a pie in the sky? With Range("MyRange") If .Value < 1 Then .Font.Bold = True .Font.ColorIndex = 3 'red Sleep 3000 .Font.Bold = False .Font.ColorIndex = strColorIndex End If End With |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
change "true" and "false" to "availble" and "out of stock" | Excel Worksheet Functions | |||
Self closing "modal" window ? | Excel Programming | |||
Excel Dialog being "Non-Modal"? | Excel Programming | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |