Tagged Questions
0
votes
2answers
36 views
Can't find the list of most (all?) tab names for the ribbon in Office
After some heavy googling, I've concluded that I'm unable to locate information on the id names for the different components of the ribbon in Office.
For instance, even though the following XML ...
4
votes
1answer
72 views
RibbonDropDown losing items
I'm adding items to a RibbonDropDown that is used by the New Email inspector at run time. I add the items on start-up and also refresh the list on demand (when the user presses a button)
public void ...
1
vote
1answer
77 views
IRibbonExtensibility->GetCustomUI calling from a class other than Connect.cs
I am using Vs2010 -> Extensibility->Shared Add-in
Connect.cs file
public class Connect : Object, Extensibility.IDTExtensibility2, IRibbonExtensibility
{
public string GetCustomUI(string ...
1
vote
1answer
383 views
Adding CustomUI Ribbon using Shared Add-in(not VSTO) in Outlook 2007,2010,2013
I am using VS 2010 and my project template is Extensibility->Shared Add-in. I want an ribbon with a button which should invoke my form in outlook. I am not able to understand how to do this?
I ...
0
votes
1answer
181 views
Ribbon Invalidate makes my outlook add-in crash
I have a pretty large outlook add-in with following ribbon.xml:
<?xml version="1.0" encoding="UTF-8"?>
<customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui" ...
2
votes
1answer
323 views
One Ribbon XML for Outlook 2007 and Outlook 2010
I am trying to use Ribbon XML to create custom ribbon on Outlook 2010 and 2007, I have one XML file for the ribbon, and it works fine for Outlook 2010, the ribbon appear and is working. But it is not ...
4
votes
3answers
952 views
How to add a group to multiple built-in Ribbon tabs (vsto)?
This is VS2010 + Office 2010 add-in. All I want is to add a button (or button group) to multiple built-in tabs. For example, my buttons should be available in both New Mail Message Ribbon and in New ...
0
votes
1answer
1k views
How to add a button to a pre-existing tab on ribbon (C#)?
I've successfully created a new tab and put it next to the pre-existing ones. Then I realized that I'll only have one button on it, so it makes more sense (for now) to put it on the Home tab. Didn't ...
1
vote
1answer
235 views
Outlook 2007 ribbon customization in .NET using VS2010; insertBeforeMso dynamic function
Could anyone help me get the first tab idMso value of an opened Outlook item window? I need to dynamically set it in a ribbon xml file, since I figured out it would be redundant to add each item ...
2
votes
1answer
471 views
custom ribbon not appearing in outlook when when running a build in vs
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.
1
vote
0answers
110 views
Search Bar in Outlook Ribbon
I have to make a search field in my Ribbon of Outlook with C#.
This field should search a SQL Database Table for people.
Thats all no problem to make the code, the problems are the available fields ...
2
votes
1answer
406 views
ribbon call back method implementaion in VSTO for outlook addin
i have to implement onbutton click activity in ribbon callback and i have this xml.
<button id="GoToAppConfiguration" size="large" label="Application Configuration" imageMso="AutoArchiveSettings" ...
1
vote
1answer
233 views
Outlook Ribbon Customization
i have added a tab in outlook ribbon in using vc++ in visual studio.but i need to hide the tab when opening a perticular mail in outlook 2010.
i have attched snapshot for the same
first image shows ...
2
votes
0answers
220 views
Office Ribbon UI XML - How do you create an In-Ribbon gallery rather than a dropdown button?
I am trying to integrate a custom .net control into several Microsoft Office 2010 applications.
I have created my Ribbon UI in XML. But have no idea how to replicate an In-Ribbon Gallery control. ...
1
vote
1answer
1k views
Outlook 2010 AddIn in the TabAppointment Tab
I tried to add my Outlook 2010 Add-In to the TabAppointment Tab. It perfectly works when I add it to the TabCalendar, but if you click on a appointment in the calendar another tab will be shown and ...
3
votes
1answer
843 views
Outlook Add-In and Disabling/Hiding Custom Menu Items
I've created an Outlook Add-In, and I'm using an XML ribbon configuration file to specify a new tab, and button. The button loads into a new tab within outlook. Now sometimes, based on user we want to ...
3
votes
1answer
3k views
How to have a VSTO Ribbon and Context Menu at the same time?
EDIT: The posters answer is correct except for it should read xmlns="http://schemas.microsoft.com/office/2009/07/customui" for the include. As a side effect the ribbon and context menu defined in an ...
2
votes
1answer
838 views
How to add 'quick steps' style control to Outlook 2010 Ribbon?
As part of my Outlook Addin I would like to add a control to the Ribbon which has the same format as the 'Home\Quick Steps' and 'View\Arrangement' controls. Does anyone know if these can be created by ...
0
votes
1answer
417 views
Outlook 2007 Ribbon and MVP
I'm working on outlook 2007 VSTO Addin.I have added a Ribbon with a button. I am trying to raise an event on button click.On NewInspector event of Application.Inspectors collection I should be able to ...