Advertisement
NiCz

How to Make Labels Scroll from Left to Right

Sep 10th, 2012
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.23 KB | None | 0 0
  1. How to Make your Labels Scroll from Left to Right.
  2.  
  3. Req:
  4. - Label
  5. - Timer (Enabled: True)
  6.  
  7. Timer Codes:
  8.  Label1.Left -= 5
  9.         If Label1.Left <= -Width Then
  10.             Label1.Left = Width
  11.         End If
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement