up vote 15 down vote favorite
1
share [g+] share [fb]

There are three Timer classes that I am aware of, System.Threading.Timer, System.Timers.Timer, and System.Windows.Forms.Timer, but none of these have a .Reset() function which would reset the current elapsed time to 0.

Is there a BCL class that has this functionality? Is there a non-hack way of doing it? (I thought perhaps changing the time limit on it might reset it) Thought on how hard it would be to reimplement a Timer class that had this functionality, or how to do it reliably with one of the BCL classes?

link|improve this question

1  
Using JP's solution use an extension method – benPearce Jun 25 '09 at 5:26
I too have the same need for reset and for the same reasons mentioned, FileSystemWatcher is unpleasant and inconvenient to use – JohnL Oct 29 '09 at 5:52
If you use Stopwatch for a timer and go with the extension method answer, be careful because Stopwatch.Restart extension method is coming in .NET 4.0. msdn.microsoft.com/en-us/library/… – Si. Nov 30 '09 at 5:15
feedback

protected by Matthew Scharley May 23 '11 at 21:27

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

up vote 22 down vote accepted

I always do ...

myTimer.Stop();
myTimer.Start();

... is that a hack? :)

Per comment, on Threading.Timer, it's the Change method ...

dueTime Type: System.Int32 The amount of time to delay before the invoking the callback method specified when the Timer was constructed, in milliseconds. Specify Timeout.Infinite to prevent the timer from restarting. Specify zero (0) to restart the timer immediately.

link|improve this answer
The other issue is that only woeks with Forms.Timer, and my app has no GUI (Application.Start() with no parameters), so I THINK that the Threading.Timer class is better for other reasons, but good point. – Matthew Scharley Jun 25 '09 at 5:27
1  
@Matthew: See msdn.microsoft.com/en-us/magazine/cc164015.aspx for a discussion of the various timer classes and when using them is appropriate. In general, though, Forms.Timer should only be used with a GUI. However, besides Forms.Timer and Threading.Timer there is also Timers.Timer. – Brian Jun 29 '10 at 19:25
feedback

I believe they all have the equivalent of Start() and Stop() methods, except System.Threading.Timer.

So an extension method such as

public static void Reset(this Timer timer)
{
  timer.Stop();
  timer.Start();
}

Is one way to go about this.

link|improve this answer
I'm not looking to measure elapsed time. My exact usecase for this is that I have a FileSystemWatcher watching a directory and want to catch groups of changes (ie, changes made within for example 5s of each other). The theory being that the first change starts a timer that gets reset with each change till it eventually fires and closes off the group. – Matthew Scharley Jun 25 '09 at 5:35
Yeah, I spotted that when I re-read your question. Edited my answer. – Dan Jun 25 '09 at 5:38
feedback

You could write an extension method called Reset(), which

  • calls Start()-Stop() for Timers.Timer and Forms.Timer
  • calls Change for Threading.Timer
link|improve this answer
feedback

For System.Timers.Timer, according to MSDN documentation, http://msdn.microsoft.com/en-us/library/system.timers.timer.enabled.aspx:

If the interval is set after the Timer has started, the count is reset. For example, if you set the interval to 5 seconds and then set the Enabled property to true, the count starts at the time Enabled is set. If you reset the interval to 10 seconds when count is 3 seconds, the Elapsed event is raised for the first time 13 seconds after Enabled was set to true.

So,

    const double TIMEOUT = 5000; // milliseconds

    aTimer = new System.Timers.Timer(TIMEOUT);
    aTimer.Start();     // timer start running

    :
    :

    aTimer.Interval = TIMEOUT;  // restart the timer
link|improve this answer
feedback

For a Timer (System.Windows.Forms.Timer).

The .Stop, then .Start methods worked as a reset.

link|improve this answer
feedback

Other alternative way to reset the windows.timer is using the counter, as follows:

int tmrCtr = 0;
Timer mTimer;

private void ResetTimer()
{
  tmrCtr = 0;
}

private void mTimer_Tick()
{
  tmrCtr++;
  //perform task
}  

So if you intend to repeat every 1 second, you can set the timer interval at 100ms, and test the counter to 10 cycles.

This is suitable if the timer should wait for some processes those may be ended at the different time span.

link|improve this answer
feedback

there is no any other timer as you have specified except than window.forms.timer in vs2008

link|improve this answer
feedback

This will keep the timer current.

int sec = 0;
int min = 0;
int hours = 0;
    private void timer2_Tick(object sender, EventArgs e)
    {
        sec++;
        if (sec / 60 == 1)
        {
            sec = 0;
        }
        time = hours.ToString() + ":" + min.ToString("00") + ":" + s                    sec.ToString("00");
        this.label11.Text = time;
    }

    private void timer3_Tick(object sender, EventArgs e)
    {
        min++;
        if (min / 60 == 1)
        {
            min = 0;
            hours++;
        }
    }
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.