Adding and setting appointments in Outlook using C#

A

Andrew Mercer

Hi,

I have some code that adds/updates appointments to the default outlook
calendar.

Using C# code is it possible to:

1. Alter the color of the appointment being added/updated?

2. Add appointments to a NON default calendar?

Any advice or sample code would be most appreciated as I have spent
ages trying to resolve this.

Thanks in advance

Andrew
 
K

Ken Slovak - [MVP - Outlook]

What do you mean alter the color? What version of Outlook?

You can add appointments to any calendar folder, default or non-default.
Just use the Items.Add() method of that folder's Items collection. You can
navigate to the folder using NameSpace().Folders.
 
Top