About 783,000 results
Open links in new tab
  1. .NET, event every minute (on the minute). Is a timer the best option?

    May 27, 2015 · Use a timer set to run every second (or millisecond, whatever your accuracy threshold is), and then code the method to run your functionality if and only if the current time …

  2. How to set one minute counter in javascript? - Stack Overflow

    Jul 31, 2011 · // set a timer setTimeout( timedOut , 60000 ); That basically sets a timer that will execute the given function after 60.000 miliseconds = 60 seconds = 1 minute

  3. How do I call a function every x minutes in VB.NET?

    Jan 11, 2012 · Yes, you could add a timer to the form, and set its interval to x*60000, where x is the number of minutes between calls. Remember that the timer runs on the UI thread, so don't …

  4. time - Creating a timer in python - Stack Overflow

    Aug 23, 2013 · I was actually looking for a timer myself and your code seems to work, the probable reason for your minutes not being counted is that when you say that and then it is the …

  5. How to I create a simple countdown timer for 10 minutes without ...

    Nov 27, 2021 · I want to create a simple countdown timer for 10 minutes. I have figured out how to do this for the most part but with setInterval () it seems to stop with 2 seconds left every time.

  6. How to repeatedly execute a function every x seconds?

    For example , if your function takes 0.5 seconds to execute and you use time.sleep (1) , it means your function executes every 1.5 seconds , not 1. You should use other modules and/or …

  7. How do I create a batch file timer to execute / call another batch ...

    Nov 19, 2008 · I just found this searching for a simple batch file timer solution - works great, thanks! EDIT: I am using this together with a goto-"loop" to create a simple script which …

  8. setInterval By the minute On the minute - Stack Overflow

    Oct 26, 2017 · To the javascript enthusiasts, how would you program a setTimeOut (or setInterval) handle to fire by the minute on the minute. So for example, if it is the 51 second of …

  9. c# - Calling a method every x minutes - Stack Overflow

    Example: timer.Dispose() using the code above as a reference. This will destroy the timer, however and prevent you from using it again. timer.Change(Timeout.Infinite, Timeout.Infinite) …

  10. javascript - How to automatically reload a page after a given …

    Jan 13, 2015 · How can I automatically reload a webpage, if there have been no activity on the page for a given period of time?