N
nvx
Hi,
how can I change a DataColumn to ComboBox type column in a DataSet?
After I add a new column into the DataSet using
MyDataSet.DataTable.Columns.Add("ColName");
I'd like to change its type so it would appear as a
DataGridViewComboBoxColumn in a DataGridView bound to this DataTable.
I also tried to create the ComboBox type column in the DataSet directly,
but failed (the Add method allows to create DataColumn columns only).
Or: could it be done by changing the column type in the DataGridView? If
so, how?
Thanks...
With regards
nvx
how can I change a DataColumn to ComboBox type column in a DataSet?
After I add a new column into the DataSet using
MyDataSet.DataTable.Columns.Add("ColName");
I'd like to change its type so it would appear as a
DataGridViewComboBoxColumn in a DataGridView bound to this DataTable.
I also tried to create the ComboBox type column in the DataSet directly,
but failed (the Add method allows to create DataColumn columns only).
Or: could it be done by changing the column type in the DataGridView? If
so, how?
Thanks...
With regards
nvx