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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.