loki
08-09-2001, 05:32 AM
I want to be able to record the date in a text box whenever someone makes any changes in any of the forty text boxes on my form. Can anyone give me some advice.
|
View Full Version : tracking changes loki 08-09-2001, 05:32 AM I want to be able to record the date in a text box whenever someone makes any changes in any of the forty text boxes on my form. Can anyone give me some advice. KeaganQuilty 08-09-2001, 06:05 AM Private Sub Form_BeforeUpdate(Cancel as Integer) txtDate = Date This will not change the date automatically when the data is changed, but it will record a new date when the record is saved. Keagan Quilty Kilbride, Newfoundland |