I Have a timer on a main form that's disabled and I want to enable it from another form, is that possible! AND HOW DO i DO IT!
Printable View
I Have a timer on a main form that's disabled and I want to enable it from another form, is that possible! AND HOW DO i DO IT!
Code:Formname.timername.enabled = true
Have u ever tried it before, cuz it's not working
did you use your form name and timer name ?
If the interval isn't set be sure to set it when you
enable it.
Form1.Timer1.Enabled = True
Form1.Timer1.Interval = 60000
Thanx, I got it to work!!!