Combobox in my DataGridView?
C#
1
Posts
1
Posters
0
Views
1
Watching
-
Hi, I have a DataTable with 4 columns (id, type, length and note) which i bind to a DataGridView (mydataGridView.DataSource = mydataset.Tables[0];). How can I make the "type" column in my datagridview a DataGridViewComboBoxColumn with 3 values (say "white", "black", "gray") representing the same values stored in the DataTable type column? Any help would really be appreciated.