If me.Dirty = True Then 'Form data has changed.
You need to check this in the BeforeUpdate even of the form and act on it
appropriately.
--
Troy
Troy Munford
Development Operations Manager
FMS, Inc.
www.fmsinc.com
"Ian" <(E-Mail Removed)> wrote in message
news:CF249F6D-9FCA-45A5-9014-(E-Mail Removed)...
I am trying to see whether the data in a record on a form has been changed
by
a user. Any Ideas
I was trying to concatinate all the data from each field together into a
single string when you open the record, and compare this to the concatinated
string of all the data when you leave the record. I was trying to use the
following statement to concatinate the data...
DIM i AS String
FOR EACH TEXTBOX IN FORM
i = i & TEXTBOX.VALUE
NEXT
....But it didn't work - Any Suggestions will be appriciated. thanks