View Single Post
Join Date: Nov 2007
Posts: 2,640
Reputation: Jx_Man is a glorious beacon of light Jx_Man is a glorious beacon of light Jx_Man is a glorious beacon of light Jx_Man is a glorious beacon of light Jx_Man is a glorious beacon of light Jx_Man is a glorious beacon of light 
Solved Threads: 245
Jx_Man's Avatar
Jx_Man Jx_Man is offline Offline
Posting Maven

Re: Status Bar Marquee...Need Help!

 
0
  #4
May 27th, 2008
try this following code (needed timer and statusbar with 2 panels), text to scrolling is from StatusBar panel 2 text :
  1. Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
  2. Dim text As String
  3. text = StatusBar1.Panels.Item(0).Text
  4. StatusBar1.Panels.Item(0).Text = text.Substring(1) & text.Substring(0, 1)
  5. End Sub
i post the screenshot too.
Last edited by Jx_Man; May 27th, 2008 at 5:16 am.
Attached Thumbnails
StatusBar-TextScrolling.JPG  
Never tried = Never Know
So, Please do something before post your thread.
* PM Asking will be ignored *
Reply With Quote