uncheck reset option

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an option box. Only 2 options not having it checked is also an option
(not checked) If you check somthing and then you don't want it checked other
than esc before save How do you uncheck it ?

Thanks
 
Assuming you are talking about a check box in the form, you can use this code
to uncheck it

Me.[CheckBoxName] = False
 
Yes it is a form... where am I putting the code?

SORRY If it wasn't clear...
Option box has 2 ck boxes with labels... stores number 1 or 2 in table
depending on which box is chosen. But if you check the box inadvertantly and
have already saved the record you cannot ck it again to uncheck it. I can
only do that with a check box. I know you can esc before save but otherwise
you have to go into the table to change it back to nothing.

Thanks!


Ofer Cohen said:
Assuming you are talking about a check box in the form, you can use this code
to uncheck it

Me.[CheckBoxName] = False

--
Good Luck
BS"D


LMV said:
u I have an option box. Only 2 options not having it checked is also an option
(not checked) If you check somthing and then you don't want it checked other
than esc before save How do you uncheck it ?

Thanks
 
Back
Top