View Full Version : Date Stamp Text Field


jshotsbe
07-10-2001, 12:20 PM
I have a form built we are using for help desk software users go in and type out or log the problem/issue
I would like for the text field that we use to respond to date stamp each time we enter text to respond to the problem/issue
I hope this makes sense
Can anyone HELP!

D-Fresh
07-10-2001, 04:15 PM
If I'm understanding your question correctly, this should work... Put the following code in the AfterUpdate event of the Text Field...

me!TextFieldName = me!TextFieldName & " -- " & date() & " -- "

This will concatenate the date at the end... You obviously don't need the " -- " around the date, but it's a good way to keep it seperated from the rest of the information. Hope this helps.

Doug