Prevent Record Delete

  • Thread starter Thread starter PAFS
  • Start date Start date
How do I prevent users from deleting records?

Set the form's "AllowDeletions" property to "No".
 
How do I prevent users from deleting records?

Jim

Implement Access Security on your database, and only give delete
rights to the superusers who can.

A partial solution would be to present users only with a Form to
interact with the data in the tables, and set the Form's AllowDeletes
property to False. This won't prevent a mildly knowledgable user from
going around the form to table datasheet view, however.
 
Back
Top