Radio buttons - already part of the same group?!

  • Thread starter Thread starter Rob Meade
  • Start date Start date
R

Rob Meade

Hi all,

I have added 4 radio buttons to a form, when I run the form it only allows
me to select one of them, as if they are already assigned to some kind of
group by default.

Can someone tell me how I configure the radio buttons' properties to tell it
which group they belong to, ie..

Question 1 - Yes / No
Question 2 - Yes / No

I would want 2 groups there, and a Yes/No option for each one...

At the moment I have effectively 1 group with four options.

Any help appreciated.

Regards

Rob
 
They're grouped through the parent. So try "grouping" the RadioButton's with
GroupBox's or Panel's. So place two RadioButton's into one Panel and two
into another.
 
...
They're grouped through the parent. So try "grouping" the RadioButton's with
GroupBox's or Panel's. So place two RadioButton's into one Panel and two
into another.

Aha, many thanks, so in my current predicament then, they are grouped
together by the form itself?

Regards

Rob
 
Yep. Because they are all parented to the form they will all be mutually
exclusive to each other.
 
Back
Top