I'm developing a program that contains more than 10 threads running ... there was a need to have two timers, one to block and one to release a process, so I'm using the WinForms timerControl ...
which initially are: timer.Enable = false / timer.Interval = 100;
at the right time, I put them this way: timer.Interval = 60000 (1min) /timer.Enable = true
;
But they never get active .... I already tried to use timer1.Start ()
together, but it did not work ...
Anyone know if this is because of the threads or not ... I already searched the net but did not find anything like it