Tracking Read/Unread changes

  • Thread starter Thread starter Joe
  • Start date Start date
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?
 
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.
 
Back
Top