You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

858 lines
44 KiB

namespace ManagementSystem
{
partial class HRDataCorrect
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HRDataCorrect));
this.dgvHRItem = new System.Windows.Forms.DataGridView();
this.cMemberID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cMemberName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tsButtons = new System.Windows.Forms.ToolStrip();
this.tsbSearch = new System.Windows.Forms.ToolStripButton();
this.tsbAdd = new System.Windows.Forms.ToolStripButton();
this.tsbEdit = new System.Windows.Forms.ToolStripButton();
this.tsbDelete = new System.Windows.Forms.ToolStripButton();
this.tsbSave = new System.Windows.Forms.ToolStripButton();
this.tsbOK = new System.Windows.Forms.ToolStripButton();
this.tsbCancel = new System.Windows.Forms.ToolStripButton();
this.tsbClean = new System.Windows.Forms.ToolStripButton();
this.tsbExit = new System.Windows.Forms.ToolStripButton();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.dpStart = new System.Windows.Forms.DateTimePicker();
this.dpEnd = new System.Windows.Forms.DateTimePicker();
this.tbPage = new System.Windows.Forms.TabControl();
this.tbPage1 = new System.Windows.Forms.TabPage();
this.btnDEL = new System.Windows.Forms.Button();
this.dtPickStart = new System.Windows.Forms.DateTimePicker();
this.btnPickProject = new System.Windows.Forms.Button();
this.txtEventID = new System.Windows.Forms.TextBox();
this.label4 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.txtDescription = new System.Windows.Forms.TextBox();
this.btnUpdate = new System.Windows.Forms.Button();
this.dtPickEnd = new System.Windows.Forms.DateTimePicker();
this.cbEndDate = new System.Windows.Forms.CheckBox();
this.txtSubject = new System.Windows.Forms.TextBox();
this.cbSubject = new System.Windows.Forms.CheckBox();
this.txtProjectNumber = new System.Windows.Forms.TextBox();
this.cbProjectNumber = new System.Windows.Forms.CheckBox();
this.cbStartDate = new System.Windows.Forms.CheckBox();
this.dgvDetail = new System.Windows.Forms.DataGridView();
this.cSubject = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cStartDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cEndDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cProjectNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cWorkType = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cEventID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tbPage2 = new System.Windows.Forms.TabPage();
this.btnUpdate1 = new System.Windows.Forms.Button();
this.dgvDetail1 = new System.Windows.Forms.DataGridView();
this.cSelected = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.cMemberIDDetail = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cSignTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cSignOutTime = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.tbPage3 = new System.Windows.Forms.TabPage();
this.dgvDetail2 = new System.Windows.Forms.DataGridView();
this.btnUpdate2 = new System.Windows.Forms.Button();
this.dtPickerSignIn = new System.Windows.Forms.DateTimePicker();
this.dtPickerSignOut = new System.Windows.Forms.DateTimePicker();
this.cbSignIn1 = new System.Windows.Forms.CheckBox();
this.cbSignOut1 = new System.Windows.Forms.CheckBox();
this.clSignID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.clMemberID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.clMemberName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.clSignIn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.clSignOut = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dgvHRItem)).BeginInit();
this.tsButtons.SuspendLayout();
this.tbPage.SuspendLayout();
this.tbPage1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDetail)).BeginInit();
this.tbPage2.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDetail1)).BeginInit();
this.tbPage3.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDetail2)).BeginInit();
this.SuspendLayout();
//
// dgvHRItem
//
this.dgvHRItem.AllowUserToAddRows = false;
this.dgvHRItem.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)));
this.dgvHRItem.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvHRItem.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cMemberID,
this.cMemberName});
this.dgvHRItem.Location = new System.Drawing.Point(0, 39);
this.dgvHRItem.Margin = new System.Windows.Forms.Padding(5);
this.dgvHRItem.Name = "dgvHRItem";
this.dgvHRItem.ReadOnly = true;
this.dgvHRItem.RowTemplate.Height = 24;
this.dgvHRItem.Size = new System.Drawing.Size(345, 720);
this.dgvHRItem.TabIndex = 0;
this.dgvHRItem.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvHRItem_CellClick);
//
// cMemberID
//
this.cMemberID.DataPropertyName = "MemberID";
this.cMemberID.HeaderText = "人員帳號";
this.cMemberID.Name = "cMemberID";
this.cMemberID.ReadOnly = true;
this.cMemberID.Width = 150;
//
// cMemberName
//
this.cMemberName.DataPropertyName = "MemberName";
this.cMemberName.HeaderText = "人員姓名";
this.cMemberName.Name = "cMemberName";
this.cMemberName.ReadOnly = true;
this.cMemberName.Width = 150;
//
// tsButtons
//
this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsbSearch,
this.tsbAdd,
this.tsbEdit,
this.tsbDelete,
this.tsbSave,
this.tsbOK,
this.tsbCancel,
this.tsbClean,
this.tsbExit});
this.tsButtons.Location = new System.Drawing.Point(0, 0);
this.tsButtons.Name = "tsButtons";
this.tsButtons.Size = new System.Drawing.Size(1907, 32);
this.tsButtons.TabIndex = 4;
this.tsButtons.Text = "功能按鈕表";
//
// tsbSearch
//
this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbSearch.Name = "tsbSearch";
this.tsbSearch.Size = new System.Drawing.Size(29, 29);
this.tsbSearch.Text = "搜尋";
this.tsbSearch.Visible = false;
this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
//
// tsbAdd
//
this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbAdd.Name = "tsbAdd";
this.tsbAdd.Size = new System.Drawing.Size(29, 29);
this.tsbAdd.Text = "新增";
this.tsbAdd.Visible = false;
this.tsbAdd.Click += new System.EventHandler(this.tsbAdd_Click);
//
// tsbEdit
//
this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbEdit.Name = "tsbEdit";
this.tsbEdit.Size = new System.Drawing.Size(29, 29);
this.tsbEdit.Text = "修改";
this.tsbEdit.Visible = false;
this.tsbEdit.Click += new System.EventHandler(this.tsbEdit_Click);
//
// tsbDelete
//
this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbDelete.Name = "tsbDelete";
this.tsbDelete.Size = new System.Drawing.Size(29, 29);
this.tsbDelete.Text = "刪除";
this.tsbDelete.Visible = false;
this.tsbDelete.Click += new System.EventHandler(this.tsbDelete_Click);
//
// tsbSave
//
this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbSave.Name = "tsbSave";
this.tsbSave.Size = new System.Drawing.Size(29, 29);
this.tsbSave.Text = "儲存";
this.tsbSave.Visible = false;
this.tsbSave.Click += new System.EventHandler(this.tsbSave_Click);
//
// tsbOK
//
this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbOK.Name = "tsbOK";
this.tsbOK.Size = new System.Drawing.Size(29, 29);
this.tsbOK.Text = "確認";
this.tsbOK.Visible = false;
this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
//
// tsbCancel
//
this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbCancel.Name = "tsbCancel";
this.tsbCancel.Size = new System.Drawing.Size(29, 29);
this.tsbCancel.Text = "取消";
this.tsbCancel.Visible = false;
this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
//
// tsbClean
//
this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbClean.Name = "tsbClean";
this.tsbClean.Size = new System.Drawing.Size(29, 29);
this.tsbClean.Text = "清除";
this.tsbClean.Visible = false;
this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
//
// tsbExit
//
this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbExit.Name = "tsbExit";
this.tsbExit.Size = new System.Drawing.Size(29, 29);
this.tsbExit.Text = "離開";
this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(372, 39);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 20);
this.label1.TabIndex = 5;
this.label1.Text = "執行區間:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(678, 39);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(21, 20);
this.label2.TabIndex = 7;
this.label2.Text = "~";
//
// dpStart
//
this.dpStart.CustomFormat = "yyyy-MM-dd";
this.dpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dpStart.Location = new System.Drawing.Point(467, 33);
this.dpStart.MinDate = new System.DateTime(2000, 1, 1, 0, 0, 0, 0);
this.dpStart.Name = "dpStart";
this.dpStart.Size = new System.Drawing.Size(200, 29);
this.dpStart.TabIndex = 9;
//
// dpEnd
//
this.dpEnd.CustomFormat = "yyyy-MM-dd";
this.dpEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dpEnd.Location = new System.Drawing.Point(705, 33);
this.dpEnd.Name = "dpEnd";
this.dpEnd.Size = new System.Drawing.Size(200, 29);
this.dpEnd.TabIndex = 10;
//
// tbPage
//
this.tbPage.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.tbPage.Controls.Add(this.tbPage1);
this.tbPage.Controls.Add(this.tbPage2);
this.tbPage.Controls.Add(this.tbPage3);
this.tbPage.Location = new System.Drawing.Point(353, 78);
this.tbPage.Name = "tbPage";
this.tbPage.SelectedIndex = 0;
this.tbPage.Size = new System.Drawing.Size(1554, 681);
this.tbPage.TabIndex = 11;
this.tbPage.SelectedIndexChanged += new System.EventHandler(this.tbPage_SelectedIndexChanged);
//
// tbPage1
//
this.tbPage1.Controls.Add(this.btnDEL);
this.tbPage1.Controls.Add(this.dtPickStart);
this.tbPage1.Controls.Add(this.btnPickProject);
this.tbPage1.Controls.Add(this.txtEventID);
this.tbPage1.Controls.Add(this.label4);
this.tbPage1.Controls.Add(this.label3);
this.tbPage1.Controls.Add(this.txtDescription);
this.tbPage1.Controls.Add(this.btnUpdate);
this.tbPage1.Controls.Add(this.dtPickEnd);
this.tbPage1.Controls.Add(this.cbEndDate);
this.tbPage1.Controls.Add(this.txtSubject);
this.tbPage1.Controls.Add(this.cbSubject);
this.tbPage1.Controls.Add(this.txtProjectNumber);
this.tbPage1.Controls.Add(this.cbProjectNumber);
this.tbPage1.Controls.Add(this.cbStartDate);
this.tbPage1.Controls.Add(this.dgvDetail);
this.tbPage1.Location = new System.Drawing.Point(4, 29);
this.tbPage1.Name = "tbPage1";
this.tbPage1.Padding = new System.Windows.Forms.Padding(3);
this.tbPage1.Size = new System.Drawing.Size(1546, 648);
this.tbPage1.TabIndex = 0;
this.tbPage1.Text = "更新工作資料及狀態";
this.tbPage1.UseVisualStyleBackColor = true;
//
// btnDEL
//
this.btnDEL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnDEL.Location = new System.Drawing.Point(1276, 599);
this.btnDEL.Name = "btnDEL";
this.btnDEL.Size = new System.Drawing.Size(75, 30);
this.btnDEL.TabIndex = 14;
this.btnDEL.Text = "刪除";
this.btnDEL.UseVisualStyleBackColor = true;
this.btnDEL.Click += new System.EventHandler(this.btnDEL_Click);
//
// dtPickStart
//
this.dtPickStart.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.dtPickStart.CustomFormat = "yyyy-MM-dd HH:mm:ss";
this.dtPickStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtPickStart.Location = new System.Drawing.Point(142, 558);
this.dtPickStart.Name = "dtPickStart";
this.dtPickStart.Size = new System.Drawing.Size(192, 29);
this.dtPickStart.TabIndex = 13;
//
// btnPickProject
//
this.btnPickProject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnPickProject.Location = new System.Drawing.Point(424, 600);
this.btnPickProject.Name = "btnPickProject";
this.btnPickProject.Size = new System.Drawing.Size(38, 29);
this.btnPickProject.TabIndex = 12;
this.btnPickProject.Text = "...";
this.btnPickProject.UseVisualStyleBackColor = true;
this.btnPickProject.Click += new System.EventHandler(this.btnPickProject_Click);
//
// txtEventID
//
this.txtEventID.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtEventID.Location = new System.Drawing.Point(982, 558);
this.txtEventID.Name = "txtEventID";
this.txtEventID.ReadOnly = true;
this.txtEventID.Size = new System.Drawing.Size(276, 29);
this.txtEventID.TabIndex = 11;
//
// label4
//
this.label4.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(903, 563);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(73, 20);
this.label4.TabIndex = 10;
this.label4.Text = "事件編號";
//
// label3
//
this.label3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(935, 606);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(41, 20);
this.label3.TabIndex = 10;
this.label3.Text = "說明";
//
// txtDescription
//
this.txtDescription.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtDescription.Location = new System.Drawing.Point(982, 599);
this.txtDescription.Name = "txtDescription";
this.txtDescription.Size = new System.Drawing.Size(276, 29);
this.txtDescription.TabIndex = 9;
//
// btnUpdate
//
this.btnUpdate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnUpdate.Location = new System.Drawing.Point(1276, 557);
this.btnUpdate.Name = "btnUpdate";
this.btnUpdate.Size = new System.Drawing.Size(75, 29);
this.btnUpdate.TabIndex = 8;
this.btnUpdate.Text = "更 正";
this.btnUpdate.UseVisualStyleBackColor = true;
this.btnUpdate.Click += new System.EventHandler(this.btnUpdate_Click);
//
// dtPickEnd
//
this.dtPickEnd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.dtPickEnd.CustomFormat = "yyyy-MM-dd HH:mm:ss";
this.dtPickEnd.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtPickEnd.Location = new System.Drawing.Point(649, 558);
this.dtPickEnd.Name = "dtPickEnd";
this.dtPickEnd.Size = new System.Drawing.Size(192, 29);
this.dtPickEnd.TabIndex = 7;
//
// cbEndDate
//
this.cbEndDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbEndDate.AutoSize = true;
this.cbEndDate.Location = new System.Drawing.Point(519, 563);
this.cbEndDate.Name = "cbEndDate";
this.cbEndDate.Size = new System.Drawing.Size(124, 24);
this.cbEndDate.TabIndex = 6;
this.cbEndDate.Text = "變更結束時間";
this.cbEndDate.UseVisualStyleBackColor = true;
//
// txtSubject
//
this.txtSubject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtSubject.Location = new System.Drawing.Point(649, 600);
this.txtSubject.Name = "txtSubject";
this.txtSubject.Size = new System.Drawing.Size(276, 29);
this.txtSubject.TabIndex = 5;
//
// cbSubject
//
this.cbSubject.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbSubject.AutoSize = true;
this.cbSubject.Location = new System.Drawing.Point(519, 605);
this.cbSubject.Name = "cbSubject";
this.cbSubject.Size = new System.Drawing.Size(124, 24);
this.cbSubject.TabIndex = 4;
this.cbSubject.Text = "變更事件主旨";
this.cbSubject.UseVisualStyleBackColor = true;
//
// txtProjectNumber
//
this.txtProjectNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtProjectNumber.Location = new System.Drawing.Point(142, 600);
this.txtProjectNumber.Name = "txtProjectNumber";
this.txtProjectNumber.Size = new System.Drawing.Size(276, 29);
this.txtProjectNumber.TabIndex = 3;
//
// cbProjectNumber
//
this.cbProjectNumber.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbProjectNumber.AutoSize = true;
this.cbProjectNumber.Location = new System.Drawing.Point(12, 605);
this.cbProjectNumber.Name = "cbProjectNumber";
this.cbProjectNumber.Size = new System.Drawing.Size(124, 24);
this.cbProjectNumber.TabIndex = 2;
this.cbProjectNumber.Text = "變更專案編號";
this.cbProjectNumber.UseVisualStyleBackColor = true;
//
// cbStartDate
//
this.cbStartDate.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbStartDate.AutoSize = true;
this.cbStartDate.Location = new System.Drawing.Point(12, 563);
this.cbStartDate.Name = "cbStartDate";
this.cbStartDate.Size = new System.Drawing.Size(124, 24);
this.cbStartDate.TabIndex = 1;
this.cbStartDate.Text = "變更開始時間";
this.cbStartDate.UseVisualStyleBackColor = true;
//
// dgvDetail
//
this.dgvDetail.AllowUserToAddRows = false;
this.dgvDetail.AllowUserToDeleteRows = false;
this.dgvDetail.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvDetail.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvDetail.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cSubject,
this.cDescription,
this.cStartDate,
this.cEndDate,
this.cProjectNumber,
this.cWorkType,
this.cEventID});
this.dgvDetail.Location = new System.Drawing.Point(3, 6);
this.dgvDetail.Name = "dgvDetail";
this.dgvDetail.RowTemplate.Height = 24;
this.dgvDetail.Size = new System.Drawing.Size(1537, 546);
this.dgvDetail.TabIndex = 0;
this.dgvDetail.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDetail_CellClick);
//
// cSubject
//
this.cSubject.DataPropertyName = "Subject";
this.cSubject.HeaderText = "主旨";
this.cSubject.Name = "cSubject";
this.cSubject.ReadOnly = true;
this.cSubject.Width = 150;
//
// cDescription
//
this.cDescription.DataPropertyName = "Description";
this.cDescription.HeaderText = "說明";
this.cDescription.Name = "cDescription";
this.cDescription.ReadOnly = true;
this.cDescription.Width = 300;
//
// cStartDate
//
this.cStartDate.DataPropertyName = "StartDate";
this.cStartDate.HeaderText = "開始時間";
this.cStartDate.Name = "cStartDate";
this.cStartDate.ReadOnly = true;
this.cStartDate.Width = 200;
//
// cEndDate
//
this.cEndDate.DataPropertyName = "EndDate";
this.cEndDate.HeaderText = "結束時間";
this.cEndDate.Name = "cEndDate";
this.cEndDate.ReadOnly = true;
this.cEndDate.Width = 200;
//
// cProjectNumber
//
this.cProjectNumber.DataPropertyName = "ProjectNumber";
this.cProjectNumber.HeaderText = "專案代碼";
this.cProjectNumber.Name = "cProjectNumber";
this.cProjectNumber.ReadOnly = true;
this.cProjectNumber.Width = 130;
//
// cWorkType
//
this.cWorkType.DataPropertyName = "WorkType";
this.cWorkType.HeaderText = "工作類別";
this.cWorkType.Name = "cWorkType";
this.cWorkType.ReadOnly = true;
//
// cEventID
//
this.cEventID.DataPropertyName = "EventID";
this.cEventID.HeaderText = "事件代碼";
this.cEventID.Name = "cEventID";
this.cEventID.ReadOnly = true;
this.cEventID.Visible = false;
this.cEventID.Width = 300;
//
// tbPage2
//
this.tbPage2.Controls.Add(this.btnUpdate1);
this.tbPage2.Controls.Add(this.dgvDetail1);
this.tbPage2.Location = new System.Drawing.Point(4, 29);
this.tbPage2.Name = "tbPage2";
this.tbPage2.Padding = new System.Windows.Forms.Padding(3);
this.tbPage2.Size = new System.Drawing.Size(1546, 648);
this.tbPage2.TabIndex = 1;
this.tbPage2.Text = "更正加班資料";
this.tbPage2.UseVisualStyleBackColor = true;
//
// btnUpdate1
//
this.btnUpdate1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnUpdate1.Location = new System.Drawing.Point(6, 600);
this.btnUpdate1.Name = "btnUpdate1";
this.btnUpdate1.Size = new System.Drawing.Size(75, 29);
this.btnUpdate1.TabIndex = 9;
this.btnUpdate1.Text = "更 正";
this.btnUpdate1.UseVisualStyleBackColor = true;
this.btnUpdate1.Click += new System.EventHandler(this.btnUpdate1_Click);
//
// dgvDetail1
//
this.dgvDetail1.AllowUserToAddRows = false;
this.dgvDetail1.AllowUserToDeleteRows = false;
this.dgvDetail1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvDetail1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvDetail1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cSelected,
this.cMemberIDDetail,
this.cSignTime,
this.cSignOutTime});
this.dgvDetail1.Location = new System.Drawing.Point(6, 6);
this.dgvDetail1.Name = "dgvDetail1";
this.dgvDetail1.RowTemplate.Height = 24;
this.dgvDetail1.Size = new System.Drawing.Size(1532, 574);
this.dgvDetail1.TabIndex = 0;
//
// cSelected
//
this.cSelected.Frozen = true;
this.cSelected.HeaderText = "選擇";
this.cSelected.Name = "cSelected";
//
// cMemberIDDetail
//
this.cMemberIDDetail.DataPropertyName = "MemberID";
this.cMemberIDDetail.HeaderText = "使用者";
this.cMemberIDDetail.Name = "cMemberIDDetail";
this.cMemberIDDetail.ReadOnly = true;
this.cMemberIDDetail.Width = 150;
//
// cSignTime
//
this.cSignTime.DataPropertyName = "SignTime";
this.cSignTime.HeaderText = "簽到時間";
this.cSignTime.Name = "cSignTime";
this.cSignTime.ReadOnly = true;
this.cSignTime.Width = 250;
//
// cSignOutTime
//
this.cSignOutTime.DataPropertyName = "SignOutTime";
this.cSignOutTime.HeaderText = "簽出時間";
this.cSignOutTime.Name = "cSignOutTime";
this.cSignOutTime.ReadOnly = true;
this.cSignOutTime.Width = 250;
//
// tbPage3
//
this.tbPage3.Controls.Add(this.cbSignOut1);
this.tbPage3.Controls.Add(this.cbSignIn1);
this.tbPage3.Controls.Add(this.dtPickerSignOut);
this.tbPage3.Controls.Add(this.dtPickerSignIn);
this.tbPage3.Controls.Add(this.btnUpdate2);
this.tbPage3.Controls.Add(this.dgvDetail2);
this.tbPage3.Location = new System.Drawing.Point(4, 29);
this.tbPage3.Name = "tbPage3";
this.tbPage3.Size = new System.Drawing.Size(1546, 648);
this.tbPage3.TabIndex = 2;
this.tbPage3.Text = "打卡時間修正";
this.tbPage3.UseVisualStyleBackColor = true;
//
// dgvDetail2
//
this.dgvDetail2.AllowUserToAddRows = false;
this.dgvDetail2.AllowUserToDeleteRows = false;
this.dgvDetail2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvDetail2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvDetail2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.clSignID,
this.clMemberID,
this.clMemberName,
this.clSignIn,
this.clSignOut});
this.dgvDetail2.Location = new System.Drawing.Point(3, 3);
this.dgvDetail2.Name = "dgvDetail2";
this.dgvDetail2.RowTemplate.Height = 24;
this.dgvDetail2.Size = new System.Drawing.Size(1540, 548);
this.dgvDetail2.TabIndex = 0;
this.dgvDetail2.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDetail2_CellClick);
//
// btnUpdate2
//
this.btnUpdate2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnUpdate2.Location = new System.Drawing.Point(3, 611);
this.btnUpdate2.Name = "btnUpdate2";
this.btnUpdate2.Size = new System.Drawing.Size(92, 32);
this.btnUpdate2.TabIndex = 1;
this.btnUpdate2.Text = "更正";
this.btnUpdate2.UseVisualStyleBackColor = true;
this.btnUpdate2.Click += new System.EventHandler(this.btnUpdate2_Click);
//
// dtPickerSignIn
//
this.dtPickerSignIn.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.dtPickerSignIn.CustomFormat = "yyyy-MM-dd HH:mm:ss";
this.dtPickerSignIn.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtPickerSignIn.Location = new System.Drawing.Point(134, 567);
this.dtPickerSignIn.Name = "dtPickerSignIn";
this.dtPickerSignIn.Size = new System.Drawing.Size(192, 29);
this.dtPickerSignIn.TabIndex = 14;
//
// dtPickerSignOut
//
this.dtPickerSignOut.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.dtPickerSignOut.CustomFormat = "yyyy-MM-dd HH:mm:ss";
this.dtPickerSignOut.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtPickerSignOut.Location = new System.Drawing.Point(485, 567);
this.dtPickerSignOut.Name = "dtPickerSignOut";
this.dtPickerSignOut.Size = new System.Drawing.Size(192, 29);
this.dtPickerSignOut.TabIndex = 16;
//
// cbSignIn1
//
this.cbSignIn1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbSignIn1.AutoSize = true;
this.cbSignIn1.Location = new System.Drawing.Point(20, 572);
this.cbSignIn1.Name = "cbSignIn1";
this.cbSignIn1.Size = new System.Drawing.Size(108, 24);
this.cbSignIn1.TabIndex = 17;
this.cbSignIn1.Text = "簽到時間:";
this.cbSignIn1.UseVisualStyleBackColor = true;
//
// cbSignOut1
//
this.cbSignOut1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.cbSignOut1.AutoSize = true;
this.cbSignOut1.Location = new System.Drawing.Point(371, 572);
this.cbSignOut1.Name = "cbSignOut1";
this.cbSignOut1.Size = new System.Drawing.Size(108, 24);
this.cbSignOut1.TabIndex = 18;
this.cbSignOut1.Text = "簽退時間:";
this.cbSignOut1.UseVisualStyleBackColor = true;
//
// clSignID
//
this.clSignID.DataPropertyName = "SignID";
this.clSignID.HeaderText = "簽署日期";
this.clSignID.Name = "clSignID";
this.clSignID.ReadOnly = true;
//
// clMemberID
//
this.clMemberID.DataPropertyName = "MemberID";
this.clMemberID.HeaderText = "人員帳號";
this.clMemberID.Name = "clMemberID";
this.clMemberID.ReadOnly = true;
this.clMemberID.Width = 150;
//
// clMemberName
//
this.clMemberName.DataPropertyName = "MemberName";
this.clMemberName.HeaderText = "人員名稱";
this.clMemberName.Name = "clMemberName";
this.clMemberName.ReadOnly = true;
this.clMemberName.Width = 150;
//
// clSignIn
//
this.clSignIn.DataPropertyName = "SignTime";
this.clSignIn.HeaderText = "簽到時間";
this.clSignIn.Name = "clSignIn";
this.clSignIn.Width = 200;
//
// clSignOut
//
this.clSignOut.DataPropertyName = "SignOutTime";
this.clSignOut.HeaderText = "簽退時間";
this.clSignOut.Name = "clSignOut";
this.clSignOut.Width = 200;
//
// HRDataCorrect
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1907, 762);
this.Controls.Add(this.tbPage);
this.Controls.Add(this.dpEnd);
this.Controls.Add(this.dpStart);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.tsButtons);
this.Controls.Add(this.dgvHRItem);
this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.Margin = new System.Windows.Forms.Padding(5);
this.Name = "HRDataCorrect";
this.Text = "人事基本資料檔";
this.Load += new System.EventHandler(this.HRDataCorrect_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvHRItem)).EndInit();
this.tsButtons.ResumeLayout(false);
this.tsButtons.PerformLayout();
this.tbPage.ResumeLayout(false);
this.tbPage1.ResumeLayout(false);
this.tbPage1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDetail)).EndInit();
this.tbPage2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.dgvDetail1)).EndInit();
this.tbPage3.ResumeLayout(false);
this.tbPage3.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvDetail2)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.DataGridView dgvHRItem;
private System.Windows.Forms.ToolStrip tsButtons;
private System.Windows.Forms.ToolStripButton tsbSave;
private System.Windows.Forms.ToolStripButton tsbAdd;
private System.Windows.Forms.ToolStripButton tsbDelete;
private System.Windows.Forms.ToolStripButton tsbSearch;
private System.Windows.Forms.ToolStripButton tsbOK;
private System.Windows.Forms.ToolStripButton tsbEdit;
private System.Windows.Forms.ToolStripButton tsbCancel;
private System.Windows.Forms.ToolStripButton tsbExit;
private System.Windows.Forms.ToolStripButton tsbClean;
private System.Windows.Forms.DataGridViewTextBoxColumn cMemberID;
private System.Windows.Forms.DataGridViewTextBoxColumn cMemberName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.DateTimePicker dpStart;
private System.Windows.Forms.DateTimePicker dpEnd;
private System.Windows.Forms.TabControl tbPage;
private System.Windows.Forms.TabPage tbPage1;
private System.Windows.Forms.DataGridView dgvDetail;
private System.Windows.Forms.TabPage tbPage2;
private System.Windows.Forms.CheckBox cbEndDate;
private System.Windows.Forms.TextBox txtSubject;
private System.Windows.Forms.CheckBox cbSubject;
private System.Windows.Forms.TextBox txtProjectNumber;
private System.Windows.Forms.CheckBox cbProjectNumber;
private System.Windows.Forms.CheckBox cbStartDate;
private System.Windows.Forms.DateTimePicker dtPickEnd;
private System.Windows.Forms.Button btnUpdate;
private System.Windows.Forms.DataGridView dgvDetail1;
private System.Windows.Forms.DataGridViewCheckBoxColumn cSelected;
private System.Windows.Forms.DataGridViewTextBoxColumn cMemberIDDetail;
private System.Windows.Forms.DataGridViewTextBoxColumn cSignTime;
private System.Windows.Forms.DataGridViewTextBoxColumn cSignOutTime;
private System.Windows.Forms.Button btnUpdate1;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtDescription;
private System.Windows.Forms.TextBox txtEventID;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.DataGridViewTextBoxColumn cSubject;
private System.Windows.Forms.DataGridViewTextBoxColumn cDescription;
private System.Windows.Forms.DataGridViewTextBoxColumn cStartDate;
private System.Windows.Forms.DataGridViewTextBoxColumn cEndDate;
private System.Windows.Forms.DataGridViewTextBoxColumn cProjectNumber;
private System.Windows.Forms.DataGridViewTextBoxColumn cWorkType;
private System.Windows.Forms.DataGridViewTextBoxColumn cEventID;
private System.Windows.Forms.Button btnPickProject;
private System.Windows.Forms.DateTimePicker dtPickStart;
private System.Windows.Forms.Button btnDEL;
private System.Windows.Forms.TabPage tbPage3;
private System.Windows.Forms.DataGridView dgvDetail2;
private System.Windows.Forms.Button btnUpdate2;
private System.Windows.Forms.DateTimePicker dtPickerSignOut;
private System.Windows.Forms.DateTimePicker dtPickerSignIn;
private System.Windows.Forms.CheckBox cbSignOut1;
private System.Windows.Forms.CheckBox cbSignIn1;
private System.Windows.Forms.DataGridViewTextBoxColumn clSignID;
private System.Windows.Forms.DataGridViewTextBoxColumn clMemberID;
private System.Windows.Forms.DataGridViewTextBoxColumn clMemberName;
private System.Windows.Forms.DataGridViewTextBoxColumn clSignIn;
private System.Windows.Forms.DataGridViewTextBoxColumn clSignOut;
}
}