アイテムのコンボボックスがあります。データベースから値を取得し、その値をコンボボックスに選択したアイテムとして表示したいと考えています。ただし、アイテムも表示する必要があります。
私は、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;