Timer won't start in my c# projectprivate void Form1_Load(object sender, EventArgs e) { timer1.Start(); timer2.Start(); timer3.Start(); timer4.Start(); timer5.Start(); } i don't understand why ???
Originally Posted by lindra private void Form1_Load(object sender, EventArgs e) { timer1.Start(); timer2.Start(); timer3.Start(); timer4.Start(); timer5.Start(); } i don't understand why ??? Haha, I tried the same and I didn't work. Try this: Ehm, I forgot. I'll try to find my old C# project and give you what I tried. - - - Updated - - - Originally Posted by lindra private void Form1_Load(object sender, EventArgs e) { timer1.Start(); timer2.Start(); timer3.Start(); timer4.Start(); timer5.Start(); } i don't understand why ??? This worked fine for me: External_Overlay frm = new External_Overlay(); public Form1() { timer1.Start(); timer2.Start(); timer3.Start(); timer4.Start(); timer5.Start(); }