You should really use Option Buttons. They do that withouth the code, but still:
VB Code:
Private Sub Checkbox_Click(Index As Integer) Select Case (Index) Case 0: If Checkbox(0).Value = vbChecked Then Checkbox(1).Value = vbUnchecked Case 1: If Checkbox(1).Value = vbChecked Then Checkbox(0).Value = vbUnchecked End Select End Sub




Reply With Quote