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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? reward.cs

?? 人事,工資,考勤系統(tǒng),C#實現(xiàn) 1、查看建模圖 本文件夾中的Model目錄下包含了系統(tǒng)的數(shù)據(jù)庫模型圖和系統(tǒng)建模圖
?? CS
?? 第 1 頁 / 共 3 頁
字號:
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Data.OleDb;
using System.IO;
using System.Reflection;

namespace ManPowerManage.UILevel
{
	/// <summary>
	/// Reward 的摘要說明。
	/// </summary>
	public class Reward : System.Windows.Forms.Form
	{
		private System.Windows.Forms.TabControl tabControl1;
		private System.Windows.Forms.TabPage tabPage1;
		private System.Windows.Forms.Button btnModify;
		private System.Windows.Forms.Button btnDelete;
		private System.Windows.Forms.Button btnAdd;
		private System.Windows.Forms.GroupBox groupBox2;
		private System.Windows.Forms.Label label2;
		private System.Windows.Forms.TextBox textRemark;
		private System.Windows.Forms.Label label1;
		private System.Windows.Forms.DateTimePicker dateTimePicker1;
		private System.Windows.Forms.Label label10;
		private System.Windows.Forms.Label label12;
		private System.Windows.Forms.ComboBox comboRewardType;
		private System.Windows.Forms.TextBox textEmployeeID;
		private System.Windows.Forms.DataGrid dataGrid1;
		private System.Windows.Forms.Button btnApply;
		private System.Windows.Forms.Button btnCancel;
		private System.Windows.Forms.Button btnLast;
		private System.Windows.Forms.Button btnFirst;
		private System.Windows.Forms.Label lblRecord;
		private System.Windows.Forms.Button btnPrevious;
		private System.Windows.Forms.Button btnNext;
		private System.Windows.Forms.TabPage tabPage2;
		private System.Windows.Forms.GroupBox groupBox1;
		private System.Windows.Forms.CheckBox checkBox1;
		private System.Windows.Forms.DateTimePicker dateTimePicker3;
		private System.Windows.Forms.DateTimePicker dateTimePicker4;
		private System.Windows.Forms.Label label3;
		private System.Windows.Forms.Label label11;
		private System.Windows.Forms.Label label4;
		private System.Windows.Forms.Label label5;
		private System.Windows.Forms.ComboBox comboRewardType2;
		private System.Windows.Forms.TextBox textEmployeeID2;
		private System.Windows.Forms.Button btnRewardCancel;
		private System.Windows.Forms.Button btnRewardSearch;
		private System.Windows.Forms.Button btnRewardExport;
		private System.Windows.Forms.DataGrid dataGrid2;
		
		private string connectionStr;
		private string selectStr;
		private string commandStr;
		private OleDbConnection Connection1=null;
		private OleDbCommand  Command1=null;
		private OleDbDataReader DataReader1=null;
		private OleDbDataAdapter dataAdapter1=null;
		private OleDbDataAdapter dataAdapter2=null;
		private DataSet DataSetReward=new DataSet();
		private DataSet DataSetViewReward=new DataSet();
		private bool add=false;
		DataView DataViewReward=new DataView();
		private string [] ListHeader={"職工號","姓名","部門","類型","數(shù)額/元","日期"};
		/// <summary>
		/// 必需的設(shè)計器變量。
		/// </summary>
		private System.ComponentModel.Container components = null;

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

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

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

