Hello I am trying to lock a check box when it is checked. So you can't un check it here is what i got. but its not seeming to work
Sub CheckBox1_Click()
If CheckBox1 = True Then
ActiveSheet.CheckBoxe1.Enabled = False
End If
End Sub
Hello I am trying to lock a check box when it is checked. So you can't un check it here is what i got. but its not seeming to work
Sub CheckBox1_Click()
If CheckBox1 = True Then
ActiveSheet.CheckBoxe1.Enabled = False
End If
End Sub
Before you can disable a control that has the focus, you need to set the focus on some other control (another check box, a text field, or something else)