Hallo !
Ich habe mir eine Schaltfläche zum Anhängen einer Datei im uidoc gebaut (siehe Script)
Ich erhalte folgende Fehlermeldung: "Vorgabemaske nicht gefunden"
Was mache ich falsch ?
Dim ws As NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim doc As NotesDocument
Dim session As NotesSession
Dim PDF As NotesEmbeddedObject
Set ws = New NotesUIWorkspace
Set uidoc = ws.CurrentDocument
Set doc = uidoc.Document
Set rtitem = New NotesRichTextItem( doc, "tabelle" )
Set PDF = rtitem.EmbedObject(EMBED_ATTACHMENT,"","s:\340000\341100\341111\test.xls")
Call doc.save(True,False)
doc.saveoptions = "0"
Call uidoc.close
Call ws.EditDocument(True, doc)