Adding an Appointment to Public Calendar from Access

  • Thread starter Thread starter Jim W
  • Start date Start date
J

Jim W

I have code working from Access that adds an appointment
to an individuals Calender in Outlook. I need to find
how to add an appointment to a public Calendar on an
Exchange server.
 
To get a non-default folder, you need to walk the folder hierarchy using the Folders collections or use a function that does that for you. See http://www.slipstick.com/dev/code/getfolder.htm . Once you have the folder, you can use the MAPIFolder.Items.Add method to add a new item.
--
Sue Mosher, Outlook MVP
Outlook and Exchange solutions at http://www.slipstick.com
Author of
Microsoft Outlook Programming: Jumpstart
for Administrators, Power Users, and Developers
 
Back
Top