intercept delete action

  • Thread starter Thread starter QB
  • Start date Start date
Q

QB

Is there a way to intercept and thus custom automate the delete command from
the built-in toolbar (like in word where you can create vba function that
replace the built-in ones)?

Thank you,

QB
 
Use a combination of these events of the form:
- Delete, for anything that requires you to examine and respond to the
record(s) being deleted.

- BeforeDelConfirm, for a custom confirmation message

- AfterDelConfirm, for actions you need to take if the deletion succeeded.
 
Back
Top