我有一个包含项目的组合框。我想从数据库中获取一个值并将组合框中的值显示为所选项目。但它也应该显示项目。
我尝试使用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;