我创建了一个winform程序,它将ms访问数据库中的数据加载到我的列表框中。当我点击我想要更新我的列表框上的数据库和数据源的项目并单击更新按钮时,该项目第一次点击时不会更新,但第二次(在同一项目上),所以每次我需要修改我的数据我需要选择我的项目并单击两次更新按钮。这很疯狂哈哈......
private void buttonUpdate_Click(object sender, EventArgs e)
{
//update the database
OleDbDataAdapter cmd = new OleDbDataAdapter();
cmd.UpdateCommand = new OleDbCommand("UPDATE Item SET ITEM = @ITEM, ITEM_DESC = @ITEM_DESC WHERE ID = @ID",GetConnection());
cmd.UpdateCommand.Parameters.AddWithValue("@ITEM", textBoxITEM.Text);
cmd.UpdateCommand.Parameters.AddWithValue("@ITEM_DESC", textBoxITEMDESC.Text);
cmd.UpdateCommand.Parameters.AddWithValue("@ID", Convert.ToInt32(textBoxID.Text));
cmd.UpdateCommand.ExecuteNonQuery();
// update the datasource
_productlist.Clear();
listBox1.DataSource = null;
listBox1.Items.Clear();
Fill();
listBox1.Update();
}
发生的基本事情:
我想要的是什么:
如何在我的应用程序上修复此错误?如果我需要更清楚,请告诉我。
答案 0 :(得分:0)
我只是改变了这个
// update the datasource
_productlist.Clear();
listBox1.DataSource = null;
listBox1.Items.Clear();
Fill();
listBox1.Update();
到此..
// update the datasource
_productlist.Clear();
listBox1.DataSource = null;
System.Threading.Thread.Sleep(500);
Fill();