J jlocke Registered User. Local time Yesterday, 21:02 Joined Jul 23, 2002 Messages 31 Jun 30, 2003 #1 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?
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?
J jlocke Registered User. Local time Yesterday, 21:02 Joined Jul 23, 2002 Messages 31 Jun 30, 2003 #2 Found it i found a way.. but open to ideas. I selected the "Allow deletions" "NO" option in the forms properties...
Found it i found a way.. but open to ideas. I selected the "Allow deletions" "NO" option in the forms properties...
IgorB Registered User. Local time Today, 02:02 Joined Jun 4, 2003 Messages 183 Jun 30, 2003 #3 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
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