Hi just upgraded from .NET 1.1 to 2.0
The following code worked fine with 1.1, but with 2.0, the control displays a row that says "System.Row.DataRowView" for each row instead of the DisplayMember data...
Me.lstSeries.DisplayMember
= "CourseName"
Me.lstSeries.ValueMember = "TSlotSeriesID"
Me.lstSeries.DataSource = ds.Tables(0).DefaultView
Where lstSeries is a System.Windows.Form.checke
dlistbox and
ds is a dataset with one table.
Start Free Trial