Help -
05-18-2004
, 12:53 PM
I created a form that has two checkbox. I want to set the checkbox so
that if checkbox A is check then checkbox B become disable, vise
versa. Then if I uncheck checkbox A, checkbox B becomes active. I
don't know what code to write that when I uncheck checkbox A, checkbox
B becomes active.
Please HELP!!!!!!!!!!
This is the code I have so far.
Private Sub chkPaid_Click()
If chkPaid.Enabled = True Then
chkPartial_Paid.Visible = False
chkPartial_Paid.Locked = False
chkPaid.SetFocus
Else
chkPaid.Enabled = False
chkPartial_Paid.Visible = False
chkPartial_Paid.Locked = True |