renjivraman
Member
hai all im doin a project in vb.net 2003 with sql support in which i have to use dynamic binding with combobox my code is as follows:
here OSERVICES is a dataservice class defined by me ,the function GETDATASET will return a dataset which contain the values for the select statementin the first line.. to DS which is of type dataset, but when i run this thing im just getting something like SYSTEM.DATAVIEW.DATAROW with in the combobox dropdownlist...so pls help me solving this..regards renjiv
VB.NET:
ds = oservices.getdataset("select DEALERNAME from adealer")
Me.dealercombo.DataSource = ds.Tables(0)
Me.dealercombo.DisplayMember = "adealer.DEALERNAME"
Last edited by a moderator: