|
-
Apr 2nd, 2002, 10:49 AM
#1
Thread Starter
Member
Displaying status bar panels???
Does anybidy know how to display a statusbar panel for "X" (e.g. 30 sec.) amount of time?
"If you never go beyond the limits, you'll never know how far you can go"
- The Manic Mouse (1976 - Present)
-
Apr 2nd, 2002, 10:51 AM
#2
Set the Style property of the desired panel to sbrTime.
-
Apr 2nd, 2002, 10:55 AM
#3
Thread Starter
Member
That just displays the time. I want to display the panel for (30 sec.) and then make it disapear.
"If you never go beyond the limits, you'll never know how far you can go"
- The Manic Mouse (1976 - Present)
-
Apr 2nd, 2002, 10:59 AM
#4
insert a timer in the form with an interval of 30,000
then on the timer even make it visible = false... or if it is just a panel and not the whole thing... just make the panel = "" or something
-
Apr 2nd, 2002, 11:02 AM
#5
Oh...in that case, when your timer event put this
VB Code:
sbStatusBar.Panels(1).Visible = False
Where 1 is the appropriate panel number.
-
Apr 2nd, 2002, 12:14 PM
#6
Thread Starter
Member
Thanks Guys that did the trick...
"If you never go beyond the limits, you'll never know how far you can go"
- The Manic Mouse (1976 - Present)
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
|