About 50 results
Open links in new tab
  1. how to set timer.interval = 1 hour?-VBForums - Visual Basic

    Dec 20, 2005 · A Timer's interval can only be set to 60,000 (60 seconds). The best thing to do is have a start date which you can set in a variable using String = Now, then in your timer have it constantly …

  2. VS 2017 Count down timer in VB.NET-VBForums - Visual Basic

    Jan 28, 2023 · The Timer is named Timer1. When the form loads, the currentTime variable is set to the startTime, which is 1 hour (3600 seconds), and the timerRunning variable is set to false.

  3. Timer every hour...-VBForums

    Dec 4, 2005 · Not so much an answer to my own thread, but should my code do something like this: On launch, run once (again, pseudocode): minutes = Now () minutes = 60 - minutes timer.Interval = …

  4. [RESOLVED] Need a timer that will execute code every day at a certain ...

    Oct 15, 2014 · Re: Need a timer that will execute code every day at a certain time For the first set of code, say I want it to run at both 8PM and 8AM. How would I edit this code to distinguish between …

  5. Timer 1 Hour Problem???-VBForums - Visual Basic

    Mar 23, 2004 · So to run the timer for an hour, set the tag value to 3600, set the timer interval to 1000 (1 second) and in the timer_timer event do the following, works a treat.

  6. Hourglass in VB6-VBForums

    Sep 11, 2023 · VBForums Visual Basic Visual Basic 6 and Earlier Hourglass in VB6

  7. Timer1.Interval = 30000 ,, is this 30 seconds???-VBForums

    Sep 27, 2004 · The best test is to make a timer control, set interval to 1000, make a textbox and put "0" in it and have the timer do this: Text1.Text = Int (Text1.Text) + 1

  8. VS 2022 How to have timer countdown and display?-VBForums

    Dec 22, 2023 · I set another select case after "Door 1" to detect two specific CrayonID, if detected go ahead and start the timer. If not, display the ID does not exist message.

  9. VS 2013 [RESOLVED] Super Simple Countdown timer-VBForums

    Mar 5, 2015 · In other words, what you have created is an alarm clock, where you set the time for it to go off, and as long as the timer is running, it is counting down towards that set target time.

  10. [RESOLVED] Vb6 elapsed time in days hours minutes-VBForums

    Jan 8, 2021 · Re: Vb6 elapsed time in days hours minutes Set a date/time variable to Now in the Command click event. Then compare it with current date/time when you need it.