I am using a status bar in a program that i am working on for VB.net 2003, i am trying to have some text scroll or marquee across the screen from right to left,
try this following code (needed timer and statusbar with 2 panels), text to scrolling is from StatusBar panel 2 text :
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Dim text As String
text = StatusBar1.Panels.Item(0).Text
StatusBar1.Panels.Item(0).Text = text.Substring(1) & text.Substring(0, 1)
End Sub
awesome, i got it working, thank you VERY much your code helped me alot, i tried forever to get it to work.... used ur code got it working in about 10 to 15 minutes. =]