• 大小: 7.26MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-11-18
  • 语言: C#
  • 标签:

资源简介

WinForm员工综合管理系统功能介绍:
系统包括人事部、财务部、研发部、销售部等。公司的人员类型有以下几种:普通员工、部门经理、人事部成员和总经理。该管理系统的主要功能是管理员工资料、员工培训、员工奖罚、员工职称、人员调度、人员考评、员工信息统计、劳保福利发放和业绩评定等。
 
员工档案管理
添加/修改/删除员工
添加/修改员工信息
按条件搜索员工(支持模糊查询(奖罚等))
上传/修改员工的照片。
员工培训管理
添加/修改/删除培训信息
根据时间查询培训的基本信息。
 
注意:
开发环境为Visual Studio 2008,数据库为SQL Server 2005,数据库文件在DB_51aspx文件夹中附加就行
管理员用户名密码均是:51aspx

资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace HRManagerSystem
{
    public partial class AddDepartForm : Form
    {
        public AddDepartForm()
        {
            InitializeComponent();
        }

        private void textBox1_TextChanged(object sender EventArgs e)
        {

        }

        private void toolStripButton1_Click(object sender EventArgs e)
        {
            txt_name.Clear();//清空文本内容
        }
        DataDataContext ddt = new DataDataContext();
        private void toolStripButton2_Click(object sender EventArgs e)
        {
            T_Department depart = new T_Department();
            depart.Depart_Name = txt_name.Text;
            ddt.T_Department.Insertonsubmit(depart);
            ddt.SubmitChanges();
            var result = ddt.T_Department.Select(dd => dd);
            dataGridView1.DataSource = result;
        }
        /// 
        /// 退出
        /// 

        /// 
        /// 
        private void toolStripButton3_Click(object sender EventArgs e)
        {
            this.Close();
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        2373  2013-12-20 09:21  51Aspx源码必读.txt
     文件        1346  2010-09-09 00:34  AddDepartForm.cs
     文件        9901  2010-09-09 00:34  AddDepartForm.Designer.cs
     文件       57170  2010-09-09 00:34  AddDepartForm.resx
     文件        2340  2010-09-08 17:15  AddFuLiForm.cs
     文件       14415  2010-09-08 15:39  AddFuLiForm.Designer.cs
     文件       59172  2010-09-08 15:39  AddFuLiForm.resx
     文件        2323  2010-09-08 18:40  AddTrainsForm.cs
     文件       19606  2010-09-08 17:13  AddTrainsForm.Designer.cs
     文件       60813  2010-09-08 17:13  AddTrainsForm.resx
     文件         406  2013-12-20 08:58  app.config
     目录           0  2010-09-11 16:15  bin\
     目录           0  2013-12-20 08:54  bin\Debug\
     文件       20139  2008-07-26 10:17  bin\Debug\Calmness.ssk
     文件       20271  2008-07-26 10:17  bin\Debug\CalmnessColor1.ssk
     文件       20208  2008-07-26 10:17  bin\Debug\CalmnessColor2.ssk
     文件        5032  2008-07-26 10:22  bin\Debug\DeepCyan.ssk
     文件        5037  2008-07-26 10:22  bin\Debug\DeepGreen.ssk
     文件        4908  2008-07-26 10:22  bin\Debug\DeepOrange.ssk
     文件       16021  2008-07-26 09:25  bin\Debug\DiamondBlue.ssk
     文件       16669  2008-07-26 09:25  bin\Debug\DiamondGreen.ssk
     目录           0  2013-12-20 08:54  bin\Debug\document\
     文件         297  2010-09-11 14:10  bin\Debug\document\departde.txt
     文件         224  2010-09-11 14:10  bin\Debug\document\departinfo.txt
     文件         220  2010-09-11 14:11  bin\Debug\document\departm.txt
     文件         218  2010-09-10 09:36  bin\Debug\document\fuli.txt
     文件         208  2010-09-10 09:37  bin\Debug\document\jiangcheng.txt
     文件         214  2010-09-10 09:37  bin\Debug\document\kaoping.txt
     文件        7310  2010-09-10 00:13  bin\Debug\document\renyuantj.txt
     文件         190  2010-09-10 09:37  bin\Debug\document\ryremove.txt
     文件         303  2010-09-10 09:37  bin\Debug\document\staff.txt
............此处省略366个文件信息

评论

共有 条评论

相关资源