how do i get a scroll bar to move with the timers Interval?
Printable View
how do i get a scroll bar to move with the timers Interval?
Put this in the timer's Timer event
Code:If MyScrollbar.Value + 100 < MyScrollbar.Max Then
MyScrollbar.Value = MyScrollbar.Value + 100
Else
MyScrollbar.Value = MyScrollbar.Max
End If
------------------
Marty
Timer1.Interval = VScroll1.Value