I have a combobox in a column in the grid:
Following is the code for that:
‘defining the cell as combobox
Dim editor As New Xceed.Grid.Editors.GridComboBox()
editor.DataSource = sqlDS.Tables(“result”)
editor.DisplayMember = “description”
editor.ValueMember = “code”
grdGRV.Columns(“desc”).CellEditor = editor
I am able able to get the value member of the combo as follows?
MsgBox(row.Cells(“desc”).Value())
How can I get the display member of the combo?
I want to know the display member and display value.
Imported from legacy forums. Posted by PETE (had 1975 views)