利用C#开发科技档案管理系统(三)
2009-02-27 08:18:17 来源:WEB开发网(6)删除数据操作
private void tlBtnDelete_Click(object sender, EventArgs e)
{
if (Convert.ToBoolean(BaseClass.ClsComm.Int_DelePower))
{
if (TxtId.Text.Trim() == string.Empty)
{
MessageBox.Show("ID号为空,删除数据失败!", "错误提示!", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
MyScroll.MyId = TxtId.Text.Trim(); //去空格
try
{
int Id = MySQL.Delete_Scroll_Data_5(MyScroll); //执行删除
MessageBox.Show("删除--整本图信息登记--成功!", "成功提示!", MessageBoxButtons.OK, MessageBoxIcon.Information);
dgvStockList.DataSource = MySQL.GetAll_Scroll_Data_5("tb_Scroll").Tables[0].DefaultView; //表格赋值-- 刷新
this.SetdgvStockListHeadText(); //表头标题处理. 注意:先表格赋值
this.ClearText(); //文本清空
}
catch (Exception ex)
{
MessageBox.Show(ex.Message, "错误提示!", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("对不起,您无权进行【删除数据】操作!", "提示...", MessageBoxButtons.OK, MessageBoxIcon.Information);
return;
}
}
更多精彩
赞助商链接