What happen when use 2 timer on a form.
-
Hi everybody. I have a problem, really need some helps. I have a usercontrol1(It's using Timer.Tick of System.Windows.Forms.Timer with an Interval to redraw something follow the Interval). I have a form. I added 2 usercontrol1 name: usercontrol1a and usercontrol1b, interval of usercontrol1a = 60ms, inter of usercontrol1b = 1000ms. on usercontrola I draw something, on usercontrol1b I also draw something. My problem is I want to know what happen while drawing usercontrolb come to the cycle draw of usercontrol1a.
-
Hi everybody. I have a problem, really need some helps. I have a usercontrol1(It's using Timer.Tick of System.Windows.Forms.Timer with an Interval to redraw something follow the Interval). I have a form. I added 2 usercontrol1 name: usercontrol1a and usercontrol1b, interval of usercontrol1a = 60ms, inter of usercontrol1b = 1000ms. on usercontrola I draw something, on usercontrol1b I also draw something. My problem is I want to know what happen while drawing usercontrolb come to the cycle draw of usercontrol1a.
Nothing untoward will happen as long as you aren't sharing state between the two user controls.