我是编程新手,这可能是一项简单的任务,但我遇到了困难。
我在Windows窗体中有一个组合框,它与SQL Server中名为id
的表列链接。我想检查组合框中输入的值是否存在于列中。如果是,则进一步工作,如果没有,则向用户发出错误消息,无论用户按Enter,Tab或Selection是否更改,它都应该有效。
填充组合框的代码
sqlCmd.Connection = con;
sqlCmd.CommandType = CommandType.Text;
sqlCmd.CommandText = "SELECT pid FROM report2";
System.Data.SqlClient.SqlDataAdapter sqlDataAdap = new
System.Data.SqlClient.SqlDataAdapter(sqlCmd);
DataTable dtRecord = new DataTable();
sqlDataAdap.Fill(dtRecord);
comboBox1.DataSource = dtRecord;
comboBox1.ValueMember = "pid";
con.Close();
*** id是字母数字。
提前致谢
到目前为止,我已经完成了这项工作,但是我收到所有多个时间的错误消息,即使它们是项目列表中的匹配值...
for (int i = 0; i <= comboBox1.Items.Count-1; i++)
{
if (comboBox1.Text.Equals(comboBox1.GetItemText(comboBox1.Items[i]).ToString()))
{
con.Open();
string sql = "SELECT * FROM report2 where partno='" + comboBox1.Text + "'";
System.Data.SqlClient.SqlDataAdapter dataadapter = new System.Data.SqlClient.SqlDataAdapter(sql, con);
DataSet ds = new DataSet();
dataadapter.Fill(ds, "report2");
dataGridView1.DataSource = ds;
dataGridView1.DataMember = "report2";
dataGridView1.ReadOnly = false;
con.Close();
}
else
{
MessageBox.Show("enter valid value for for loop");
}
答案 0 :(得分:0)
这可能是你的解决方案。
首先,获取最近刚刚选择的组合框值。
然后,假设您正在使用EF,请使用组合框选择的ID检查数据库。
最后,如果没有这样的id,要么显示消息而什么也不做,或者如果表中有这样的id,则继续你的逻辑
private void yourCombobox_SelectedValueChanged(object sender, EventArgs e){
int selectedComboboxId = yourCombobox.SelectedValue;
bool recordExists = _context.Set<YourEntity>().Any(x=>x.Id = selectedComboboxId);
if(recordExists){
//record is in the table
//your code
}
else
{
//record is not in the table
MessageBox.Show("Record does not exist. Select new option.")
}
}
答案 1 :(得分:0)
您可以将combo
框设为dropdownlist
。这会限制用户输入combobox
的任何新值,因此您不需要向用户显示错误消息。
尝试以下,
sqlCmd.Connection = con;
sqlCmd.CommandType = CommandType.Text;
sqlCmd.CommandText = "SELECT pid FROM report2";
System.Data.SqlClient.SqlDataAdapter sqlDataAdap = new
System.Data.SqlClient.SqlDataAdapter(sqlCmd);
DataTable dtRecord = new DataTable();
sqlDataAdap.Fill(dtRecord);
comboBox1.DropDownStyle = ComboBoxStyle.DropDownList; //this statement added
comboBox1.DataSource = dtRecord;
comboBox1.ValueMember = "pid";
con.Close();