I have a combobox I want to populate from a datatable, either by selecting partucilar cells from the table or just bind it to the datatable? but I cant get it to work plz help :(
Printable View
I have a combobox I want to populate from a datatable, either by selecting partucilar cells from the table or just bind it to the datatable? but I cant get it to work plz help :(
ComboBox1.DataSource = DataSet1.Customers
ComboBox1.DisplayMember = "CustomerID"
thx for the fast answer worked for the datatable 2 =)