Gud Day Guys!
Re: MY thread Word Marquee or running text in text box, I got the working code. If you don't mind guys can you explain it me or simulate how this code work and what it means the mentioned variable? What 'Len' means? Thank you very much!
br.
here's the code:
dim str as string
dim i as integer
Private Sub Form_Load()
str = Text1.Text
i = 0
End Sub
Private Sub Timer1_Timer()
Timer1.Interval = 100
i = i + 1
Text1.Text = Left(str, i)
If i = Len(str) Then
i = 1
Timer1.Interval = 100
End If
End Sub