Let's say I got a DataTable with columns A,B,C,D,E.
I got a DataGridView that works in virtual mode because I had to add a column that is unbound with DataTable. This additional column is a combobox that combines columns A,B,D values into one, and after user selects an item, than I'd like to read this selected item value for further processing. In method DataGridView1_ValueChanged I try to read that value by:
DataGridView1[e.ColumnIndex, e.RowIndex].Value.ToString()
and compiler shows exception that I should use operator new for initiating the object. So, seems like I see new row is added visually but I can't access it.
I got stucked in here :(