I think so. You can easily veify that in OutlookSpy (click Script Editor,
paste the script, click Run).
set Items = Application.ActiveExplorer.CurrentFolder.Items
Items.IncludeRecurrences=True
Set Result = Items.Restrict("[IsRecurring]=True")
BrowseObject(Result.RawTable)
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
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")