1

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

私は、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;
4

1 に答える 1

2

これを試して:

comboBox7.Items.FindByValue(ogretim).Selected = true;
于 2013-05-14T19:43:34.710 に答える