J jaybo Registered User. Local time Today, 02:59 Joined Jun 15, 2005 Messages 16 Aug 19, 2005 #1 I wondering if anyone knows of an automatic way that changes can be tracked on a form. Ex. The last time a record was updated in that specific form
I wondering if anyone knows of an automatic way that changes can be tracked on a form. Ex. The last time a record was updated in that specific form
J jrjr A work in progress Local time Today, 05:59 Joined Jul 23, 2004 Messages 290 Aug 19, 2005 #2 Sure, just include a text box with either: now() or Date() as the default value Store the value in a new field in your table
Sure, just include a text box with either: now() or Date() as the default value Store the value in a new field in your table
ghudson Registered User. Local time Today, 05:59 Joined Jun 8, 2002 Messages 6,193 Aug 19, 2005 #3 jrjr said: Sure, just include a text box with either: now() or Date() as the default value Store the value in a new field in your table Click to expand... That will only create a date stamp for when the record was created. You need to use the forms BeforeUpdate event to fill a text box [txtLastModified] with the =Now() of a "LastModified" field in your table. Code: Me.txtLastModified = Now()
jrjr said: Sure, just include a text box with either: now() or Date() as the default value Store the value in a new field in your table Click to expand... That will only create a date stamp for when the record was created. You need to use the forms BeforeUpdate event to fill a text box [txtLastModified] with the =Now() of a "LastModified" field in your table. Code: Me.txtLastModified = Now()