Click here to Skip to main content
15,886,840 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

How can i call the timer_tick event parallely when the timer control starts.

This is windows application(c#.3.0).

Regards,
nagaraju.n
Posted
Updated 27-Dec-10 1:09am
v2

1 solution

You're not supposed to call the timer tick event manually. What you *could* do is put the code in that's currently in the tick event handler into it's own method, and then you can call that method from the timer tick event handler and *anywhere* else in your form.

That's the way I'd do it.

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900