PDA

Click to See Complete Forum and Search --> : Problem With timer


Gandor
Dec 11th, 1999, 04:47 AM
how do i get a scroll bar to move with the timers Interval?

MartinLiss
Dec 11th, 1999, 05:26 AM
Put this in the timer's Timer event
If MyScrollbar.Value + 100 < MyScrollbar.Max Then
MyScrollbar.Value = MyScrollbar.Value + 100
Else
MyScrollbar.Value = MyScrollbar.Max
End If


------------------
Marty

rino_2
Dec 11th, 1999, 05:28 AM
Timer1.Interval = VScroll1.Value