Hallo Klauss,
eigentlich hätte ich es beim schreiben bereits bemerken muessen
Dim session As New NotesSession
Dim db As NotesDatabase
Dim col As NotesDocumentCollection
Dim doc As NotesDocument
Dim fileName As String
Set db = session.CurrentDatabase
Set col = db.UnprocessedDocuments
Set doc = col.GetFirstDocument()
fileName = Inputbox ("Bitte Laufwerk und Dateinamen eingeben: z.B. C:\Kontakt.txt ")
Open fileName For Output As #1
While Not(doc Is Nothing)
Forall a In doc.ListName
Write #1, a
End Forall
Set doc = col.GetNextDocument(doc)
Wend
Close #1
Ich weis erst denken dann schreiben...
Sorry & Gruß
Chris