hi I am trying to add webcal programmatically into the outlook
Outlook.Application ouApplication = new Outlook.Application();
Outlook.Folder newFolder = ouApplication.GetNamespace("MAPI").OpenSharedFolder("webcalURL") as Outlook.Folder;
but how can I check where the same webcal is already added...
if(!AlreadyAdded())
{
Outlook.Application ouApplication = new Outlook.Application();
Outlook.Folder newFolder = ouApplication.GetNamespace("MAPI").OpenSharedFolder("webcalURL") as Outlook.Folder;
}
bool AlreadyAdded()
{
//Check webcal is already added or not
}