I am working on a form and I need to have a check box be able to check off if a check box to the right of it is checked off, but I am not looking for the vice versus effect. Please help step-by-step.
Thanks
Thanks
Private Sub chkRight_Click() If chkRight.Value = 0 Then 'right-checkbox is off chkLeft.Value = 0 'then check-off the left End If End Sub
Comment