|
|
|
|
NotesDocumentIdentifier (Function) In french: NotesDocumentIdentifiant Returns the identifier of the current document in the Lotus Notes database browsed.
// Start a Lotus Notes session SessionID is int SessionID = EmailStartNotesSession("Password", "MarsServer", ... "mail\julia.nsf", "C:\Users\Julia\AppData\Local\Lotus\Notes\Data\user.id") ... // Read the first document NotesDocumentFirst(SessionID) // Enumerate the documents found WHILE NotesOut(SessionID) = False // Displays the name and identifier of the documents in a table TableAddLine(TABLE_DocumentsFound, NotesItem(SessionID, "Name"), ... NotesDocumentIdentifier(SessionID)) // Next document found NotesDocumentNext(SessionID) END
Syntax
<Result> = NotesDocumentIdentifier(<Session identifier>)
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|