Does anybidy know how to display a statusbar panel for "X" (e.g. 30 sec.) amount of time?
Printable View
Does anybidy know how to display a statusbar panel for "X" (e.g. 30 sec.) amount of time?
Set the Style property of the desired panel to sbrTime. :)
That just displays the time. I want to display the panel for (30 sec.) and then make it disapear.
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
Oh...in that case, when your timer event put thisWhere 1 is the appropriate panel number.VB Code:
sbStatusBar.Panels(1).Visible = False
Thanks Guys that did the trick...:)