I am trying to read "DateComposed" and "timeComposed" values of Notes Discussion Database using Domino.dll. While reading I am getting "" for both of them.
Sample code:
DateTime DiaryDate = (DateTime)((object[])docJournal.GetItemValue("DateComposed"))[0];
DateTime dtTimeCreated = (DateTime)((object[])docJournal.GetItemValue("timeComposed"))[0];
Is there another way to read them?