option button ?

  • Thread starter Thread starter Dan
  • Start date Start date
D

Dan

I added a option button from the control toolbox. Dumb question. How do I get
the button to click off when I deselct it? Right now when I select it I can't
deselect it. Thanks in advance. Dan
 
Sounds like you are still in design mode. On the Control Toolbox toolbar is
a button with a pencil/triangle/ruler, click this button to toggle design
mode off and see if that doesn't correct the problem
 
You have to have at least one other option button to toggle on/off, which
makes sense as option buttons are used to select mutually exclusive
selections. Try a check box instead.
 
If I understand what you are trying to do, then that is not how an
OptionButton works. There needs to be two or more OptionButtons (in a group)
in order to use them... click one and all other OptionButtons in the group
are unselected... that is, only one OptionButton in a group can be selected
at a time. It sounds like you want a CheckBox, not an OptionButton.

Rick
 
I will try the checkbox. I am just trying to work off the linked cell
(True/False) output to do another action. Thanks.
 
The checkbox worked. Thanks.

Rick Rothstein (MVP - VB) said:
If I understand what you are trying to do, then that is not how an
OptionButton works. There needs to be two or more OptionButtons (in a group)
in order to use them... click one and all other OptionButtons in the group
are unselected... that is, only one OptionButton in a group can be selected
at a time. It sounds like you want a CheckBox, not an OptionButton.

Rick
 

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

Back
Top