Ich habe folgendes Script. Funktioniert auch alles soweit, aber am Ende soll das Dokument (nach dem Speichern) geschlossen werden. Passiert aber nicht:
Sub Click(Source As Button)
Dim s As New Notessession
Dim db As NotesDatabase
Dim dbAdr As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim docAdr As NotesDocument
Dim ws As New NotesUIWorkspace
Set doc=ws.CurrentDocument.Document
Dim ID As String
Dim servername As String
Dim dbname As String
Servername="xxx"
DBname="xxx.nsf"
Set dbAdr=s.GetDatabase(Servername, DBname)
If Not dbAdr.IsOpen Then
Msgbox "Die Datenbank konnte nicht geöffnet werden." & Chr(13) & "Der Vorgang wird abgebrochen!"
Exit Sub
End If
Set view=dbadr.GetView("LUDocID")
id=doc.AdrDocID(0)
Set docAdr=view.GetDocumentByKey(ID)
docAdr.FirstName=doc.FirstName(0)
docAdr.LastName=doc.LastName(0)
docAdr.StreetAddress=doc.StreetAddress(0)
docAdr.Anrede=doc.Anrede(0)
docAdr.Zip=doc.Zip(0)
docAdr.City=doc.City(0)
docAdr.Country=doc.Country(0)
docAdr.save True, False
doc.Save True, False
doc.close
End Sub
Danke für einen Tipp!