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.Com panies)
Me.txtParent.Da taSource = dv
Me.txtParent.Da taMember = "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.Com panies)
Me.txtParent.Da taSource = dv
Me.txtParent.Da taMember = "Company"
dv.Dispose()
dv = Nothing
Unfortunately no data turns up in combo box. What am I doing wrong?
Thanks
Regards
Comment