i need to put a timer in place so when i click the start button it counts from 0-60 or 60-0 and when it hits 60 or 0 it stops does anyone have any ideas?
timer control for word count
Collapse
X
-
Originally posted by LjHarlemi need to put a timer in place so when i click the start button it counts from 0-60 or 60-0 and when it hits 60 or 0 it stops does anyone have any ideas?
i = 0
timer1.enabled= true
the timer should say something like
i=i+1
if i >60 then timer1.enabled= false
HTH
Comment