Uninstall Outlook Add-In doesn't remove Menu The default example on msdn of an ASP.NET Outlook Add-In puts a new menu item in Outlook, but even after you uninstall the add-in, the item is still there. Solution: Change their sample code to set the menu as Temporary instead of Permanent (last "true"): myButton = (Office.CommandBarButton)newMenuBar.Controls. Add(Office.MsoControlType.msoControlButton, missing, missing, 1, true); Then run the add-on once (debug or reinstall) to get rid of your menu.
Created By: amos 10/30/2013 12:37:03 PM Updated: 10/30/2013 12:37:44 PM
|
|