想要为所有Outlook版本(即outlook 2007,outlook 2010,outlook 2013)等创建Outlook加载项设置

时间:2016-02-09 06:57:14

标签: asp.net outlook outlook-addin

我已经为outlook 2007和outlook 2010版本创建了Outlook加载项设置。但是现在我面临的问题是它不适用于Outlook 2013及更高版本,所以我想开发一个适用于所有Outlook版本的设置。

我在一个Outlook设置中谷歌很多但我没有找到任何选项。

1 个答案:

答案 0 :(得分:0)

it is not working on outlook 2013 and later version

Do you see the add-in listed in Outlook?

There are plenty reasons why the add-in is not working...

Microsoft Office applications can disable VSTO Add-ins that behave unexpectedly. If an application does not load your VSTO Add-in, the application might have hard disabled or soft disabled your VSTO Add-in.

Hard disabling can occur when an VSTO Add-in causes the application to close unexpectedly. It might also occur on your development computer if you stop the debugger while the Startup event handler in your VSTO Add-in is executing.

Soft disabling can occur when a VSTO Add-in produces an error that does not cause the application to unexpectedly close. For example, an application might soft disable a VSTO Add-in if it throws an unhandled exception while the Startup event handler is executing.

When you re-enable a soft-disabled VSTO Add-in, the application immediately attempts to load the VSTO Add-in. If the problem that initially caused the application to soft disable the VSTO Add-in has not been fixed, the application will soft disable the VSTO Add-in again. Read more about that in the How to: Re-enable a VSTO Add-in That Has Been Disabled article.

You may find the following articles helpful:

P.S. By default, if an VSTO Add-in attempts to manipulate the Microsoft Office user interface (UI) and fails, no error message is displayed. However, you can configure Microsoft Office applications to display messages for errors that relate to the UI. You can use these messages to help determine why a custom Ribbon does not appear, or why a Ribbon appears but no controls appear. See How to: Show Add-in User Interface Errors for more information.