Hallo,
irgendwie funktioniert mein code leider nicht richtig. Hat da vielleicht jemand einen Tipp!?
'DECL
Dim ws As New NotesUiworkspace
Dim s As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim uidoc As NotesUiDocument
Dim doc As NotesDocument
Dim foundDocument As Boolean
Dim LCse As New LCSession
'INIT
Set uidoc = ws.CurrentDocument
Set db = s.CurrentDatabase
Set view = db.GetView(VIEWNAME_OF_LASTDOCUMENT)
'LOAD
Call view.Refresh
'CHECKS
'START
uidoc.EditMode = True
Call uidoc.GotoField(ITEMNAME_OF_ATTACHMENT)
Call uidoc.SelectAll
Call uidoc.Copy
uidoc.Document.Saveoptions = "0"
Call uidoc.Close
Set doc = view.GetFirstDocument
Do Until doc Is Nothing Or foundDocument
If doc.form(0) = FORMNAME Then foundDocument = True
Set doc = view.GetNextDocument(doc)
Loop
Call ws.EditDocument(True,doc)
LCse.Sleep (500)
Call uidoc.GotoField(ITEMNAME_OF_ATTACHMENT)
Call uidoc.Paste
Das Script soll eigentlich nur alle Attachments aus einen Dokument kopieren dieses Dokument schließen und ein anderes öffnen und dort einfügen.
Bis auf das Einfügen funktioniert auch alles soweit!!
Wer hat sowas schon einaml gemacht, und kann mir sagen, was ich falsch mache?!
thx