I\'m struggling with making button first click to start a timer, second click to stop the timer and etc.
Can anybody help me? :)
private void button7_Cli
Assuming you're using the System.Timers.Timer class, simply use:
private void button8_click(object sender, EventArgs e) { timer1.Stop(); }
See the MSDN page for more handy methods!!