options group

  • Thread starter Thread starter mk
  • Start date Start date
M

mk

I am creating in option group with yes=1 and no=2. I
noticed that after you select one of these on the form -
you can not go back to having neither checked again. How
do I change this?
Thank you.
 
I am creating in option group with yes=1 and no=2. I
noticed that after you select one of these on the form -
you can not go back to having neither checked again. How
do I change this?
Thank you.
you add a third: none=0 or reset=3
 
Another option would be to use the doubleclick event of the frame itself to
set the frame control to null:

Private Sub Frame2_DblClick(Cancel As Integer)
Me.Frame2 = Null
End Sub

Or do the same with a command button.
 
.... or set it to 0, if you prefer to use 0 rather than Null to indicate
"no selection".
 
Back
Top