Scrolling Label (VB.net 2005,2008,2010)
Originally, I had a post with three or four other simple codes...but my computer restarted....so now you only get one for now :) More later.
This is a video I made a long time ago.
http://www.youtube.com/watch?v=JRqlEW-k8-Y
Make sure timer is ENABLED
Timer1_Tick:
Code:
label1.left -=5
if label1.left <= -width then
label1.left = width
End if
'Scrolls label from Left To Right
label1.up -=5
if label1.up <= -width then
label1.up = width
End if
'Scrolls label from Bottom to Top