Mar 21, 2005 #1 dk99 MIS Jun 20, 2003 76 GB Is there a way I can show the date the field was last updated/saved on a form ?
Mar 21, 2005 #2 alvechurchdata Programmer Nov 8, 2003 1,737 GB Add a LastUpdated field to the table and use the Form_BeforeUpdate method to store Date() in that field. Geoff Franklin http://www.alvechurchdata.co.uk Upvote 0 Downvote
Add a LastUpdated field to the table and use the Form_BeforeUpdate method to store Date() in that field. Geoff Franklin http://www.alvechurchdata.co.uk
Mar 21, 2005 Thread starter #3 dk99 MIS Jun 20, 2003 76 GB What code would I need to use for that ? Upvote 0 Downvote
Mar 21, 2005 1 #4 eadiem Technical User Apr 8, 2004 47 CA Alve suggested using BeforeUpdate, I prefer Dirty. Here is the code I used. Private Sub Form_Dirty(Cancel As Integer) [Date Last Modified].Value = Date End Sub Upvote 0 Downvote
Alve suggested using BeforeUpdate, I prefer Dirty. Here is the code I used. Private Sub Form_Dirty(Cancel As Integer) [Date Last Modified].Value = Date End Sub