Reset Option group selection

dealwi8me

Registered User.
Local time
Today, 19:48
Joined
Jan 5, 2005
Messages
187
I have a form full of radiobuttons in groups.

They just informed me that they need to be able to uncheck a radion button without selecting another one from the group. (be able to reset their choice)

Is this possible with radio option group?

Thank you in advance.
 
Sure; set the value of the frame to 0 or Null.
 
you mean the default value?

I did that but if i checked the radio button and then try to uncheck it nothing happens.
 
No, you need to assign the value of the fram to NUll thru either a "reset" button or you could have the users click on the frame itself and use code like this:

Private Sub YourFrame_Click()
Me.YourFrame = Null
End Sub
 

Users who are viewing this thread

Back
Top Bottom