I\'m trying to bind separate ComboBox cells within a DataGridView to a custom class, and keep getting an error
DataGridViewComboBoxCell value is not v
I had the same problem.
In my case the solution was to fill the data adapter of the Foreign key table. This was not being automatically filled and this was the cause of the problem.
In the Page_Load Event:
Page_Load
Me.TblUserTypesTableAdapter.Fill(Me.DonateDataSet.tblUserTypes)