Option button unclick

ruchijigs

New member
Local time
Today, 11:26
Joined
Feb 2, 2006
Messages
6
Hello,

Does anyone know how to unclick an option button on a form after a selection has been made?

One option is to go to the form and delete it there. But I am looking for a more effective way.

Thanks!
 
Put a button on the form and use it's on click event to set the option group to Null.
 
I don't know how to do that. Can you explain?
 
  1. Put command button on your form;
  2. Select comman button's properties;
  3. Find the OnClick event;
  4. Click the button with the ellipsis at the end;
  5. Select 'Code Builder'
  6. Between Private Sub... and End Sub, put Me.YourOptionGroup = Null
  7. Replace YourOptionGroup with the name of your option group;
  8. Close and save the module;
  9. Close and save the form;
  10. Test it.
 
Last edited:

Users who are viewing this thread

Back
Top Bottom