如何在从数据库中选择的组合框中显示所选项目

时间:2013-05-14 19:39:11

标签: c#

我有一个带有物品的组合框。我想从数据库中获取一个值,并将组合框中的值显示为所选项。但它也应该显示项目。

我尝试使用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;

1 个答案:

答案 0 :(得分:2)

试试这个:

comboBox7.Items.FindByValue(ogretim).Selected = true;