how to create a check box

S

smay

How do I create a check box on my data access page that will hide a reord if
checked? I dont want the record to be deleted but I dont want the record to
show on my page.
 
K

KARL DEWEY

Create a Yes/No field called Show in your table. Include criteria for Show
in your query that is the record source. Run an update to mark all records
as Show. Add an Event/macro to refresh after change of the checkbox.
 
Top