davex_
davex_

Reputation: 148

VS 2010 debugging outlook RibbonExtensibility UI xml

When creating a RibbonExtensibility class for, say, adding custom context menu buttons, is there some way in VS to debug whether the XML you are returning in GetCustomUI is actually valid?

For example, if my XML tries to use a non-existent idMso, I'd like VS to inform me of this somehow.

Upvotes: 1

Views: 38

Answers (2)

Eugene Astafiev
Eugene Astafiev

Reputation: 49395

See How to: Show Add-in User Interface Errors in MSDN.

Upvotes: 1

Dmitry Streblechenko
Dmitry Streblechenko

Reputation: 66215

You need to enable addin error reporting in Outlook: File | Options | Advanced | Developers | Show add-in user interface errors.

Upvotes: 2

Related Questions