namespace Payroll.Report { partial class frmIndEmpSalarySheet { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { this.panel1 = new System.Windows.Forms.Panel(); this.btnAdd = new System.Windows.Forms.Button(); 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.lsvMonth = new System.Windows.Forms.ListView(); this.clmMonth = new System.Windows.Forms.ColumnHeader(); this.panel1.SuspendLayout(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.panel1.Controls.Add(this.btnAdd); 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(3, 3); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(489, 100); this.panel1.TabIndex = 0; // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(374, 72); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(100, 23); this.btnAdd.TabIndex = 34; this.btnAdd.Text = "Add"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // 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.Controls.Add(this.lsvMonth); this.panel2.Location = new System.Drawing.Point(3, 109); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(489, 167); this.panel2.TabIndex = 1; // // btnClose // this.btnClose.Location = new System.Drawing.Point(374, 133); this.btnClose.Name = "btnClose"; this.btnClose.Size = new System.Drawing.Size(98, 23); this.btnClose.TabIndex = 2; 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(374, 6); this.btnPreview.Name = "btnPreview"; this.btnPreview.Size = new System.Drawing.Size(98, 23); this.btnPreview.TabIndex = 1; this.btnPreview.Text = "Preview"; this.btnPreview.UseVisualStyleBackColor = true; this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click); // // lsvMonth // this.lsvMonth.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] { this.clmMonth}); this.lsvMonth.GridLines = true; this.lsvMonth.Location = new System.Drawing.Point(3, 3); this.lsvMonth.Name = "lsvMonth"; this.lsvMonth.Size = new System.Drawing.Size(363, 159); this.lsvMonth.TabIndex = 0; this.lsvMonth.UseCompatibleStateImageBehavior = false; this.lsvMonth.View = System.Windows.Forms.View.Details; //this.lsvMonth.SelectedIndexChanged += new System.EventHandler(this.lsvMonth_SelectedIndexChanged); // // clmMonth // this.clmMonth.Text = "Month"; this.clmMonth.Width = 320; // // frmIndEmpSalarySheet // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(496, 278); this.Controls.Add(this.panel2); this.Controls.Add(this.panel1); this.Name = "frmIndEmpSalarySheet"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Individual Employee Salary Sheet"; this.Load += new System.EventHandler(this.frmIndEmpSalarySheet_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.Label lblEmployee; private Payroll.Controls.CustomControls.ctlEmployee ctlEmployee; 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 System.Windows.Forms.Button btnAdd; private System.Windows.Forms.Panel panel2; private System.Windows.Forms.Button btnClose; private System.Windows.Forms.Button btnPreview; private System.Windows.Forms.ListView lsvMonth; private System.Windows.Forms.ColumnHeader clmMonth; } }