-
Radio Button Grouping
Hi... I am learning Visual C++ and I cant do something. I am using several radio button. I heard that you set the group property f the first radio button of each group. And that you have to create them with the order you want the grouped. So... I didnt create them with that order. How can I decide what group does a Radio Button belongs too!?!?!
Thank you :)
-
humm... I cant believe there is no way to regroup the radio buttons after putting them in a dialog!.....
come on! HELP :):confused:
-
In the dialog editor you can show the tab order by pressing Ctrl+D. Then you can rearrange the tab order so that the controls that should belong to a group come in order. Lastly, give the first of the radios the style Group (WS_GROUP).
You can even regroup them at runtime, but then it's harder.
-
Hey! Thank you very much again CornedBee! :)