I have two radio buttons grouped together in a group box. I set the "Checked" property of the first one to "True" in the properties box, but the program does not see any radio button checked.
I hard coded:radiobutton.checked = true in the form load event, but the program does not see that any button is checked.
I looked at the windows generated code and found: me.radiobutton.checked = true.
How can I get the program to recognize that the button is checked?