Questions tagged [ribbon-control]

276 questions
0
votes
1 answer

Creating Tabs, Groups, and ActionItems on TRibbon at runtime using Delphi XE-5

I posted this earlier, but deleted it cause i thought i could contribute more, but soon realized i could not. Anyways, I need to create tabs, groups and actionitems at runtime. procedure TfrmMain.Button2Click(Sender: TObject); var Tab:…
LuvRAD
  • 118
  • 1
  • 4
  • 13
0
votes
1 answer

Office 2013 Word

I need to disable the File Ribbon options on word in office 2013. We have a template that uses VBA to create the document and it also creates custom add ins that we want our users to use not the file options. Ideally within the VBA code we would set…
0
votes
1 answer

How to set Visible false to one of column in Lookup Edit on RibbonControl?

I attached Data Source to Lookup Edit (BarEditItem) on Ribbon Control. Now I need to hide one column in that, How do I set the Visible property to False? In normal form Lookup Edit, just select control and populate all columns and set false to what…
Srihari
  • 2,387
  • 9
  • 51
  • 82
0
votes
1 answer

Add Four buttons in a panel in MFC Ribbon

I want to add 4 navigation button in a panel. For Go to First page , previous page, next page, last page [<< < >> >]. I want these buttons in a row but MFC automatically put them in a column. Is there a work around to achieve this. Thanks
CodeJunkie
  • 113
  • 1
  • 11
0
votes
1 answer

how to add child windows as tabs in wpf ribbon window?

I am new to WPF, I want create a project with ribbon window. I started new project and started with new window with ribbon control. What I want is, when user click on a button in ribbon control, I need to add another window as a tab instance in my…
user1870056
  • 73
  • 2
  • 8
0
votes
1 answer

How to store and retrieve the RadioGroup Radio Button and CheckBox of Ribbon Control from Winforms Devexpress to MS Access Database?

In my form I used Ribbon control in that RadioGroup is used for calculations. Now I need to store content of form and want to retrieve it back if I click in Gridview. I can able to store and retrieve textedit, lookup edit and checkedit outside…
Srihari
  • 2,387
  • 9
  • 51
  • 82
0
votes
1 answer

How to work with RadioGroup in RibbonControl in WInforms Devexpress?

Hi, I need RadioButton on Ribbon Control so I used RadioGroup and created event selectedIndexChanged, In which I performed some tasks private void repositoryItemRadioGroup1_SelectedIndexChanged(object sender, EventArgs e) { RadioGroup…
Srihari
  • 2,387
  • 9
  • 51
  • 82
0
votes
1 answer

How to perform with CheckBox and RadioButton in RibbonControl in DevExpress?

How to work with CheckEdit in RibbonControl ? I drag a CheckEdit and place it in the RibbonPage. But Is show like Button how to change it to normal "CheckBox" ?? I used RadioGroup and perform through SelectedIndexChanged, I hide caption now it shows…
Srihari
  • 2,387
  • 9
  • 51
  • 82
0
votes
5 answers

Menu Contols like the Office 2007 Ribbon

Is there a way to my WinApp written in C# using Visual Studio 2008 have menu controls which look like on these We can fund in Office 2007. Menu http://lh6.ggpht.com/_l7ldTfcnI34/S0wk1-eGSYI/AAAAAAAAEYU/IrTyYDV2Muo/s800/menus.jpg
adopilot
  • 4,340
  • 12
  • 65
  • 92
0
votes
1 answer

Uninstallation of Excel Addin not removed from MS Excel Addin tab/custom tab

I have an application that is developed using CommanBar tools. As there are much constraints in that, i have planned to shift to the Ribbon(view designer). I created a project like, File->New Project->Excel 2007->Excel Addin for 2010. Created a…
roopini n
  • 503
  • 2
  • 7
  • 29
0
votes
1 answer

Outlook - Show Custom Ribbon when a mail is selected

I have a custom ribbon which I have to show when a mail selected and also when the mail is opened by double click. I have the button placed correctly when a mail is opened by double click. How to get the ribbon when a mail is selected? [Mail body…
user2325247
  • 774
  • 1
  • 7
  • 18
0
votes
1 answer

C# VSTO - dynamically set RibbonControl

I have a customized Ribbon in Word. The Ribbon has one comboBox: comboBox_recentConditions which was defined using the Designer - so it's initalized and is empty at load. Now, I would like to dynamically set this comboBox each time the…
etaiso
  • 2,736
  • 3
  • 26
  • 38
0
votes
0 answers

How enable elements in ribbon that was created by visual editor (VS 2012)

I'm using Visual Studio 2012 and I work with MFC project. I added a ribbon and I edited it by clicking (in Resource View) on IDR_RIBBON icon. In the visual mode I have added few categories and buttons from Toolbox. I have also added one button (to…
PolGraphic
  • 3,233
  • 11
  • 51
  • 108
0
votes
1 answer

Creating a ribbon custom button when inserting content to Sharepoing 2010

I want to create a button to popup a window and display a list that it's being requested to an external source. Then the user would click on one of the items to insert and iframe on the body of the post. For this I think best way is to create a…
nhenrique
  • 874
  • 1
  • 16
  • 35
0
votes
1 answer

Custom Windows Form menu in vb.net

I want to make a Custom Windows Forms menu. Now, when I say "menu", I mean where the "Exit", "Maximize" and the "Minimize" icons are. I have seen in Microsoft Office software that Microsoft have done a custom WinForms Menu, and in many other…