Accept Input from user through datagridviewcomboboxcolumn

678 Views Asked by At

I Have a DataGridView with datagridviewcomboboxcolumn, I'd Like the user to choose an item from datagridviewcomboboxcolumn and have the choice to write it himself ,the input field should also be the Combobox if this item does not exist in this Dropdown, the written choice will be only inserted in the database not added as another choice in the dropdown.

1

There are 1 best solutions below

1
On

To make a column in datagridview of combobox type you can use following code:

  1. Add column in datagridview

    using System.Data.SqlServerCe;
    
    string sqlConnection = "Data Source";
    SqlCeConnection conn = new SqlCeConnection(sqlConnection);
    //Get bind from database.
    string qryGetCategory = "Query to get data for combo box";
    SqlCeCommand cmdCat = new SqlCeCommand(qryGetCategory, conn);
    SqlCeDataAdapter daCat = new SqlCeDataAdapter(qryGetCategory, conn);
    DataTable dtCat = new DataTable();
    daCat.Fill(dtCat);
    
    //Combobox column.
    DataGridViewComboBoxColumn ComboBoxCol = new DataGridViewComboBoxColumn();
    ComboBoxCol.DataSource = dtCat;
    ComboBoxCol.Name = "Column name";
    ComboBoxCol.ValueMember = "Value of member";
    ComboBoxCol.DisplayMember = "Member to be show";
    ComboBoxCol.DropDownStyle = ComboBoxStyle.DropDown;
    datagridview.Columns.Add(ComboBoxCol);