Where is Replied To property stored?

  • Thread starter Thread starter Mark Rabbett
  • Start date Start date
M

Mark Rabbett

With a standard form in Outlook 2k, when a user replies to
or forwards a message the date they replied appears as a
banner at the top of the message when opened later.

Where is this property stored? Can it be accessed in VBA
or script?

Any ideas please?

Mark
 
The time a message was replied to is not exposed in the Outlook object
model. It can be found in MAPI/CDO properties. The ones to look at are
PR_LAST_VERB_EXECUTION_TIME and PR_CLIENT_SUBMIT_TIME.

If you download OutlookSpy (www.dimastr.com) you can look at those
properties and many others. For information about using CDO property
tags see www.cdolive.com/cdo10.htm and for CDO code samples see
www.cdolive.com/cdo5.htm
 
Ken,

I am looking to do something similar... in that I want to
be able to filter my view to show me items that I have
not responded to. How can I do that? Any help
appreciated.

Thanks,
Yaz
 
That's a hard one. You would have to create a user defined field in
the folder that was populated in each item by the CDO properties for
the conditions of interest. Code would have to populate the item user
defined field in each item to be able to set up a view or filtered
view on it.

Far easier would be if you didn't mark messages as read unless they
were responded to in some way. That way you could filter or sort a
view based on the Unread property.
 
Back
Top