Reputation: 3
I created a simple button for a Outlook ribon bar in Visual Baic .NET using the Ribon designer. Is there a way to get that button to show in multible bars? I tried with generic "OfficeId" and selecting multible RibbonTypes (where i want it to show). As long as I type the correct officeId it will show where I want but I want it to show up any time you are writeing or repplying to a email.
I tried TabNewMailMessage for example and others. TabNewMailMessage only works when you pop out the reply.
Upvotes: 0
Views: 133
Reputation: 49455
You need to select the RibbonType
property values where you would like to see your ribbon customizations:
To add ribbon controls to the Explorer window you need to select the Microsoft.Outlook.Explorer
entry from the list.
By default, if a 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.
Upvotes: 0