Combobox allows to select one option out of several (similar to a listbox), however, only the selected one is displayed by default (in the interest of screen real estate).

learn more… | top users | synonyms

-1
votes
0answers
5 views

How to test string list items against the selected item in a combo box

I have a List and I need to test all the items in the list against the selected item in a combo box so its either true or false.
0
votes
0answers
11 views

C# when using tab on combo box it takes two presses to tab to the next field

I have a very simple two field form, a combo box and a text field. combo box is set to tab value of 0 and the text box a tab value of 1. When I start the app the form gives focus to the combo box like ...
-5
votes
2answers
38 views

combo box getting data from notepad

I have combo box and i need to get data from notepad while form load. my code is private string[] items; private void Form1_Load(object sender, EventArgs e) { if ...
0
votes
2answers
19 views

How to add Comboboxes to all ColumnHedares in Datagrid except for the first column in wpf?

I have a datagrid which I have replaced the headers with Comboboxes. I got this part working by using the below code in wpf, but my problem is I don't want to have the combobox for the first column ...
0
votes
3answers
48 views

combo box checked items to single string

Here is my code , string _towns = String.Join(",", (usercontrol.FindControl("comboTown") as RadComboBox).CheckedItems); 'comboTown' has the values Town1 Town2 Town3 Town4 If I checked Town2 ...
0
votes
1answer
22 views

Populate .net combobox with used range from Excel sheet

I'm trying to populate a combobox on a Windows Form with the used range from an Excel workbook. The Excel range I need to reference is D32:D62; however, this range is dynamic. It may only contain 5 ...
-1
votes
1answer
15 views

Binding SelectedItem of ComboBox in DataGrid with different type

I have a DataGrid which contains ComboBox as column. Let consider DataGrid having ItemsSource as ObservableCollection and ComboBox ItemsSource is List . I want to set the ComboBox SelectedItem ...
0
votes
2answers
26 views

Combobox' SelectedItem bound to a DependencyProperty is not refreshing

I have a combobox, whose SelectedItem is bound to a dependency property. public IEnumerable<KeyValuePair<int,string>> AllItems { get { return _AllItems; } set { ...
1
vote
2answers
59 views

How to set onChange Event on comboBox at runtime using a procedure inside another procedure?

I have a dynamic code which It create a comboBox into a StringGrid Cell and this combo is created at runtime and I should set onChange Event for it. I'm using this code bellow, but this code raise a ...
2
votes
2answers
32 views

WPF - How to restyle ComboBox to remove the textbox/editbox and replace with static text

I want to restyle a WPF ComboBox which is formatted to be a drop-list type, BUT remove the selected TextBox which gets populated with the selected contents and just replace it with some static text ...
0
votes
3answers
24 views

Sorting Devexpress ComboBoxEdit date items

I have an issue while sorting out dates in a ComboBoxEdit. Using this line of code : cbeDates.Sorted = true Sorts the items in a weird way. The output is : 01/01/2013 01/02/2013 01/03/2013 .... ...
0
votes
2answers
35 views

Css jquery Combobox

I am trying to create a combo box with css and jquery. I will be having 3 items and I need help on selecting items in combobox and showing up the selected item. Any help would be highly appreciated. ...
0
votes
0answers
22 views

MS Access 2010 VBA Combobox

i am new to programming field for MS Access and VBScript. I have a question that need help from here. first of all i have 2 tables in my MS Access database. 1 is Web, 1 is Owner. Relationship is 1 ...
-1
votes
1answer
21 views

Does anyone have a C# example of using an UltraDataSource as the DataSource to a UltraComboEditor please

Does anyone have a C# example of using an UltraDataSource as the DataSource to a UltraComboEditor please. I can get so far but it doesn't seem to bind.
0
votes
0answers
14 views

WPF: Editable ComboBox and StringFormat

(First of all, I simplified the sample for you to understand.) I want a editable ComboBox that shows values in inches. The original (source) value is a value in pixels (DIPs), because this is the ...
0
votes
2answers
53 views

wpf combobox binding is empty

I am trying to work out wpf with some difficulties. This ComboBox seems a very basic issue but I can't have it populated even after reading all possible similar post. The extra difficulty I think is ...
0
votes
1answer
11 views

WPF Combobox binding to DataTable not working

ComboBox is defined as <ComboBox Name="cmbCallSource" /> At form load I run this code (I checked that dtSources datatable ends up with proper contents in debugger): //Init Source List ...
0
votes
1answer
17 views

Import ForeignKey values by ComboBox

I'm trying to import a ForeignKey values using ComboBox, but the ComboBox loads string values and the ForeignKey type is int,I tried to convert ToString(),then I got error: "The left hand side of ...
0
votes
3answers
46 views

changing the forecolor in array of dynamically created combobox based on item in c#.net

I have to change the forecolor of 30 combobox*s* created dynamically and forecolor schould based on the item value. As, I'm having dynamic array of combobox i cant do it so... please help me. Code ...
0
votes
2answers
34 views

Set ComboBox Text on Basis of SelectedIndex

I am trying to set the Text property of ComboBox on the basis of SelectedIndex but the problem is Text is becoming String.Empty after changing the Index of Combobox. Each Item in ComboBox correspond ...
0
votes
1answer
7 views

ExtJS Combobox not loading up in Panal

I have this panel view. Please check this JSFiddle . So I have a cgi script which returns json for combo-box value and label but its not loading up in combo-box. I am not sure why any help will be ...
0
votes
1answer
35 views

Using Excel ComboBox to pull information from one file to another

I am trying to copy information from an excel database file to an excel display file. I have figured out how to copy that information in and I have different macros depending on the different ...
0
votes
1answer
29 views

Populating a combo box with a list of functions - Need Advice

I'm looking for some advice on the best way to handle this. I have a list of about 200 "Functions" which are listed in a combo box. When the user selects a 'function' from the list, I need to return ...
-5
votes
0answers
34 views

Converting VB Code to C# [closed]

Imports System.ComponentModel ''' <summary> ''' Base class for our LINQ to SQL classes. ''' This class demonstrates one way to implement the IDataErrorInfo ''' interface so that the ...
0
votes
1answer
28 views

Caliburn.Micro: Combobox is not populated

I have a WPF application with Caliburn.Micro. I am trying to populate a new combobox I just added, but it stays empty, though the other comboboxes on the same view are populated. I debuged, so I know ...
0
votes
1answer
13 views

ZK Spreadsheet with combobox

how can i get combobox in a ZK spreadsheet cell as shown in the link below? ZK spreadsheet
0
votes
0answers
8 views

Kendo Combobox - reset value when the selected value is not in the datasource

We were using Telerik MVC extensions for ASP.NET MVC and have started migrating to Kendo UI now. I am facing an issue with Kendo Combo and the details are as follows: Suppose that I am binding a ...
0
votes
0answers
6 views

Having trouble with automation ComboBox1 in Excel 2010 with Months range

I am absolutely new to VBA coding, so please excuse me for my lack of knowledge and lowest level of knowledge. Basically I am trying to automate a worksheet in Excel 2010. Where I wish with the help ...
0
votes
0answers
15 views

Bind WPF combobox in ListView to several values, with unique selected value of each combobox

As described in the title, I want to bind combobox in ListView to a collection of values, but each combobox must have a selected value that is different to other's. What I did is bind SelectedValue ...
0
votes
0answers
32 views

how i get id from selected name by combobox?

i need to know how i get id of vip from selected name in the combobox i make selected value = id here my code and how i add to vip money the new money else { ...
0
votes
0answers
20 views

Object reference not set to an instance of an object. MVC View combobox

When im entering to edit record in my view everything is ok but when I try to change something and submit button Save I have this error Object reference not set to an instance of an object. on ...
0
votes
1answer
24 views

Is there a way to create a combobox in Zend2

I'm using Zend2 and I need a select that allows for input of arbitrary text if none of the selectable items is appropriate. Zend2 doesn't seem to have a combobox element. Ideas?
1
vote
0answers
22 views

WPF databound Combobox

I need to create a usercontrol that behaves like a combobox. Instances of this combobox will be databound to a certain collection at runtime. (i.e a collection of strings, to keep this question as ...
-1
votes
0answers
24 views

Combo box Text Any where Search (Filtering) in WPF [closed]

I have a combo box bind to a LINQ to SQL Object. I would like to filter the contents as the user types. Is there any way to do it.
0
votes
1answer
77 views

remove item selected of first comboBox from second comboBox c# windows form application

I am having a problem: I am making a Windows Forms application in C#. The problem I'm having is I have 4 ComboBoxes, and when I select an item from comboBox1 that item should be removed from ...
0
votes
1answer
20 views

WPF Combobox Styling

Below is my combobox style code. Idea is to put a border around the combobox and reuse the style. <Application x:Class="WpfApplication1.App" ...
0
votes
2answers
28 views

GetDrive Info into Combo Box but concatenate 2 display members

I'm trying to do a combo box that not only contains the drive letter but also the volume label. I'm able to get one or the other by changing the displayMember. I understand that I need to use ...
0
votes
0answers
22 views

save Properties based on ComboBox

I am currently trying to Change a Name pattern for e-mails that are saved on SharePoint through an addon that I'm developing. I have a Combobox, the pattern properties should Change based on what is ...
0
votes
0answers
29 views

How to store the selected value in Tkx::combobox to a variable using perl

I've been playing around Tkx package in perl. I'm successful in creating a combo box with set of values. However I'm not able to find a way to retrieve the selected value from the drop down box. ...
0
votes
1answer
43 views

Ext JS 4.2 Combobox With Remote Store & Paging Default Value Issue

I have a combobox on a form that I am using to add and edit one of my models. The list of values the combobox is bound to could potentially be quite large (1,000's of records) so I need to use a ...
1
vote
1answer
21 views

How to change multiple comboboxes with little code

Here's my problem. I have a userform with 10 comboBoxes. Instead of Select Case al those comboboxes one by one is there a smart way to change multiple combobox properties such as backcolor or ...
0
votes
0answers
53 views

jQuery easyUI datagrid combobox displays old value

I'm using jQuery easyUI edatagrid. I have a table that I can edit the values fine, but one column has to be combobox. Everything works fine (db get's updated), the only problem is when you select a ...
0
votes
0answers
9 views

implement dependent combo box using lwuit

private void buildUI() throws Exception { try { Display.init(this); countryLabel = new Label(resources.getString("Label10")); ...
0
votes
2answers
28 views

what is the function of attribute selected in combo box while fetching data from MYSQL in php

Hello i am beginner in PHP. I am trying to fetch data from MYSQL and want to show in combo box but if user does not re selects the item from item list it highlights error that nothing is selected. Is ...
0
votes
0answers
17 views

How to Set Value of WPF ComboEdit in Editmode

I have a WPF DevExpress ComboEdit on form. Which is binded using enitity framework. It save the ID in DB and display Text in ComboEdit. Now, when select record from List end try to bind it to ...
0
votes
0answers
51 views

Using C# WPF I am trying to populate textbox's with a data bound combobox

I have some code but the textboxes populate after another selection is made. If I were to select John, his information would not fill in until after another selection is made after John. I am trying ...
1
vote
2answers
75 views

How to fill a Combobox based on other Combobox?

I'm kinda new here, and i have a lot questions for a program I'm making, but the one that bugs me most is the one on the title. Basically, I have a Combobox, which I fill using this: DataSet ds = ...
0
votes
1answer
28 views

Customization of default Microsoft Access combobox UI

In my combobox in Microsoft Access I want to display not only the value or the key, but both of them. For example: 1 Paris 2 London 3 New York I found how to show these values in combobox at ...
2
votes
1answer
31 views

wpf default comboBox item when data-binding

I was following the tutorial Binding a comboBox to an Enum and came out with this XML code: <ComboBox DisplayMemberPath="Key" SelectedValuePath="Value" ...
1
vote
0answers
38 views

jQuery AutoComplete combobox issue on IE7/8

I want to use jQuery AutoComplete on a web page. The page is embedded inside an IE Control in an application. The problem is that in IE7 and 8, the control does not render properly, as seen in the ...

1 2 3 4 5 104