Question to create two types radio buttons

hemant4

Member
Joined
Mar 30, 2010
Messages
6
Programming Experience
Beginner
i want to create two type radio button one for sex(male/female) and another for marital status (married /un-married) how it possible.
when i create four radio button for this two type of control,then i got only one type control of all radio button please help me.
 
They must be grouped separately -> be located it different containers or they act as one group. You can place the gender ones in a panel with no border style so they can't see the panel.
 
Only one radio button in a group can be True. You need to use a container such as a GroupBox or a Panel. You must select the container first and THEN place the radio buttons inside, or they will be part of the form instead of part of the container.
 
Back
Top