How to get the Combobox selected item text which is inside a DataGridView? I have tried using the below code:
dataGridView1.Rows[1].Cells[1].Val
You could Try this :-
dataGridView1.CurrentRow.Cells[0].Value.ToString();
Index the column of the cell you need to look at, whichever is the index of your ComboBoxColumn.
ComboBoxColumn