Tracking Read/Unread changes

J

Joe

What's the best way (from an Outlook add-on) to track when a message
changes it's read state other than setting up a notify event for each
message?
 
K

Ken Slovak - [MVP - Outlook]

You can instantiate an Items collection for any folder and declare it
WithEvents. Once you do that you can handle the ItemChange event for all
items in that Items collection.
 
Top