1: 2: 3: 4: 5: 6: 7:
DataView dvActive = DsSTUDENTS.Tables[0].DefaultView; dvActive.RowFilter = "Active=1"; this.ComboBox.DataSource = dvActive; this.ComboBox.DisplayMember = "Name"; this.combobox.ValueMember = "Student_ID";