Dein Chef will praktisch vor dem Drucken nicht die Ansicht wechseln müssen.
Mit einer Aktion und dem folgenden Code sollte es funktionieren:Dim session as New NotesSession
dim ws as New NotesUIWorkSpace
dim db as NotesDatabase
dim dc as NotesDocumentCollection
dim doc as NotesDocument
dim uidoc as NotesUIDocument
Set db = session.CurrentDatabase
set dc = db.UnprocessedDocuments
set doc = dc.GetFirstDocument
While not doc is Nothing
doc.Form = "Name Deiner Druckmaske eintragen"
set uidoc = ws.EditDocument(False, doc)
Call uidoc.Print(1)
uidoc.Close
set doc = dc.GetNextDocument(doc)
Wend
Achtung Code habe ich nicht getestet.