Hey Guys&Gals
my combo box is never empty it always have the text from the first
member of the table... Plz help
my code:
this.cbo.DataSource = SearchData.Tables["Name"];
this.cbo.ValueMember = "ID";
this.cbo.DisplayMember = "Name";
this.cbo.SelectedIndex = -1;
this.cbo.Text = " ";
Sunny