|
-
Sep 6th, 2000, 08:14 PM
#1
How do I generate text in a staus bar with a command button click?
-
Sep 6th, 2000, 08:22 PM
#2
Lively Member
It's easy here is how the number indicate which panel
you want your text to be display.
Code:
Private Sub Command1_Click()
StatusBar1.Panels(1).Text = "Put your text here"
End Sub
See ya!
If possible please provide codes.
Process by example is the best way to learn.
-
Sep 6th, 2000, 08:35 PM
#3
This is where ms prove that exceptions make a rule
statsbar.panels(x), where x is 1,2,3,4....n N.B x doesn't start at 0.
Ok in the development environment, single click the statusbar to give it focus, then right click to bring up the properties, get into that, and the second tab holds all the statusbar.panels setup stuff.
dndstef is quite correct for updating text with click. Also you change fonts, bold, etc etc
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|