I am developing a VSTO outlook addin, that will create an appointment/meeting. I use the following code to create the appointment/meeting:
Globals.ThisAddIn.Application.CreateItem(Outlook.OlItemType.olAppointmentItem)
If the user clicks into a different calendar that they have delegate access to how can I create the appointment in the selected delegate calendar?
thanks