L
Lucia
Hi,
I used the following code to get the appointments from a defined time
period.
strRestrict = "[Start] >= '10.01.2006 00:00'"
items = objFolder.Items
items.Sort ("[Start]")
items.IncludeRecurrences = True
resItems = items.Restrict(strRestrict)
For Each appItem In resItems
....
Next
For example I setted one recurring appointment with following single
items:
25.09.2006
02.10.2006
Then I changed the single appointment on 02.10.2006 (Exception). Using
the code above I will not get this recurring appointment.
Why does the method "Restrict" ignor all exceptions of a recurring
appointments?
Has anyone an idea how to solve this problem????
thanks a lot....
Lucia
I used the following code to get the appointments from a defined time
period.
strRestrict = "[Start] >= '10.01.2006 00:00'"
items = objFolder.Items
items.Sort ("[Start]")
items.IncludeRecurrences = True
resItems = items.Restrict(strRestrict)
For Each appItem In resItems
....
Next
For example I setted one recurring appointment with following single
items:
25.09.2006
02.10.2006
Then I changed the single appointment on 02.10.2006 (Exception). Using
the code above I will not get this recurring appointment.
Why does the method "Restrict" ignor all exceptions of a recurring
appointments?
Has anyone an idea how to solve this problem????
thanks a lot....
Lucia