das verstehe ich aber gar nicht mehr:
In meiner Mail DB erstelle ich ein neues Memo.
Im Memo erstelle ich einen Button mit dem folgenden Code und attache einige Files
dim ws as new NotesUIWorkspace
dim uidoc as NotesUIDocument
dim doc as NotesDocument
dim rtBody as NotesRichTextItem
dim eoFile as NotesEmbeddedObject
dim FilePaths as Variant
set uidoc = ws.CurrentDocument
set doc = uidoc.Document
FilePaths = ws.SaveFileDialog( True , "Verzeichnis auswählen" )
if IsEmpty(FilePaths)=False then
'+++ get body
set rtBody = doc.GetFirstItem("Body")
'+++ detach attachments to the selected path
If doc.HasEmbedded Then
Forall attach In rtBody.EmbeddedObjects
If attach.Type = EMBED_ATTACHMENT Then
Set eoFile = doc.GetAttachment( attach.name )
Call eoFile.ExtractFile( FilePaths(0) )
End If
End Forall
end if
end if
Speichere das Dokument, öffne es und klicke auf den Button
-> "access to file system denied"
aber warum