Search results

  1. I

    Identify Number of email messages opened

    Thank you, Diane. Thanks Michael for the response, that was useful. :)
  2. I

    Identify Number of email messages opened

    Yes, I am tracking the time the email message was viewed. Please let me know how do I trigger the Item_Close event for all the email message windows. Thanks,
  3. I

    Identify Number of email messages opened

    Thank you for response. I am uploading the email message related data to a database like email received time etc. With my code the MyItem changes every time I open an email from outlook. And the last email message opened is myItem. So when I close the last email message the Item_close get...
  4. I

    Identify Number of email messages opened

    Hi, I am trying to identify the number of email messages opened by a user. I am using "Application_ItemLoad" event to assign myitem as opened email message. Private Sub Application_ItemLoad(ByVal item As Object) If item.Class = olMail Then Set myItem = item End If End Sub...
Back
Top