Apr 30, 2003 #1 crjo Programmer Jul 3, 2001 15 US I have a field (EditDate) and I would like it to record the Date & Time when recordset data has been edited/changed.
I have a field (EditDate) and I would like it to record the Date & Time when recordset data has been edited/changed.
Apr 30, 2003 #2 KenReay Programmer Aug 15, 2002 5,424 GB Hi If you are updating your table from a bound form, in the before update event: EditDate = Date() or if you want date and time EditDate = Now() Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK Upvote 0 Downvote
Hi If you are updating your table from a bound form, in the before update event: EditDate = Date() or if you want date and time EditDate = Now() Regards Ken Reay Freelance Solutions Developer Boldon Information Systems Ltd Website needs upgrading, but for now - http://www.kenneth.reay.btinternet.co.ukUK
May 1, 2003 Thread starter #3 crjo Programmer Jul 3, 2001 15 US As usual, the obvious solution is the simplest: Private Sub SomeField_AfterUpdate() Me.EditDate.Value = Now() End Sub Upvote 0 Downvote
As usual, the obvious solution is the simplest: Private Sub SomeField_AfterUpdate() Me.EditDate.Value = Now() End Sub