Hallo,
klappt nicht ganz heiß, ich bekomme durch dieses Script kein Ergebnis (hier MessageBox):
Ich benötige mehrere Ergebnisse für eine freie Zeit, das wäre das Ziel !
Sub Click(Source As Button)
Dim session As New NotesSession
Dim window As NotesDateRange
Dim startDateTime As New NotesDateTime("Today")
Dim endDateTime As New NotesDateTime("Tomorrow")
Dim names(1 To 3) As String
Dim freeTime As Variant
Set window = session.CreateDateRange()
Set window.StartDateTime = startDateTime
Set window.EndDateTime = endDateTime
names(1) = "01 Test"
names(2) = "02 test"
names(3) = "Anton Rieger"
freeTime = session.FreeTimeSearch _
(window, 60, names, True)
Messagebox Error$
If (freeTime(0) Is Nothing) Then
Messagebox "No Match Found"
Else
Forall x In freeTime
Messagebox x.Text
' Später Call doc.ReplaceItemValue("FZEIT","KAMP")
' Später Call doc.Save( True, True )
End Forall
End If
End Sub