This topic is locked

tell if user made change in text box

2/28/2006 3:34:51 AM
ASPRunnerPro General questions
customcode author

How can I tell if the user made a change in the text box. I set mine to time stamp when the submit button is clicked, but I only want it to do it if a user made a change <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=question&id=2535&image=1&table=forumtopics' class='bbc_emoticon' alt=':)' /> thx

Sergey Kornilov admin 3/1/2006

Hi,
you can do it using events. Add following snippet of code in Before Record Update event on the Events Tab:

if dict("Field")<>rs("Field") then

'Here you can set time stamp

...

end if