how to create a check box

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

Guest

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.
 
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.
 
Back
Top