String str = this.dataGridView1.SelectedCells[0].Value.ToString();
string ste = this.dataGridView1.SelectedCells[3].Value.ToString();
DialogResult i = MessageBox.Show("你确定要删除网吧名称为:"+ste+"吗?", "删除确定", MessageBoxButtons.YesNo);
if (i == DialogResult.Yes)
{
if ((str != "")&(ste!=""))
{
try
{
string Afile = "provider=Microsoft.jet.OLEDB.4.0;Data Source=D:\\mysqlserver\\dgmk.mdb";
OleDbConnection AconnStr = new OleDbConnection(Afile);
OleDbCommand Icmd = new OleDbCommand("Delete from client where 网吧名称='" + ste + "' and 编号=" + Convert.ToInt32(str) + "", AconnStr);
AconnStr.Open();
Icmd.ExecuteNonQuery();
AconnStr.Close();
label4.Text = "";
toolStripStatusLabel5.Text = "删除网吧名称为:" + ste + " 成功";
}
catch (Exception E)
{
MessageBox.Show(E.Message.ToString());
}
}
}
这是我写的一个删除确认功能,也不知道是不是你想要的功能。