Hello
I am building an app that will read all the events of a calendar in another computer's outlook.
Is this possible?
This is what I have to connect to my outlook calendar:
Outlook.Application msOutlook = new Outlook.Application();
Outlook.NameSpace ns = msOutlook.GetNamespace("MAPI");
object _missing = Type.Missing;
ns.Logon(_missing, _missing, false, true);
MAPIFolder calendarFolder = ns.GetDefaultFolder(Outlook.OlDefaultFolders.olFolderCalendar);
Outlook.Items calendarItems = calendarFolder.Items;
calendarItems.Sort("Start");
calendarItems.IncludeRecurrences = false;
Go to the complete details ...