set check box to false

T

tinakenney

I NEED TO RESET CHECK BOX TO FALSE EVERY TIME A FORM IS OPENED FOR EVERY RECOED
 
W

Wayne Morgan

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
 

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

Top