Hallo,
bin blutiger Anfänger in Notes :-D
Ich will versuchen, dass über Notes in der Maske "fa_Import" in das Feld "fld_FirstName" der Name Hans eingefügt wird und dann abgespeichert.
Leider funktioniert dies nicht? Was ist da falsch???
Vielen Dank!
Sub Terminate
Dim Session As NotesSession
Dim Db As NotesDatabase
Dim Doc As NotesDocument
Set Session = New NotesSession
Set Db = Session.CurrentDatabase
Set Doc = Db.CreateDocument
Doc.Form = "fa_Import"
Call Doc.ReplaceItemValue(fld_FirstName,"Hans")
Call Doc.Save(True, False, False)
End Sub