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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.