298 lines
14 KiB
C#
298 lines
14 KiB
C#
namespace Payroll.UI
|
|
{
|
|
partial class fLeaveEntrys
|
|
{
|
|
/// <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(fLeaveEntrys));
|
|
this.groupBox3 = new System.Windows.Forms.GroupBox();
|
|
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
|
|
this.btnAdjust = new System.Windows.Forms.Button();
|
|
this.btnClose = new System.Windows.Forms.Button();
|
|
this.btnDelete = new System.Windows.Forms.Button();
|
|
this.btnEdit = new System.Windows.Forms.Button();
|
|
this.btnAdd = new System.Windows.Forms.Button();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.lvwLeave = new System.Windows.Forms.ListView();
|
|
this.leaveName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.FromDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.ToDate = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.TotalDays = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.LeaveStatus = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.lblFromYear = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.ctlEmployee1 = new Payroll.Controls.CustomControls.ctlEmployee();
|
|
this.groupBox3.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// groupBox3
|
|
//
|
|
this.groupBox3.Controls.Add(this.dateTimePicker1);
|
|
this.groupBox3.Controls.Add(this.btnAdjust);
|
|
this.groupBox3.Controls.Add(this.btnClose);
|
|
this.groupBox3.Controls.Add(this.btnDelete);
|
|
this.groupBox3.Controls.Add(this.btnEdit);
|
|
this.groupBox3.Controls.Add(this.btnAdd);
|
|
this.groupBox3.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.groupBox3.Location = new System.Drawing.Point(632, 120);
|
|
this.groupBox3.Name = "groupBox3";
|
|
this.groupBox3.Size = new System.Drawing.Size(109, 352);
|
|
this.groupBox3.TabIndex = 2;
|
|
this.groupBox3.TabStop = false;
|
|
//
|
|
// dateTimePicker1
|
|
//
|
|
this.dateTimePicker1.CustomFormat = "MMM yyyy";
|
|
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|
this.dateTimePicker1.Location = new System.Drawing.Point(17, 158);
|
|
this.dateTimePicker1.Name = "dateTimePicker1";
|
|
this.dateTimePicker1.Size = new System.Drawing.Size(75, 21);
|
|
this.dateTimePicker1.TabIndex = 5;
|
|
this.dateTimePicker1.Visible = false;
|
|
//
|
|
// btnAdjust
|
|
//
|
|
this.btnAdjust.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnAdjust.Location = new System.Drawing.Point(17, 185);
|
|
this.btnAdjust.Name = "btnAdjust";
|
|
this.btnAdjust.Size = new System.Drawing.Size(75, 27);
|
|
this.btnAdjust.TabIndex = 4;
|
|
this.btnAdjust.Text = "Adjust";
|
|
this.btnAdjust.UseVisualStyleBackColor = true;
|
|
this.btnAdjust.Visible = false;
|
|
this.btnAdjust.Click += new System.EventHandler(this.btnAdjust_Click);
|
|
//
|
|
// btnClose
|
|
//
|
|
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnClose.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.btnClose.Location = new System.Drawing.Point(17, 319);
|
|
this.btnClose.Name = "btnClose";
|
|
this.btnClose.Size = new System.Drawing.Size(75, 27);
|
|
this.btnClose.TabIndex = 3;
|
|
this.btnClose.Text = "&Close";
|
|
this.btnClose.UseVisualStyleBackColor = true;
|
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|
//
|
|
// btnDelete
|
|
//
|
|
this.btnDelete.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnDelete.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.btnDelete.Location = new System.Drawing.Point(17, 93);
|
|
this.btnDelete.Name = "btnDelete";
|
|
this.btnDelete.Size = new System.Drawing.Size(75, 27);
|
|
this.btnDelete.TabIndex = 2;
|
|
this.btnDelete.Tag = "btnDelete";
|
|
this.btnDelete.Text = "&Delete";
|
|
this.btnDelete.UseVisualStyleBackColor = true;
|
|
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
|
|
//
|
|
// btnEdit
|
|
//
|
|
this.btnEdit.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnEdit.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.btnEdit.Location = new System.Drawing.Point(17, 56);
|
|
this.btnEdit.Name = "btnEdit";
|
|
this.btnEdit.Size = new System.Drawing.Size(75, 27);
|
|
this.btnEdit.TabIndex = 1;
|
|
this.btnEdit.Tag = "btnEdit";
|
|
this.btnEdit.Text = "&Edit";
|
|
this.btnEdit.UseVisualStyleBackColor = true;
|
|
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
|
|
//
|
|
// btnAdd
|
|
//
|
|
this.btnAdd.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.btnAdd.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.btnAdd.ForeColor = System.Drawing.Color.Black;
|
|
this.btnAdd.Location = new System.Drawing.Point(17, 19);
|
|
this.btnAdd.Name = "btnAdd";
|
|
this.btnAdd.Size = new System.Drawing.Size(75, 27);
|
|
this.btnAdd.TabIndex = 0;
|
|
this.btnAdd.Tag = "btnAdd";
|
|
this.btnAdd.Text = "&Add";
|
|
this.btnAdd.UseVisualStyleBackColor = true;
|
|
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Controls.Add(this.lvwLeave);
|
|
this.groupBox2.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.groupBox2.Location = new System.Drawing.Point(12, 120);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(609, 352);
|
|
this.groupBox2.TabIndex = 1;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "Leave History";
|
|
//
|
|
// lvwLeave
|
|
//
|
|
this.lvwLeave.BackColor = System.Drawing.Color.GhostWhite;
|
|
this.lvwLeave.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.leaveName,
|
|
this.FromDate,
|
|
this.ToDate,
|
|
this.TotalDays,
|
|
this.LeaveStatus});
|
|
this.lvwLeave.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lvwLeave.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.lvwLeave.FullRowSelect = true;
|
|
this.lvwLeave.GridLines = true;
|
|
this.lvwLeave.Location = new System.Drawing.Point(3, 17);
|
|
this.lvwLeave.Name = "lvwLeave";
|
|
this.lvwLeave.Size = new System.Drawing.Size(603, 332);
|
|
this.lvwLeave.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|
this.lvwLeave.TabIndex = 0;
|
|
this.lvwLeave.UseCompatibleStateImageBehavior = false;
|
|
this.lvwLeave.View = System.Windows.Forms.View.Details;
|
|
this.lvwLeave.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvwLeave_ColumnClick);
|
|
this.lvwLeave.DoubleClick += new System.EventHandler(this.lvwLeave_DoubleClick);
|
|
//
|
|
// leaveName
|
|
//
|
|
this.leaveName.Text = "Leave";
|
|
this.leaveName.Width = 115;
|
|
//
|
|
// FromDate
|
|
//
|
|
this.FromDate.Text = "From Date";
|
|
this.FromDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.FromDate.Width = 115;
|
|
//
|
|
// ToDate
|
|
//
|
|
this.ToDate.Text = "To Date";
|
|
this.ToDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
|
|
this.ToDate.Width = 115;
|
|
//
|
|
// TotalDays
|
|
//
|
|
this.TotalDays.Text = "Total Days";
|
|
this.TotalDays.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
|
|
this.TotalDays.Width = 115;
|
|
//
|
|
// LeaveStatus
|
|
//
|
|
this.LeaveStatus.Text = "LeaveStatus";
|
|
this.LeaveStatus.Width = 115;
|
|
//
|
|
// lblFromYear
|
|
//
|
|
this.lblFromYear.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.lblFromYear.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.lblFromYear.Location = new System.Drawing.Point(139, 43);
|
|
this.lblFromYear.Name = "lblFromYear";
|
|
this.lblFromYear.Size = new System.Drawing.Size(186, 18);
|
|
this.lblFromYear.TabIndex = 2;
|
|
this.lblFromYear.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Font = new System.Drawing.Font("Tahoma", 8.25F);
|
|
this.label3.Location = new System.Drawing.Point(8, 43);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(101, 13);
|
|
this.label3.TabIndex = 1;
|
|
this.label3.Text = "Current Leave Year";
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Controls.Add(this.lblFromYear);
|
|
this.groupBox1.Controls.Add(this.label3);
|
|
this.groupBox1.Controls.Add(this.ctlEmployee1);
|
|
this.groupBox1.Location = new System.Drawing.Point(12, 41);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(729, 73);
|
|
this.groupBox1.TabIndex = 0;
|
|
this.groupBox1.TabStop = false;
|
|
//
|
|
// ctlEmployee1
|
|
//
|
|
this.ctlEmployee1.EmployeeNo = "";
|
|
this.ctlEmployee1.Grades = null;
|
|
this.ctlEmployee1.Location = new System.Drawing.Point(6, 10);
|
|
this.ctlEmployee1.Name = "ctlEmployee1";
|
|
this.ctlEmployee1.SelectedEmployee = null;
|
|
this.ctlEmployee1.Size = new System.Drawing.Size(706, 27);
|
|
this.ctlEmployee1.TabIndex = 0;
|
|
this.ctlEmployee1.ItemChanged += new Payroll.Controls.CustomControls.ctlEmployee.ItemChangedEventHandeler(this.ctlEmployee1_ItemChanged);
|
|
//
|
|
// fLeaveEntrys
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnClose;
|
|
this.ClientSize = new System.Drawing.Size(754, 508);
|
|
this.Controls.Add(this.groupBox3);
|
|
this.Controls.Add(this.groupBox2);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "fLeaveEntrys";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Tag = "7.1.4";
|
|
this.Text = "Leave Entries";
|
|
this.Load += new System.EventHandler(this.fLeaveEntrys_Load);
|
|
this.Controls.SetChildIndex(this.groupBox1, 0);
|
|
this.Controls.SetChildIndex(this.groupBox2, 0);
|
|
this.Controls.SetChildIndex(this.groupBox3, 0);
|
|
this.groupBox3.ResumeLayout(false);
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.GroupBox groupBox3;
|
|
private System.Windows.Forms.Button btnClose;
|
|
private System.Windows.Forms.Button btnDelete;
|
|
private System.Windows.Forms.Button btnEdit;
|
|
private System.Windows.Forms.Button btnAdd;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.ListView lvwLeave;
|
|
private System.Windows.Forms.ColumnHeader leaveName;
|
|
private System.Windows.Forms.ColumnHeader FromDate;
|
|
private System.Windows.Forms.ColumnHeader ToDate;
|
|
private System.Windows.Forms.ColumnHeader TotalDays;
|
|
private System.Windows.Forms.ColumnHeader LeaveStatus;
|
|
private System.Windows.Forms.Label lblFromYear;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private Payroll.Controls.CustomControls.ctlEmployee ctlEmployee1;
|
|
private System.Windows.Forms.Button btnAdjust;
|
|
private System.Windows.Forms.DateTimePicker dateTimePicker1;
|
|
}
|
|
} |