I have a need to implement some form of indicator showing if the record has changed. For example if there is a date or time stored or any kind of string, when the data in that record is changed I want to display it in red or show some icon etc. Currently I use one field which registers the moment the data is updated (they type is TIMESTAMP). I’m thinking about creating another field of the same type (ie. called last update) and comparing the two fields on OnRecord event. If the comparison would bring FALSE value the two TIMESTAMP values are different. This however does not prevent the fact that the rest of the data might be unchanged.
For example if I open a record (using the form) then click on SAVE (without changing any data), the TIMESTAMP() value will get updated (I think) but the data hasn’t changed, so this record should not show up as changed…
What would be in your opinion the most efficient solution for something like that ?
ARTHUR