Hi BPH,
You can also, on the BeforeUpdate event of the Form, you can put...
Private Sub Form_BeforeUpdate(Cancel As Integer)
Me.Date_Last_Updated.Value = Now
End Sub
Or, If you made the command buttons yourself...
Private Sub cmdAddRecord_AfterUpdate()
Me.Date_Updated.Value = Now
End Sub
Hope this helps, good luck!
|