• 大小: 1.2MB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2023-10-30
  • 语言: C#
  • 标签: C#  WinForms  

资源简介

☆☆ 资源说明:☆☆ ☆ 系统功能:☆ 灵活的录入数据,使信息传递更快捷; 系统采用人机对话方式,界面美观友好,信息查询灵活、方便,数据存储安全可靠; 实现员工奖罚信息管理; 实现员工工资自动计算; 实现员工考评调动管理; 对用户输入的数据,进行严格的数据检验,尽可能避免人为错误; 系统最大限度地实现了易安装性、易维护性和易操作性;

资源截图

代码片段和文件信息

using System;
using System.Windows.Forms;
using PMS.PMSClass;

namespace PMS
{
    public partial class frmAddDep : Form
    {
        private readonly DBOperate operate = new DBOperate();

        public frmAddDep()
        {
            InitializeComponent();
        }

        private void button2_Click(object sender EventArgs e)
        {
            Close();
        }

        private void button1_Click(object sender EventArgs e)
        {
            if (txtDepName.Text.Trim() == ““)
            {
                MessageBox.Show(“请输入部门名称“ “提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
                return;
            }
            else
            {
                string str = “select count(*) from tb_department where DepName=‘“ + txtDepName.Text.Trim() + “‘“;
                int i = operate.HumanNum(str);
                if (i > 0)
                {
                    MessageBox.Show(“该部门已经存在“ “提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
                    return;
                }
                else
                {
                    string Addsql = “insert into tb_department(DepName) values(‘“ + txtDepName.Text.Trim() + “‘)“;
                    if (operate.OperateData(Addsql) > 0)
                    {
                        MessageBox.Show(“添加成功“ “提示“ MessageBoxButtons.OK MessageBoxIcon.Information);
                    }
                }
            }
        }

        private void frmAddDep_Load(object sender EventArgs e)
        {
        }
    }
}

评论

共有 条评论