ComboBox question - display more than one field

  • Thread starter Thread starter gsb58
  • Start date Start date
G

gsb58

Hi!

In MS ACCESS 2000 it is possible to set the rowsource to display two or
many fields from the tblCustomers in a combobox.

How can I do the same with a ComboBox in C# (SQL DB) say...on a
frmOrder where I have a combobox that looks up values from
tblCustomers?

Me.Name
 
You can only show one value in a combobox. If you want to show more
than one, then you need to create a field/property to bind to which has the
aggregate value you want to display.

Hope this helps.
 
Back
Top