BeforeItemMove firing twice

M

Manish

Im registering for MAPIFolderEvents_12_BeforeItemMoveEventHandler events on
Calendar Folder. When an appointment is deleted, or shift-deleted, my
handler does get called.

However, if I shift-delete an appointment (ie MoveTo folder in the callback
is null), and I cancel the event .. ie
public void CbkBefMov(object Item, Outlook.MAPIFolder MoveTo, ref bool
Cancel)
{
if (MoveTo == null) { Cancel = true; }
}
then the callback gets invoked a second time. This is bizzare. Any ideas
why?

Thanks
Manish Rao
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top