What database are you using? Regardless of the database, set-up all of your tables to have a field with a date/time stamp with a default value of Date() or Now() for Access or getdate() for SQL Server.
If you are using SQL Server, set-up a trigger that updates an additional field whenever there is an edit done to a record on a table and set that value to getdate() as well.
Sal
|