Bound Control Problem

  • Thread starter Thread starter Peder Y
  • Start date Start date
P

Peder Y

I have a DataTable with "FirstName" and "LastName" columns.

How can I get my bound combo to show both these values as DisplayMember?


Thanks!


- Peder -
 
Add a new DataColumn to the underlying DataTable and set the DataColumns
Expression property to concatenate the two other column field values in the
same row.

Expression = "LastName + ', ' + FirstName"
 
Back
Top