229 lines
9.9 KiB
C#
229 lines
9.9 KiB
C#
|
namespace Payroll.Report
|
|||
|
{
|
|||
|
partial class fPreviousSalaryInformation
|
|||
|
{
|
|||
|
/// <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.lstList = new System.Windows.Forms.ListBox();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.dtpMonth = new System.Windows.Forms.DateTimePicker();
|
|||
|
this.btnClose = new System.Windows.Forms.Button();
|
|||
|
this.panel1 = new System.Windows.Forms.Panel();
|
|||
|
this.panel2 = new System.Windows.Forms.Panel();
|
|||
|
this.btnPreview = new System.Windows.Forms.Button();
|
|||
|
this.panel3 = new System.Windows.Forms.Panel();
|
|||
|
this.cboBonus = new System.Windows.Forms.ComboBox();
|
|||
|
this.lblBonus = new System.Windows.Forms.Label();
|
|||
|
this.cboFesicalYear = new System.Windows.Forms.ComboBox();
|
|||
|
this.label3 = new System.Windows.Forms.Label();
|
|||
|
this.txtEmployeeID = new System.Windows.Forms.TextBox();
|
|||
|
this.label2 = new System.Windows.Forms.Label();
|
|||
|
this.panel1.SuspendLayout();
|
|||
|
this.panel2.SuspendLayout();
|
|||
|
this.panel3.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// lstList
|
|||
|
//
|
|||
|
this.lstList.FormattingEnabled = true;
|
|||
|
this.lstList.Items.AddRange(new object[] {
|
|||
|
"Payslip",
|
|||
|
"Salary Sheet",
|
|||
|
"Tax Card",
|
|||
|
"Bonus Register"});
|
|||
|
this.lstList.Location = new System.Drawing.Point(-1, 4);
|
|||
|
this.lstList.Name = "lstList";
|
|||
|
this.lstList.Size = new System.Drawing.Size(663, 251);
|
|||
|
this.lstList.TabIndex = 0;
|
|||
|
this.lstList.SelectedIndexChanged += new System.EventHandler(this.lstList_SelectedIndexChanged);
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(142, 14);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(69, 13);
|
|||
|
this.label1.TabIndex = 1;
|
|||
|
this.label1.Text = "Salary Month";
|
|||
|
//
|
|||
|
// dtpMonth
|
|||
|
//
|
|||
|
this.dtpMonth.CustomFormat = "MMM yyyy";
|
|||
|
this.dtpMonth.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|||
|
this.dtpMonth.Location = new System.Drawing.Point(217, 11);
|
|||
|
this.dtpMonth.Name = "dtpMonth";
|
|||
|
this.dtpMonth.Size = new System.Drawing.Size(266, 20);
|
|||
|
this.dtpMonth.TabIndex = 2;
|
|||
|
//
|
|||
|
// btnClose
|
|||
|
//
|
|||
|
this.btnClose.Location = new System.Drawing.Point(3, 39);
|
|||
|
this.btnClose.Name = "btnClose";
|
|||
|
this.btnClose.Size = new System.Drawing.Size(94, 27);
|
|||
|
this.btnClose.TabIndex = 3;
|
|||
|
this.btnClose.Text = "Close";
|
|||
|
this.btnClose.UseVisualStyleBackColor = true;
|
|||
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|||
|
//
|
|||
|
// panel1
|
|||
|
//
|
|||
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel1.Controls.Add(this.lstList);
|
|||
|
this.panel1.Location = new System.Drawing.Point(8, 154);
|
|||
|
this.panel1.Name = "panel1";
|
|||
|
this.panel1.Size = new System.Drawing.Size(663, 257);
|
|||
|
this.panel1.TabIndex = 4;
|
|||
|
//
|
|||
|
// panel2
|
|||
|
//
|
|||
|
this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel2.Controls.Add(this.btnPreview);
|
|||
|
this.panel2.Controls.Add(this.btnClose);
|
|||
|
this.panel2.Location = new System.Drawing.Point(677, 12);
|
|||
|
this.panel2.Name = "panel2";
|
|||
|
this.panel2.Size = new System.Drawing.Size(102, 399);
|
|||
|
this.panel2.TabIndex = 4;
|
|||
|
//
|
|||
|
// btnPreview
|
|||
|
//
|
|||
|
this.btnPreview.Location = new System.Drawing.Point(3, 6);
|
|||
|
this.btnPreview.Name = "btnPreview";
|
|||
|
this.btnPreview.Size = new System.Drawing.Size(94, 27);
|
|||
|
this.btnPreview.TabIndex = 3;
|
|||
|
this.btnPreview.Text = "Preview";
|
|||
|
this.btnPreview.UseVisualStyleBackColor = true;
|
|||
|
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
|
|||
|
//
|
|||
|
// panel3
|
|||
|
//
|
|||
|
this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|||
|
this.panel3.Controls.Add(this.cboBonus);
|
|||
|
this.panel3.Controls.Add(this.lblBonus);
|
|||
|
this.panel3.Controls.Add(this.cboFesicalYear);
|
|||
|
this.panel3.Controls.Add(this.label3);
|
|||
|
this.panel3.Controls.Add(this.txtEmployeeID);
|
|||
|
this.panel3.Controls.Add(this.label2);
|
|||
|
this.panel3.Controls.Add(this.label1);
|
|||
|
this.panel3.Controls.Add(this.dtpMonth);
|
|||
|
this.panel3.Location = new System.Drawing.Point(8, 9);
|
|||
|
this.panel3.Name = "panel3";
|
|||
|
this.panel3.Size = new System.Drawing.Size(663, 139);
|
|||
|
this.panel3.TabIndex = 4;
|
|||
|
//
|
|||
|
// cboBonus
|
|||
|
//
|
|||
|
this.cboBonus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|||
|
this.cboBonus.FormattingEnabled = true;
|
|||
|
this.cboBonus.Location = new System.Drawing.Point(217, 103);
|
|||
|
this.cboBonus.Name = "cboBonus";
|
|||
|
this.cboBonus.Size = new System.Drawing.Size(266, 21);
|
|||
|
this.cboBonus.TabIndex = 9;
|
|||
|
//
|
|||
|
// lblBonus
|
|||
|
//
|
|||
|
this.lblBonus.AutoSize = true;
|
|||
|
this.lblBonus.Location = new System.Drawing.Point(144, 107);
|
|||
|
this.lblBonus.Name = "lblBonus";
|
|||
|
this.lblBonus.Size = new System.Drawing.Size(37, 13);
|
|||
|
this.lblBonus.TabIndex = 8;
|
|||
|
this.lblBonus.Text = "Bonus";
|
|||
|
//
|
|||
|
// cboFesicalYear
|
|||
|
//
|
|||
|
this.cboFesicalYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|||
|
this.cboFesicalYear.FormattingEnabled = true;
|
|||
|
this.cboFesicalYear.Location = new System.Drawing.Point(217, 70);
|
|||
|
this.cboFesicalYear.Name = "cboFesicalYear";
|
|||
|
this.cboFesicalYear.Size = new System.Drawing.Size(266, 21);
|
|||
|
this.cboFesicalYear.TabIndex = 7;
|
|||
|
//
|
|||
|
// label3
|
|||
|
//
|
|||
|
this.label3.AutoSize = true;
|
|||
|
this.label3.Location = new System.Drawing.Point(144, 74);
|
|||
|
this.label3.Name = "label3";
|
|||
|
this.label3.Size = new System.Drawing.Size(59, 13);
|
|||
|
this.label3.TabIndex = 6;
|
|||
|
this.label3.Text = "Fiscal Year";
|
|||
|
//
|
|||
|
// txtEmployeeID
|
|||
|
//
|
|||
|
this.txtEmployeeID.Location = new System.Drawing.Point(217, 40);
|
|||
|
this.txtEmployeeID.Name = "txtEmployeeID";
|
|||
|
this.txtEmployeeID.Size = new System.Drawing.Size(266, 20);
|
|||
|
this.txtEmployeeID.TabIndex = 5;
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(144, 43);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(70, 13);
|
|||
|
this.label2.TabIndex = 1;
|
|||
|
this.label2.Text = "Employee No";
|
|||
|
//
|
|||
|
// fPreviousSalaryInformation
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(791, 419);
|
|||
|
this.Controls.Add(this.panel2);
|
|||
|
this.Controls.Add(this.panel3);
|
|||
|
this.Controls.Add(this.panel1);
|
|||
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "fPreviousSalaryInformation";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "Salary Information";
|
|||
|
this.Load += new System.EventHandler(this.fPreviousSalaryInformation_Load);
|
|||
|
this.panel1.ResumeLayout(false);
|
|||
|
this.panel2.ResumeLayout(false);
|
|||
|
this.panel3.ResumeLayout(false);
|
|||
|
this.panel3.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.ListBox lstList;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private System.Windows.Forms.DateTimePicker dtpMonth;
|
|||
|
private System.Windows.Forms.Button btnClose;
|
|||
|
private System.Windows.Forms.Panel panel1;
|
|||
|
private System.Windows.Forms.Panel panel2;
|
|||
|
private System.Windows.Forms.Button btnPreview;
|
|||
|
private System.Windows.Forms.Panel panel3;
|
|||
|
private System.Windows.Forms.TextBox txtEmployeeID;
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.ComboBox cboFesicalYear;
|
|||
|
private System.Windows.Forms.Label label3;
|
|||
|
private System.Windows.Forms.ComboBox cboBonus;
|
|||
|
private System.Windows.Forms.Label lblBonus;
|
|||
|
}
|
|||
|
}
|