datagridview combobox

  1. P

    How to have a DataGridViewComboBoxCell ?

    Hi, I am using Windows Forms. I wish to put ComboBoxCell for particular cells only. Is it possible ? I tried by the following way private void MyDataGrid1_CellEnter(object Sender, DataGridViewCellEventArgs e) { if (e.RowIndex == 4) { if...
  2. N

    DataGridView ComboBox Problem

    I have a DataGridView containing information of cities of the world. User can retreive records and insert record of cities from DataGridView. Since every city is associated with a country, therefore in order to insert a new city user must insert country information too. For this purpose, i have...
Back
Top Bottom