|
-
Aug 22nd, 2002, 01:42 PM
#1
Thread Starter
Addicted Member
Enabling / Disabling a timer via another form
Sorry im in a bit of a hurry so i don't have time to find this out myself, but if i have a timer on a form (lets say form1) then how can i make a radio button on another form turn it on or off? (form2)
is there a way i can modify
timer1.enabled
or a property that allows it to be changed from any form?
-
Aug 22nd, 2002, 01:44 PM
#2
VB Code:
Private Sub Option1_Click()
Form1.Timer1.Enabled = False
End Sub
-
Aug 22nd, 2002, 01:44 PM
#3
Re: Enabling / Disabling a timer via another form
Originally posted by Jack Daniels
Sorry im in a bit of a hurry so i don't have time to find this out myself, but if i have a timer on a form (lets say form1) then how can i make a radio button on another form turn it on or off? (form2)
is there a way i can modify
timer1.enabled
or a property that allows it to be changed from any form?
form1.timer1.enabled
-
Aug 22nd, 2002, 01:48 PM
#4
Thread Starter
Addicted Member
opps, thanks.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|