M
Michael Singmin
Hello Group,
I use this simple code for a countdown timer where [A1] holds the
initial secs.
t = [A1]
For s = t To 0 Step -1
[A1] = s
Application.Wait Now + TimeValue("00:00:01")
Next
If I want to abort this routine, I use the inelegant Ctrl Break.
I created a form button with code
[A1]=0 but this button never interupts the timer.
I have tried inserting Doevents but no effect.
Any other ideas ?
Michael Singmin
I use this simple code for a countdown timer where [A1] holds the
initial secs.
t = [A1]
For s = t To 0 Step -1
[A1] = s
Application.Wait Now + TimeValue("00:00:01")
Next
If I want to abort this routine, I use the inelegant Ctrl Break.
I created a form button with code
[A1]=0 but this button never interupts the timer.
I have tried inserting Doevents but no effect.
Any other ideas ?
Michael Singmin