Disabling/Enabling event handlers for Outlook folders

L

Leon

I have a VB Add-In that monitors Contacts, Mail, Notes and Calendar for
changes and additions.
When an item is changed or added, I trap the event modify the changed item
and then issues a .Save command.
The problem is that the .Save triggers another event, so I get stuck in a
loop. Is there a way around this?

Thank you very much, Leon
 
S

Sue Mosher [MVP-Outlook]

Your event handler may need to check whether the item really needs to be
modified and skip the save if it doesn't.
 
Top