Getting the message details

  • Thread starter Thread starter john
  • Start date Start date
J

john

Hi all,
I'm using vs 2005 outlook add-in, C# and outlook 2003.

My Goal is to rais an event whenever the selected message is changed.
I've tried to use the Microsoft.office.interop.outlook.explorer in
order to do so but I't wasn't a seccessful attemp.

John
 
That doesn't really provide us with very much information. A brief code
sample would be helpful.

ActiveExplorer().Selection is the collection of selected items in the
current Explorer. You would need to instantiate an item for each selected
item (whatever type that item was) and update your items every time the
selection changed.

For each item that is selected you would need to handle the PropertyChange
and CustomPropertyChange events.
 
Back
Top