Hallo Leute,
ich möchte die angewählten Dokumente einer Ansicht mehrmals bearbeite, deswegen möchte ich sie in eine Collection packen.
Leider ist folgende Collection immer leer.
Wer weiss wieso?
Ciao
Don Pasquale
Sub Queryaddtofolder(Source As Notesuiview, Target As Variant, Continue As Variant)
Dim uiws As New NotesUIWorkspace
Dim uiview As NotesUIView
Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Set uidb = uiws.CurrentDatabase
Set uiview = uiws.CurrentView
Set db = session.CurrentDatabase
Set dc = db.UnprocessedDocuments ' ...alle markierten Dokumente
Set doc = dc.GetFirstDocument 'das erste Dokument
Print ("Anzahl " & dc.Count)
While Not doc Is Nothing
Messagebox ( doc.e4fld_Identnummer(0) & " ist " & doc.e4fld_Ausgecheckt(0) )
Set doc = dc.GetNextDocument( doc ) 'das nächste Dokument
Wend