A preserved archive of the Logical Gamers community forums, 2009-2025. The original threads and posts, served read-only. Registration, posting and private messages are gone for good.

Scrolling Label (VB.net 2005,2008,2010)

1.5k views · started by Ferret ·
#1
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:

label1.left -=5

if label1.left <= -width&#65279; then

label1.left = width

End if
'Scrolls label from Left To Right


label1.up -=5

if label1.up <= -width&#65279; then

label1.up = width

End if
'Scrolls label from Bottom to Top
#2
Very goo tut :) +repped
#3
Thanks :D I am going to add a few more to this thread later....like, using RBG colors in code...and a better PasswordChar method..lol
#4
Cool i'm looking forword to it ;)
#5
+1'd, great share man, using it now! :D <3