Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

custom ribbon not appearing in outlook when when running a build in vs

Tags:

I followed this tutorial, but when I build then run my project in visual studio a ribbon tab does not appear. I'm using outlook 2010 if that helps.

like image 237
xxyyxx Avatar asked Sep 17 '12 21:09

xxyyxx


2 Answers

Turns out you need to set the ribbontype property to Microsoft.Outlook.Explorer for it to show up. This is not the default value for that field, and no msdn tutorial seems to tell you to make that change.

like image 129
xxyyxx Avatar answered Sep 28 '22 02:09

xxyyxx


http://msdn.microsoft.com/en-us/library/bb398246.aspx

I used this link on MSDN to fix the error. Simply says that you need to set the RibbonType property for which occurrences you want the ribbon visible/usable.

like image 40
MasterK Avatar answered Sep 28 '22 01:09

MasterK