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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB5: How do u change the text in one of the status bar items?

Status
Not open for further replies.

Arse

Programmer
May 15, 1999
4
0
0
US
Say I have a timer and I want it to change the text in a statusbar. I know this is probably very simple but I am very new at vb5 so please help. thanks.
 
I'm just guessing here - isn't the text in the status bar the same os the title of the form? Try changing that in the timer code.<br>
-ml<br>

 
you would use :<br>
<br>
statusbar1.panels(1).text = "her goes some text for panel 1"<br>
StatusBar1.Panels(2).Text = "her goes some text for panel 2"<br>
<br>
you get my point
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top