yip..klappt..
habe das ins Postopen:
If Not Source.IsNewDoc Then
Wert = Source.Document.Feld
End If
In den Declarations
Im Query Save:
Dim ws As New NotesUIWorkspace
Dim uidoc As NotesUIDocument
Set uidoc = ws.CurrentDocument
Dim doc As notesdocument
Set doc = uidoc.Document
If Not uidoc.IsNewDoc Then
abc = doc.feld
jetztele% = Ubound(abc)
vorherele% = Ubound(Wert)
If jetztele% > vorherele% Then
Msgbox "neue Werte dazu eingegeben"
Elseif jetztele%<vorherele% Then
Msgbox "Werte entfernt"
Else
For i=0 To Ubound(abc)
If Wert(i) <> abc(i) Then
Msgbox i & {. Wert ist nicht gleich}
End If
Next
End If
End If