资源简介
考勤管理系统源代码考勤管理系统源代码 考勤管理系统源代码考勤管理系统源代码
代码片段和文件信息
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;
using System.Data.SqlClient;
namespace 员工考勤管理系统
{
public partial class Attendance : Form
{
public Attendance()
{
InitializeComponent();
}//_来_自_5_1_a_s_p_x
///
/// 初始化加载员工签到签离界面
///
///
///
private void Attendance_Load(object sender EventArgs e)
{
label1.BackColor = Color.Transparent;
this.panel1.Visible = true;
this.panel2.Visible = false;
this.panel1.BackColor = Color.Transparent;
this.panel2.BackColor = Color.Transparent;
timer1.Enabled = true;
timer1.Interval = 100;
timer1.Tick += new EventHandler(time1_Tick);
reLoadTime();
}
private void time1_Tick(object sender EventArgs e)
{
this.label4.Text = DateTime.Now.Hour.ToString() + “时“ + DateTime.Now.Minute.ToString()+“分“+DateTime.Now.Second.ToString()+“秒“;
}
///
/// 签到
///
///
///
private void button1_Click_1(object sender EventArgs e)
{
string number = this.textBox1.Text.Trim();
if (number == string.Empty)
{
MessageBox.Show(“请输入员工编号!“);
return;
}
else
{
int ii;
if (int.TryParse(number out ii)) //bool
{
int intnumber = Convert.ToInt32(number);
string sql = “select count(Time_EmployeeId)as IdCount from Timetable where Time_EmployeeId=@employeeid“;
DataTable dt = DbHelper.Instance.CreateDataTable(sql new SqlParameter(“employeeid“ intnumber));
int count = Convert.ToInt32(dt.Rows[0][“IdCount“]);
DateTime date = DateTime.Now.Date;
DateTime time2 = DateTime.Now;
if (count == 0)
{
MessageBox.Show(“员工编号不存在“);
//DateTime time = DateTime.Now.Date;
//MessageBox.Show(time.ToString(“yyyy-MM-dd“));rn
return;
}
else
{
DateTime nowdate = DateTime.Now.Date;
string sql_date = “select count(Time_Date)as counttime from T
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-07-14 11:02 基于C#.NET的员工考勤管理系统源码\
目录 0 2014-02-18 15:06 基于C#.NET的员工考勤管理系统源码\_UpgradeReport_Files\
文件 3348 2014-02-18 15:06 基于C#.NET的员工考勤管理系统源码\_UpgradeReport_Files\UpgradeReport.css
文件 12505 2010-05-04 01:19 基于C#.NET的员工考勤管理系统源码\_UpgradeReport_Files\UpgradeReport.xslt
文件 69 2014-02-18 15:06 基于C#.NET的员工考勤管理系统源码\_UpgradeReport_Files\UpgradeReport_Minus.gif
文件 71 2014-02-18 15:06 基于C#.NET的员工考勤管理系统源码\_UpgradeReport_Files\UpgradeReport_Plus.gif
文件 393 2013-08-12 13:40 基于C#.NET的员工考勤管理系统源码\App.config
文件 32038 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\appicon.ico
文件 20781 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Attendance.cs
文件 17912 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Attendance.Designer.cs
文件 29484 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Attendance.resx
目录 0 2014-02-18 15:06 基于C#.NET的员工考勤管理系统源码\Backup\
文件 393 2013-08-12 13:40 基于C#.NET的员工考勤管理系统源码\Backup\App.config
文件 32038 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\appicon.ico
文件 20781 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\Attendance.cs
文件 17912 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\Attendance.Designer.cs
文件 29484 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\Attendance.resx
文件 952 2013-08-16 16:34 基于C#.NET的员工考勤管理系统源码\Backup\CheckExist.cs
文件 15525 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\DbHelper.cs
文件 18637 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\EmployeeForm.cs
文件 14614 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\EmployeeForm.Designer.cs
文件 6011 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\EmployeeForm.resx
文件 28021 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\EmployeeInfo .cs
文件 29324 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\EmployeeInfo .Designer.cs
文件 67875 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\EmployeeInfo .resx
文件 2040 2013-08-16 16:34 基于C#.NET的员工考勤管理系统源码\Backup\HelpForm.cs
文件 4407 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\HelpForm.Designer.cs
文件 31633 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\HelpForm.resx
文件 7744 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\Login.cs
文件 8841 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\Login.Designer.cs
文件 46423 2012-07-02 10:40 基于C#.NET的员工考勤管理系统源码\Backup\Login.resx
............此处省略286个文件信息
- 上一篇:分布式估计算法EDA
- 下一篇:套打软件 公司打印 完美破解
评论
共有 条评论