Filter MAPIFolder
Thanks. Will the Items.RawObject also return the recurring appointments ?
On 01/24/2009 07:30, Michael Bauer [MVP - Outlook] wrote:
Assuming you have the folder already:
Dim Result as Items
Folder.Items.IncludeRecurrences=True
Set Result=Folder.Items.Restrict("[IsRecurring]=True")
|