item move to folder

A

Ashish

it's outlook addin in c++.
version is 2003.
I have implemented context menu there like right click on mail and select
reply,replyall etc for these cases
but need to implment for item move. because outlook send save event(not move
event) in onsyncsave when move a mail into any other folder
 
K

Ken Slovak - [MVP - Outlook]

With Outlook 2003 you will need to get the MAPIFolder.Items collection of
any folder you want to monitor for items being moved/added to it and handle
the ItemAdd() event for each of those Items collections.

ItemRemove() on the Items collection of source folders will fire after the
item is moved and won't give you a handle to what was moved, so that
wouldn't help you.
 

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