Timer

lothos12345

Junior Contributor
Joined
May 2, 2002
Messages
294
Location
Texas
I have a timer in my program and I wish to display the timers count down in a label box. Not quite sure how to do that. Any help with this question would be greatly appreciated.
 
Set the timer's interval to one second and update the label each time it fires. Record the number of times the timer fires, and when it reaches the interval of your choosing (number of times fired multiplied by one second) have it execute the event of your choosing. You could also do this with two timers, but I'm not one to waste resources. :)
 
Back
Top