vote up 0 vote down star

If I have an instance of a System.Timers.Timer that has a long interval - say 1 minute, how can I find out if it is started without waiting for the Tick?

flag

68% accept rate

5 Answers

vote up 5 vote down check

System.Timer.Timer.Enabled should work, when you call "Start" it sets Enabled to TRUE, "Stop" sets it to FALSE.

Ron

link|flag
ah, I was curious about hte difference, thanks – George Mauer Sep 29 '08 at 20:54
vote up 1 vote down

The .Enabled property

http://msdn.microsoft.com/en-us/library/system.timers.timer.enabled.aspx

link|flag
vote up 1 vote down

If Timer.Enabled is true, your timer is running.

Calling Timer.Start sets Enabled to true.

Calling Timer.Stop sets Enabled to false.

If Timer.AutoReset is true, then Enabled will automatically be set to false the first time the timer expires.

link|flag
vote up 1 vote down

if (timer1.Enabled) { // Do Something }

link|flag
vote up 0 vote down

Check that timer is enabled?

link|flag
hrm... why did I get a downvote on this as its the same answer as the others. – John Nolan Sep 30 '08 at 11:18

Your Answer

Get an OpenID
or

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