proper way to pause a system.timers.timer? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T18:43:31Z http://stackoverflow.com/feeds/question/748876 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/748876/proper-way-to-pause-a-system-timers-timer 2 proper way to pause a system.timers.timer? Fredou 2009-04-14T18:51:28Z 2009-10-08T11:22:52Z <p>I'm looking at it and I cannot figure out the proper way to pause it without resetting the timer.</p> <p>so how to pause it?</p> http://stackoverflow.com/questions/748876/proper-way-to-pause-a-system-timers-timer/748888#748888 0 Answer by Arkain for proper way to pause a system.timers.timer? Arkain 2009-04-14T18:55:06Z 2009-04-14T18:55:06Z <pre><code>timer.Change( Timeout.Infinite, Timeout.Infinite ); </code></pre> <p>Will do it for you.</p> <h2>Edit:</h2> <p>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.</p> http://stackoverflow.com/questions/748876/proper-way-to-pause-a-system-timers-timer/748905#748905 1 Answer by Shay Erlichmen for proper way to pause a system.timers.timer? Shay Erlichmen 2009-04-14T18:59:38Z 2009-04-14T18:59:38Z <p>There is no Pause(), you can write one that on Pause(): </p> <ol> <li>Change(Timeout.Infinite, Timeout.Infinite) </li> <li>Save the calculate the amount of timer remaining.</li> </ol> <p>on Resume():</p> <ol> <li>Change(amount of timer remaining)</li> </ol> <p>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. :)</p> http://stackoverflow.com/questions/748876/proper-way-to-pause-a-system-timers-timer/749098#749098 0 Answer by Qua for proper way to pause a system.timers.timer? Qua 2009-04-14T19:50:48Z 2009-04-14T19:50:48Z <p>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:</p> <pre><code>Me.Interval = Me.Interval - sw.ElapsedMilliseconds </code></pre> <p>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.</p> http://stackoverflow.com/questions/748876/proper-way-to-pause-a-system-timers-timer/1537188#1537188 0 Answer by Fredou for proper way to pause a system.timers.timer? Fredou 2009-10-08T11:22:49Z 2009-10-08T11:22:49Z <p>I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...</p> <pre><code>Public Class ImprovedTimer Inherits System.Timers.Timer Private _sw As System.Diagnostics.Stopwatch Private _paused As Boolean Private _originalInterval As Double Private _intervalRemaining As Double? Public ReadOnly Property IntervalRemaining() As Double? Get Return _intervalRemaining End Get End Property Public ReadOnly Property Paused() As Boolean Get Return _paused End Get End Property Public ReadOnly Property OriginalInterval() As Double Get Return _originalInterval End Get End Property Public Sub Pause() If Me.Enabled Then _intervalRemaining = Me.Interval - _sw.ElapsedMilliseconds _paused = True resetStopWatch(False, False) MyBase.Stop() End If End Sub Public Sub [Resume]() If _paused Then Me.Interval = If(_intervalRemaining.HasValue, _intervalRemaining.Value, _originalInterval) resetStopWatch(True, False) MyBase.Start() End If End Sub Public Overloads Property Enabled() As Boolean Get Return MyBase.Enabled End Get Set(ByVal value As Boolean) MyBase.Enabled = value resetStopWatch(MyBase.Enabled, True) End Set End Property Public Overloads Sub Start() resetStopWatch(True, True) MyBase.Start() End Sub Public Overloads Sub [Stop]() resetStopWatch(False, True) MyBase.Stop() End Sub Public Overloads Property Interval() As Double Get Return MyBase.Interval End Get Set(ByVal value As Double) MyBase.Interval = value If Not _paused Then _originalInterval = MyBase.Interval End If End Set End Property Private Sub resetStopWatch(ByVal startNew As Boolean, ByVal resetPause As Boolean) If _sw IsNot Nothing Then _sw.Stop() _sw = Nothing End If If resetPause Then If _paused Then Me.Interval = _originalInterval End If _paused = False _intervalRemaining = Nothing End If If startNew Then _sw = System.Diagnostics.Stopwatch.StartNew End If End Sub Private Sub ImprovedTimer_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed resetStopWatch(False, True) End Sub Private Sub ImprovedTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Me.Elapsed resetStopWatch(Me.AutoReset, True) End Sub End Class </code></pre>