Quote Originally Posted by pidyok View Post
dude, how do i stop the threaded timer??? thanks
You don't, check the documentation:
http://msdn.microsoft.com/en-us/libr...ing.timer.aspx

When a timer is no longer needed, use the Dispose method to free the resources held by the timer. Note that callbacks can occur after the Dispose method overload has been called, because the timer queues callbacks for execution by thread pool threads. You can use the Dispose(WaitHandle) method overload to wait until all callbacks have completed.