Tagged Questions
The datagridviewcomboboxcell tag has no wiki summary.
4
votes
1answer
510 views
Open dropdown(in a datagrid view) items on a single click
How can i avoid the double click on a DropDownButton used within a DataGridView? Right now I am able to view the drop down items within the DataGridView by clicking two or more times. First time it ...
3
votes
3answers
4k views
How to switch between DataGridViewTextBoxCell and DataGridViewComboBoxCell?
I want to have a DataGridView that has two columns. The first column will always be of type DataGridViewComboBoxColumn. Based on the selection in that column, I'd like to be able to change the ...
2
votes
1answer
258 views
How can I prevent users from entering data into DataGridViewComboBoxCells?
I have a project that uses a number of DataGridView controls. Most of the cells are of the DataGridViewTextBoxCell persuasion. I declare my controls like so:
Dim MyCell as DataGridViewCell
Later ...
2
votes
1answer
406 views
Weird problem with DataGridViewComboBoxCell, trying to autocommit changes
So my goal is once a user clicks on the item from the dropdown list, the cell will automatically call EndEdit(). The weirdest thing is that the code below will work on the 2nd-n ComboBoxesCells that ...
2
votes
2answers
820 views
How do I get DataGridView comboboxes to display their drop down list in one click?
After I set "EditOnEnter" to be true, the DataGridViewComboBoxCell still takes two clicks to open if I don't click on the down arrow part of the combo box.
Anyone have any clue how to fix this? I've ...
1
vote
0answers
96 views
C# Combobox behaviour in Datagridview
I have a Datagridview with a column that has a combobox as editing control. Say I choose value X in the combobox in the first row. When I open the combobox in row 2 it will select value X as default ...
1
vote
2answers
235 views
DataGridviewComboBox requires 2 clicks to show the list of items
We have a DataGridView where one column is a ComboBox with the DropDownButton style. The DataGridView is in FullRowSelect mode. Let's assume that I have 5 rows, and row 0 is selected in the ...
1
vote
1answer
471 views
Databinding a combobox column to a datagridview per row (not the entire column)
There are a few posts about this, but after hours of searching I still can't find what I need.
The answer in the following post almost gets me what I want:
Combobox for Foreign Key in DataGridView
...
1
vote
2answers
689 views
DataGridViewComboBoxCell.DataSource being set to null once form is shown
I'm adding a DataGridViewComboBoxColumn to a DataGridView during the form's Load event handler and setting the DataSource of each DataGridViewComboBoxCell in the columns. However, once the form is ...
1
vote
2answers
1k views
Setting default value to a DataGridViewComboBoxCell
The combobox displays a blank field by default even though the combobox is populated with a number of values
ColumnSpeed.DataSource = speedList;
ColumnSpeed.ValueType = typeof(string);
I also tried ...
0
votes
0answers
15 views
getting Datagridview combo box data
I am trying to get the data from a combo box using the following:
string tagName = ((dataGridView1[3, e.RowIndex] as DataGridViewComboBoxCell).EditedFormattedValue) as string;
...
0
votes
0answers
47 views
Bind DataGridviewComboBoxCell into DataGridViw
I have to bind each cell of rows with different data like.
ProductID Color(DataGridviewComboBoxColumn)
1 Red - (ComboboxCell having value only Red,Black,Green and Red is Selected)
...
0
votes
1answer
60 views
Removing item from BindingList does not refresh DataGridViewComboBoxCell
I have a DataGridView where there is a cell which is a DataGridViewComboCell. Each DataGridViewComboCell is bound to a unique copy of a BindingList. When I remove an item from the binding list the ...
0
votes
1answer
71 views
DataGridViewComboBoxCell with ComboBoxStyle Simple don't catch Enter key
In plain combobox when comboboxstyle is set as Simple and user something type in the field and then press Enter KeyUp event is fired.
In datagridview when I have ComboboxColumn and style set as Simple ...
0
votes
0answers
39 views
DatagridviewComboBoxCell too many items in EditMode (MaxDropDownItems )
I use this instructions:
Cell in editmode doesn't fire OnKeyDown event in C#
and I've did combobox in datagridview. When row is selected and first cell is current cell, I press Tab and second ...
0
votes
1answer
89 views
How to show set default value for DataGridViewComboBoxCell Value in winform?
Dear Programmers,
I have datagridview having one DataGridViewComboBoxColumn and i have populated that combobox but after clear that datagridview i have to set one default ...
0
votes
1answer
40 views
how to dropdown combobox automatically in datagridview
how to automatically show dropdown items when users click on a comboBoxCell in datagridview?
0
votes
1answer
107 views
How to select an item from a filling of a DataGridViewComboBox
Project: Winforms, .NET framework: 3.5 (Visual Studio 2008)
My problem is:
I have a DataGridView with several columns, some of the type and another type DataGridViewTextBoxColumn, ...
0
votes
0answers
50 views
assigning datagridviewcombobox selected index value to -1
I have a datagridviewcheckbox column and datagridview combobox column in my datagridview.When checkbox is checked in a row,then the datagridview combobox selected index in that row should be set to ...
0
votes
2answers
191 views
c# add a dgv row with a dataGridViewComboBoxCell
I'm currently trying to add a ComboBox to a dataGridView.
In the DGV, there are 5 columns: checkbox, string, string, combobox, combobox.
both combobox-columns are configured as ...
0
votes
1answer
154 views
Custom draw of DatagridViewComboBoxColumn
I'm using a DataGridView with a DataGridViewComboBoxColumn and I need to add icons to the left of combobox items. I'm currently using EditingControlShowing event along with ComboBox.DrawItem event, ...
0
votes
1answer
147 views
C# Winforms DatagridviewCombobox exception String cannot be converted to class
I am encountering an exception when selecting a new value from a datagridviewcombobox(dropdown menu) control embedded in a datagridview. The combobox is populated by a BindingSource, which is ...
0
votes
1answer
262 views
How to reset DatagridView Combo box cell On the DatagridView Combo Box SelectedIndexChanged change event
"This is all about reset Data Grid View combo box cell when i change the Another data grid combo box Cell"
Example ::
If i have four rows in DataGridView they all including combo box
If i select ...
0
votes
3answers
201 views
FormatException on a DataGridViewComboboxCell.Value
I have a problem which I can't figure out.
I have an DataGridViewComboboxCell,
List<ComboBoxItem> klanten = new List<ComboBoxItem>();
foreach (ICustomer customer in ...
0
votes
0answers
662 views
System.ArgumentException: DataGridViewComboBoxCell value is not valid
dataGridView.Rows.Add(
metaData.Offset.ToString("X2"),
metaData.Length,
metaData.Format, //---This parameter goes to a ComboBox cell which throws an
metaData.Description, ...
0
votes
1answer
392 views
How can I change the color of a DataGridViewComboBoxCell in the CellFormatting event?
private void CellFormatting(object sender, DataGridViewCellFormattingEventArgs e)
{
if(whatever)
e.CellStyle.BackColor = SystemColors.ControlDark;
This works fine for text columns but for ...
0
votes
1answer
196 views
How to set a single ComboBoxCell in a TextBoxCell column of DataGridView?
I have a DataGridView with two columns defined like:
Dim col As New DataGridViewColumn
col.DefaultCellStyle.BackColor = Color.FromArgb(&HFFAAAAAA)
col.Name = "Description"
col.MinimumWidth = 80
...
0
votes
2answers
2k views
C# DataGridViewComboBoxCell setting value manually, value not valid
here is my code:
private class Person
{
private string myName;
private int myValue;
public Person(string name, int value)
{
...
0
votes
1answer
137 views
.NET DataGridViewComboBoxCell behaviour on losing focus
I have a DataGridView bound to a DataTable.
Once the binding is done, I manually search through all the cells of the DGV and replace a single regular DGV cell with a DataGridViewComboBoxCell instance. ...
0
votes
1answer
1k views
Error trying to rebind DataSource to DataGridViewComboBoxCell?
I have a DataGridView with two DataGridViewComboBoxColumns. I want to use the selected item in the first column to trigger a re-population of the items in the second column, on a per-row basis.
...
-3
votes
2answers
127 views
Set SelectedValue in DataGridViewComboBoxColumn or DataGridViewComboBoxCell
I would like to set a value to the ComboBox in the DataGridView. I already have changed the comboBoxItems, I just want to select one of them. Thank you in advance!!!