nez231
nez231

Reputation: 21

How do i create a notification in outlook using VSTO

Is is possible to create a notification in outlook similar to the "Updates available" notification with VSTO?

enter image description here

Upvotes: 0

Views: 469

Answers (2)

Eric Legault
Eric Legault

Reputation: 5834

You can add a custom horizontal Task Pane that can approximate that UI. The alternative is building your own completely custom UI but it is very difficult: https://code.msdn.microsoft.com/OlAdjacentWindows/.

As for auto-updating, you can deploy your add-in using ClickOnce and new versions will be detected and installed automatically: https://msdn.microsoft.com/en-us/library/bb772100.aspx

Or you can build your own similar deployment mechanism with a manifest and source installation files on your own website.

Upvotes: 1

Dmitry Streblechenko
Dmitry Streblechenko

Reputation: 66306

No, that functionality is not exposed or documented.

Upvotes: 0

Related Questions