what I am trying to do is I have a label and MouseLeftButtonDown Event on it when the user click on the label it open the outlook application but whenever click again it run into an Exception here is the code that I have `
if (e.LeftButton == MouseButtonState.Pressed)
{
Microsoft.Office.Interop.Outlook.Application objOutlook = new Microsoft.Office.Interop.Outlook.Application();
Microsoft.Office.Interop.Outlook.MailItem mic = objOutlook.CreateItem (Microsoft.Office.Interop.Outlook.OlItemType.olMailItem) as Microsoft.Office.Interop.Outlook.MailItem;
mic.To = "someone@live.com";
mic.Subject = "l";
mic.Body = "h";
mic.Display(true);
}
and here is the Exception that I got ![Com Exception][1]
[1]: