I would like to back up my data when someone modify's a record in a form so that the whole old record would go to a new table that I could look at and see if someone messed something up could Someone please advise??
I would like to back up my data when someone modify's a record in a form so that the whole old record would go to a new table that I could look at and see if someone messed something up could Someone please advise??
I would not use the On Dirty event, but the Before update event to log the changes.
About deleting, I prefer to use a field as a delete flag and not actually delete the record. The flag can be used to filter the records so that it appears to the users as deleted, but it really is not.