显示从数据库中获取的组合框中的选定值

时间:2014-02-26 11:36:31

标签: c#

private void Form1_Load_1(object sender, EventArgs e)
{
    string Sql = "select status from lk_tb_project_status";

    OleDbConnection con = new OleDbConnection(constr);
    OleDbCommand com = new OleDbCommand(Sql, con);

    con.Open();

    OleDbDataReader DR = com.ExecuteReader();
    while (DR.Read())
    {
        comboBox1.Items.Add(DR[0]);
    }
}

我从数据库中获取值并在combobox中显示(下拉列表)。数据库中有两个值已售出和打开。我想要的是在页面加载时更改所选项目。任何人都可以帮我这个吗?

3 个答案:

答案 0 :(得分:0)

如果您想将第一个项目设置为选定项目。

试试这个:

comboBox1.SelectedItem = comboBox1.Items[0]; 

OR

comboBox1.SelectedIndex = 0; //it is the index value

答案 1 :(得分:0)

使用FindString方法获取ComboBox中第一个项目的索引,文本为“已售出”。然后将SelectedIndex设置为:

comboBox1.SelectedIndex = comboBox1.FindString("Sold");

如果找不到“已售出”文本,则所选索引将为-1,默认情况下组合框将显示空白项目。

答案 2 :(得分:0)

string Sql = "select status from lk_tb_project_status";
OleDbConnection con = new OleDbConnection(constr);
OleDbCommand com = new OleDbCommand(Sql, con);

con.Open();

comboBox1.Items.Insert(0,"Select Status");
OleDbDataReader DR = com.ExecuteReader();
while (DR.Read())
{
   comboBox1.Items.Add(DR[0]); 
}