Hi,
I am using a module called "AuditTrail" for recording changes made to records.
It works fine on primary forms with the code:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Call AuditTrail(Me, Job_number)
End Sub
with job_number being the primary key index in the linked table.
The form...