I have Form with a Timer1.
I would like to set the Tick event of that timer1 to a timer2_Tick function that is already signed to another timer2.
How can I Set the 2 timers, to 1 event?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You do it the same way you assign any other event handler, you just happen to choose the same method for both timers.
If you’re using the designer, instead of attaching the events through code, then you can just go to the “Properties” tab, select events, and enter the same name for the
Tickevent for both timers.