On an Access 2000 form I need to know if:
1. a new record has been added
2. a record has been deleted
3. if any data in an existing record has been changed.
I can detect if a:
1. new record has been inserted by using the "After Insert" event
2. a record has been deleted by using the "On Delete" event
I am struggling to determine if data in an existing record has been changed. I tried using the "After Update" event. However this gets triggered after the form has opened and I simply click on a field.
What is the correct method to determine if data has been changed, bearing in mind that I also need to know if a record has been added / deleted?
1. a new record has been added
2. a record has been deleted
3. if any data in an existing record has been changed.
I can detect if a:
1. new record has been inserted by using the "After Insert" event
2. a record has been deleted by using the "On Delete" event
I am struggling to determine if data in an existing record has been changed. I tried using the "After Update" event. However this gets triggered after the form has opened and I simply click on a field.
What is the correct method to determine if data has been changed, bearing in mind that I also need to know if a record has been added / deleted?