Ok I am trying to connect to an Outlook calendar from C# using the following code:
using Outlook = Microsoft.Office.Interop.Outlook;
Outlook.Application msOutlo
Are both calendars in the MAPI namespace? What if you loop through the namespaces to see if other ones have a calendar:
Outlook.Application msOutlook = new Outlook.Application();
Outlook.NameSpace session = msOutlook.Session;
Outlook.Stores stores = session.Stores;
foreach (Outlook.Store store in stores)
{
Outlook.MAPIFolder folder = store.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderCalendar);
MessageBox.Show(folder.Name);
}