Greetings,
I am trying to access the “Created Date” of a Notes Doc in its Original Time Zone
The Created Date is Not a “Field” in the NotesDocument. The value is computed from the “UNID” of the NotesDocument.
The Created Date exposed in VB.Net is of type System.DateTime which gives me the time based on my local system.
The interest here is to capture the Original Time Zone of the Created Date of the NotesDocument.
As an example: I have a NotesDocument whose UNID is
EEA92BE8:6C87179B
8625733F:004B79EF
The Created Date of the Document:
when calculated from UNID = 08/22/2007 08:44:24 AM CDT (Central Daylight Time)
this value was calculated from the last octect of the UNID which is:
8625733F:004B79EF
thus 8625733F:004B79EF = 08/22/2007 08:44:24 AM CDT
when I retrive the created date using VB.Net with the following code:
NotesDocument.CreatedDate
the value I get is 08/22/2007 09:44:24 AM EST (Eastern Standard Time), as the time zone set on my local machine is EST.
Thus I am looking for a way to access the created date from the UNID in VB.Net
Any help / suggestion on this will be much appreciated.
Thanks in advance.