Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 67
Default What is the Status Bar used for

What is the Status Bar used for?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 42
Default What is the Status Bar used for

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default What is the Status Bar used for

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 296
Default What is the Status Bar used for

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   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default What is the Status Bar used for


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
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Status... Steve HKG[_2_] Excel Discussion (Misc queries) 7 June 16th 08 07:01 PM
reuest formula for auto update status & status date PERANISH Excel Worksheet Functions 5 June 2nd 08 04:26 PM
Tax Status charline Excel Worksheet Functions 2 September 8th 06 11:00 PM
What is EN on status bar? gman100 Excel Discussion (Misc queries) 3 June 14th 05 11:40 PM
Need a msg box that displays time status or loading status havocdragon Excel Programming 2 April 2nd 05 05:29 PM


All times are GMT +1. The time now is 09:39 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"