208 lines
9.4 KiB
C#
208 lines
9.4 KiB
C#
|
namespace Payroll.Report
|
|||
|
{
|
|||
|
partial class frmIndvEmpLeave
|
|||
|
{
|
|||
|
/// <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()
|
|||
|
{
|
|||
|
this.panel1 = new System.Windows.Forms.Panel();
|
|||
|
this.dtpToDate = new System.Windows.Forms.DateTimePicker();
|
|||
|
this.lblTo = new System.Windows.Forms.Label();
|
|||
|
this.lblFrom = new System.Windows.Forms.Label();
|
|||
|
this.dtpFromDate = new System.Windows.Forms.DateTimePicker();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.ctlEmployee1 = new Payroll.Controls.CustomControls.ctlEmployee();
|
|||
|
this.lblLeaveType = new System.Windows.Forms.Label();
|
|||
|
this.cmbLeaveType = new System.Windows.Forms.ComboBox();
|
|||
|
this.panel2 = new System.Windows.Forms.Panel();
|
|||
|
this.btnClose = new System.Windows.Forms.Button();
|
|||
|
this.btnPreview = new System.Windows.Forms.Button();
|
|||
|
this.panel1.SuspendLayout();
|
|||
|
this.panel2.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel1.Controls.Add(this.dtpToDate);
|
|||
|
this.panel1.Controls.Add(this.lblTo);
|
|||
|
this.panel1.Controls.Add(this.lblFrom);
|
|||
|
this.panel1.Controls.Add(this.dtpFromDate);
|
|||
|
this.panel1.Controls.Add(this.label1);
|
|||
|
this.panel1.Controls.Add(this.ctlEmployee1);
|
|||
|
this.panel1.Controls.Add(this.lblLeaveType);
|
|||
|
this.panel1.Controls.Add(this.cmbLeaveType);
|
|||
|
this.panel1.Location = new System.Drawing.Point(12, 12);
|
|||
|
this.panel1.Name = "panel1";
|
|||
|
this.panel1.Size = new System.Drawing.Size(584, 109);
|
|||
|
this.panel1.TabIndex = 0;
|
|||
|
//
|
|||
|
// dtpToDate
|
|||
|
//
|
|||
|
this.dtpToDate.CustomFormat = "dd MMM yyyy";
|
|||
|
this.dtpToDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|||
|
this.dtpToDate.Location = new System.Drawing.Point(351, 47);
|
|||
|
this.dtpToDate.Name = "dtpToDate";
|
|||
|
this.dtpToDate.Size = new System.Drawing.Size(105, 20);
|
|||
|
this.dtpToDate.TabIndex = 15;
|
|||
|
//
|
|||
|
// lblTo
|
|||
|
//
|
|||
|
this.lblTo.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.lblTo.Location = new System.Drawing.Point(254, 47);
|
|||
|
this.lblTo.Name = "lblTo";
|
|||
|
this.lblTo.Size = new System.Drawing.Size(88, 21);
|
|||
|
this.lblTo.TabIndex = 14;
|
|||
|
this.lblTo.Text = "To Date";
|
|||
|
this.lblTo.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|||
|
//
|
|||
|
// lblFrom
|
|||
|
//
|
|||
|
this.lblFrom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.lblFrom.Location = new System.Drawing.Point(10, 47);
|
|||
|
this.lblFrom.Name = "lblFrom";
|
|||
|
this.lblFrom.Size = new System.Drawing.Size(88, 21);
|
|||
|
this.lblFrom.TabIndex = 12;
|
|||
|
this.lblFrom.Text = "From Date";
|
|||
|
this.lblFrom.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|||
|
//
|
|||
|
// dtpFromDate
|
|||
|
//
|
|||
|
this.dtpFromDate.CustomFormat = "dd MMM yyyy";
|
|||
|
this.dtpFromDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|||
|
this.dtpFromDate.Location = new System.Drawing.Point(135, 47);
|
|||
|
this.dtpFromDate.Name = "dtpFromDate";
|
|||
|
this.dtpFromDate.Size = new System.Drawing.Size(105, 20);
|
|||
|
this.dtpFromDate.TabIndex = 13;
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.Location = new System.Drawing.Point(14, 7);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(115, 23);
|
|||
|
this.label1.TabIndex = 11;
|
|||
|
this.label1.Text = "Select Employee";
|
|||
|
//
|
|||
|
// ctlEmployee1
|
|||
|
//
|
|||
|
this.ctlEmployee1.EmployeeNo = "";
|
|||
|
this.ctlEmployee1.Grades = null;
|
|||
|
this.ctlEmployee1.Location = new System.Drawing.Point(135, 3);
|
|||
|
this.ctlEmployee1.Name = "ctlEmployee1";
|
|||
|
this.ctlEmployee1.SelectedEmployee = null;
|
|||
|
this.ctlEmployee1.Size = new System.Drawing.Size(438, 27);
|
|||
|
this.ctlEmployee1.TabIndex = 10;
|
|||
|
this.ctlEmployee1.ItemChanged += new Payroll.Controls.CustomControls.ctlEmployee.ItemChangedEventHandeler(this.ctlEmployee1_ItemChanged);
|
|||
|
//
|
|||
|
// lblLeaveType
|
|||
|
//
|
|||
|
this.lblLeaveType.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.lblLeaveType.Location = new System.Drawing.Point(10, 76);
|
|||
|
this.lblLeaveType.Name = "lblLeaveType";
|
|||
|
this.lblLeaveType.Size = new System.Drawing.Size(89, 19);
|
|||
|
this.lblLeaveType.TabIndex = 9;
|
|||
|
this.lblLeaveType.Text = "Leave Type";
|
|||
|
//
|
|||
|
// cmbLeaveType
|
|||
|
//
|
|||
|
this.cmbLeaveType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|||
|
this.cmbLeaveType.FormattingEnabled = true;
|
|||
|
this.cmbLeaveType.Location = new System.Drawing.Point(139, 74);
|
|||
|
this.cmbLeaveType.Name = "cmbLeaveType";
|
|||
|
this.cmbLeaveType.Size = new System.Drawing.Size(317, 21);
|
|||
|
this.cmbLeaveType.TabIndex = 8;
|
|||
|
//
|
|||
|
// panel2
|
|||
|
//
|
|||
|
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel2.Controls.Add(this.btnClose);
|
|||
|
this.panel2.Controls.Add(this.btnPreview);
|
|||
|
this.panel2.Location = new System.Drawing.Point(12, 127);
|
|||
|
this.panel2.Name = "panel2";
|
|||
|
this.panel2.Size = new System.Drawing.Size(584, 48);
|
|||
|
this.panel2.TabIndex = 0;
|
|||
|
//
|
|||
|
// btnClose
|
|||
|
//
|
|||
|
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.btnClose.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
|||
|
this.btnClose.Location = new System.Drawing.Point(498, 10);
|
|||
|
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);
|
|||
|
//
|
|||
|
// btnPreview
|
|||
|
//
|
|||
|
this.btnPreview.AutoEllipsis = true;
|
|||
|
this.btnPreview.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|||
|
this.btnPreview.Location = new System.Drawing.Point(417, 10);
|
|||
|
this.btnPreview.Name = "btnPreview";
|
|||
|
this.btnPreview.Size = new System.Drawing.Size(75, 27);
|
|||
|
this.btnPreview.TabIndex = 2;
|
|||
|
this.btnPreview.Text = "&Preview";
|
|||
|
this.btnPreview.UseVisualStyleBackColor = true;
|
|||
|
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
|
|||
|
//
|
|||
|
// frmIndvEmpLeave
|
|||
|
//
|
|||
|
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(608, 184);
|
|||
|
this.Controls.Add(this.panel2);
|
|||
|
this.Controls.Add(this.panel1);
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "frmIndvEmpLeave";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Tag = "7.1.7.1";
|
|||
|
this.Text = "Individual Leave Balance";
|
|||
|
this.Load += new System.EventHandler(this.frmIndvEmpLeave_Load);
|
|||
|
this.panel1.ResumeLayout(false);
|
|||
|
this.panel2.ResumeLayout(false);
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Panel panel1;
|
|||
|
private System.Windows.Forms.Panel panel2;
|
|||
|
private System.Windows.Forms.Label lblLeaveType;
|
|||
|
private System.Windows.Forms.ComboBox cmbLeaveType;
|
|||
|
private System.Windows.Forms.Button btnClose;
|
|||
|
private System.Windows.Forms.Button btnPreview;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private Payroll.Controls.CustomControls.ctlEmployee ctlEmployee1;
|
|||
|
private System.Windows.Forms.DateTimePicker dtpToDate;
|
|||
|
private System.Windows.Forms.Label lblTo;
|
|||
|
private System.Windows.Forms.Label lblFrom;
|
|||
|
private System.Windows.Forms.DateTimePicker dtpFromDate;
|
|||
|
}
|
|||
|
}
|