如何在从数据库中选择的组合框中显示选定项
本文关键字:显示 组合 选择 数据库 | 更新日期: 2023-09-27 18:13:26
我有一个包含项目的组合框。我想从数据库中获得一个值,并在组合框中显示所选项目的值。但它也应该显示项目。
我尝试使用combobox.selectedvalue。但这行不通。我该怎么办?
SqlDataAdapter komut = new SqlDataAdapter("select * from Ogrenci where ogr_no= '" +
Convert.ToInt32(a) + "' ", baglanti);
DataTable dt = new DataTable();
komut.Fill(dt);
DataRow drw1 = dt.Rows[0];
string ogretim = drw1["ogretim"].ToString();
//comboBox7.SelectedItem = comboBox7.FindString(ogretim);
comboBox7.SelectedValue = ogretim;
试试这个:
comboBox7.Items.FindByValue(ogretim).Selected = true;