Word running or marquee in text box
Hello there i need your help and expertise. Anybody can help me how to make a code or how to make a word running like marquee in a text box. Thanks in advance!
br
dwiniers
Junior Poster in Training
57 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0
Ok sir i will try it. Thanks u very much. I just post the result....
dwiniers
Junior Poster in Training
57 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0
Thank you very guys specially to Capritarius21. I got the idea of your given code. Finally i find a working code thru surfing. But still i cannot understand. Can explain it to me or simulate how the code is working specially the mentioned variable what its means??? Thank you very
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
dwiniers
Junior Poster in Training
57 posts since Oct 2011
Reputation Points: 10
Solved Threads: 0