Is it possible to replace the selected cell value in datagridview with the selected data in combobox? What I want to do is shown in the picture. Whichever cell I hover over, I want it to change with the data selected with the combobox.

Is it possible to replace the selected cell value in datagridview with the selected data in combobox? What I want to do is shown in the picture. Whichever cell I hover over, I want it to change with the data selected with the combobox.

Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Mehmet FatihPosted Mar 22, 2024, 10:07 PM
I have solved the problem like that.
dataGridView1.CurrentCell.Value = comboBox1.Text;