Dim session As New NotesSession
Dim db As NotesDatabase
Dim doc As NotesDocument
dim array() as string
Set db = session.CurrentDatabase
REM Create note collection
Dim nc As NotesNoteCollection
Set nc = db.CreateNoteCollection(False)
nc.SelectImageResources = True
Call nc.BuildCollection
redim array(nc.Count)
nid = nc.GetFirstNoteId
For i = 1 To nc.Count
Set doc = db.GetDocumentByID(nid)
Set item = doc.GetFirstItem("$Title")
array(i) = item.text
nid = nc.GetNextNoteId(nid)
Next
indem Du ein Array anlegst und item.text dort rein schreibst