The BeforeUpdate event will be activated when any changes made in the
form,
in there use the code
Me.[TextBoxName]=Date()
When Date() return the current date.
Note: The problem eith this, if the user type a value in a field and then
change it back to the same value then that event will be triggered anyway.
If there are not so many fields in the form you can check if the values in
the text boxes changed
If Me.[TextBoxName] <> Me.[TextBoxName].OldValue Then
Me.[DateTextBoxName]=Date()
End If
--
Good Luck
BS"D
oliaccount via AccessMonster.com said:
Can someone tell me the code I need to do this on a form? I need to
update
the date to the current date after any change in the record.