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
If MyScrollbar.Value + 100 < MyScrollbar.Max Then MyScrollbar.Value = MyScrollbar.Value + 100 Else MyScrollbar.Value = MyScrollbar.Max End If
Timer1.Interval = VScroll1.Value
Forum Rules