1

I am developing an outlook add-in application and I added a ribbon.xml file in my project and if I run the project my ribbon control is not enabling in my outlook.

Rather I add the ribbon visual designer and changed the ribbon type Microsoft.Outlook.Explorer then I am able to see my ribbon,

What am I missing? I've uploaded a my sample solution here

Artur Peniche
  • 481
  • 6
  • 27
user3240560
  • 360
  • 1
  • 2
  • 18

1 Answers1

1

Do you get any UI errors when using the ribbon xml markup? See How to: Show Add-in User Interface Errors for more information.

See Walkthrough: Creating a Custom Tab by Using Ribbon XML for the detailed steps.

When do you return the ribbon XML markup? Do you check the paramater passed to the GetCustomUI method?

Eugene Astafiev
  • 47,483
  • 3
  • 24
  • 45
  • wow! Eugne, thanks a lot. Yes I was getting some UI issue, I have given id and idMso for tab, now I removed id and it is showing charm. Thanks again. – user3240560 Oct 08 '15 at 13:37