Jan 23, 2002 #1 mlocurci MIS Oct 17, 2001 210 US One of the Actions on a Forms proberly is called "Dirty" What does that mean?
Jan 23, 2002 #2 jebry Programmer Aug 6, 2001 3,006 US Hi! A form is dirty if data has been changed in the record. hth Jeff Bridgham bridgham@purdue.edu Upvote 0 Downvote
Jan 23, 2002 Thread starter #3 mlocurci MIS Oct 17, 2001 210 US Ok, so what can I do to record the date/time to a field in a DB is a form is changed. -Michael Upvote 0 Downvote
Jan 23, 2002 #4 jebry Programmer Aug 6, 2001 3,006 US Hi! To create a time stamp for updates, create a field in the table to hold the date and in the BeforeUpdate event procedure, use the following code: Me!DateModified = Date() hth Jeff Bridgham bridgham@purdue.edu Upvote 0 Downvote
Hi! To create a time stamp for updates, create a field in the table to hold the date and in the BeforeUpdate event procedure, use the following code: Me!DateModified = Date() hth Jeff Bridgham bridgham@purdue.edu