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.
Make sure timer is ENABLED
Timer1_Tick:
More later.This is a video I made a long time ago.
Make sure timer is ENABLED
Timer1_Tick:
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
I am going to add a few more to this thread later....like, using RBG colors in code...and a better PasswordChar method..lol