AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Ayuda / WLanguage / Funciones WLanguage / Comunicación / Funciones Lotus Notes / Funciones Notes
  • 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
Attaches a file to an item of the current document in Lotus Notes.
To take the attachment into account, the document must be saved with NotesSave.
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)
...
// Attach a file to the current document
NotesAddAttachment(DatabaseID, "MyLotusNotesItem", "C:\MyDocuments\MyFile.TXT")
// Take this attachment into account
NotesSave(DatabaseID)
Syntax
<Result> = NotesAddAttachment(<Session identifier> , <Lotus Notes item> , <File to attach>)
<Result>: Integer
  • Index of the attached file. This number corresponds to the number of files attached to the Lotus Notes item specified after the addition.
  • 0 if an error occurs.
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 Lotus Notes item (Rich Text) to which the file must be attached. The Lotus Notes item is automatically created if it does not exist.
To know the name and type of the items in the current Notes document, use NotesListItem.
<File to attach>: Character string
Name and full (or relative) path of the file to attach to the specified item in the current Notes document. This file will be automatically copied into the current Lotus Notes database.
Remarks

Item of a Notes document

Each item of a Notes document can contain up to 256 attached files.
Component: wd290mess.dll
Versión mínima requerida
  • Versión 11
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 06/04/2023

Señalar un error o enviar una sugerencia | Ayuda local