0
votes
0answers
11 views

Add a ribbon button to office 365 using xml

I want to add a ribbon button to powerpoint. I have office 365. In office 2010 I use this code: <customUI xmlns="http://schemas.microsoft.com/office/2009/07/customui"> <ribbon ...
2
votes
0answers
86 views

Excel Ribbon - Enable Filter button for protected worksheet

Using excel 2010 for protected sheets the auto filtering option on the Ribbon is greyed out. By however by right clicking I am still able to filter just fine despite the sheet being protected so this ...
1
vote
0answers
298 views

Add two images for xml ribbon button for large and normal sizes

I have a button on Ribbon XML with a custom image like this <group id="MyGroup"> <button id="buttonTest" size="large" getImage="GetCustomImage" label="Test"/> </group> public ...
0
votes
3answers
147 views

Word Custom Ribbon Duplicates After Saving

I've created a custom tab in the MS Word 2007 ribbon. The tab and all its features work fine and is saved within a macro enabled template. However, upon creating a new document based on this template, ...
0
votes
0answers
184 views

How to remove buttons from Excel ribbon [closed]

This should be really simple, but I spent a lot of time on research and got no closer to a solution: Years ago I wrote an Excel Add-In with lots of buttons for Excel 2003. Someone ported everything, ...
0
votes
1answer
166 views

Word Ribbon XML: Collapsed group only showing default image

We have a Word Add-in implemented in C++ as COM Add-in. Our ribbon group is loaded using the GetCustomUI callback. When Word 2010 displays our ribbon group in a collapsed layout, only a default icon ...
1
vote
1answer
437 views

How to get the value of a dropDown control?

dropDown on the ribbon: <dropDown id="dd01" onAction="dd01OnAction"/> In VBA I need Sub dd01OnAction(control As IRibbonControl, ID As String, index As Integer) If dd01.Value = "Sky" Then ...
0
votes
1answer
130 views

How to mimic tab onAction attribute?

I need to activate a specific Sheet if corresponding tab is activated XML <tab id="books" label="books" onAction = "goTo1"> VBA Sub goTo1() Sheet1.Activate End Sub It seems onAction ...
0
votes
2answers
404 views

Ribbon XML combobox control to clear values… VB.NET

Hey guys can you help me figure this one out!? I'm still researching for an answer on how to clear the values on a combobox control in a Ribbon XML. So far I have no luck in finding an appropriate ...
1
vote
1answer
237 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 ...
1
vote
2answers
485 views

Can I create a custom excel document level ribbon without VS

I need to create a custom Excel 2010 ribbon (document level). I have no Visual Studio, but have Visual C# 2010 express If this is possible, please give me some gudelines.
0
votes
0answers
128 views

When customizing a ribbon, is there a way to add buttons to a gallery and change their size?

My organization recently got upgraded to Office 2010 (from XP), so I've just started learning about ribbon customization. I've hit a few roadblocks here and there, but for the most part, I've been ...
0
votes
1answer
157 views

<JavaScriptFunction> in <RibbonDiffXml> not working

I created a custom button in the ribbon menua bar in CRM 2011 and now I want to call a webresource js. This is what I have now: <Actions> <JavaScriptFunction FunctionName="functionName" ...
3
votes
2answers
763 views

Is there a way to use VBA and XML to add a button to the Office 2010 Ribbon depending on a string in the file name?

I have done some quite extensive customisation to the Office 2010 ribbon in Microsoft Word, using a combination of XML, VBA - using the Custom UI Editor. What I'm trying to establish is that if it's ...
1
vote
1answer
327 views

How can I add an existing button/group from a ribbon tab to a new custom tab?

I am developing an VSTO Addin and I want to create a new tab with buttons from other tabs. I already created the new tab, but I can't succeed adding the existing buttons and groups.
2
votes
1answer
1k views

Office 2007/2010 Custom Ribbon UI How to Change TAB Color XML TAG

I'm using the Custom UI Editor for Office provided by Microsoft to create custom Ribbon Tab for Excel 2007. I didn't find how to change the color of a Ribbon. Here a sample: <customUI ...
2
votes
2answers
844 views

Dynamics CRM 2011 - Dynamically added FlyoutAnchor sub menu buttons are disabled

I successfully followed the following answer to Add Dropdown Menu to CRM 2011 ribbon and implemented three dynamically loaded FlyoutAnchor buttons with sub menu buttons etc. Yesterday the sub menu ...
0
votes
1answer
491 views

Inserting symbols into Office Ribbon XML controls

I am building a ribbon tab for Word 2010 from scratch using XML stored within a Word template's customUI14.xml file. I am creating buttons that when clicked insert the text for various symbols (the ...
2
votes
1answer
776 views

CRM 2011 - Problem/Bug when using SelectionCountRule in the SUBGRID Ribbon?

When i'm using the "Custom Buttons" in a subgrid i'm having a problem using the SelectionCountRule. I want the button only to be enabled when 1 or more items are selected. But it doesn't work ...
1
vote
1answer
1k views

Visual Studio Images with Ribbons (XML)

I'm making Office 2007 addins and I'm trying to use XML instead of the visual designer to customize the ribbon but for some reason I cant get an image to work with it... What exactly do you have to ...
1
vote
1answer
2k views

CRM 2011 - Application Ribbon Throws An error while Importing

I'm trying to add a custom button to the "Main"-ribbon of a custom entity! I followed the example explained on http://mscrmshop.blogspot.com/2011/06/how-to-start-dialog-from-application_08.html... But ...
1
vote
0answers
110 views

Adding a third-party control to my custom Word Ribbon Tab

I have been working on this for days now and cannot seem to find an answer. Before I deem it as "impossible", however, I thought I'd ask the question here to see if anyone can help me find a solution. ...
0
votes
1answer
770 views

Outlook 2010 - Change the name of a menu tab

I have been asked to write a script to change the name of a 3rd party tab on all Outlook 2010 users' ribbons. The manual process would be to go to File > Options > Customize Ribbon > Select the Main ...
0
votes
1answer
853 views

How to: Excel Ribbon with multiple Workbook-level ribbon items with dynamic attributes?

I am trying to work out a solution to share most of my VBA codebase across workbooks. This involves creating a .xlam file that would contain the shared modules & classes (+ their respective ...