ghudson
Registered User.
- Local time
- Yesterday, 19:30
- Joined
- Jun 8, 2002
- Messages
- 6,194
You have to call the Audit_Trail() Function in your forms BeforeUpdate event. Like this...dajabo said:Er, excuse my stupidity, but I don't know how to get AuditTrail to work in my DB!
I have imported the module dAuditTrail, but how what do I do now?
I haven't a clue!!
Code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
On Error GoTo Form_BeforeUpdate_Err
Call Audit_Trail
Form_BeforeUpdate_Exit:
Exit Sub
Form_BeforeUpdate_Err:
MsgBox Err.Number & " - " & Err.Description
Resume Form_BeforeUpdate_Exit
End Sub