I have a frame, and in this frame there are three check boxes (A, B and C). Only one check box can be check at any one time. If A is checked, and I clicked on B, then B is checked, but A is unchecked.
Initially, none of the boxes are checked, but as soon as one is check (say A), I cannot uncheck this box. How do I uncheck this box using VBA code ?
////////////////////////////////////////////
Private Sub Frame_1_Click()
If Frame_1.Value = 1 Then
Frame_1.Value = 0
Else
If Frame_1.Value = 0 Then
Frame_1.Value = 1
End If
End If
End Sub
Initially, none of the boxes are checked, but as soon as one is check (say A), I cannot uncheck this box. How do I uncheck this box using VBA code ?
////////////////////////////////////////////
Private Sub Frame_1_Click()
If Frame_1.Value = 1 Then
Frame_1.Value = 0
Else
If Frame_1.Value = 0 Then
Frame_1.Value = 1
End If
End If
End Sub