Clearing optionbuttons

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

What is the easiest way of clearing option buttons when
one has already been clicked by a user (when they didn't
mean to). At the moment on my form, once a button has been
clicked there is no way of unclicking.

Thanks

Richard
 
Richard,

Option buttons are part of a group, so the accepted way to clear one is to
click another.

They can be cleared with

Me.OptionButton1.Value = false

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)
 
How would you expect the user to signal this situation. Clicking a clicked
optionbutton does not fire an event to the best of my knowledge. I think
you would need to add yet another control, perhaps a button that would set
all the option buttons in the group to false.
 

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