Ich hab dazu diesen eintrag gefunden:
http://www.atnotes.de/index.php?board=7;action=display;threadid=2465Ich kann auch ein Anwortdoc erstellen per @Formel !
Aber wie kann ich ein anwortdocument automatisch bei speichern des parentdocs erzwingen?
Habs mal so probiert:
Sub Initialize
Dim session As New NotesSession
Dim db As NotesDatabase
Dim uiws As New NotesUIWorkspace
Dim doc As NotesDocument
Dim uidoc As NotesUIDocument
Set db = session.CurrentDatabase
Set doc = New NotesDocument(db)
Set uidoc= uiws.currentDocument
doc.Form = "his"
doc.SaveHistory = uidoc.FieldGetText("SaveHistory")
Call doc.Save(True, False)
End Sub
Aber wie sag ich dem doc jetzt das es ein anwortdoc von dem aktuellen doc ist?
robertpp