If you want to update the field if any control on the form is changed, you could assign the value on the before or after update:
Private Sub Form_BeforeUpdate(Cancel As Integer)
Me.datebox = now
End Sub
If you just want to update the time after certain controls are updated, I believe you are going to have to use the after update event of each control. Mike Rohde
rohdem@marshallengines.com