Results 1 to 6 of 6

Thread: refresh

  1. #1

    Thread Starter
    Addicted Member smh's Avatar
    Join Date
    Oct 2000
    Location
    South Dakota, USA
    Posts
    249
    How can I schedule a refresh to run every 5 minutes on my form without the user having to press a 'Refresh' button?
    Normal is boring...

    smh

  2. #2
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,539
    use API GetTickCount and a timer control
    OR you can just use timer control and a variable that is incremented every time the timer does one minute (approx the max of how much a timer can do)

    so every iteration of the timer control add 1 to a variable
    and check if that =>5 then refresh and set the variable back to 0

    if its less, add one and dont refresh

  3. #3
    PowerPoster Static's Avatar
    Join Date
    Oct 2000
    Location
    Rochester, NY
    Posts
    9,390

    Timer

    Use a timer control...

    set the interval... 1000 per second
    60000 for a minute...
    (not sure if it will take a 300000 interval)

    if not
    with the 60000 interval...
    use a simple x = x + 1 if x = 5 then etc...

    should work fine


    JPnyc rocks!! (Just ask him!)
    If u have your answer please go to the thread tools and click "Mark Thread Resolved"

  4. #4

    Thread Starter
    Addicted Member smh's Avatar
    Join Date
    Oct 2000
    Location
    South Dakota, USA
    Posts
    249
    thanks

    I should have known that, but I am not awake yet....
    Normal is boring...

    smh

  5. #5
    PowerPoster Static's Avatar
    Join Date
    Oct 2000
    Location
    Rochester, NY
    Posts
    9,390

    Talking auurgh

    Beat by Kovan!


    JPnyc rocks!! (Just ask him!)
    If u have your answer please go to the thread tools and click "Mark Thread Resolved"

  6. #6
    Frenzied Member
    Join Date
    Aug 2000
    Posts
    1,539
    in life, remember there is ALWAYS someone faster and better than you
    learn to be beaten, BADLY


    keep up the good work

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