Ne, ne, Matthias - dazu muss das kein bearbeitbares Feld sein. Das geht auch mit berechneten.
Call notesUIDocument.FieldSetText( fieldName$, textValue$ )
Parameters
fieldName$
String. The name of the field whose value you want to set. The field must be editable.
Dim ws As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Dim doc As NotesDocument
Set uidoc = ws.CurrentDocument
Call uidoc.FieldSetText ("Feld", Inputbox$ ("Welcher Wert soll eingetragen werden ?"))