Restarting the Timer Object

  • Thread starter Thread starter Willem
  • Start date Start date
W

Willem

Hi Guys,

Does anyone know if the Timer Object (in C#) can be reset?

I know there's the autoreset function in the .net framework, but that method
seems to be excluded in CF.

thx in advance!

Willem
 
What about ....


myTimer.Enabled = false;
myTimer.Enabled = true;



Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top