Problem While Using DataSource Property
- by narmadha
Hi, I am using DataSource Property to Bind the data into ComboBox using C# in the following manner:
ComboBox1.DataSource=dt;//dt is the datatable which is having the values
ComboBox1.DisplayMember="column1";
ComboBox1.ValueMember="column2";
The Problem is that i having all the values in the DataSource of the…