Questions tagged [ribbon]

A ribbon is an interface wherein a set of toolbars are organized using tabs. Don't use this tag for questions related to the Netflix Ribbon component, use [netflix-ribbon] instead.

A ribbon is a GUI that uses tabs of graphical controls as the main interface, in a similar way to Microsoft Office.

Some specific APIs have dedicated tags which are more appropriate, e.g. . When possible, use those instead.

Use this tag for questions related to Microsoft Office, WPF, and other similar GUIs that do not have specialized tags.

1674 questions
0
votes
1 answer

xlApp.ActiveWorkbook returns null

I have a 2010 Excel ribbon add-in. When you press a button it simply writes some lines of data into the excel app. In order to write this data I need to get the active worksheet. And in order to get the active worksheet I need the activeWorkBook. I…
Benny
  • 155
  • 3
  • 15
0
votes
1 answer

Telerik WPF RibbonBar populated via DataBinding

I have and object model, a UserProfile, that contains many ServiceProfile, each containing many CommandProfile. I have bound this model with Telerik WPF OutlookBar:
Marco Parenzan
  • 117
  • 1
  • 1
  • 11
0
votes
3 answers

MFC ribbon large images resource on multiple rows

I'm working on a ribbon application and I need lots of icons for each category. If I put all the images for the category on the same row it becomes too wide, i.e. difficult for maintainance when I need to add/edit something. So my question is: is…
Stoyanov
  • 71
  • 8
0
votes
1 answer

Ribbon hidden actions appear again

I am using Delphi XE2 . In the main window of my program I have a ribbon, I created the ribbontabs and ribbon panels and have shares in the groups. Also, in another window I have a TreeView in which I set the access for each user to the ribbon ,…
jmontegrosso
  • 89
  • 1
  • 11
0
votes
1 answer

CRM 2013: Hide system ribbon button for selected entities

I want to hide a system button on the Advanced Find ribbon for selected entities. I have customized the application ribbon and added a display rule (OrRule) to check for the list of entities. However, I am not able to get the InvertResult property…
Rajesh
  • 449
  • 2
  • 9
  • 22
0
votes
1 answer

How to position a newly added Add-On in the outlook

I have created a new add-on for Outlook and I created a setup file aslo. while installing my Add-On, The ribbon appearing in the last. I want to position it first. Please help...
SilverShadow
  • 85
  • 1
  • 9
0
votes
1 answer

MFC Ribbon: RemoveAllSubItems() in CView::OnUpdate leads to access violation (VS2008)

To reproduce the behavior, start a new MFC Outlook style project with Ribbon (CMyView as the view class name). Let's say I want to modify a menu of a CMFCRibbonButton, for example the subitems of the Print command, and for this, I want to…
thomiel
  • 2,467
  • 22
  • 37
0
votes
2 answers

How to disable dxRibbon KeyTips?

Details/Scenario: I am using Delphi XE6 with DevExpress 13.1.4 Components and i have a dxRibbon component. The keytips that i mean is that F, Y1, Y2, Y3... 1, 2, 3... that shows up when i press alt on the keyboard as you can see below: Question: I…
Paulo Roberto Rosa
  • 3,071
  • 5
  • 28
  • 53
0
votes
1 answer

How to control enable/disable state for a c# outlook addin mailitem ribbon button?

I try to find a way to enable/disable an outlook ribbon button (Inspector mail.compose) depending if the cursor is in the body field of the mail or not. The behavior must be the same as the internal ribbon button like for insert links. This button…
0
votes
1 answer

Is it possible to remove parts from the Ribbon, in VSTO Excel C# Document-Level Customizations?

Is it possible to remove parts from the Ribbon, in VSTO Excel C# Document-Level Customizations? For example, I want to disable the Data Tools group in the Ribbon.
user3111311
  • 7,583
  • 7
  • 33
  • 48
0
votes
1 answer

Adding a button to a 3rd party ribbon tab addin

I have a 3rd party addin in word 2010 and do not have access to the source code. The addin adds a new ribbon tab and many groups in the ribbon tab generated by the 3rd party addin. I understand how to use vb2013 to create my own new ribbon tab etc.…
oshirowanen
  • 15,297
  • 82
  • 198
  • 350
0
votes
1 answer

The actions created by me are blocked in the Ribbon, after the close "Customize" window, why does this happen?

I use the component in Delphi XE2 TRibbon, I have a problem, when I open the "Customize" window to add new actions to the "RibbonQuickAccessToolbar". When I close the window; ActionManager actions in which they were created by me, are blocked in the…
jmontegrosso
  • 89
  • 1
  • 11
0
votes
1 answer

CRM 2013- Pass all records id selected in view on click of button

I will be having one command bar button on contacts HomePage Grid and Sub grid. On click of that button i want to pass all records id being shown in view. So consider advance find find view also. We can pass selectedcontolitemids to JS. I don't…
user3463768
  • 163
  • 1
  • 2
  • 15
0
votes
1 answer

Unable to find UIRibbon in Component Service or OleView

I'm recently exploring how to use COM in c++ and come across with a simple ribbon code. Code has: HRESULT hr = CoCreateInstance(CLSID_UIRibbonFramework, NULL, CLSCTX_INPROC_SERVER, IID_PPV_ARGS(&g_pFramework)); So, it's based on COM, right? There…
wliao
  • 1,416
  • 11
  • 18
0
votes
1 answer

How to run a sub on Excel Ribbon action?

I've recently installed a free Excel Add-in called Essential Regression. I want to make a ribbon button to call a specific macro from the VBA project associated with that excel add-in er22.xlam file. So, basically i want to run the macro multistart…