|
|
|
|
|
NotesListView (Function) In french: NotesListeVue Returns the list of views found in the current Lotus Notes database.
ConnectionID is int
ConnectionID = NotesOpenConnection("Password", "MarsServer", ...
"C:\Users\Julia\AppData\Local\Lotus\Notes\Data\user.id")
DatabaseID is int
DatabaseID = NotesOpenDatabase(ConnectionID, "julia.nsf")
...
ViewList is string
ViewName is string
ViewList = NotesListView(DatabaseID)
FOR EACH STRING ViewName OF ViewList SEPARATED BY CR
ListAdd(LIST_ListViewNames, ViewName)
END
Syntax
<Result> = NotesListView(<Session identifier>)
<Result>: Character string Name of the views found in the Lotus Notes database, separated by CR characters. <Session identifier>: Integer Session ID to be used. This identifier is returned by EmailStartNotesSession or NotesOpenDatabase.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|