Scroll Text with 1 line of code... 2 methods, each 1 line
Scroll Text with 1 line of code... 2 methods, each 1 line
API Declarations
'Stick one of the codes in the timer... or both, but that will make 2 letters
'scroll at a time.
Rate Scroll Text with 1 line of code... 2 methods, each 1 line
(1(1 Vote))
lblScroll.Caption = Mid((Mid(lblScroll, Len(lblScroll), 1) & Mid(lblScroll, 2, Len(lblScroll)) & Mid(lblScroll, 1, 1)), 2, Len(lblScroll))
'Method 2 - I like this one better... more efficient
lblScroll.Caption = Mid(lblScroll, 2) & Left(lblScroll, 1)
Scroll Text with 1 line of code... 2 methods, each 1 line Comments
No comments yet — be the first to post one!
Post a Comment