Retrieve items from Other Users Calendar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to retrieve items from the Calendar folder in another User's
Outlook folders on the newtwork.

In Outlook, to do this manually, the procedure is File--Open--Other User's
Folder and then set Folder to Calendar and set name to Net Id or search for
the User via Address Book etc.

Can this be written in VBA (I'm trying to do this from Access). I have
previously been successful in doing this with the local Calendar folder on
the User's own machine.

Any help appreciated.
 
Yes, it can. Use the Namespace.GetSharedDefaultFolder method to return the folder, then iterate its Items collection.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Thanks again Sue - excellent.

Sue Mosher said:
Yes, it can. Use the Namespace.GetSharedDefaultFolder method to return the folder, then iterate its Items collection.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top