Hi
I have a timer which runs throughout my app, but when I close the software it remain running so the software never fully exits. I use the following code for the timer
Dim endTime As Double
endTime = Timer + 600
Do While Timer < endTime
Call set_load_buttons
DoEvents
Loop
in the unload event I added frm_toolbar.timer1.enabled
= false
but this doesn't appear to work, any ideas???
Start Free Trial