293 lines
13 KiB
C#
293 lines
13 KiB
C#
namespace PayrollSystem
|
|
{
|
|
partial class form_employees
|
|
{
|
|
/// <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.list_employees = new System.Windows.Forms.ListView();
|
|
this.col_id = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.col_name = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.col_department = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.col_basic = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.col_allowance = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.col_joined = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
|
this.txtID = new System.Windows.Forms.TextBox();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.txtName = new System.Windows.Forms.TextBox();
|
|
this.btnSearch = new System.Windows.Forms.Button();
|
|
this.btnReset = new System.Windows.Forms.Button();
|
|
this.combo_department = new System.Windows.Forms.ComboBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.combo_date_type = new System.Windows.Forms.ComboBox();
|
|
this.joined_date_picker = new System.Windows.Forms.DateTimePicker();
|
|
this.btnAdd = new System.Windows.Forms.Button();
|
|
this.btnEdit = new System.Windows.Forms.Button();
|
|
this.btnRemove = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// list_employees
|
|
//
|
|
this.list_employees.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|
this.col_id,
|
|
this.col_name,
|
|
this.col_department,
|
|
this.col_basic,
|
|
this.col_allowance,
|
|
this.col_joined});
|
|
this.list_employees.FullRowSelect = true;
|
|
this.list_employees.HideSelection = false;
|
|
this.list_employees.Location = new System.Drawing.Point(12, 72);
|
|
this.list_employees.MultiSelect = false;
|
|
this.list_employees.Name = "list_employees";
|
|
this.list_employees.Size = new System.Drawing.Size(941, 573);
|
|
this.list_employees.TabIndex = 0;
|
|
this.list_employees.UseCompatibleStateImageBehavior = false;
|
|
this.list_employees.View = System.Windows.Forms.View.Details;
|
|
this.list_employees.SelectedIndexChanged += new System.EventHandler(this.list_employees_SelectedIndexChanged);
|
|
//
|
|
// col_id
|
|
//
|
|
this.col_id.Text = "ID";
|
|
this.col_id.Width = 54;
|
|
//
|
|
// col_name
|
|
//
|
|
this.col_name.Text = "Name";
|
|
this.col_name.Width = 226;
|
|
//
|
|
// col_department
|
|
//
|
|
this.col_department.Text = "Department";
|
|
this.col_department.Width = 147;
|
|
//
|
|
// col_basic
|
|
//
|
|
this.col_basic.Text = "Basic";
|
|
this.col_basic.Width = 131;
|
|
//
|
|
// col_allowance
|
|
//
|
|
this.col_allowance.Text = "Allowance";
|
|
this.col_allowance.Width = 140;
|
|
//
|
|
// col_joined
|
|
//
|
|
this.col_joined.Text = "Joined On";
|
|
this.col_joined.Width = 224;
|
|
//
|
|
// txtID
|
|
//
|
|
this.txtID.Location = new System.Drawing.Point(39, 29);
|
|
this.txtID.Name = "txtID";
|
|
this.txtID.Size = new System.Drawing.Size(63, 20);
|
|
this.txtID.TabIndex = 1;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(12, 32);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(21, 13);
|
|
this.label1.TabIndex = 2;
|
|
this.label1.Text = "ID:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(120, 32);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(41, 13);
|
|
this.label2.TabIndex = 4;
|
|
this.label2.Text = "Name :";
|
|
//
|
|
// txtName
|
|
//
|
|
this.txtName.Location = new System.Drawing.Point(167, 29);
|
|
this.txtName.Name = "txtName";
|
|
this.txtName.Size = new System.Drawing.Size(210, 20);
|
|
this.txtName.TabIndex = 3;
|
|
//
|
|
// btnSearch
|
|
//
|
|
this.btnSearch.Location = new System.Drawing.Point(960, 18);
|
|
this.btnSearch.Name = "btnSearch";
|
|
this.btnSearch.Size = new System.Drawing.Size(75, 40);
|
|
this.btnSearch.TabIndex = 5;
|
|
this.btnSearch.Text = "Search";
|
|
this.btnSearch.UseVisualStyleBackColor = true;
|
|
this.btnSearch.Click += new System.EventHandler(this.btnSearch_Click);
|
|
//
|
|
// btnReset
|
|
//
|
|
this.btnReset.Location = new System.Drawing.Point(855, 27);
|
|
this.btnReset.Name = "btnReset";
|
|
this.btnReset.Size = new System.Drawing.Size(74, 23);
|
|
this.btnReset.TabIndex = 6;
|
|
this.btnReset.Text = "Reset Filters";
|
|
this.btnReset.UseVisualStyleBackColor = true;
|
|
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
|
|
//
|
|
// combo_department
|
|
//
|
|
this.combo_department.FormattingEnabled = true;
|
|
this.combo_department.Location = new System.Drawing.Point(474, 28);
|
|
this.combo_department.Name = "combo_department";
|
|
this.combo_department.Size = new System.Drawing.Size(128, 21);
|
|
this.combo_department.TabIndex = 7;
|
|
this.combo_department.Text = "Any";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(399, 32);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(68, 13);
|
|
this.label3.TabIndex = 8;
|
|
this.label3.Text = "Department :";
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(629, 31);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(44, 13);
|
|
this.label4.TabIndex = 9;
|
|
this.label4.Text = "Joined :";
|
|
//
|
|
// combo_date_type
|
|
//
|
|
this.combo_date_type.FormattingEnabled = true;
|
|
this.combo_date_type.Items.AddRange(new object[] {
|
|
"Anytime",
|
|
"After",
|
|
"Before",
|
|
"On"});
|
|
this.combo_date_type.Location = new System.Drawing.Point(673, 28);
|
|
this.combo_date_type.Name = "combo_date_type";
|
|
this.combo_date_type.Size = new System.Drawing.Size(67, 21);
|
|
this.combo_date_type.TabIndex = 10;
|
|
this.combo_date_type.Text = "Anytime";
|
|
this.combo_date_type.SelectedIndexChanged += new System.EventHandler(this.comboBox2_SelectedIndexChanged);
|
|
//
|
|
// joined_date_picker
|
|
//
|
|
this.joined_date_picker.Format = System.Windows.Forms.DateTimePickerFormat.Short;
|
|
this.joined_date_picker.Location = new System.Drawing.Point(746, 29);
|
|
this.joined_date_picker.Name = "joined_date_picker";
|
|
this.joined_date_picker.Size = new System.Drawing.Size(103, 20);
|
|
this.joined_date_picker.TabIndex = 11;
|
|
this.joined_date_picker.Visible = false;
|
|
this.joined_date_picker.ValueChanged += new System.EventHandler(this.dateTimePicker1_ValueChanged);
|
|
//
|
|
// btnAdd
|
|
//
|
|
this.btnAdd.Location = new System.Drawing.Point(960, 72);
|
|
this.btnAdd.Name = "btnAdd";
|
|
this.btnAdd.Size = new System.Drawing.Size(75, 52);
|
|
this.btnAdd.TabIndex = 12;
|
|
this.btnAdd.Text = "Add Employee";
|
|
this.btnAdd.UseVisualStyleBackColor = true;
|
|
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
|
|
//
|
|
// btnEdit
|
|
//
|
|
this.btnEdit.Enabled = false;
|
|
this.btnEdit.Location = new System.Drawing.Point(960, 130);
|
|
this.btnEdit.Name = "btnEdit";
|
|
this.btnEdit.Size = new System.Drawing.Size(75, 52);
|
|
this.btnEdit.TabIndex = 13;
|
|
this.btnEdit.Text = "Edit Employee";
|
|
this.btnEdit.UseVisualStyleBackColor = true;
|
|
this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
|
|
//
|
|
// btnRemove
|
|
//
|
|
this.btnRemove.Enabled = false;
|
|
this.btnRemove.Location = new System.Drawing.Point(959, 188);
|
|
this.btnRemove.Name = "btnRemove";
|
|
this.btnRemove.Size = new System.Drawing.Size(75, 52);
|
|
this.btnRemove.TabIndex = 14;
|
|
this.btnRemove.Text = "Remove Employee";
|
|
this.btnRemove.UseVisualStyleBackColor = true;
|
|
this.btnRemove.Click += new System.EventHandler(this.btnRemove_Click);
|
|
//
|
|
// form_employees
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1047, 657);
|
|
this.Controls.Add(this.btnRemove);
|
|
this.Controls.Add(this.btnEdit);
|
|
this.Controls.Add(this.btnAdd);
|
|
this.Controls.Add(this.joined_date_picker);
|
|
this.Controls.Add(this.combo_date_type);
|
|
this.Controls.Add(this.label4);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.combo_department);
|
|
this.Controls.Add(this.btnReset);
|
|
this.Controls.Add(this.btnSearch);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.txtName);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.txtID);
|
|
this.Controls.Add(this.list_employees);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
|
|
this.Name = "form_employees";
|
|
this.Text = "form_employees";
|
|
this.Load += new System.EventHandler(this.form_employees_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.ListView list_employees;
|
|
private System.Windows.Forms.TextBox txtID;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.TextBox txtName;
|
|
private System.Windows.Forms.Button btnSearch;
|
|
private System.Windows.Forms.Button btnReset;
|
|
private System.Windows.Forms.ComboBox combo_department;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.ComboBox combo_date_type;
|
|
private System.Windows.Forms.DateTimePicker joined_date_picker;
|
|
private System.Windows.Forms.ColumnHeader col_id;
|
|
private System.Windows.Forms.ColumnHeader col_name;
|
|
private System.Windows.Forms.ColumnHeader col_department;
|
|
private System.Windows.Forms.ColumnHeader col_basic;
|
|
private System.Windows.Forms.ColumnHeader col_allowance;
|
|
private System.Windows.Forms.ColumnHeader col_joined;
|
|
private System.Windows.Forms.Button btnAdd;
|
|
private System.Windows.Forms.Button btnEdit;
|
|
private System.Windows.Forms.Button btnRemove;
|
|
}
|
|
} |