WEB开发网
开发学院软件开发C语言 利用C#开发科技档案管理系统(三) 阅读

利用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.Tr

(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;
            }
}

上一页  1 2 3 4 5 6  下一页

Tags:利用 开发 科技

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接