Hier wäre der link
http://www.openntf.org/projects/codebin/codebin.nsf/81882682b238ec2685256be70008ecaf/9d3c707bdc2a378e88256c6e00128fc3!OpenDocumentIch habe es jetzt mit einer Liste realisiert, in die ich alle UniversalIDs packe und die ich dann an Ende einmal durchlaufe.
Vielen Dank für Eure Ideen
Ciao
Don Pasquale
Hier der Auszug aus meiner Lösung
Dim LOESCHLISTE List As String*32
Dim Removedoc As NotesDocument
Dim session As New NotesSession
Dim doc As NotesDocument
Dim view As NotesView
Dim dc As NotesDocumentCollection
Dim db As NotesDatabase
Dim RemoveDoc As NotesDocument
Set session = New notessession
Set db = session.CurrentDatabase
Set view = db.GetView( "($Inbox)" )
Set doc = view.GetFirstDocument
While Not ( doc Is Nothing)
if doc.FELDA = XYZ then
j = j + 1
LOESCHLISTE(j) = doc.UniversalID
end if
Set doc = view.GetNextDocument(doc)
Wend
Forall x In LOESCHLISTE
Set RemoveDoc = db.GetDocumentByUNID(X)
Call Removedoc.RemoveFromFolder("($Inbox)")
End Forall