Hello,
I'm trying to have a combobox column in my datagrid that contains file types records from a datatable (dtFileTypes).
I've provided the column with the DataPropertyName, DataSource, DisplayMember and Value Member information, and still the datagrid shows the value member inside the combobox.
On form load:
gcBatchFileType.DataPropertyName = "Type"gcBatchFileType.DataSource = dtFileTypes
gcBatchFileType.DisplayMember = "Text"
gcBatchFileType.ValueMember =
"ID"
Please Help...