Top "Timer" questions

Timer is a component that has the functionality to trigger a user defined action at regular intervals as configured by the user.

System.Timers.Timer vs System.Threading.Timer

I have been checking out some of the possible timers lately, and System.Threading.Timer and System.Timers.Timer are …

.net timer
How to make a countdown timer in Android?

I have two EditTexts in XML. In one EditText, the user can put a number as minutes and in another …

android timer countdown
How do you add a timer to a C# console application

Just this - How do you add a timer to a C# console application? It would be great if you …

c# console timer
C++ obtaining milliseconds time on Linux -- clock() doesn't seem to work properly

On Windows, clock() returns the time in milliseconds, but on this Linux box I'm working on, it rounds it to …

c++ timer clock
VBA Macro On Timer style to run code every set number of seconds, i.e. 120 seconds

I have a need to run a piece of code every 120 seconds. I am looking for an easy way to …

vba excel timer scheduling
Print "hello world" every X seconds

Lately I've been using loops with large numbers to print out Hello World: int counter = 0; while(true) { //loop for ~5 seconds …

java timer
How to timeout a thread

I want to run a thread for some fixed amount of time. If it is not completed within that time, …

java timeout multithreading timer
java: run a function after a specific number of seconds

I have a specific function that I want to be executed after 5 seconds. How can i do that in Java? …

java timer
Timing Delays in VBA

I would like a 1 second delay in my code. Below is the code I am trying to make this delay. …

vba timer wait pause timedelay
Timer function to provide time in nano seconds using C++

I wish to calculate the time it took for an API to return a value. The time taken for such …

c++ c timer