Getting item back from Outlook drag and drop

  • Thread starter Thread starter Sebastian Mark
  • Start date Start date
S

Sebastian Mark

Is there a method of getting a reference to and Outlook item given the
informations available from drag and drop operation?
 
If you handle the ItemAdd event for the Items collection of a folder you
will get that event with an Item object reference when the item is added to
the folder. ItemDelete is pretty useless since it doesn't provide an Item
reference and fires after the item is already deleted.

So you can get the item added to the folder but you won't know where it came
from.
 
Back
Top