You can use a RadioListBox control instead, so you don't need to traverse the list but evaluate the SelectedIndex property:
http://www.codeproject.com
Main Topics
Browse All TopicsHi X-perts,
I need to list all the radiobuttons inside of a groupbox and return a tag value of the checked one.
How can I do this?
I cannot use
For Each ctl As Control In Me.GroupBox1
because GroupBox in not a collection type. I don't want to loop through ALL controls in the form, but only through a GroupBox.
Please, advise.
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
You can use a RadioListBox control instead, so you don't need to traverse the list but evaluate the SelectedIndex property:
http://www.codeproject.com
If you have VB.Net 2008 then you can use the Controls.OfType() to shorten the code slightly:
(still the same basic approach as __Vortex__)
For Each rb As RadioButton In Me.GroupBox1.Controls.OfTy
If rb.Checked Then
Debug.Print(rb.Name & ": " & rb.Text)
Exit For
End If
Next
Or you could use LINQ to get the selected Item:
Dim selected = (From rb In Me.GroupBox1.Controls.OfTy
If Not IsNothing(selected) Then
MessageBox.Show(selected.N
Else
MessageBox.Show("No Selection")
End If
Business Accounts
Answer for Membership
by: __Vortex__Posted on 2009-09-07 at 03:25:41ID: 25274001
Hi,
You can iterate though controls on containers like a group box:
For Each ctrl As Windows.Forms.Control In Me.GroupBox1.Controls
If TypeOf ctrl Is Windows.Forms.RadioButton Then
'you code goes here
End If
Next
V