M
Michael Tissington
How do I apply a filter to an Outlook MAPIFolder to only return my
Recurring Appointments ?
Recurring Appointments ?
Thanks. Will the Items.RawObject also return the recurring appointments ?
Assuming you have the folder already:
Dim Result as Items
Folder.Items.IncludeRecurrences=True
Set Result=Folder.Items.Restrict("[IsRecurring]=True")
Michael Tissington said:Thanks. Will the Items.RawObject also return the recurring appointments ?
Assuming you have the folder already:
Dim Result as Items
Folder.Items.IncludeRecurrences=True
Set Result=Folder.Items.Restrict("[IsRecurring]=True")