Hi leute, mal wieder ne Frage,
habe das was ich hier im Forum gefunden habe getestet aber ohne Erfolg.
Ich möchte alle Namen der Items eines Dokuments ausgeben.
Folgendes dachte ich sollte laufen aber leider Sackgasse.
Der Grund ist, das ich die Namen, also die Keys nicht unbedingt kenne, kann daher also nicht mit "getfirstitem" arbeiten.
Sub Initialize
Dim s As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
Dim docCol As NotesDocumentCollection
Dim erfolg As Variant
Dim newDoc As NotesDocument
Dim item As NotesItem
Set db = s.Currentdatabase
Set docCol = db.Alldocuments
Set doc = docCol.Getfirstdocument()
While Not (doc Is Nothing) 'alle Dokumente durchgehen
ForAll elem In doc.Items
Print elem
End ForAll
'Set doc = view.Getnextdocument(doc)
Wend
End Sub