Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom Ribbon in VSTO Addin for Outlook 2010 doesn't display

I've got a minimal VSTO Addin for Outlook 2010 with a ribbon. My only goal is to display a ribbon (created via designer) with no functionality. From what little I can tell from MSDN ribbons should just automatically be displayed by default, perhaps with tweaking ControlIdType/CustomId properties for tabs.

Alas, tweaking these properties does nothing -- Outlook loads and displays no tab. A simple message box displayed in the ribbon loader reveals it never is triggered. Additionally, I haven't seen any information resources (tutorials, walkthroughs, overviews, etc..) that say anything about needing to manually tell Outlook to display tabs.

  1. How do I get the tabs displayed?
  2. Is there a good resource other than MSDN that's good for VSTO newbies?
like image 957
Kaganar Avatar asked Feb 15 '12 20:02

Kaganar


People also ask

How do I show the ribbon in Outlook 2010?

To see the ribbon again, just double-click any ribbon tab, or press CTRL+F1.


1 Answers

To get your ribbon displayed, on the base ribbon in your code change the RibbonType property to be Microsoft.Outlook.Explorer.

like image 146
John Koerner Avatar answered Sep 21 '22 06:09

John Koerner