		#region Windows 窗體設(shè)計器生成的代碼
		/// <summary>
		/// 設(shè)計器支持所需的方法 - 不要使用代碼編輯器修改
		/// 此方法的內(nèi)容。
		/// </summary>
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Reward));
			this.tabControl1 = new System.Windows.Forms.TabControl();
			this.tabPage1 = new System.Windows.Forms.TabPage();
			this.btnModify = new System.Windows.Forms.Button();
			this.btnDelete = new System.Windows.Forms.Button();
			this.btnAdd = new System.Windows.Forms.Button();
			this.groupBox2 = new System.Windows.Forms.GroupBox();
			this.label2 = new System.Windows.Forms.Label();
			this.textRemark = new System.Windows.Forms.TextBox();
			this.label1 = new System.Windows.Forms.Label();
			this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
			this.label10 = new System.Windows.Forms.Label();
			this.label12 = new System.Windows.Forms.Label();
			this.comboRewardType = new System.Windows.Forms.ComboBox();
			this.textEmployeeID = new System.Windows.Forms.TextBox();
			this.dataGrid1 = new System.Windows.Forms.DataGrid();
			this.btnApply = new System.Windows.Forms.Button();
			this.btnCancel = new System.Windows.Forms.Button();
			this.btnLast = new System.Windows.Forms.Button();
			this.btnFirst = new System.Windows.Forms.Button();
			this.lblRecord = new System.Windows.Forms.Label();
			this.btnPrevious = new System.Windows.Forms.Button();
			this.btnNext = new System.Windows.Forms.Button();
			this.tabPage2 = new System.Windows.Forms.TabPage();
			this.groupBox1 = new System.Windows.Forms.GroupBox();
			this.checkBox1 = new System.Windows.Forms.CheckBox();
			this.dateTimePicker3 = new System.Windows.Forms.DateTimePicker();
			this.dateTimePicker4 = new System.Windows.Forms.DateTimePicker();
			this.label3 = new System.Windows.Forms.Label();
			this.label11 = new System.Windows.Forms.Label();
			this.label4 = new System.Windows.Forms.Label();
			this.label5 = new System.Windows.Forms.Label();
			this.comboRewardType2 = new System.Windows.Forms.ComboBox();
			this.textEmployeeID2 = new System.Windows.Forms.TextBox();
			this.btnRewardCancel = new System.Windows.Forms.Button();
			this.btnRewardSearch = new System.Windows.Forms.Button();
			this.btnRewardExport = new System.Windows.Forms.Button();
			this.dataGrid2 = new System.Windows.Forms.DataGrid();
			this.tabControl1.SuspendLayout();
			this.tabPage1.SuspendLayout();
			this.groupBox2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid1)).BeginInit();
			this.tabPage2.SuspendLayout();
			this.groupBox1.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)(this.dataGrid2)).BeginInit();
			this.SuspendLayout();
			// 
			// tabControl1
			// 
			this.tabControl1.Controls.Add(this.tabPage1);
			this.tabControl1.Controls.Add(this.tabPage2);
			this.tabControl1.Location = new System.Drawing.Point(16, 16);
			this.tabControl1.Name = "tabControl1";
			this.tabControl1.SelectedIndex = 0;
			this.tabControl1.Size = new System.Drawing.Size(616, 464);
			this.tabControl1.TabIndex = 2;
			// 
			// tabPage1
			// 
			this.tabPage1.Controls.Add(this.btnModify);
			this.tabPage1.Controls.Add(this.btnDelete);
			this.tabPage1.Controls.Add(this.btnAdd);
			this.tabPage1.Controls.Add(this.groupBox2);
			this.tabPage1.Controls.Add(this.dataGrid1);
			this.tabPage1.Controls.Add(this.btnApply);
			this.tabPage1.Controls.Add(this.btnCancel);
			this.tabPage1.Controls.Add(this.btnLast);
			this.tabPage1.Controls.Add(this.btnFirst);
			this.tabPage1.Controls.Add(this.lblRecord);
			this.tabPage1.Controls.Add(this.btnPrevious);
			this.tabPage1.Controls.Add(this.btnNext);
			this.tabPage1.Location = new System.Drawing.Point(4, 21);
			this.tabPage1.Name = "tabPage1";
			this.tabPage1.Size = new System.Drawing.Size(608, 439);
			this.tabPage1.TabIndex = 0;
			this.tabPage1.Text = "獎懲記錄管理";
			// 
			// btnModify
			// 
			this.btnModify.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnModify.Image = ((System.Drawing.Image)(resources.GetObject("btnModify.Image")));
			this.btnModify.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnModify.Location = new System.Drawing.Point(504, 120);
			this.btnModify.Name = "btnModify";
			this.btnModify.Size = new System.Drawing.Size(56, 24);
			this.btnModify.TabIndex = 109;
			this.btnModify.Text = "修改";
			this.btnModify.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnModify.Click += new System.EventHandler(this.btnModify_Click);
			// 
			// btnDelete
			// 
			this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnDelete.Image = ((System.Drawing.Image)(resources.GetObject("btnDelete.Image")));
			this.btnDelete.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnDelete.Location = new System.Drawing.Point(504, 88);
			this.btnDelete.Name = "btnDelete";
			this.btnDelete.Size = new System.Drawing.Size(56, 24);
			this.btnDelete.TabIndex = 108;
			this.btnDelete.Text = "刪除";
			this.btnDelete.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			// 
			// btnAdd
			// 
			this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.btnAdd.Image = ((System.Drawing.Image)(resources.GetObject("btnAdd.Image")));
			this.btnAdd.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.btnAdd.Location = new System.Drawing.Point(504, 56);
			this.btnAdd.Name = "btnAdd";
			this.btnAdd.Size = new System.Drawing.Size(56, 24);
			this.btnAdd.TabIndex = 107;
			this.btnAdd.Text = "添加";
			this.btnAdd.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
			// 
			// groupBox2
			// 
			this.groupBox2.Controls.Add(this.label2);
			this.groupBox2.Controls.Add(this.textRemark);
			this.groupBox2.Controls.Add(this.label1);
			this.groupBox2.Controls.Add(this.dateTimePicker1);
			this.groupBox2.Controls.Add(this.label10);
			this.groupBox2.Controls.Add(this.label12);
			this.groupBox2.Controls.Add(this.comboRewardType);
			this.groupBox2.Controls.Add(this.textEmployeeID);
			this.groupBox2.Location = new System.Drawing.Point(8, 16);
			this.groupBox2.Name = "groupBox2";
			this.groupBox2.Size = new System.Drawing.Size(432, 104);
			this.groupBox2.TabIndex = 37;
			this.groupBox2.TabStop = false;
			this.groupBox2.Text = "獎懲記錄";
			// 
			// label2
			// 
			this.label2.Location = new System.Drawing.Point(16, 64);
			this.label2.Name = "label2";
			this.label2.Size = new System.Drawing.Size(32, 23);
			this.label2.TabIndex = 100;
			this.label2.Text = "備注";
			// 
			// textRemark
			// 
			this.textRemark.Location = new System.Drawing.Point(56, 64);
			this.textRemark.Name = "textRemark";
			this.textRemark.Size = new System.Drawing.Size(360, 21);
			this.textRemark.TabIndex = 99;
			this.textRemark.Text = "";
			// 
			// label1
			// 
			this.label1.Location = new System.Drawing.Point(264, 24);
			this.label1.Name = "label1";
			this.label1.Size = new System.Drawing.Size(40, 23);
			this.label1.TabIndex = 98;
			this.label1.Text = "日期";
			// 
			// dateTimePicker1
			// 
			this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dateTimePicker1.Location = new System.Drawing.Point(312, 24);
			this.dateTimePicker1.Name = "dateTimePicker1";
			this.dateTimePicker1.Size = new System.Drawing.Size(104, 21);
			this.dateTimePicker1.TabIndex = 97;
			this.dateTimePicker1.Value = new System.DateTime(2003, 12, 20, 0, 0, 0, 0);
			// 
			// label10
			// 
			this.label10.Location = new System.Drawing.Point(8, 32);
			this.label10.Name = "label10";
			this.label10.Size = new System.Drawing.Size(48, 23);
			this.label10.TabIndex = 28;
			this.label10.Text = "職工號";
			// 
			// label12
			// 
			this.label12.Location = new System.Drawing.Point(120, 24);
			this.label12.Name = "label12";
			this.label12.Size = new System.Drawing.Size(56, 23);
			this.label12.TabIndex = 34;
			this.label12.Text = "獎懲類型";
			// 
			// comboRewardType
			// 
			this.comboRewardType.ItemHeight = 12;
			this.comboRewardType.Location = new System.Drawing.Point(176, 24);
			this.comboRewardType.Name = "comboRewardType";
			this.comboRewardType.Size = new System.Drawing.Size(80, 20);
			this.comboRewardType.TabIndex = 35;
			// 
			// textEmployeeID
			// 
			this.textEmployeeID.Location = new System.Drawing.Point(56, 24);
			this.textEmployeeID.Name = "textEmployeeID";
			this.textEmployeeID.Size = new System.Drawing.Size(56, 21);
			this.textEmployeeID.TabIndex = 29;
			this.textEmployeeID.Text = "";
			// 
			// dataGrid1
			// 
			this.dataGrid1.AlternatingBackColor = System.Drawing.Color.GhostWhite;
			this.dataGrid1.BackColor = System.Drawing.Color.GhostWhite;
			this.dataGrid1.BackgroundColor = System.Drawing.Color.Lavender;
			this.dataGrid1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.dataGrid1.CaptionBackColor = System.Drawing.Color.RoyalBlue;
			this.dataGrid1.CaptionForeColor = System.Drawing.Color.White;
			this.dataGrid1.DataMember = "";
			this.dataGrid1.FlatMode = true;
			this.dataGrid1.Font = new System.Drawing.Font("Tahoma", 8F);
			this.dataGrid1.ForeColor = System.Drawing.Color.MidnightBlue;
			this.dataGrid1.GridLineColor = System.Drawing.Color.RoyalBlue;
			this.dataGrid1.HeaderBackColor = System.Drawing.Color.MidnightBlue;

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99久久精品国产一区| 6080国产精品一区二区| 日本二三区不卡| 26uuu国产电影一区二区| 亚洲精品成人精品456| 捆绑调教一区二区三区| 在线免费精品视频| 国产精品无圣光一区二区| 蜜臀av性久久久久av蜜臀妖精| eeuss国产一区二区三区| 欧美mv日韩mv国产网站app| 亚洲图片一区二区| 99久久99久久精品国产片果冻 | 91精品国产综合久久福利软件| 国产视频视频一区| 久久精品国产秦先生| 欧美视频在线观看一区二区| 国产精品伦一区二区三级视频| 另类成人小视频在线| 欧美精品v国产精品v日韩精品| 亚洲品质自拍视频| 91首页免费视频| 国产精品美女视频| 成人精品视频网站| 亚洲综合一区在线| eeuss国产一区二区三区| 久久久国产精品麻豆| 久久99深爱久久99精品| 日韩欧美国产午夜精品| 日本欧美在线看| 欧美一区二区三区思思人| 亚洲大片在线观看| 7777女厕盗摄久久久| 性久久久久久久| 欧美精品乱人伦久久久久久| 亚洲a一区二区| 欧美日韩www| 免费高清不卡av| 日韩免费福利电影在线观看| 美女视频黄久久| 精品国产成人系列| 国产成人av电影在线| 国产精品国产三级国产普通话蜜臀| 国产精品一区二区黑丝| 国产精品每日更新| 99久久99久久精品免费观看 | 成人看片黄a免费看在线| 欧美国产欧美综合| 91亚洲男人天堂| 夜夜亚洲天天久久| 日韩欧美在线影院| 国产v日产∨综合v精品视频| 亚洲欧美在线视频观看| 色婷婷综合久久久中文一区二区| 亚洲综合在线五月| 日韩午夜三级在线| 成人免费视频一区| 亚洲综合视频在线观看| 日韩美女一区二区三区四区| 国内精品免费**视频| 国产精品视频看| 欧美亚洲综合色| 久久99国产乱子伦精品免费| 日韩av中文在线观看| 精品少妇一区二区三区日产乱码 | 欧美videossexotv100| 成人中文字幕在线| 亚洲午夜影视影院在线观看| 精品国产伦一区二区三区观看方式| 国产精品小仙女| 一区二区在线免费观看| 精品国产污污免费网站入口 | 亚洲素人一区二区| 日韩三级中文字幕| 99国产精品久久久久| 日本亚洲一区二区| 国产精品夫妻自拍| 日韩欧美国产综合一区| av在线一区二区三区| 麻豆成人久久精品二区三区红| 国产精品久久久久影视| 日韩欧美一区二区三区在线| 91社区在线播放| 国产美女久久久久| 午夜私人影院久久久久| 国产精品国产三级国产有无不卡| 欧美人牲a欧美精品| 不卡在线观看av| 久久99热国产| 国产91精品精华液一区二区三区| 一区二区三区四区视频精品免费| 久久夜色精品国产欧美乱极品| 欧美日韩三级在线| 99re这里只有精品6| 国产乱码精品一区二区三| 日本中文在线一区| 亚洲一区在线电影| 亚洲日韩欧美一区二区在线| 国产亚洲一区二区在线观看| 日韩欧美国产成人一区二区| 欧美亚洲一区三区| 91久久久免费一区二区| 成人黄色在线看| 国产成人精品亚洲日本在线桃色| 日韩电影在线观看电影| 亚洲福利一区二区三区| 亚洲黄网站在线观看| 亚洲色图另类专区| 亚洲欧洲三级电影| 国产精品免费久久久久| 国产精品视频第一区| 国产欧美日韩综合| 中文字幕成人网| 国产精品乱码久久久久久| 国产欧美精品一区| 国产精品欧美久久久久一区二区 | 亚洲欧美日韩综合aⅴ视频| 日本一区二区电影| 亚洲欧美综合色| 日韩毛片在线免费观看| 亚洲欧美日韩国产综合在线| 亚洲精品国产视频| 亚洲一区二区视频在线| 五月婷婷色综合| 日韩成人免费看| 国产美女视频一区| 成人福利视频在线| 欧美影院一区二区| 91精品婷婷国产综合久久性色| 在线不卡欧美精品一区二区三区| 在线不卡a资源高清| 91精品麻豆日日躁夜夜躁| 欧美一级高清片在线观看| 日韩欧美中文字幕一区| 久久精品视频一区二区| 中文字幕日韩一区| 亚洲成a人在线观看| 麻豆精品视频在线| 日韩欧美一区二区免费| 国产偷国产偷亚洲高清人白洁 | 亚洲激情网站免费观看| 亚洲成人动漫在线免费观看| 奇米综合一区二区三区精品视频| 久久91精品国产91久久小草| 懂色一区二区三区免费观看| 色欧美日韩亚洲| 日韩视频在线一区二区| 国产精品久久久久久久久免费丝袜 | 国产麻豆视频精品| 91影视在线播放| 91精品欧美久久久久久动漫| 久久精品在这里| 亚洲第一福利视频在线| 国产美女一区二区| 欧美午夜精品一区| 国产三级精品三级在线专区| 有码一区二区三区| 国产乱人伦偷精品视频免下载| 91免费视频大全| 久久综合九色综合97_久久久| 亚洲人成网站精品片在线观看| 老鸭窝一区二区久久精品| 91色婷婷久久久久合中文| 日韩欧美在线影院| 樱桃国产成人精品视频| 国产精品自在欧美一区| 欧美日本韩国一区| 亚洲欧洲日产国码二区| 久久99热这里只有精品| 91国偷自产一区二区开放时间| 久久久蜜桃精品| 蜜桃视频一区二区三区在线观看| 97se亚洲国产综合自在线| 2020国产精品自拍| 日韩精品电影在线| 色猫猫国产区一区二在线视频| 久久久青草青青国产亚洲免观| 午夜免费久久看| 91极品美女在线| 国产精品成人在线观看| 国产成人免费网站| 精品福利二区三区| 免费观看一级欧美片| 精品视频在线视频| 一区二区三区资源| a在线欧美一区| 日本一区二区三区高清不卡| 精品一区二区三区在线观看| 欧美日韩大陆在线| 亚洲国产另类av| 欧美性猛交一区二区三区精品 | 久久久久久免费| 在线观看亚洲精品视频| 国产精品视频线看| 国产91精品一区二区麻豆网站| 精品乱人伦一区二区三区| 久久激情综合网| 精品国产精品网麻豆系列 | 亚洲观看高清完整版在线观看 | 国产精品一区久久久久|