Я использую API Interop.Domino.dll для чтения файла NSF и могу читать свойства документа задачи.
When i view the Task Document properties in the Lotus Notes, i am able to view the Status Field, Importance Field and few others, but when i programatically dump all the Field Names and their values i am unable to get few of them as mentioned above.
So, how to get all the Field Names and their values as i iterate through all the document properties. Is this the problem of IBM Lotus Notes Application or the Domino API ?
Here is my sample code to iterate the TODO document properties :
object [] TaskItems = docTodoDoc.Items as object [];
foreach (NotesItem objItem в TaskItems) {m_objLogFile.Debug (objItem.Name + "->");
m_objLogFile.Debug("Values :: " + ((object[])docTodoDoc.GetItemValue(objItem.Name))[0] as String);
}
Пожалуйста, помогите мне болееПриходите, я должен получить доступ к значению состояния элемента TODO из файла NSF.
Спасибо.