Can anyone offer me a solution to a problem I need to scroll text repeatedly in a text box.
many thanks
Valley Boy
Printable View
Can anyone offer me a solution to a problem I need to scroll text repeatedly in a text box.
many thanks
Valley Boy
Hi, here you can download an ocx of a scrolling text, maybe you can use it.
http://www.stringsoft.com/scroltxt.zip
------------------
It is by will alone I set my mind in motion.
[email protected]
You need a timer control.
Enable the timer.
Code:Private Sub tmrClosed_Timer()
'Move 60 twips to the right with each tick
lblClosed.Left = lblClosed.Left + 30
'Check to see if we have moved off of the form
If lblClosed.Left > 2930 Then lblClosed.Left = 0
End Sub
Thanks but the words run left to right i need them running right to left
[This message has been edited by Valley Boy (edited 02-14-2000).]