S
Sandeep K
I am adding one user property to an email in outlook 2007 using VSTO Addin.
When I close Outlook application It asks me, "Do you want to save changes?".
Can I avoid this prompt?
API I used :
prop = MailItem.UserProperties.Add("TestProp"
,
Outlook.OlUserPropertyType.olText
, false
,
Outlook.OlFormatText.olFormatTextText);
prop.Value = "Test";
When I close Outlook application It asks me, "Do you want to save changes?".
Can I avoid this prompt?
API I used :
prop = MailItem.UserProperties.Add("TestProp"
,
Outlook.OlUserPropertyType.olText
, false
,
Outlook.OlFormatText.olFormatTextText);
prop.Value = "Test";