Hallo,
ich habe folgendes Problem, die Anzahl der doc.responses wird irgentwo gespeichert und sobald ich ein Antwortdokument lösche kommt beim Speichern der Fehler "Notes Error: Dokument wurde gelöscht. Im Debugger stehen dann auch in dc soviele Werte wie vorm löschen. Gibt es eine Möglichkeit die Funktion doc.responses zu erneuern? Wenn ich ein Anwortdokument hinzufüge gibt es kein Problem.
Script:
Sub Querysave(Source As Notesuidocument, Continue As Variant)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim dc As NotesDocumentCollection
Dim doc As NotesDocument
Dim adoc As NotesDocument
Dim success As Boolean
Set db = session.CurrentDatabase
success = True
Call source.Reload
If Source.IsNewDoc Then Exit Sub 'Wenn UIDoc neu ist dann verlasse Script
Set doc = Source.Document 'Doc zu Backend-doc
'alle Antwortdocs des Backend-Docs werden in die Collection aufgenommen
Set dc = doc.Responses
'Setze alle Felder der Collection, gespeichert wird automatisch
Call dc.StampAll( "SysFlagEditAccessLocked" , doc.SysFlagEditAccessLocked(0) )
Call dc.StampAll( "Creator" , doc.Creator(0) )
Set adoc = dc.GetFirstDocument
success = adoc.ComputeWithForm( False, False )
While Not adoc Is Nothing
success = adoc.ComputeWithForm( False, False )
If success Then
Call adoc.Save(False,False)
End If
Set adoc = dc.GetNextDocument(adoc)
Wend
End Sub
MFG
GoGuN_B3okZ