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 回答