basically i'd just like to know what the easiest way to make text in a status bar panel scroll from one side to the other.
thnx!
[Edited by tweak on 10-16-2000 at 12:48 PM]
Printable View
basically i'd just like to know what the easiest way to make text in a status bar panel scroll from one side to the other.
thnx!
[Edited by tweak on 10-16-2000 at 12:48 PM]
IN a timer put this: Also have the first panel text set to the scolling text, insert blank spaces if you want :)
Code:Private Sub Timer1_Timer()
StatusBar1.Panels(1).Text = Mid$(StatusBar1.Panels(1).Text, 2) & Left(StatusBar1.Panels(1).Text, 1)
End Sub