CEL_Payroll/Payroll.Report/UI/frmPFLedger.Designer.cs

180 lines
7.8 KiB
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
namespace Payroll.Report
{
partial class frmPFLedger
{
/// <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.lblToDate = new System.Windows.Forms.Label();
this.dtpFormDate = new System.Windows.Forms.DateTimePicker();
this.lblFromDate = new System.Windows.Forms.Label();
this.ctlEmployee = new Payroll.Controls.CustomControls.ctlEmployee();
this.lblEmployee = new System.Windows.Forms.Label();
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.lblToDate);
this.panel1.Controls.Add(this.dtpFormDate);
this.panel1.Controls.Add(this.lblFromDate);
this.panel1.Controls.Add(this.ctlEmployee);
this.panel1.Controls.Add(this.lblEmployee);
this.panel1.Location = new System.Drawing.Point(1, 3);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(489, 74);
this.panel1.TabIndex = 1;
//
// dtpToDate
//
this.dtpToDate.CustomFormat = "MMM yyyy";
this.dtpToDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpToDate.Location = new System.Drawing.Point(374, 45);
this.dtpToDate.Name = "dtpToDate";
this.dtpToDate.Size = new System.Drawing.Size(100, 20);
this.dtpToDate.TabIndex = 33;
this.dtpToDate.ValueChanged += new System.EventHandler(this.dtpToDate_ValueChanged);
//
// lblToDate
//
this.lblToDate.AutoSize = true;
this.lblToDate.Location = new System.Drawing.Point(314, 49);
this.lblToDate.Name = "lblToDate";
this.lblToDate.Size = new System.Drawing.Size(52, 13);
this.lblToDate.TabIndex = 32;
this.lblToDate.Text = "To Date :";
//
// dtpFormDate
//
this.dtpFormDate.CustomFormat = "MMM yyyy";
this.dtpFormDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpFormDate.Location = new System.Drawing.Point(72, 45);
this.dtpFormDate.Name = "dtpFormDate";
this.dtpFormDate.Size = new System.Drawing.Size(99, 20);
this.dtpFormDate.TabIndex = 31;
this.dtpFormDate.ValueChanged += new System.EventHandler(this.dtpFormDate_ValueChanged);
//
// lblFromDate
//
this.lblFromDate.AutoSize = true;
this.lblFromDate.Location = new System.Drawing.Point(3, 49);
this.lblFromDate.Name = "lblFromDate";
this.lblFromDate.Size = new System.Drawing.Size(62, 13);
this.lblFromDate.TabIndex = 30;
this.lblFromDate.Text = "From Date :";
//
// ctlEmployee
//
this.ctlEmployee.EmployeeNo = "";
this.ctlEmployee.Grades = null;
this.ctlEmployee.Location = new System.Drawing.Point(68, 3);
this.ctlEmployee.Name = "ctlEmployee";
this.ctlEmployee.SelectedEmployee = null;
this.ctlEmployee.Size = new System.Drawing.Size(408, 27);
this.ctlEmployee.TabIndex = 29;
//
// lblEmployee
//
this.lblEmployee.AutoSize = true;
this.lblEmployee.Location = new System.Drawing.Point(4, 10);
this.lblEmployee.Name = "lblEmployee";
this.lblEmployee.Size = new System.Drawing.Size(59, 13);
this.lblEmployee.TabIndex = 0;
this.lblEmployee.Text = "Employee :";
//
// 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(1, 83);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(489, 35);
this.panel2.TabIndex = 2;
//
// btnClose
//
this.btnClose.Location = new System.Drawing.Point(379, 4);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(98, 23);
this.btnClose.TabIndex = 4;
this.btnClose.Text = "Cancel";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
// btnPreview
//
this.btnPreview.Location = new System.Drawing.Point(3, 5);
this.btnPreview.Name = "btnPreview";
this.btnPreview.Size = new System.Drawing.Size(98, 23);
this.btnPreview.TabIndex = 3;
this.btnPreview.Text = "Preview";
this.btnPreview.UseVisualStyleBackColor = true;
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
//
// frmPFLedger
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(493, 123);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmPFLedger";
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "PF Ledger";
this.Load += new System.EventHandler(this.frmPFLedger_Load);
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.panel2.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.DateTimePicker dtpToDate;
private System.Windows.Forms.Label lblToDate;
private System.Windows.Forms.DateTimePicker dtpFormDate;
private System.Windows.Forms.Label lblFromDate;
private Payroll.Controls.CustomControls.ctlEmployee ctlEmployee;
private System.Windows.Forms.Label lblEmployee;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnPreview;
}
}