ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Communication / Lotus Notes functions / Notes functions
  • Item of a Notes document
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Returns the list of files attached to an item of the current document in Lotus Notes.
Example
// Open the connection
ConnectionID is int
ConnectionID = NotesOpenConnection("Password", "MarsServer", ...
"C:\Users\Julia\AppData\Local\Lotus\Notes\Data\user.id")
// Specify the Lotus Notes database to use
DatabaseID is int
DatabaseID = NotesOpenDatabase(ConnectionID, "julia.nsf")
...
// Read the first document
NotesDocumentFirst(DatabaseID)
...
// List the files attached to the Lotus Notes item named "MyLotusNotesItem"
FileList is string
FileList = NotesListAttachment(ConnectionID, "MyLotusNotesItem")
...
// For each attached file
AFile is string
i is int = 1
FOR EACH STRING AFile OF FileList SEPARATED BY CR
// Copies the attached file into the project directory
NotesExtractAttachment(DatabaseID, "MyLotusNotesItem", i, fExeDir() + ["\"] + AFile)
i++
END
Syntax
<Result> = NotesListAttachment(<Session identifier> , <Lotus Notes item>)
<Result>: Character string
  • Name of the files attached to the specified item in the current Notes document, separated by CR characters (Carriage Return).
  • Empty string ("") if no file is attached to the specified Lotus Notes item or if an error occurred.
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.
<Lotus Notes item>: Character string
Name of the "Rich Text" Lotus Notes item to use. In most cases, this control corresponds to the "BODY" control.
To know the name and type of the items in the current Notes document, use NotesListItem.
Remarks

Item of a Notes document

Each item of a Notes document can contain up to 256 attached files.
Component: wd290mess.dll
Minimum version required
  • Version 11
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 05/26/2022

Send a report | Local help