|
8
|
|
|
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it... Public Class ImprovedTimerPrivate _sw As System.Diagnostics.StopwatchPrivate _paused As BooleanPrivate _originalInterval As DoublePrivate _intervalRemaining As Double?Public ReadOnly Property IntervalRemaining() As Double? Return _intervalRemaining End GetPublic ReadOnly Property Paused() As Boolean Return _paused End GetPublic ReadOnly Property OriginalInterval() As Double Return _originalInterval End GetPublic Sub Pause() If Me.Enabled Then _intervalRemaining = Me.Interval - _sw.ElapsedMilliseconds _paused = True resetStopWatch(False, False) MyBase.Stop() End IfPublic Sub [Resume]() If _paused Then Me.Interval = If(_intervalRemaining.HasValue, _intervalRemaining.Value, _originalInterval) resetStopWatch(True, False) MyBase.Start() End IfPublic Overloads Property Enabled() As Boolean Return MyBase.Enabled End Get Set(ByVal value As Boolean) MyBase.Enabled = value resetStopWatch(MyBase.Enabled, True) End SetPublic Overloads Sub Start() resetStopWatch(True, True) MyBase.Start()Public Overloads Sub [Stop]() resetStopWatch(False, True) MyBase.Stop()Public Overloads Property Interval() As Double Return MyBase.Interval End Get Set(ByVal value As Double) MyBase.Interval = value If Not _paused Then _originalInterval = MyBase.Interval End If End SetPrivate 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 IfPrivate Sub ImprovedTimer_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed resetStopWatch(False, True)Private Sub ImprovedTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Me.Elapsed resetStopWatch(Me.AutoReset, True)
|
|
|
|
7
|
|
|
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?
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...
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 AndAlso Not _paused 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
|
|
|
|
6
|
|
|
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?
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...
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 AndAlso Not _paused Then
_intervalRemaining = Me.Interval - _sw.ElapsedMilliseconds
_paused = True
Me.Stop(resetStopWatch(False, False)
MyBase.Stop()
End If
End Sub
Public Sub [Resume]()
If _paused Then
Me.Interval = If(_intervalRemaining.HasValue, _intervalRemaining
Me.Start(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)
resetStopWatch(value)
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
If _paused Then
Me.Interval = _originalInterval
_paused = False
_intervalRemaining = 0
End If
resetStopWatch(Me.AutoReset, True)
End Sub
End Class
|
|
|
|
5
|
|
|
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?
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...
Public Class ImprovedTimer
Inherits System.Timers.Timer
Private _sw As Stopwatch
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 AndAlso Not _paused Then
_intervalRemaining = Me.Interval - _sw.ElapsedMilliseconds
_paused = True
Me.Stop()
End If
End Sub
Public Sub [Resume]()
If _paused Then
Me.Interval = _intervalRemaining
Me.Start()
End If
End Sub
Public Overloads Property Enabled() As Boolean
Get
Return MyBase.Enabled
End Get
Set(ByVal value As Boolean)
resetStopWatch(value)
MyBase.Enabled = value
End Set
End Property
Public Overloads Sub Start()
resetStopWatch(True)
MyBase.Start()
End Sub
Public Overloads Sub [Stop]()
resetStopWatch(False)
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 = value
MyBase.Interval
End If
MyBase.Interval = value
End Set
End Property
Private Sub resetStopWatch(ByVal startNew As Boolean)
If _sw IsNot Nothing Then
_sw.Stop()
_sw = Nothing
End If
If startNew Then
_sw = Stopwatch.StartNew
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)
End Sub
Private Sub ImprovedTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Me.Elapsed
If _paused Then
Me.Interval = _originalInterval
_paused = False
_intervalRemaining = 0
End If
resetStopWatch(Me.AutoReset)
End Sub
End Class
|
|
|
|
4
|
|
|
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?
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...
Public Class ImprovedTimer
Inherits System.Timers.Timer
Private _sw As Stopwatch
Private _paused As Boolean
Private _originalInterval As Long
Double
Private _intervalRemaining As Long
Double
Public ReadOnly Property IntervalRemaining() As Long
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 Long
Double
Get
Return _originalInterval
End Get
End Property
Public Sub Pause()
If Me.Enabled AndAlso Not _paused Then
_intervalRemaining = Me.Interval - _sw.ElapsedMilliseconds
_paused = True
Me.Stop()
End If
End Sub
Public Sub [Resume]()
If _paused Then
Me.Interval = _intervalRemaining
Me.Start()
End If
End Sub
Public Overloads Property Enabled() As Boolean
Get
Return MyBase.Enabled
End Get
Set(ByVal value As Boolean)
resetStopWatch(value)
MyBase.Enabled = value
End Set
End Property
Public Overloads Sub Start()
resetStopWatch(True)
MyBase.Start()
End Sub
Public Overloads Sub [Stop]()
resetStopWatch(False)
MyBase.Stop()
End Sub
Public Overloads Property Interval() As Double
Get
Return MyBase.Interval
End Get
Set(ByVal value As Double)
If Not _paused Then
_originalInterval = value
End If
MyBase.Interval = value
End Set
End Property
Private Sub resetStopWatch(ByVal startNew As Boolean)
If _sw IsNot Nothing Then
_sw.Stop()
_sw = Nothing
End If
If startNew Then
_sw = Stopwatch.StartNew
End If
End Sub
Private Sub ImprovedTimer_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed
resetStopWatch(False)
End Sub
Private Sub ImprovedTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Me.Elapsed
If _paused Then
Me.Interval = _originalInterval
_paused = False
_intervalRemaining = 0
End If
resetStopWatch(Me.AutoReset)
End Sub
End Class
|
|
|
|
3
|
|
|
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?
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it...
Public Class ImprovedTimer
Inherits System.Timers.Timer
Private _sw As Stopwatch
Private _paused As Boolean
Private _Interval originalInterval As Double
Long
Private _intervalRemaining As Long
Public ReadOnly Property IntervalRemaining() As Long
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 Long
Get
Return _originalInterval
End Get
End Property
Public Sub Pause()
If Me.Enabled Then
_paused = True
Me.Interval intervalRemaining = Me.Interval - _sw.ElapsedMilliseconds
_paused = True
Me.Stop()
End If
End Sub
Public Sub [Resume]()
If _paused Then
Me.Interval = _intervalRemaining
Me.Start()
End If
End Sub
Public Overloads Property Enabled() As Boolean
Get
Return MyBase.Enabled
End Get
Set(ByVal value As Boolean)
resetStopWatch(value)
MyBase.Enabled = value
End Set
End Property
Public Overloads Sub Start()
resetStopWatch(True)
MyBase.Start()
End Sub
Public Overloads Sub [Stop]()
resetStopWatch(False)
MyBase.Stop()
End Sub
Private Sub resetStopWatch(ByVal startNew As Boolean)
If sw IsNot Nothing Then
sw.Stop()
sw = Nothing
End If
If startNew Then
sw = Stopwatch.StartNew
End If
End Sub
Public Overloads Property Interval() As Double
Get
Return MyBase.Interval
End Get
Set(ByVal value As Double)
If Not _paused Then
_Interval originalInterval = value
End If
MyBase.Interval = value
End Set
End Property
Private Sub resetStopWatch(ByVal startNew As Boolean)
If _sw IsNot Nothing Then
_sw.Stop()
_sw = Nothing
End If
If startNew Then
_sw = Stopwatch.StartNew
End If
End Sub
Private Sub ImprovedTimer_Disposed(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Disposed
resetStopWatch(False)
End Sub
Private Sub ImprovedTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Me.Elapsed
If _paused Then
Me.Interval = _originalInterval
_paused = False
Me.Interval = _Interval
intervalRemaining = 0
End If
resetStopWatch(Me.AutoReset)
End Sub
End Class
|
|
|
|
2
|
|
|
so I got that for now, I'm sure it's not bulletproof so tell me what is wrong with it... Public Class ImprovedTimerPrivate sw As StopwatchPrivate _paused As BooleanPrivate _Interval As DoublePublic Sub Pause() If Me.Enabled Then _paused = True Me.Interval = Me.Interval - sw.ElapsedMilliseconds Me.Stop() End IfPublic Sub [Resume]() If _paused Then Me.Start() End IfPublic Overloads Property Enabled() As Boolean Return MyBase.Enabled End Get Set(ByVal value As Boolean) resetStopWatch(value) MyBase.Enabled = value End SetPublic Overloads Sub Start() resetStopWatch(True) MyBase.Start()Public Overloads Sub [Stop]() resetStopWatch(False) MyBase.Stop()Private Sub resetStopWatch(ByVal startNew As Boolean) If sw IsNot Nothing Then sw.Stop() sw = Nothing End If If startNew Then sw = Stopwatch.StartNew End IfPublic Overloads Property Interval() As Double Return MyBase.Interval End Get Set(ByVal value As Double) If Not _paused Then _Interval = value End If MyBase.Interval = value End SetPrivate Sub ImprovedTimer_Elapsed(ByVal sender As Object, ByVal e As System.Timers.ElapsedEventArgs) Handles Me.Elapsed If _paused Then _paused = False Me.Interval = _Interval End If resetStopWatch(Me.AutoReset)
|
|
|
|
1
|
|
|
proper way to pause a system.timers.timer?
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?
|
|
|