I\'d like to bind a ComboBox to a DataTable (I cannot alter its original schema)
ComboBox
DataTable
cbo.DataSource = tbldata; cbo.DataTextField = \"Na
The easiest way is to create a new calculated column in the DataTable, using the Expression property :
tbldata.Columns.Add("FullName", typeof(string), "Name + ' ' + Surname"); ... cbo.DataTextField = "FullName";