If there is a timer on a form, and the form is unloaded does the timer that is enabled = true become enabled = false?
Printable View
If there is a timer on a form, and the form is unloaded does the timer that is enabled = true become enabled = false?
If the form is unloaded (not hidden with MyForm.Hide or with MyForm.Visible), all the controls on the form (including this timer) are killed. :rolleyes:
So, not only there is no Enabled property, there isn't even a timer anymore after the form is unloaded.