I've got a combobox on a form that has oledb dataadapter, connection and dataset objects as well. The dataadapter is bound to a table named Clients, and the dataset is filled from there.
I set the combobox's DataSource to ds.Clients, DisplayMember to Name, in the Properties window. Nothing displays though. If I change DataSource to ds.Clients, DisplayMember to Clients.Name, the combobox Text property shows "System.Data.DataViewManagerListItemTypeDescriptor"
If I use code:
cbo.DataSource = ds.Tables("Clients")
cbo.DisplayMember = "Name"
still nothing displays. I'm using VS 2002. What am I missing?