ich geb dann auch meinen Senf dazu
@rob
es ist manchmal frustrierend ellenlange beiträge zu lesen wo man nicht den roten Faden erkennen kann
@Fbaum
ich habe das in der view mit einem Aktion button gemacht
Sub Click(Source As Button)
Dim ws As New NotesUIWorkspace
Dim s As New NotesSession
Dim db As NotesDatabase
Dim parent As NotesDocument, child As NotesDocument
Dim col As NotesDocumentCollection
Set db = s.CurrentDatabase
Set col = db.Unprocesseddocuments
If col.count <> 2 Then Exit Sub
Set parent = col.GetFirstDocument
Set child = col.GetLastDocument
REM Dokument aufgrund eines Feldes unterscheiden
If (Messagebox("Ist < " + parent.subject(0) + " > das Hauptdokument ?", 3 + 32, "Info") ) = 6 Then
''' ok
Elseif (Messagebox("Ist < " + child.subject(0) + " > das Hauptdokument ?", 3 + 32, "Info") ) = 6 Then
Set child = col.GetFirstDocument
Set parent = col.GetLastDocument
Else
Exit Sub
End If
REM damit nicht das Hauptdok ein Kinddok des Kindes wird checkst du hier nochmal die Form ab
If parent.Form(0) <> "MainTopic" Then Exit Sub
Call child.MakeResponse(parent)
child.save True, False
Call ws.viewrefresh
End Sub
cu