Results 1 to 3 of 3

Thread: a different timer question

  1. #1

    Thread Starter
    Member
    Join Date
    Jan 2000
    Location
    brooklyn
    Posts
    48

    Post

    The maximum time interval of the timer control is just over a minute. I need a time
    interval longer than that. Anybody know how to do that?

  2. #2
    Lively Member
    Join Date
    Jan 2000
    Posts
    65

    Post

    user Timer function..
    It gives the time from 12 am in the morning..
    first get when you start and add the
    number of seconds and then you can stop
    at that time..

  3. #3
    Hyperactive Member
    Join Date
    Nov 1999
    Posts
    363

    Post

    This should do it:

    Code:
    Timer1_Timer()
    Dim bMinutes as byte
    
    bMinutes = bMinutes + 1
    If bMinutes = 10 then 
    '--------------
    YOUR FUNCTIONALITY HERE
    '--------------
    bMinutes = 0
    End if
    Wade

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