checked multiple radiobutton

alan1968

Active Member
Licensed User
Longtime User
hi,
I would like to checked multiple radiobutton how as soon as I select a button turns off the other

thx!

my code
b=x.CharAt(7)
If b="1" Then Input_1.Checked=True Else Input_1.Checked=False
b=x.CharAt(6)
If b="1" Then Input_2.Checked=True Else Input_2.Checked=False
 
Top