using Timers
Hi all,I am planning to use timers in my application as i want to periodically do a job.I want my job to be executed every 5 minutes but when using the timer the job do not execute at all.this is bcoz...
View Articleusing Timers
Hi Dpkas,you can try threading to run your Process. or you can put condition in Tick Event like belowif(bRunProcess == true){ bRunProcess = false; /// your Process will be here ;...
View Articleusing Timers
I hav a question again..As i mentioned i hav to get an event periodically executed and so i am using thread/timers.I want my Tick_event of the timer be executed completely b4 the Tick_Event is fired...
View Articleusing Timers
I used thread.timers n it helped.I also used method 'thread.join()' to make sure that my thread(i.e request n response block) runs completely b4 other request is made.
View Article