Dann war ich doch schon auf dem richtigen Wege und hab nur zuviel benutzt.
Danke für Deine Antwort.
Jetzt hab ich allerdings ein Problem, Werte aus den Antwortdokumenten zu ziehen. Mein Script sieht jetzt so aus:
Sub Click(Source As Button)
Dim db As NotesDatabase
Dim workspace As New NotesUIWorkspace
Dim session As New NotesSession
Dim uidoc As NotesUIDocument
Dim doc As NotesDocument
Dim rdoc As NotesDocument
Dim responsedoc As NotesDocument
Dim collection As NotesDocumentCollection
Dim strAntwortdoc As String
Set doc = session.DocumentContext
If doc.form(0) = "Protokoll" Then
doc.form = "(DruckProtokoll)"
Set collection = doc.Responses
Set responsedoc = collection.GetFirstDocument
strAntwortdoc = ""
While Not (responsedoc Is Nothing)
strAntwortdoc = strAntwortdoc & " " & responsedoc.numBeschluss & " " & responsedoc.txtBeschlussvorlage
Set responsedoc = collection.GetNextDocument(responsedoc)
Wend
'Antwortdokumente in Druck unterbringen
doc.txtBeschlussvorlage = strAntwortdoc
Set uidoc = workspace.EditDocument( False , doc)
Call uidoc.print(1,1,1)
doc.form = "Protokoll"
End If
Call doc.save(True,True)
Call uidoc.Close
End Sub
In der ersten Zeile der While Not- Schleife steigt er mir wieder aus.
??