I am trying to do this:
1. When a record is deleted from table1, I would like to store a copy of the record in another table (DelTable1), together with the > date of deletion and a comment;
2. When a record is edited I would like to store a copy of the record as it was before it was edited in another table (EditTable1), together with the date of the edit and a comment;
3. When the user deletes or edits a record a message box should appear prompting them for an optional comment, which if they type is then added to the archive delete or edit table
Presumably using the "before update" and "on delete" events on a form to launch the code would be a possibility and you could use ADO to manipulate the data? If you know how to do this I would greatly appreciate a bit of help, if not then thanks anyway.
1. When a record is deleted from table1, I would like to store a copy of the record in another table (DelTable1), together with the > date of deletion and a comment;
2. When a record is edited I would like to store a copy of the record as it was before it was edited in another table (EditTable1), together with the date of the edit and a comment;
3. When the user deletes or edits a record a message box should appear prompting them for an optional comment, which if they type is then added to the archive delete or edit table
Presumably using the "before update" and "on delete" events on a form to launch the code would be a possibility and you could use ADO to manipulate the data? If you know how to do this I would greatly appreciate a bit of help, if not then thanks anyway.