I have a comments field on a form. I want the field value to be copied to a variable, so that when the user updates or changes the value of the field, the field value will be something like:
so that a constant log is kept for changes to that field?
Would something like the above work? And if so, which event would I put it in?
Any help appreciated.
Code:
Dim OldValue as Variant Dim NewValue as Variant OldValue & vbCrLf & vbCrLf & NewValue & vbCrLf & Now
Would something like the above work? And if so, which event would I put it in?
Any help appreciated.
Comment