How To Add A DataGridViewComboBoxCell to a Bound DataGridView DataSource (Programatically)
问题 Goal I want to have a DataGridViewComboBoxCell after setting my DataGridView's DataSource with a DataView. Current Situation I have a DataTable that is populated with BillDetails as the user navigates through his Bills . I created a DataView and set the DataView's Table to equal to the DataTable of Bill Details. I then set the DataGridView's DataSource to the DataView. Setting the DataGridView's DataSource Dim ViewContent As New DataView ViewContent.Table = dsBillMat.Tables("dtBillDetails")