Results 1 to 3 of 3

Thread: Problem With timer

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Feb 1999
    Location
    San Antonio,TX,USA
    Posts
    26

    Post

    how do i get a scroll bar to move with the timers Interval?

  2. #2
    Former Admin/Moderator MartinLiss's Avatar
    Join Date
    Sep 1999
    Location
    San Jose, CA
    Posts
    33,431

    Post

    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

  3. #3
    Hyperactive Member
    Join Date
    Sep 1999
    Location
    Leeds, UK
    Posts
    287

    Post

    Timer1.Interval = VScroll1.Value

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width