J
John
Hi
I am using below code to fill the drop down list of a combo box from a table
in the dataset;
Dim dv As New DataView(ds.Companies)
Me.txtParent.DataSource = dv
Me.txtParent.DataMember = "Company"
dv.Dispose()
dv = Nothing
Unfortunately no data turns up in combo box. What am I doing wrong?
Thanks
Regards
I am using below code to fill the drop down list of a combo box from a table
in the dataset;
Dim dv As New DataView(ds.Companies)
Me.txtParent.DataSource = dv
Me.txtParent.DataMember = "Company"
dv.Dispose()
dv = Nothing
Unfortunately no data turns up in combo box. What am I doing wrong?
Thanks
Regards