set check box to false

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

Guest

I NEED TO RESET CHECK BOX TO FALSE EVERY TIME A FORM IS OPENED FOR EVERY RECOED
 
Please DON'T type in all caps. It is hard to read, is bad manners, and is
considered SHOUTING.

In the Open event of the form run an update query that resets the field
feeding the checkbox to False.

strSQL = "UPDATE Table1 SET Table1.CheckBoxField = False;"
CurrentDb.Execute strSQL, dbFailOnError

--
Wayne Morgan
Microsoft Access MVP


tinakenney said:
I NEED TO RESET CHECK BOX TO FALSE EVERY TIME A FORM IS OPENED FOR EVERY
RECOED
 
You also need to find and use your shift key properly. ALL THAT SHOUTING IS
CONSIDERED RUDE!

Open your form in design mode and set the data source for the checkbox to
FALSE.

HTH
--
-Larry-
--

tinakenney said:
I NEED TO RESET CHECK BOX TO FALSE EVERY TIME A FORM IS OPENED FOR EVERY
RECOED
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top