R ruchijigs New member Local time Today, 11:26 Joined Feb 2, 2006 Messages 6 Feb 2, 2006 #1 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!
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!
Mile-O Back once again... Local time Today, 19:26 Joined Dec 10, 2002 Messages 11,316 Feb 2, 2006 #2 Put a button on the form and use it's on click event to set the option group to Null.
R ruchijigs New member Local time Today, 11:26 Joined Feb 2, 2006 Messages 6 Feb 2, 2006 #3 I don't know how to do that. Can you explain?
Mile-O Back once again... Local time Today, 19:26 Joined Dec 10, 2002 Messages 11,316 Feb 2, 2006 #4 Put command button on your form; Select comman button's properties; Find the OnClick event; Click the button with the ellipsis at the end; Select 'Code Builder' Between Private Sub... and End Sub, put Me.YourOptionGroup = Null Replace YourOptionGroup with the name of your option group; Close and save the module; Close and save the form; Test it. Last edited: Feb 2, 2006
Put command button on your form; Select comman button's properties; Find the OnClick event; Click the button with the ellipsis at the end; Select 'Code Builder' Between Private Sub... and End Sub, put Me.YourOptionGroup = Null Replace YourOptionGroup with the name of your option group; Close and save the module; Close and save the form; Test it.