Disabling/Enabling event handlers for Outlook folders

  • Thread starter Thread starter Leon
  • Start date Start date
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
 
Your event handler may need to check whether the item really needs to be
modified and skip the save if it doesn't.
 
Back
Top