Hallo Raven,
ja ich denke das müsste gehen.
Das mit dem Edit muß ich nochmal nachschauen,
ist das dringend ?
Probiers dies mal aus und gib mir eine Rückmeldung
REM Dokument-Zugriff über NotesView...
Dim uiws As New NotesUIWorkspace
Dim session As New NotesSession
Dim db As New NotesDatabase
Dim view As New NotesView
Dim doc As NotesDocument
Set db = session.CurrentDatabase
Set view = ws.CurrentView' ...View aus Frontend
While Not doc is Nothing
Set doc = uidoc.Document
doc.Subject = "Neuer Inhalt"
Call doc.Save(False,True)
Set doc = view.GetNextDocument( doc ) 'das nächste Dokument
Wend
Ciao
Don Pasquale
ps: Das hab ich alles hieraus
http://www.anton-tauscher.de/LotusScript/startdyn.htm