How to make two groups of radio buttons to work independently?

G

Guest

I have windows form which contains six radio buttons. I need to split these
radio buttons into two independent groups (4 + 2) so they can operate
independently.
I mean selection in one group doesn't affect other and vice verse.

I know that I can achieve this by using group controls and placing radio
buttons inside group control.

However I don't want to use group controls in my form. So my question: is
there other way to make two groups of radio buttons to work independently,
without usage of group controls?

Thanks
 
N

Norman Yuan

If you do not want to use Group control because of not wanting to show its
visible border, you can use Panel control instead.
 
F

Francisco Padron

You group radio buttons by drawing them inside a container such as a Panel
control, a GroupBox control, or a form. All radio buttons that are added
directly to a form become one group. To add separate groups, you need to
place them inside panels or group boxes.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top