Sub TrackingStart()
...
' end
' range
Set pgRngTask = Nothing
' protection
ProtectWS True
' application
Application.EnableEvents = True
End Sub
-----
-----
[pre][code]Sub TrackingStop()
...
' error
On Error GoTo 0
' protection
ProtectWS True
' application
Application.EnableEvents = True
End Sub
-----
-----
[pre][code]Sub TrackingReset()
...
' range
Set pgRngTask = Nothing
' protection
ProtectWS True
' application
Application.EnableEvents = True
End Sub