Hello,
I have a GUI with a timer... but when I put too many lines of code inside the timer method, the GUI lags.
private void timer_tick(object sender, EventArgs e) { ... }
How could I resolve this problem? I know there are 3 types of timer... Do I use the correct one?
Any help is appreciated.