如何將數據從數據庫加載到組合框中?我想在窗體中的組合框中顯示supportID。我正在使用的代碼粘貼在這裏。我在formload中調用BindData()。我得到異常:無法綁定到新的顯示成員。 參數名稱:newDisplayMember。我使用的代碼是:如何將數據從數據庫加載到組合框中
public void BindData()
{
SqlConnection con = new SqlConnection(@"server=RSTT2; database = Project ; User Id=sa; Password=PeaTeaCee5#");
con.Open();
string strCmd = "select supportID from Support";
SqlCommand cmd = new SqlCommand(strCmd, con);
SqlDataAdapter da = new SqlDataAdapter(strCmd, con);
DataSet ds = new DataSet();
da.Fill(ds);
cbSupportID.DataSource = ds;
cbSupportID.DisplayMember = "supportID";
cbSupportID.ValueMember = "supportID";
cbSupportID.Enabled = true;
cmd.ExecuteNonQuery();
con.Close();
}
你應該避免發佈代碼只有答案。 – croxy