Check if custom form is "dirty" or form data has changed ?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to tell if the data within a custom form has been edited by the user? I want to update a form field, but only if the user has made a change to the form data
Thanks much.
 
Try Item.Saved = False
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
That seemed to work to tell if the form data had changed. Thanks.
Is there a way to find out WHICH field changed?
 
You have to track that yourself. Check out the PropertyChange and CustomPropertyChange events.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
Back
Top