option buttons

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
How can I make two separate rows with 5 option buttons work independently of
each other. Meaning, if I click on one of the option buttons in the bottom
row, I do not want the top row button to become unchecked. Thank you.
 
If you mean radio buttons in a dialog box, then you can only ever have one
button in a group selected. If you want to select more than one option then
you would need to use tick boxes instead.
Genine
 
ruben2091 said:
Hello,
How can I make two separate rows with 5 option buttons work
independently of each other. Meaning, if I click on one of the option
buttons in the bottom row, I do not want the top row button to become
unchecked. Thank you.

In the Properties dialog of the option button, enter something in the
GroupName property. All the buttons in one row should have the same
GroupName value, all the buttons in the next row should have another value,
and so on. All the buttons that share one value will act as one group, and
will be independent of any buttons that have a different value.
 
Back
Top