Stimmt - sorry!
Aber es iss doch schön, wenn mach auch über sich selbst lachen kann. Nun ja... also meine Formel sieht nun so aus. Es klappt eigentlich auch alles - nur, wenn das Feld leer bleibt und ich auf raus klicke bekomme ich ne Fehlermeldungen. Wie muss hier dann noch die If-Formel aussehen?
Sub Exiting(Source As Field)
Dim workspace As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = workspace.CurrentDocument
If Comment <> "" Then
Call uidoc.GotoField( "Comment" )
Call uidoc.SelectAll
Call uidoc.Copy
Call uidoc.GotoField( "Comment_1" )
Call uidoc.SelectAll
Call uidoc.Paste
Call uidoc.GotoField( "FirstName" )
End If
End Sub
So gehts leider net!
Da tut sich gar nix. Fehler kommt zwar keiner. Aber Comment_1 bleibt auch leer.