Click here to Skip to main content
15,886,799 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to select one of my RadioButton from a GroupBox programatically (when the form is loaded).

It's a Form_Load event.
I'm executing a query and keeping it's record in a variable.
Now, I want to select the radio button corresponding to the value in the variable. (The value in the variable is the RadioButton's Name).

Any ideas?
Posted
Updated 11-Jan-18 2:24am

1 solution

as this...
VB
Dim varRbtnNm = "Radiobutton1"
select case(varRbtnNm)
case "Radiobutton1"
      Radiobutton1.checked = true
case "Radiobutton2"
      Radiobutton2.checked = true
end select

OR
VB
Dim varRbtnNm = "Radiobutton1"
DirectCast(Me.Controls.Find(varRbtnNm,true).GetValue(0),RadioButton).Checked=True

Happy Coding!
:)
 
Share this answer
 
Comments
Anaya Upadhyay 21-Dec-12 6:12am    
Thank you for your help.
The second one really did help.
Aarti Meswania 21-Dec-12 6:17am    
Welcome! :)
Glad to help you! :)

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900