12-28-2009, 06:28 PM
I'm not sure that code is neccasery
When i use radio buttons and for example i use radiobutton 1, than i change to radiobutton 2, number 1 disappear.
Sorry for bad explanation, and sorry if I am wrong.
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
When i use radio buttons and for example i use radiobutton 1, than i change to radiobutton 2, number 1 disappear.
Sorry for bad explanation, and sorry if I am wrong.