removing the delete option for end users

jlocke

Registered User.
Local time
Yesterday, 21:02
Joined
Jul 23, 2002
Messages
31
I'm looking for a way to disable the delete record command from my users, my end users are using a run-time version of access. Any suggestions?
 
Found it

i found a way.. but open to ideas. I selected the "Allow deletions" "NO" option in the forms properties...
 
Create a command button "Delete Record" and include VBA code
behind it which prompt input box.
If inputbox equal password then delete record.
But first I agree you should set manually or programatically on form_load event:
Me.AllowDeletion=False
 

Users who are viewing this thread

Back
Top Bottom