I have a WinForms application (VS 2008, .NET 3.5) that has a form with two different group boxes, and inside of each group box are different sets of radio buttons. When I r
You need to give both radio groups different group names. That may not be your issue, but it's a possible reason.
I'm curious as to why you would want radios to default to having no value at all. Radios represent boolean values - True or False - there is no other valid state.
I've had this issue, too. I just manually set all RadioButton objects to .Checked = False in the Form_Shown event. Note that it has to be after the Form_Load event or it won't work, and the RadioButton will be set with a default.
Why? I don't know. Perhaps a bug in VB.NET.