Dim j As Integer
Dim li as variant
For j = 1 To 2
If doc.GetItemValue("dienstart" &Cstr(j))(0) <> "" Then
Set li = doc.GetItemValue("n" &Cstr(j))
Forall x In li
Set newdoc1 =New NotesDocument (db)
newdoc1.form = "XXX"
Call newdoc1.ReplaceItemValue("n"&Cstr(j), x)
s0 = doc.GetItemValue("d" &Cstr(j))(0)
Call newdoc1.ReplaceItemValue("d"&Cstr(j) , s0)
newdoc1.m = doc.m
newdoc1.b = doc.b
s1 = doc.GetItemValue("u" &Cstr(j))(0)
Call newdoc1.ReplaceItemValue("u"&Cstr(j) , s1)
Call newdoc1.ComputeWithForm(True, False)
Call newdoc1.save(True,False)
End Forall
End If
Next
li = doc.GetItemValue("n" &Cstr(j))
Forall x In li
probiers mal so...
Code:
Dim j As Integer
Dim li as variant
For j = 1 To 2
If doc.GetItemValue("dienstart" &Cstr(j))(0) <> "" Then
Set li = doc.GetItemValue("n" &Cstr(j))
Forall x In li
Set newdoc1 =New NotesDocument (db)
newdoc1.form = "XXX"
Call newdoc1.ReplaceItemValue("n"&Cstr(j), x)
s0 = doc.GetItemValue("d" &Cstr(j))(0)
Call newdoc1.ReplaceItemValue("d"&Cstr(j) , s0)
newdoc1.m = doc.m
newdoc1.b = doc.b
s1 = doc.GetItemValue("u" &Cstr(j))(0)
Call newdoc1.ReplaceItemValue("u"&Cstr(j) , s1)
Call newdoc1.ComputeWithForm(True, False)
Call newdoc1.save(True,False)
End Forall
End If
Next