Create appointment item in shared calendar

  • Thread starter Thread starter Adi
  • Start date Start date
A

Adi

Hi,

Is there a way to create and display appointment item in shared
calendar. The statement

Application.CreateItem(ItemType);

creates item in the default folder of the specified type. But I want
to create item programatically in the shared calendar of a specified
recipient and display it in the inspector window without actually
saving it.
Is there a way to do this?
 
If you have that folder as an Outlook MAPIFolder object get its Items
collection and use the Items.Add() method to add the new appointment to that
Items collection.
 
Back
Top