12-11-2009, 11:33 AM
(12-11-2009, 09:10 AM)dunlop03 Wrote: Just use this :
Just use this (radiobuttons) :
Code:If RadioButton1.Checked = True Then
RadioButton2.Checked = False
RadioButton3.Checked = False
ElseIf RadioButton2.Checked = True Then
RadioButton1.Checked = False
RadioButton3.Checked = False
ElseIf RadioButton3.Checked = True Then
RadioButton1.Checked = False
RadioButton2.Checked = False
End If
yes this is the right answer but , you wanted it for checkbox so replace RadioButton1 with CheckBox1 and etc ..
radio buttons adn checkboxes are 2 different controls