Detecting the Item_Read() event

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

hi

My VB app needs to be able to detect when the user selects an Appointment Item for editing - ie the Item_Read() event - but I don't know in advance which Item the user is going to select...

Any help GRATEFULLY received!
 
You can either use Application.Inspectors.NewInspector event to intercept
when Outlook items are being opened or you can trap the
Explorer.SelectionChange event and track events on the items in the
Explorer.Selection collection.

Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool


AndyK said:
hi

My VB app needs to be able to detect when the user selects an Appointment
Item for editing - ie the Item_Read() event - but I don't know in advance
which Item the user is going to select...
 
Back
Top