VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



EASIEST way to have scrolling marquee text

by Crash404 (1 Submission)
Category: Custom Controls/Forms/Menus
Compatability: Visual Basic 3.0
Difficulty: Unknown Difficulty
Date Added: Wed 3rd February 2021
Rating: (3 Votes)

This is the EASIEST way to have scrolling marquee text in a label.
'No long useless code.

Assumes
Create a timer called 'Timer1' (with an interval of 1) and a label called 'Label1'

Rate EASIEST way to have scrolling marquee text

Private Sub Timer1_Timer()
 If Label1.Left < -1000 Then
 Label1.Left = 7000
Else
 Label1.Left = Val(Label1.Left) - 40
End If
End Sub

Download this snippet    Add to My Saved Code

EASIEST way to have scrolling marquee text Comments

No comments have been posted about EASIEST way to have scrolling marquee text. Why not be the first to post a comment about EASIEST way to have scrolling marquee text.

Post your comment

Subject:
Message:
0/1000 characters