I'm looking at it and I cannot figure out the proper way to pause it without resetting the timer.
so how to pause it?
|
1
|
|||||||||
|
|
|
Will do it for you. Edit:Just read your question again, as far as I'm aware you can't pause the way you want out of the box. I'm afraid you'll have to save the remaining time, if you want to pause, and be able to start again, without resetting. |
||
|
|
|
|
There is no Pause(), you can write one that on Pause():
on Resume():
If you write this class please post it in answer as it seem that many of us need that functionality out of the Timer class. :) |
|||
|
|
|
You should follow the advice Shay Erlichmen gave. You'll need to save the time remaining when pausing, and continue from that point when the timer is resumed. As for what is wrong with your current code:
The above code will make sure that next time you resume it will work as intended on the first tick, but on the continouos ticks you'll have Me.Interval - sw.ElapsedMilliseconds as the interval instead of the original set interval. |
||
|
|
|
I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...
|
||
|
|