Klasse! Vielen Dank es funktioniert wie gewünscht.
hatte noch das Problem, dass die Ansicht nicht automatisch die Spalte aktualisiert, daher habe ich zu deinem Skript noch
eine Aktualisierungsbefehl ergänzt:
Dim uiws As New NotesUIWorkspace
Call uiws.ViewRefresh
Gesamt läuft es jetzt so:
Sub Click(Source As Button)
Dim session As New NotesSession
Dim db As NotesDatabase
Set db = session.CurrentDatabase
Dim col As NotesDocumentCollection
Set col = db.UnprocessedDocuments
Dim doc As NotesDocument
Set doc = col.GetFirstDocument
Dim uiws As New NotesUIWorkspace
Do While Not doc Is Nothing
doc.PrzHinweiseAm = Today
doc.PrzHinweiseVon = session.Username
doc.PrzInterviewDatum = Today
Call doc.Save (True, True)
Call uiws.ViewRefresh
Set doc = col.GetNextDocument (doc)
Loop
End Sub