亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? wage.cs

?? 主要介紹了系統(tǒng)的需求分析
?? CS
?? 第 1 頁 / 共 4 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.OleDb;
using ManPowerManage.BussinessRule;
namespace ManPowerManage.UILevel
{
	/// <summary>
	/// Wage 的摘要說明。
	/// </summary>
	public class Wage : System.Windows.Forms.Form
	{
		private System.Windows.Forms.TabControl tabControl1;
		private System.Windows.Forms.TabPage tabPage1;
		private System.Windows.Forms.TabPage tabPage2;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label9;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Label label6;
		private System.Windows.Forms.Label label7;
		private System.Windows.Forms.Label label8;
		private System.Windows.Forms.Label label14;
		private System.Windows.Forms.Button btnApply;
		private System.Windows.Forms.Button btnCancel;
		private System.Windows.Forms.Button btnExit;
		private System.Windows.Forms.Button btnSearchCancel;
		private System.Windows.Forms.DateTimePicker dateTimePicker2;
		private System.Windows.Forms.DateTimePicker dateTimePicker1;
		private System.Windows.Forms.TextBox textEmployeeID;
		private System.Windows.Forms.DateTimePicker dateTimePicker4;
		private System.Windows.Forms.DateTimePicker dateTimePicker3;
		private System.Windows.Forms.GroupBox groupBox3;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.Label label13;
		private System.Windows.Forms.Label label15;
		private System.Windows.Forms.Label label16;
		private System.Windows.Forms.Label label17;
		private System.Windows.Forms.Label label18;
		private System.Windows.Forms.Label label19;
		private System.Windows.Forms.Label label20;
		private System.Windows.Forms.GroupBox groupBox4;
		private System.Windows.Forms.Label label22;
		private System.Windows.Forms.TextBox textLateCount;
		private System.Windows.Forms.TextBox textSickLeaveMoney;
		private System.Windows.Forms.TextBox textLeaveEarlyMoney;
		private System.Windows.Forms.TextBox textAffairLeaveCount;
		private System.Windows.Forms.TextBox textSickLeaveCount;
		private System.Windows.Forms.TextBox textLeaveEarlyCount;
		private System.Windows.Forms.TextBox textAffairLeaveMoney;
		private System.Windows.Forms.TextBox textTotalWage;
		private System.Windows.Forms.NumericUpDown numericUpDown2;
		private OleDbConnection Connection1=null;
		private OleDbCommand  Command1=null;
		private OleDbDataReader DataReader1=null;
		private OleDbDataAdapter dataAdapter1=null;
		private OleDbDataAdapter dataAdapter2=null;
		private string connectionStr;
		private string commandStr;			
		private string selectStr1;
		private string selectStr2;		
		private DataSet DataSetWage=new DataSet();
		private DataSet DataSetViewWage=new DataSet();
		DataView DataViewWage=new DataView();
		private System.Windows.Forms.TextBox textRewardMoeny;
		private System.Windows.Forms.Button btnCaculate;
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Windows.Forms.TextBox textLateMoney;
		private System.Windows.Forms.TextBox textEmployeeID2;
		private System.Windows.Forms.Button btnWageSearch;
		private System.Windows.Forms.Button btnWageExport;
		private string [] ReportHeader={"職工號","姓名","部門","職務","基本工資","獎金","遲到罰款","早退罰款","病假罰款","事假罰款","獎懲總數(shù)","總工資","開始日期","截至日期","發(fā)放日期"};
		private System.Windows.Forms.Button btnPeopleWageExport;
		private System.Windows.Forms.Label lblTotalWage;
		private System.Windows.Forms.TextBox textBasicWage;
		private System.Windows.Forms.Label label24;
		private System.Windows.Forms.TextBox textAbsence;
		private System.Windows.Forms.TextBox textAbsenceMoney;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label21;
		

		/// <summary>
		/// 必需的設計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

