Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
What is the Status Bar used for?
|
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
It can be used to give a progress comment for a running macro without
having to use the messagebox. e.g. Application.DisplayStatusBar = True 'Show progress Application.ScreenUpdating = False '1. Check for latest update Application.StatusBar = "Checking for latest update..." Regards Andrew B Catherine wrote: What is the Status Bar used for? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
to pass information to the user about the current state of excel. On the
right side, it has some indicator boxes to indicate the state of overright/insert and other characteristics including the ability to select the display of a summary statistic for selected numerical data. -- Regards, Tom Ogilvy "Catherine" wrote in message ... What is the Status Bar used for? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On Tue, 23 Aug 2005 04:46:04 -0700, Catherine
wrote: What is the Status Bar used for? I use it for providing simple information to the user. Like how far through a process a macro has reached, or the name of a file that is currently being saved or imported, etc. Rgds __ Richard Buttrey Grappenhall, Cheshire, UK __________________________ |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Catherine Wrote: What is the Status Bar used for? It's often useful for monitoring progress when performing a length operation or looping. For example: For I = 1 to 20000 Application.Statusbar= "Looking at row " & I ... ... Next I I think I'm right in saying that it updates even when you hav screenupdating turned off which makes it extremely usefu -- ronthedo ----------------------------------------------------------------------- ronthedog's Profile: http://www.excelforum.com/member.php...fo&userid=2650 View this thread: http://www.excelforum.com/showthread.php?threadid=39811 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Status... | Excel Discussion (Misc queries) | |||
reuest formula for auto update status & status date | Excel Worksheet Functions | |||
Tax Status | Excel Worksheet Functions | |||
What is EN on status bar? | Excel Discussion (Misc queries) | |||
Need a msg box that displays time status or loading status | Excel Programming |