J
Jean-Paul
I created a continuous form based upon a query
There is a true/false checkbox.
The checkbox is related to a field in a table.
When I check the box I want an update query to run.
The idea is that a date-field is emptied when the checkbox is checked.
What is the code to delete the content of a field?
I know how to change it into a new dat... but not how to empty it:
UPDATE [Adressen metaal] SET [Adressen metaal].Datum_bezoek = #1/1/2008#
WHERE ((([Adressen metaal].Bezoeken)=True));
There is a true/false checkbox.
The checkbox is related to a field in a table.
When I check the box I want an update query to run.
The idea is that a date-field is emptied when the checkbox is checked.
What is the code to delete the content of a field?
I know how to change it into a new dat... but not how to empty it:
UPDATE [Adressen metaal] SET [Adressen metaal].Datum_bezoek = #1/1/2008#
WHERE ((([Adressen metaal].Bezoeken)=True));