Ja, genau das habe ich gemeint. Ich wusste gar nicht das es diese Methode für Docs im Script gibt.
Vielen Dank für den Hinweis. :-))
Es wird hier auch KEIN spezielles Feld benötigt, wie es bei Verwendung der Formelsprache erforderlich ist. Das Dok wird richtig unterschrieben mit $Signature und co.
Hier noch ein kurzes Script für einen Butten (falls es noch jemand benötigt):
Sub Click(Source As Button)
Dim session As New NotesSession
Dim db As NotesDatabase
Dim workspace As New NotesUIWorkspace
Dim doc As NotesDocument
Dim uidoc As NotesUIDocument
Set db = session.CurrentDatabase
Set uidoc = workspace.CurrentDocument
Set doc = uidoc.Document
Call doc.Sign
Call doc.Save( False, True )
End Sub