Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have a long macro runing under
Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Application.Cursor = xlWait
Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
thanks but I got the little circle going around but I can not make it to
stop... "Jacob Skaria" wrote: Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Do you mean; to revert back
Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" Application.ScreenUpdating = False 'your code Application.ScreenUpdating = True Application.Cursor = xldefault Application.StatusBar = False If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: thanks but I got the little circle going around but I can not make it to stop... "Jacob Skaria" wrote: Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Have not been able to see the a´plication status bar message.... I even put
the macro on break mode to see if it was going too fast bt never showed up "Jacob Skaria" wrote: Do you mean; to revert back Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" Application.ScreenUpdating = False 'your code Application.ScreenUpdating = True Application.Cursor = xldefault Application.StatusBar = False If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: thanks but I got the little circle going around but I can not make it to stop... "Jacob Skaria" wrote: Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See this:
http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try the below on top...
Application.DisplayStatusBar =true If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: Have not been able to see the a´plication status bar message.... I even put the macro on break mode to see if it was going too fast bt never showed up "Jacob Skaria" wrote: Do you mean; to revert back Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" Application.ScreenUpdating = False 'your code Application.ScreenUpdating = True Application.Cursor = xldefault Application.StatusBar = False If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: thanks but I got the little circle going around but I can not make it to stop... "Jacob Skaria" wrote: Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks... it is already over midnight so I will try it tomorrow.
"T. Valko" wrote: See this: http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thanks I´ll try it tomorrow... too late already... past midnight
"Jacob Skaria" wrote: Try the below on top... Application.DisplayStatusBar =true If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: Have not been able to see the a´plication status bar message.... I even put the macro on break mode to see if it was going too fast bt never showed up "Jacob Skaria" wrote: Do you mean; to revert back Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" Application.ScreenUpdating = False 'your code Application.ScreenUpdating = True Application.Cursor = xldefault Application.StatusBar = False If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: thanks but I got the little circle going around but I can not make it to stop... "Jacob Skaria" wrote: Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#10
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I finaly saw the status bar but it is at the bottom of the screen... is there
any way to put it in the midle of the screen...? Thanks "Jacob Skaria" wrote: Try the below on top... Application.DisplayStatusBar =true If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: Have not been able to see the a´plication status bar message.... I even put the macro on break mode to see if it was going too fast bt never showed up "Jacob Skaria" wrote: Do you mean; to revert back Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" Application.ScreenUpdating = False 'your code Application.ScreenUpdating = True Application.Cursor = xldefault Application.StatusBar = False If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: thanks but I got the little circle going around but I can not make it to stop... "Jacob Skaria" wrote: Application.Cursor = xlWait Application.StatusBar = "Please wait...<some activity in Progress" If this post helps click Yes --------------- Jacob Skaria "Alberto Ast" wrote: I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#11
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I acess the below www and get to see some nice samples but in all the status
bar is at the very bottom of the screen hard to see... can I move it to midle of the screen... "T. Valko" wrote: See this: http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#12
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
No, you can't move the status bar.
-- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I acess the below www and get to see some nice samples but in all the status bar is at the very bottom of the screen hard to see... can I move it to midle of the screen... "T. Valko" wrote: See this: http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#13
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Any other way to do so....?
"T. Valko" wrote: No, you can't move the status bar. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I acess the below www and get to see some nice samples but in all the status bar is at the very bottom of the screen hard to see... can I move it to midle of the screen... "T. Valko" wrote: See this: http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#14
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Not that I know of.
-- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... Any other way to do so....? "T. Valko" wrote: No, you can't move the status bar. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I acess the below www and get to see some nice samples but in all the status bar is at the very bottom of the screen hard to see... can I move it to midle of the screen... "T. Valko" wrote: See this: http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
#15
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
See Andy Pope's site for a workbook with various progess bars.
http://www.andypope.info/vba/pmeter.htm Gord Dibben MS Excel MVP On Thu, 10 Sep 2009 21:15:01 -0700, Alberto Ast wrote: Any other way to do so....? "T. Valko" wrote: No, you can't move the status bar. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I acess the below www and get to see some nice samples but in all the status bar is at the very bottom of the screen hard to see... can I move it to midle of the screen... "T. Valko" wrote: See this: http://www.cpearson.com/Excel/Progress.htm Also note at the bottom of the page the reference to other sites with info on this. -- Biff Microsoft Excel MVP "Alberto Ast" wrote in message ... I have a long macro runing under Application.ScreenUpdating = False but I would like to have a bar showing in prograss or some action so user will know system is working and not freeze up. Something similar as windows does to show something is happening. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
macro is not working? | Excel Discussion (Misc queries) | |||
MACRO IS NOT WORKING AS IT SHOULD | Excel Worksheet Functions | |||
macro not working | Excel Discussion (Misc queries) | |||
macro not working | Excel Discussion (Misc queries) | |||
"Compare2Lists" Macro Not working | Excel Discussion (Misc queries) |