Help,
I need to display radio buttons on a form. The data is from SQL
table: each row in each table is displayed as a radio button. I have
multiple SQL tables so I understand I need to put them each in a
GroupBox. All the examples I saw from the books or from the web show
me how to add static radio buttons at design, or dynamically at run
time but with fixed radio buttons (like from an array).
I need to create radio buttons based on the data I have from my SQL
table. This data could be altered by the users. Therefore, if I
create fixed radio buttons, every time the user add a new row or
delete a row, that means I have to go to change it in design or in
code. It's not a practical practice.
Anybody has any examples or any advices? Thank you.