Hi there, I am able to extract all the four datetime i.e. PR_CLIENT_SUBMIT_TIME PR_CREATION_TIME PR_LAST_MODIFICATION_TIME PR_MESSAGE_DELIVERY_TIME from the Message. But i am not able to extract the SentOn date, the one that is displayed in message when opening with outlook. How can i extract that date, the one that is displayed by outlook on Sent: section Help me miztaken
Hi miztaken, > I am able to extract all the four datetime i.e. > PR_CLIENT_SUBMIT_TIME > PR_CREATION_TIME > PR_LAST_MODIFICATION_TIME > PR_MESSAGE_DELIVERY_TIME > > from the Message. > But i am not able to extract the SentOn date, the one that is > displayed in message when opening with outlook. > How can i extract that date, the one that is displayed by outlook on > Sent: section Did you take a look with Outlook Spy or MFCMapi on the element? Are you sure that none of the above dates is displayed by Outlook? -- SvenC
Yes i am sure that none of those 4 reflects my date in Sent: section. I used outlook spy as well and i see the same thing. But i do see the date on SendOn prpoerty but dont know how to access it. It has int address 57., but i cant access it or know how to access it ? Help me
SentOn property returns the value of PR_CLIENT_SUBMIT_TIME converted from UTC to the local time zone. What exactly are yo useeing in these two properties? -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "miztaken" wrote in message news:08c864fb-a185-4dc3-bac3-c140b41068f2@y22g2000prd.googlegroups.com... > Yes i am sure that none of those 4 reflects my date in Sent: section. > I used outlook spy as well and i see the same thing. > > But i do see the date on SendOn prpoerty but dont know how to access > it. It has int address 57., but i cant access it or know how to access > it ? > > Help me > >
Hi Dmitry, YEs that was it. I converted the date into local time zone date and its giving the desired displayed output. Thank you very much miztaken