How to have none of the radiobuttons checked = true

  • Thread starter Thread starter Fia
  • Start date Start date
F

Fia

Hi
I have four radiobuttons with checked = False, but when I start the program
the first radiobutton has the checked=true. What can I do so this doesn't
happen.

Please help
Fia
 
I have four radiobuttons with checked = False, but when I start the
program the first radiobutton has the checked=true. What can I do so this
doesn't happen.

Change the tab order of your form so that the radio buttons do not get
focus. The moment one gets focus, it'll check itself.
 
Hi
I have four radiobuttons with checked = False, but when I start the program
the first radiobutton has the checked=true. What can I do so this doesn't
happen.

Please help
Fia

Usually a group of radio buttons is used to select at least one option
from a list of mutually exclusive options. If you need a set of
options and you wish to select zero or more options, then you should
be using CheckBoxes instead.

Chris
 
Back
Top