我记录中有五条记录.当我选中第一条记录,然后点"删除"按钮,刚开始的几笔都没有任何问题,只是到表只剩下最后两条记录时,将弹出错误(如下图),当强行结束程序后,表中的记录最后两条记录也被删除了.
// 工具栏中"删除"按钮的Click Event
private void tsbDelete_Click(object sender, EventArgs e)
{
if (MessageBox.Show("你确定要删除当前笔资料吗?", "系统提示", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
== DialogResult.No)
{
return;
}
this.bsEmployees.RemoveCurrent();
this.bsEmployees.EndEdit();
this.sdaEmployees.Update(this.dsHrm, "Employees");
if (this.dgvViewEmployees.SelectedRows == null)
{
if(dgvViewEmployees.Rows.Count > 0)
{
this.dgvViewEmployees.Rows[dgvViewEmployees.Rows.Count-1].Selected = true;
}
}
}
如下图: