|
|
|
|
NotesModifyAttachment (Function) In french: NotesModifieFichierAttaché Modifies a file attached to an item of the current document in Lotus Notes. To take the file modification into account, the document must be saved by NotesSave.
// 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 FileNum is int FileNum = NotesAddAttachment(DatabaseID, "MyLotusNotesItem", "C:\MyDocuments\MyFile.TXT") ... // Modify this file NotesModifyAttachment(DatabaseID, "MyLotusNotesItem", FileNum, "D:\MyFiles\FileA.TXT")
Syntax
<Result> = NotesModifyAttachment(<Session identifier> , <Lotus Notes item> , <File index> , <New file>)
<Result>: Boolean - True if the file was modified,
- 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. <Lotus Notes item>: Character string Name of the Lotus Notes item (Rich Text) to which the file to modify is attached.To know the name and type of the items in the current Notes document, use NotesListItem. <File index>: Integer Index of the file to modify. This index corresponds to the rank of the file in the list of files for the Lotus Notes item (for example, the index of the 3rd attachment will be 3).Caution: The indices of the files are modified when a file is deleted. <New file>: Character string Name and full (or relative) path of the new 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 Each item of a Notes document can contain up to 256 attached files.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|