I'm trying to develop a form that can delete a record, but I want to track all deletions. What I've been trying to do is run an append query to take the selected record in the form and append it to my delete_table, then it deletes the record out of the main_table. My two problems are:
-How do I select only the current record in the form to append to the delete_table. Right now it is taking all records from the form and appending them.
-How do I accept a comment from the user. I want a popup box that asks for a reason for the delete, then include that comment in the delete_table.
-How do I select only the current record in the form to append to the delete_table. Right now it is taking all records from the form and appending them.
-How do I accept a comment from the user. I want a popup box that asks for a reason for the delete, then include that comment in the delete_table.