Greetings,
I have an Access 2002 form with a number of comboboxes, text boxes, options groups and the like. My goal is to somehow identify specific changes to the form's fields after a user has changed any column or control.
I've already coded a BeforeUpdate event procedure to the form such that when the form changes, a timestamp is populated in a textbox. Here's that code:
This allows me to identify whether the record has changed but not what specifically changed. It's conceivable that the user could update any number of columns and controls, so my challenge is to determine what event procedures to code so that, after the fact, I can view the exact changes the user made.
Anyone's suggestions would be most appreciated.
I have an Access 2002 form with a number of comboboxes, text boxes, options groups and the like. My goal is to somehow identify specific changes to the form's fields after a user has changed any column or control.
I've already coded a BeforeUpdate event procedure to the form such that when the form changes, a timestamp is populated in a textbox. Here's that code:
Code:
' The Dirty property is True if the record has been changed. If Me.Dirty Then ModifiedDate = Now() End If
Anyone's suggestions would be most appreciated.
Comment