Skip to main content

Questions tagged [combobox]

Combobox allows to select one option out of several (similar to a dropdownlist), or to type a custom option.

1 vote
1 answer
36 views

C# WPF ComboBox Selection Problem with Arrow Keys

I making a UserControl in my C# WPF MVVM application. When I type in the ComboBox Filtered products show, lets say 8 filtered products are showing in dropdown list, problem start from here if i try to ...
Asif Nadeem's user avatar
0 votes
0 answers
4 views

UserForm 1 run comand button is affecting UserForm 2 combo boxes

I am looking for some help,I have created two user forms and inside there are several combo boxes to handle some Excel data. First user from is to input the data into the sheet and second is to select ...
Maurício Santos's user avatar
0 votes
0 answers
22 views

How can I create a combobox with buttons next to the items?

I would like to create a combobox with "remove" buttons next to the combobox items. But I don't know how can I remove (or hide) the button next to the selected item. image about my problem I ...
Julcsi's user avatar
  • 17
1 vote
1 answer
66 views

ComboBox - add user value to dropdown list

I have CComboBox - dropdown type. I add there any predefined values from my own list in OnInitDilaog() method. User can either choose value from list or add his own value to editbox. How can I add ...
Michal Hadraba's user avatar
0 votes
0 answers
35 views

JavaFX ComboBox problems with handling a selection [closed]

I have in my program a comboBox (a SearchAbleComboBox from ControlsFX, it works the same as a ComboBox). I need this box for my following useCases: Dropdown with scrollable list Dropdown that is ...
PalBeron's user avatar
0 votes
0 answers
30 views

ShadCn Combobox on Form - onSelect (from CommandItem) does not connect the selected value from Combobox with the defined field on the form

my issue with the ShadCn Combobox on Form is that onSelect (from CommandItem) cannot connect the value from Combobox with the form's field. The constant for Combobox is called - serviceCategories. ...
Violeta Damjanovic-Behrendt's user avatar
0 votes
1 answer
39 views

VBA - Word add a ComboBox and fill it with values

I dont understand why I cant just simply add an ActiveX ComboBox to Word and fill values via VBA... Word is just weird in comparism to Excel. When I add the ComboBox called ComboBox1 and open the code ...
yesIamFaded's user avatar
  • 2,039
0 votes
1 answer
24 views

Excel VBA - how do I get the RowSource of a ComboBox to change depending on the value of another Combobox?

basically I'm trying to have two ComboBoxes that interact with each other in my UserForm. The first one having a simple list of maybe ten things as it's RowSource. These ten things however work as ...
sergis's user avatar
  • 3
0 votes
0 answers
8 views

Use ComboBox for datagridview column when datagridview has a table as datasource

I code in C# with VS 2019. Since I an novice in C#, I am appealing to this forum. I have a DataGridView binned to DataTable. I would like assign a cell value from a ComboBox. Displaying a ComboBox ...
MeSol's user avatar
  • 1
1 vote
1 answer
38 views

Basic ComboBoxItem Binding Programmatically In C# WPF

I am trying to change ComboBoxItem Template Programmatically //Main Style Style style = new Style() { TargetType = typeof(ComboBoxItem) }; //Set Template ControlTemplate temp = new ControlTemplate(...
user1807378's user avatar
0 votes
1 answer
66 views

Combobox ItemTemplate not refreshing when IsAsync = true

I have a combobox template with some fields that take a long time to return their values. So I tried setting IsAsync=true for those fields so that the dropdown should open quickly. The desired result ...
E Mett's user avatar
  • 2,272
2 votes
1 answer
47 views

Make ComboBox Border red if item is not yet selected

I’m new to C# and WPFs, and honestly just started learning on my own this week. I’m trying to make a drop down menu that highlights red (signaling that this field is required) until an item is ...
anon's user avatar
  • 23
0 votes
0 answers
27 views

How to get the index value from the dropdown of v-combobox when down and up arrow buttons are clicked in vuetify 3

I have created a v-combobox where I am getting the values from other component in the same vuetify 3 project. I want to get the index values of the highlighted value when arrow buttons are used. This ...
Rakshith Ganga's user avatar
2 votes
0 answers
37 views

Custom Style for WPF ComboBox

I have this ComboBox in my WPF app. I was requested to make it clickable for the text but I was able to make only the arrow clickable. Is there a way to achieve this? I would say I have been working ...
May Nguyen's user avatar
0 votes
1 answer
66 views

Combobox with multiple selection returning string values

I want to have 2 multiple selection combobox returning/showing the values of the list. My code looks like that: data = [[],[]] nom = [[],[]] data[0] = [['01_Flat', '02_Curv', '03_RX', '04_RY', '05_RZ',...
Enzo's user avatar
  • 1

15 30 50 per page
1
2 3 4 5
1211