serialport datareceived activating a timer - Experts Exchange
The Windows. Forms. Timer however is very restrictive and only works on the thread that called it. You could have used a different kind of timer (System. Timers. Timer, or System. Threading. Timer) but those also fire their Tick (Elapsed) events on a different thread for greater precision, so depending on exactly what you needed to do when the timer . . .
more
|