資源簡介
隨著我國市場經濟的快速發展,人事工資管理系統在企業的日常管理中發揮著越來越重要的作用。人事工資管理系統可以進行檔案管理、獎罰管理和工資管理等,方便處理企業內部員工的相關工資信息。另外,為了更方便的查看員工的工資信息,還可以通過水晶報表對工資信息進行打印。

代碼片段和文件信息
using?System;
using?System.Collections.Generic;
using?System.ComponentModel;
using?System.Data;
using?System.Drawing;
using?System.Text;
using?System.Windows.Forms;
using?PMS.PMSClass;
namespace?PMS
{
????public?partial?class?frmAddDep?:?Form
????{
????????public?frmAddDep()
????????{
????????????InitializeComponent();
????????}
????????DBOperate?operate?=?new?DBOperate();
????????private?void?button2_Click(object?sender?EventArgs?e)
????????{
????????????this.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)
????????{
????????}
????}
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件????1638400??2008-05-21?16:18??PMS\Databa
?????文件????1048576??2008-05-21?16:18??PMS\Databa
?????文件????1589760??2008-04-21?11:35??PMS\PMS\Backup\PMS.bak
?????文件?????532480??2008-04-22?08:41??PMS\PMS\bin\Debug\PMS.exe
?????文件?????267776??2008-04-22?08:41??PMS\PMS\bin\Debug\PMS.pdb
?????文件???????5632??2005-11-11?22:25??PMS\PMS\bin\Debug\PMS.vshost.exe
?????文件???????4818??2008-04-21?16:28??PMS\PMS\CrystalReport\UserCheck.cs
?????文件??????16384??2008-04-09?11:44??PMS\PMS\CrystalReport\UserCheck.rpt
?????文件???????4811??2008-04-21?16:28??PMS\PMS\CrystalReport\UserInfo.cs
?????文件??????16384??2008-04-15?08:56??PMS\PMS\CrystalReport\UserInfo.rpt
?????文件???????4804??2008-04-21?16:28??PMS\PMS\CrystalReport\UserPay.cs
?????文件??????16384??2008-04-11?15:54??PMS\PMS\CrystalReport\UserPay.rpt
?????文件???????4818??2008-04-21?16:28??PMS\PMS\CrystalReport\UserPrize.cs
?????文件??????16384??2008-04-21?14:25??PMS\PMS\CrystalReport\UserPrize.rpt
?????文件???????4839??2008-04-21?16:28??PMS\PMS\CrystalReport\UserRedeploy.cs
?????文件??????16384??2008-04-09?13:14??PMS\PMS\CrystalReport\UserRedeploy.rpt
?????文件???????1709??2008-04-18?13:48??PMS\PMS\frmAddDep.cs
?????文件???????4253??2008-04-18?13:48??PMS\PMS\frmAddDep.Designer.cs
?????文件??????10406??2008-04-18?13:48??PMS\PMS\frmAddDep.resx
?????文件???????5486??2008-04-18?13:50??PMS\PMS\frmAddEmployee.cs
?????文件??????20429??2008-04-18?13:50??PMS\PMS\frmAddEmployee.Designer.cs
?????文件??????46710??2008-04-18?13:50??PMS\PMS\frmAddEmployee.resx
?????文件???????3659??2008-04-18?13:51??PMS\PMS\frmAddUserCheck.cs
?????文件??????13147??2008-04-18?13:51??PMS\PMS\frmAddUserCheck.Designer.cs
?????文件??????12526??2008-04-18?13:51??PMS\PMS\frmAddUserCheck.resx
?????文件???????3622??2008-04-18?16:48??PMS\PMS\frmAddUserRedeploy.cs
?????文件??????15384??2008-04-18?15:28??PMS\PMS\frmAddUserRedeploy.Designer.cs
?????文件??????12526??2008-04-18?15:28??PMS\PMS\frmAddUserRedeploy.resx
?????文件???????1102??2008-04-18?13:51??PMS\PMS\frmChangeDep.cs
?????文件???????4275??2008-04-18?13:51??PMS\PMS\frmChangeDep.Designer.cs
............此處省略177個文件信息
- 上一篇:原型設計器 C#版
- 下一篇:SWIG源碼與工具.rar
評論
共有 條評論