Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() I have a macro that takes a couple of seconds to complete and since I have the screen update turned off, I want a pop up box that will say something like "Processing your information" with periods that "move". The moving period concept will look like this: this. this.. this... this.... Of course I don't want it to type "This" four times; I'm just showing you how the periods should move. -- Tha BeatMaker ------------------------------------------------------------------------ Tha BeatMaker's Profile: http://www.excelforum.com/member.php...o&userid=23998 View this thread: http://www.excelforum.com/showthread...hreadid=384068 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I use the statusbar at the bottom of excel's window to give the user the status.
Application.statusbar = "Processing this" 'do this application.statusbar = "Processing that" 'do that application.statusbar = false 'reset it when you're done. Tha BeatMaker wrote: I have a macro that takes a couple of seconds to complete and since I have the screen update turned off, I want a pop up box that will say something like "Processing your information" with periods that "move". The moving period concept will look like this: this. this.. this... this.... Of course I don't want it to type "This" four times; I'm just showing you how the periods should move. -- Tha BeatMaker ------------------------------------------------------------------------ Tha BeatMaker's Profile: http://www.excelforum.com/member.php...o&userid=23998 View this thread: http://www.excelforum.com/showthread...hreadid=384068 -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Would you consider using the status bar? During processing: Application.StatusBar = "Processing...." Then, when done: Application.StatusBar = FALSE Regards, Ron -- Ron Coderre ------------------------------------------------------------------------ Ron Coderre's Profile: http://www.excelforum.com/member.php...o&userid=21419 View this thread: http://www.excelforum.com/showthread...hreadid=384068 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
correct syntax for nesting "if", "and", and "vlookup"....if possib | Excel Worksheet Functions | |||
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 | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel |