|
|
|
|
|
NotesDocumentFirst (Function) In french: NotesDocumentPremier Positions on the first document found in Lotus Notes. This document becomes the current document.
SessionID is int
SessionID = NotesOpenConnection("Password", "MarsServer", ...
"C:\Users\Julia\AppData\Local\Lotus\Notes\Data\user.id")
DatabaseID is int
DatabaseID = NotesOpenDatabase(SessionID, "email/julia.nsf")
IF DatabaseID = 0 THEN
Error(ErrorInfo())
ELSE
...
NotesDocumentFirst(DatabaseID)
WHILE NotesOut(DatabaseID) = False
ListAdd(LIST_DocumentsFound, NotesItem(DatabaseID, "Name"))
NotesDocumentNext(DatabaseID)
END
END
SessionID is int
SessionID = EmailStartNotesSession("Password", "MarsServer", ...
"mail\julia.nsf", "C:\Users\Julia\AppData\Local\Lotus\Notes\Data\user.id")
...
NotesDocumentFirst(SessionID)
WHILE NotesOut(SessionID) = False
ListAdd(LIST_DocumentsFound, NotesItem(SessionID, "Name"))
NotesDocumentNext(SessionID)
END
Syntax
<Result> = NotesDocumentFirst(<Session identifier>)
<Result>: Boolean - True if the first document was read,
- False otherwise. If an error occurs, the ErrorOccurred variable is set to True.
To get more details on the error, use ErrorInfo with the errMessage constant.
<Session identifier>: Integer Session ID to be used. This identifier is returned by EmailStartNotesSession or NotesOpenDatabase.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|