首页

C#版 IC卡读写实例源码,考勤系统源码(有截图)

c#

2020-8-30

    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {
            lblTime.Text = DateTime.Now.ToString();//当进行考勤的时候在窗体中显示当前时间
            tsslTime.Text = DateTime.Now.ToString();//在任务栏中显示当前时间
        }

        private void 添加员工ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form2 frm2 = new Form2();
            frm2.ShowDialog();
        }

        private void 系统信息ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            System.Diagnostics.Process.Start("MSINFO32.EXE");
        }

        private void 开始考勤ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            timer1.Start();//开始考勤
            panel1.Visible = true;//显示考勤界面
            timer2.Start();//开始显示当前时间
            开始考勤ToolStripMenuItem.Enabled = false;//禁用开始考勤菜单
        }

        int flag = -1;//设置的一个变量,用于控制一张IC卡只读取一次以及向数据库中只添加一次内容
        int flag2 = -1;//设置的一个变量,用于控制当某个IC卡已经参加考勤后,弹出一次错误提示
        private void timer1_Tick(object sender, EventArgs e)
        {
            int i = baseClass.ReadIC(txtICCard);//调用公共类中的ReadIC方法开始循环读取IC卡
            if (i == -1)//如果返回值是-1说明没有IC卡
            {
                //清空显示员工信息的文本框
                txtDept.Text = "";
                txtFolk.Text = "";
                txtICCard.Text = "";
                txtJob.Text = "";
                txtName.Text = "";
                txtSex.Text = "";
                groupBox1.Text = "考勤进行中";
                flag = -1;//初始化标记
                flag2 = -1;//初始化标记
            }
            else//如果有IC卡进行考勤
            {
                if (flag ==-1)//只有当flag为-1的时候执行
                {
                    string icID = txtICCard.Text.Trim();//获取读取的IC卡编号
                    if (baseClass.isCheck(icID))//isCheck方法判断是否参加过考勤
                    {
                        if (flag2 == -1)//只有当flag2为-1的时候执行
                        {
                            flag2 = 0;//改变标记的值从而实现只弹出一次警告对话框
                            MessageBox.Show("已经参加过考勤!", "警告", MessageBoxButtons.OK, MessageBoxIcon.Error);
                            //清空文本框
                            txtDept.Text = "";
                            txtFolk.Text = "";
                            txtICCard.Text = "";
                            txtJob.Text = "";
                            txtName.Text = "";
                            txtSex.Text = "";
                            txtICCard.Text = "";
                            groupBox1.Text = "考勤进行中";
                        }
                    }
                    else//如果没有参加过考勤
                    {
                        //调用GetInfo方法获取IC卡对应的员工信息
                        baseClass.GetInfo(txtICCard.Text.Trim(), txtName, txtSex, txtJob, txtFolk, txtDept, groupBox1);
                        string name = txtName.Text.Trim();//员工姓名
                        string sex = txtSex.Text.Trim();//员工性别
                        string job = txtJob.Text.Trim();//员工职位
                        string folk = this.txtFolk.Text.Trim();//员工民族
                        string dept = txtDept.Text.Trim();//员工部门
                        //声明一个字符串,用于存储一条插入语句,实现将考勤信息插入到数据表中
                        string str = "insert into CheckNote(C_CardID,C_Name,C_Sex,C_Job,C_Folk,C_Dept,C_Time) values('"   icID   "','"   name   "','"   sex   "','"   job   "','"   folk   "','"   dept   "','"   DateTime.Now.ToShortDateString()   "')";
                        baseClass.ExecuteSQL(str);//ExecuteSQL方法执行SQL语句
                        tsslEinfo.Text = "已经有" baseClass.GetNum(DateTime.Now.ToShortDateString()) "人参加考勤";
                    }
                }
                flag = 0;//改变flag的值实现一张IC卡只存储一次信息

            }
        }

        private void 退出系统ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Application.Exit();
        }

        private void timer2_Tick(object sender, EventArgs e)
        {
            lblTime.Text = DateTime.Now.ToString();
        }

        private void 考勤结束ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            开始考勤ToolStripMenuItem.Enabled = true;
            panel1.Visible = false;
            timer1.Stop();
            timer2.Stop();
            tsslEinfo.Text = "";
        }

        private void 考勤记录ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form3 frm3 = new Form3();
            frm3.ShowDialog();
        }

        private void timer3_Tick(object sender, EventArgs e)
        {
            tsslTime.Text = DateTime.Now.ToString();
        }

        private void 关于ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            AboutBox1 ab = new AboutBox1();
            ab.ShowDialog();
        }
    }
资源下载此资源下载价格为2D币(VIP免费),请先
资源文件列表
IC┐¿╢┴╨┤/CorporationEmployeeICCard.sln , 965
IC┐¿╢┴╨┤/CorporationEmployeeICCard.suo , 18432
IC┐¿╢┴╨┤/CorporationEmployeeICCard/AboutBox1.cs , 3745
IC┐¿╢┴╨┤/CorporationEmployeeICCard/AboutBox1.Designer.cs , 10546
IC┐¿╢┴╨┤/CorporationEmployeeICCard/AboutBox1.resx , 49723
IC┐¿╢┴╨┤/CorporationEmployeeICCard/baseClass.cs , 16873
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/CorporationEmployeeICCard.exe , 141824
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/CorporationEmployeeICCard.pdb , 62976
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/CorporationEmployeeICCard.vshost.exe , 14328
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/CorporationEmployeeICCard.vshost.exe.manifest , 490
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/Interop.Excel.dll , 946176
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/Interop.Office.dll , 155648
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/Interop.VBIDE.dll , 57344
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/Interop.Word.dll , 495616
IC┐¿╢┴╨┤/CorporationEmployeeICCard/bin/Debug/│╠╨≥╩╣╙├╦╡├≈.txt , 78
IC┐¿╢┴╨┤/CorporationEmployeeICCard/CorporationEmployeeICCard.csproj , 7833
IC┐¿╢┴╨┤/CorporationEmployeeICCard/CorporationEmployeeICCard.csproj.user , 530
IC┐¿╢┴╨┤/CorporationEmployeeICCard/db1.mdb , 237568
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form1.cs , 5962
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form1.Designer.cs , 23134
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form1.resx , 6798
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form2.cs , 2963
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form2.Designer.cs , 11722
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form2.resx , 5814
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form3.cs , 1808
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form3.Designer.cs , 7916
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Form3.resx , 6018
IC┐¿╢┴╨┤/CorporationEmployeeICCard/IC card.jpg , 75819
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.AboutBox1.resources , 29561
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.csproj.FileListAbsolute.txt , 4427
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.csproj.GenerateResource.Cache , 1056
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.csproj.ResolveComReference.cache , 784
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.exe , 141824
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.Form1.resources , 180
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.Form2.resources , 180
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.Form3.resources , 180
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.pdb , 62976
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/CorporationEmployeeICCard.Properties.Resources.resources , 72059
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/Interop.Excel.dll , 946176
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/Interop.Office.dll , 155648
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/Interop.VBIDE.dll , 57344
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/Interop.Word.dll , 495616
IC┐¿╢┴╨┤/CorporationEmployeeICCard/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll , 4608
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Program.cs , 506
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Properties/AssemblyInfo.cs , 1400
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Properties/Resources.Designer.cs , 3127
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Properties/Resources.resx , 6191
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Properties/Settings.Designer.cs , 1110
IC┐¿╢┴╨┤/CorporationEmployeeICCard/Properties/Settings.settings , 249
没有账号? 忘记密码?

社交账号快速登录