Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do you use a "Status Bar"?

Status
Not open for further replies.

rstevep8

Programmer
Dec 21, 2000
10
SV
Help!!!
I don't know how use a Status Bar.

Can you help me?

Thanx.
 
I don't know what you specifically want to do, but the statusbar control is, as it's name suggests, used to display the status of certain application events or properties.

For example, if I want the status bar to say "Ready" in the first panel when I show a form, I use code like this:

Private Sub Form_Load()

Statusbar.Panels(1).text = "Ready"

End sub

I would suggest that you go to and search on statusbar control to find more detailed documentation.

Greg L.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top