		public Wage()
		{
			//
			// Windows 窗體設計器支持所必需的
			//
			InitializeComponent();
			this.connectionStr="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +Application.StartupPath + "\\ManPowerManage.mdb"; 
			this.selectStr2="select * from View_Wage";
			this.selectStr1="select * from Wage";			
			this.Connection1=new OleDbConnection(this.connectionStr);
			this.Command1=new OleDbCommand();
			this.dataAdapter1=new OleDbDataAdapter(this.selectStr1,this.Connection1);
			this.dataAdapter2=new OleDbDataAdapter(this.selectStr2,this.Connection1);
			this.Command1.Connection=this.Connection1;

			//
			// TODO: 在 InitializeComponent 調(diào)用后添加任何構造函數(shù)代碼
			//
		}

		/// <summary>
		/// 清理所有正在使用的資源。
		/// </summary>
		protected override void Dispose( bool disposing )
		{
			if( disposing )
			{
				if(components != null)
				{
					components.Dispose();
				}
			}
			base.Dispose( disposing );
		}

		#region Windows 窗體設計器生成的代碼
		/// <summary>
		/// 設計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Wage));
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.btnCaculate = new System.Windows.Forms.Button();
			this.textTotalWage = new System.Windows.Forms.TextBox();
			this.label22 = new System.Windows.Forms.Label();
			this.groupBox4 = new System.Windows.Forms.GroupBox();
			this.textRewardMoeny = new System.Windows.Forms.TextBox();
			this.label20 = new System.Windows.Forms.Label();
			this.groupBox3 = new System.Windows.Forms.GroupBox();
			this.textLateCount = new System.Windows.Forms.TextBox();
			this.textAffairLeaveMoney = new System.Windows.Forms.TextBox();
			this.textLeaveEarlyCount = new System.Windows.Forms.TextBox();
			this.textSickLeaveCount = new System.Windows.Forms.TextBox();
			this.textAffairLeaveCount = new System.Windows.Forms.TextBox();
			this.textLateMoney = new System.Windows.Forms.TextBox();
			this.textLeaveEarlyMoney = new System.Windows.Forms.TextBox();
			this.textSickLeaveMoney = new System.Windows.Forms.TextBox();
			this.label19 = new System.Windows.Forms.Label();
			this.label18 = new System.Windows.Forms.Label();
			this.label17 = new System.Windows.Forms.Label();
			this.label16 = new System.Windows.Forms.Label();
			this.label15 = new System.Windows.Forms.Label();
			this.label13 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.btnPeopleWageExport = new System.Windows.Forms.Button();
			this.btnApply = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.numericUpDown2 = new System.Windows.Forms.NumericUpDown();
			this.label2 = new System.Windows.Forms.Label();
			this.label1 = new System.Windows.Forms.Label();
			this.label10 = new System.Windows.Forms.Label();
			this.label9 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
			this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
			this.label11 = new System.Windows.Forms.Label();
			this.textEmployeeID = new System.Windows.Forms.TextBox();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label6 = new System.Windows.Forms.Label();
			this.label7 = new System.Windows.Forms.Label();
			this.label8 = new System.Windows.Forms.Label();
			this.dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
			this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
			this.label14 = new System.Windows.Forms.Label();
			this.textEmployeeID2 = new System.Windows.Forms.TextBox();
			this.btnSearchCancel = new System.Windows.Forms.Button();
			this.btnWageSearch = new System.Windows.Forms.Button();
			this.btnWageExport = new System.Windows.Forms.Button();
			this.btnExit = new System.Windows.Forms.Button();
			this.lblTotalWage = new System.Windows.Forms.Label();
			this.textBasicWage = new System.Windows.Forms.TextBox();
			this.label24 = new System.Windows.Forms.Label();
			this.textAbsence = new System.Windows.Forms.TextBox();
			this.textAbsenceMoney = new System.Windows.Forms.TextBox();
			this.label3 = new System.Windows.Forms.Label();
			this.label21 = new System.Windows.Forms.Label();
			this.tabControl1.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.groupBox4.SuspendLayout();
			this.groupBox3.SuspendLayout();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
			this.tabPage2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.groupBox2.SuspendLayout();
			this.SuspendLayout();
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add(this.tabPage1);
			this.tabControl1.Controls.Add(this.tabPage2);
			this.tabControl1.Location = new System.Drawing.Point(8, 8);
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(688, 432);
			this.tabControl1.TabIndex = 0;
			this.tabControl1.SelectedIndexChanged += new System.EventHandler(this.tabControl1_SelectedIndexChanged);
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.Add(this.label24);
			this.tabPage1.Controls.Add(this.textBasicWage);
			this.tabPage1.Controls.Add(this.lblTotalWage);
			this.tabPage1.Controls.Add(this.btnCaculate);
			this.tabPage1.Controls.Add(this.textTotalWage);
			this.tabPage1.Controls.Add(this.label22);
			this.tabPage1.Controls.Add(this.groupBox4);
			this.tabPage1.Controls.Add(this.groupBox3);
			this.tabPage1.Controls.Add(this.btnPeopleWageExport);
			this.tabPage1.Controls.Add(this.btnApply);
			this.tabPage1.Controls.Add(this.btnCancel);
			this.tabPage1.Controls.Add(this.groupBox1);
			this.tabPage1.Controls.Add(this.label12);
			this.tabPage1.ForeColor = System.Drawing.SystemColors.Desktop;
			this.tabPage1.Location = new System.Drawing.Point(4, 21);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Size = new System.Drawing.Size(680, 407);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "工資發(fā)放";
			// 
			// btnCaculate
			// 
			this.btnCaculate.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnCaculate.Image = ((System.Drawing.Image)(resources.GetObject("btnCaculate.Image")));
			this.btnCaculate.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnCaculate.Location = new System.Drawing.Point(408, 32);
			this.btnCaculate.Name = "btnCaculate";
			this.btnCaculate.Size = new System.Drawing.Size(56, 24);
			this.btnCaculate.TabIndex = 124;
			this.btnCaculate.Text = "計算";
			this.btnCaculate.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnCaculate.Click += new System.EventHandler(this.btnCaculate_Click);
			// 
			// textTotalWage
			// 
			this.textTotalWage.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textTotalWage.Enabled = false;
			this.textTotalWage.Location = new System.Drawing.Point(424, 336);
			this.textTotalWage.Name = "textTotalWage";
			this.textTotalWage.Size = new System.Drawing.Size(72, 21);
			this.textTotalWage.TabIndex = 122;
			this.textTotalWage.Text = "";
			// 
			// label22
			// 
			this.label22.Location = new System.Drawing.Point(352, 344);
			this.label22.Name = "label22";
			this.label22.Size = new System.Drawing.Size(72, 16);
			this.label22.TabIndex = 121;
			this.label22.Text = "工資總計¥";
			// 
			// groupBox4
			// 
			this.groupBox4.Controls.Add(this.textRewardMoeny);
			this.groupBox4.Controls.Add(this.label20);
			this.groupBox4.Location = new System.Drawing.Point(336, 208);
			this.groupBox4.Name = "groupBox4";
			this.groupBox4.Size = new System.Drawing.Size(176, 80);
			this.groupBox4.TabIndex = 120;
			this.groupBox4.TabStop = false;
			this.groupBox4.Text = "獎勵懲罰";
			// 
			// textRewardMoeny
			// 
			this.textRewardMoeny.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textRewardMoeny.Enabled = false;
			this.textRewardMoeny.Location = new System.Drawing.Point(80, 32);
			this.textRewardMoeny.Name = "textRewardMoeny";
			this.textRewardMoeny.Size = new System.Drawing.Size(56, 21);
			this.textRewardMoeny.TabIndex = 118;
			this.textRewardMoeny.Text = "";
			// 
			// label20
			// 
			this.label20.Location = new System.Drawing.Point(8, 32);
			this.label20.Name = "label20";
			this.label20.Size = new System.Drawing.Size(72, 23);
			this.label20.TabIndex = 54;
			this.label20.Text = "獎懲總計¥";
			// 
			// groupBox3
			// 
			this.groupBox3.Controls.Add(this.textAbsence);
			this.groupBox3.Controls.Add(this.textAbsenceMoney);
			this.groupBox3.Controls.Add(this.label3);
			this.groupBox3.Controls.Add(this.label21);
			this.groupBox3.Controls.Add(this.textLateCount);
			this.groupBox3.Controls.Add(this.textAffairLeaveMoney);
			this.groupBox3.Controls.Add(this.textLeaveEarlyCount);
			this.groupBox3.Controls.Add(this.textSickLeaveCount);
			this.groupBox3.Controls.Add(this.textAffairLeaveCount);
			this.groupBox3.Controls.Add(this.textLateMoney);
			this.groupBox3.Controls.Add(this.textLeaveEarlyMoney);
			this.groupBox3.Controls.Add(this.textSickLeaveMoney);
			this.groupBox3.Controls.Add(this.label19);
			this.groupBox3.Controls.Add(this.label18);
			this.groupBox3.Controls.Add(this.label17);
			this.groupBox3.Controls.Add(this.label16);
			this.groupBox3.Controls.Add(this.label15);
			this.groupBox3.Controls.Add(this.label13);
			this.groupBox3.Controls.Add(this.label5);
			this.groupBox3.Controls.Add(this.label4);
			this.groupBox3.ForeColor = System.Drawing.SystemColors.Desktop;
			this.groupBox3.Location = new System.Drawing.Point(16, 128);
			this.groupBox3.Name = "groupBox3";
			this.groupBox3.Size = new System.Drawing.Size(296, 208);
			this.groupBox3.TabIndex = 116;
			this.groupBox3.TabStop = false;
			this.groupBox3.Text = "考勤罰款";
			// 
			// textLateCount
			// 
			this.textLateCount.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.textLateCount.Enabled = false;
			this.textLateCount.Location = new System.Drawing.Point(88, 32);
			this.textLateCount.Name = "textLateCount";
			this.textLateCount.Size = new System.Drawing.Size(32, 21);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99国产欧美另类久久久精品 | 一本一道久久a久久精品| 蜜臀av性久久久久av蜜臀妖精| 亚洲精品国产第一综合99久久 | 性久久久久久久久久久久| 国产精品久久久久三级| 久久久国产综合精品女国产盗摄| 精品国产乱码久久久久久久 | 国产一区二区三区在线观看免费视频 | 欧美精品在线视频| 欧美日韩国产美| 欧美日韩一区在线观看| 欧美人伦禁忌dvd放荡欲情| 在线播放国产精品二区一二区四区| 欧美高清视频一二三区 | 国产精品一二二区| 国产凹凸在线观看一区二区| 成人精品亚洲人成在线| 色婷婷激情综合| 欧美日韩一区久久| 欧美不卡一二三| 国产精品久久久久久亚洲毛片| 亚洲一区二区影院| 蜜桃精品视频在线| 国产福利一区在线观看| 日本韩国欧美三级| 日韩欧美精品三级| 国产日韩欧美电影| 亚洲一区二区在线观看视频 | jlzzjlzz欧美大全| 欧美亚洲禁片免费| 久久综合久久久久88| 亚洲欧美日韩国产综合| 男人的天堂亚洲一区| 成人丝袜视频网| 欧美美女一区二区| 国产精品国产a| 久热成人在线视频| 色网站国产精品| 国产欧美日韩综合精品一区二区| 亚洲精品免费看| 国内精品免费**视频| 91国产成人在线| 久久亚洲综合色一区二区三区| 亚洲一二三区不卡| 国产大陆a不卡| 日韩一区国产二区欧美三区| 自拍偷拍欧美激情| 国产精品18久久久| 日韩欧美国产一区二区在线播放| 综合网在线视频| 国产·精品毛片| 精品国产亚洲在线| 亚洲成人免费观看| 91国产免费看| 亚洲欧美视频在线观看| 白白色 亚洲乱淫| 久久综合资源网| 精品一区二区三区香蕉蜜桃 | 9久草视频在线视频精品| 精品剧情v国产在线观看在线| 午夜精品久久久久| 91毛片在线观看| 中文字幕一区二区三| 国产成人综合在线观看| 日韩欧美激情四射| 久久精品国产亚洲5555| 欧美色视频一区| 亚洲美女淫视频| 99re亚洲国产精品| 欧美激情一区三区| 粉嫩av亚洲一区二区图片| 国产亚洲精久久久久久| 日本美女一区二区三区| 色婷婷精品大在线视频| 一区二区三区在线播放| 色哟哟在线观看一区二区三区| 亚洲欧美一区二区三区国产精品| 成人黄页在线观看| 国产精品电影院| 色噜噜久久综合| 亚洲国产综合视频在线观看| 97成人超碰视| 亚洲午夜在线观看视频在线| 欧美日韩国产a| 一区二区三区在线免费观看| 色婷婷激情久久| 日韩av成人高清| 欧美精品一区二区三区在线播放 | 日本一区二区三区在线不卡| 国产高清无密码一区二区三区| 日本一区二区高清| 一本大道久久a久久综合| 亚洲国产精品久久久久婷婷884 | 精品国产凹凸成av人网站| 精品影视av免费| 欧美激情一二三区| 欧美在线视频日韩| 蜜桃久久av一区| 中文字幕 久热精品 视频在线| 91视频国产资源| 美女网站色91| 国产精品乱码一区二三区小蝌蚪| 一本大道久久精品懂色aⅴ | 国产精品视频一区二区三区不卡 | 性感美女久久精品| 精品日韩一区二区三区免费视频| 国产成人精品aa毛片| 亚洲精品视频一区| 欧美大片顶级少妇| 99精品欧美一区| 美女脱光内衣内裤视频久久网站| 久久久国产精华| 91精品欧美久久久久久动漫| 国产成人久久精品77777最新版本| 亚洲精品免费视频| 久久精品人人做人人综合| 韩国av一区二区| 亚洲成a人v欧美综合天堂下载 | 欧美系列在线观看| 国产酒店精品激情| 五月婷婷激情综合| 亚洲欧美在线观看| 欧美成人免费网站| 欧美日韩激情一区| 色综合久久综合中文综合网| 久久99蜜桃精品| 午夜视黄欧洲亚洲| 最新国产精品久久精品| 久久免费视频一区| 91精品国产综合久久福利| 成人一区二区在线观看| 国产在线精品免费av| 亚洲a一区二区| 亚洲一区二区精品视频| 国产精品久久久久久福利一牛影视 | 亚洲国产日韩a在线播放| 精品国产网站在线观看| 欧美日韩国产综合久久| 色狠狠色噜噜噜综合网| www.在线欧美| 成人午夜激情影院| 国产自产视频一区二区三区| 婷婷久久综合九色综合绿巨人| 夜夜精品视频一区二区| 中文字幕亚洲在| 国产精品美女久久久久av爽李琼| 久久综合国产精品| 26uuu国产电影一区二区| 欧美一区二区三区精品| 在线不卡中文字幕| 欧美一级在线视频| 91精品国产美女浴室洗澡无遮挡| 欧美午夜视频网站| 欧美日本在线视频| 欧美一级理论片| 日韩欧美亚洲一区二区| 日韩精品影音先锋| 337p日本欧洲亚洲大胆精品| 久久色在线视频| 欧美国产视频在线| 国产精品久久影院| 亚洲情趣在线观看| 亚洲国产综合视频在线观看| 日韩国产在线观看一区| 蜜臀久久99精品久久久画质超高清| 日韩激情视频网站| 国产一区在线观看麻豆| 国产99久久久精品| 在线视频欧美区| 欧美巨大另类极品videosbest | 亚洲蜜桃精久久久久久久| 亚洲黄色片在线观看| 视频一区视频二区中文| 久久91精品久久久久久秒播| 国产剧情av麻豆香蕉精品| 成人黄色在线看| 欧美疯狂做受xxxx富婆| 2021国产精品久久精品| 亚洲日本va午夜在线电影| 丝袜美腿亚洲一区二区图片| 国产乱对白刺激视频不卡| 91麻豆精品一区二区三区| 色94色欧美sute亚洲线路一久| 日韩女同互慰一区二区| 国产精品嫩草影院av蜜臀| 午夜一区二区三区视频| 国产精品亚洲视频| 精品视频一区 二区 三区| 久久久亚洲精华液精华液精华液| 成人免费在线视频| 精品系列免费在线观看| 欧洲精品一区二区| 国产欧美va欧美不卡在线| 三级欧美在线一区| 色综合天天性综合| 久久亚洲春色中文字幕久久久| 亚洲大片免费看| 97久久久精品综合88久久| 国产亚洲精品7777|