245 lines
11 KiB
C#
245 lines
11 KiB
C#
|
namespace Payroll.Controls.CustomControls
|
|||
|
{
|
|||
|
partial class frmSearchCard
|
|||
|
{
|
|||
|
/// <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.label2 = new System.Windows.Forms.Label();
|
|||
|
this.cboStatus = new System.Windows.Forms.ComboBox();
|
|||
|
this.lsvCard = new System.Windows.Forms.ListView();
|
|||
|
this.clnCardNo = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.clnStatus = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.groupBox5 = new System.Windows.Forms.GroupBox();
|
|||
|
this.btnSelectAll = new System.Windows.Forms.Button();
|
|||
|
this.btnOK = new System.Windows.Forms.Button();
|
|||
|
this.btnClose = new System.Windows.Forms.Button();
|
|||
|
this.rdoEmployeeWise = new System.Windows.Forms.RadioButton();
|
|||
|
this.pnlSlection = new System.Windows.Forms.Panel();
|
|||
|
this.rdoStatusWise = new System.Windows.Forms.RadioButton();
|
|||
|
this.btnFind = new System.Windows.Forms.Button();
|
|||
|
this.label1 = new System.Windows.Forms.Label();
|
|||
|
this.ctlEmployee = new Payroll.Controls.CustomControls.ctlEmployee();
|
|||
|
this.groupBox5.SuspendLayout();
|
|||
|
this.pnlSlection.SuspendLayout();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// label2
|
|||
|
//
|
|||
|
this.label2.AutoSize = true;
|
|||
|
this.label2.Location = new System.Drawing.Point(142, 13);
|
|||
|
this.label2.Name = "label2";
|
|||
|
this.label2.Size = new System.Drawing.Size(37, 13);
|
|||
|
this.label2.TabIndex = 2;
|
|||
|
this.label2.Text = "Status";
|
|||
|
//
|
|||
|
// cboStatus
|
|||
|
//
|
|||
|
this.cboStatus.FormattingEnabled = true;
|
|||
|
this.cboStatus.Location = new System.Drawing.Point(198, 9);
|
|||
|
this.cboStatus.Name = "cboStatus";
|
|||
|
this.cboStatus.Size = new System.Drawing.Size(214, 21);
|
|||
|
this.cboStatus.TabIndex = 1;
|
|||
|
this.cboStatus.SelectedIndexChanged += new System.EventHandler(this.cboStatus_SelectedIndexChanged);
|
|||
|
//
|
|||
|
// lsvCard
|
|||
|
//
|
|||
|
this.lsvCard.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|||
|
this.clnCardNo,
|
|||
|
this.clnStatus});
|
|||
|
this.lsvCard.FullRowSelect = true;
|
|||
|
this.lsvCard.GridLines = true;
|
|||
|
this.lsvCard.Location = new System.Drawing.Point(12, 76);
|
|||
|
this.lsvCard.Name = "lsvCard";
|
|||
|
this.lsvCard.Size = new System.Drawing.Size(516, 314);
|
|||
|
this.lsvCard.Sorting = System.Windows.Forms.SortOrder.Ascending;
|
|||
|
this.lsvCard.TabIndex = 7;
|
|||
|
this.lsvCard.UseCompatibleStateImageBehavior = false;
|
|||
|
this.lsvCard.View = System.Windows.Forms.View.Details;
|
|||
|
this.lsvCard.DoubleClick += new System.EventHandler(this.lsvCard_DoubleClick);
|
|||
|
this.lsvCard.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lsvCard_ColumnClick);
|
|||
|
//
|
|||
|
// clnCardNo
|
|||
|
//
|
|||
|
this.clnCardNo.Text = "Card No";
|
|||
|
this.clnCardNo.Width = 330;
|
|||
|
//
|
|||
|
// clnStatus
|
|||
|
//
|
|||
|
this.clnStatus.Text = "Status";
|
|||
|
this.clnStatus.Width = 160;
|
|||
|
//
|
|||
|
// groupBox5
|
|||
|
//
|
|||
|
this.groupBox5.Controls.Add(this.btnSelectAll);
|
|||
|
this.groupBox5.Controls.Add(this.btnOK);
|
|||
|
this.groupBox5.Controls.Add(this.btnClose);
|
|||
|
this.groupBox5.Location = new System.Drawing.Point(15, 393);
|
|||
|
this.groupBox5.Name = "groupBox5";
|
|||
|
this.groupBox5.Size = new System.Drawing.Size(513, 47);
|
|||
|
this.groupBox5.TabIndex = 3;
|
|||
|
this.groupBox5.TabStop = false;
|
|||
|
//
|
|||
|
// btnSelectAll
|
|||
|
//
|
|||
|
this.btnSelectAll.Location = new System.Drawing.Point(12, 13);
|
|||
|
this.btnSelectAll.Name = "btnSelectAll";
|
|||
|
this.btnSelectAll.Size = new System.Drawing.Size(75, 28);
|
|||
|
this.btnSelectAll.TabIndex = 23;
|
|||
|
this.btnSelectAll.Text = "&Select All";
|
|||
|
this.btnSelectAll.UseVisualStyleBackColor = true;
|
|||
|
this.btnSelectAll.Visible = false;
|
|||
|
this.btnSelectAll.Click += new System.EventHandler(this.btnSelectAll_Click);
|
|||
|
//
|
|||
|
// btnOK
|
|||
|
//
|
|||
|
this.btnOK.Location = new System.Drawing.Point(345, 13);
|
|||
|
this.btnOK.Name = "btnOK";
|
|||
|
this.btnOK.Size = new System.Drawing.Size(75, 28);
|
|||
|
this.btnOK.TabIndex = 0;
|
|||
|
this.btnOK.Text = "&OK";
|
|||
|
this.btnOK.UseVisualStyleBackColor = true;
|
|||
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|||
|
//
|
|||
|
// btnClose
|
|||
|
//
|
|||
|
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|||
|
this.btnClose.Location = new System.Drawing.Point(433, 13);
|
|||
|
this.btnClose.Name = "btnClose";
|
|||
|
this.btnClose.Size = new System.Drawing.Size(75, 28);
|
|||
|
this.btnClose.TabIndex = 1;
|
|||
|
this.btnClose.Text = "&Close";
|
|||
|
this.btnClose.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// rdoEmployeeWise
|
|||
|
//
|
|||
|
this.rdoEmployeeWise.AutoSize = true;
|
|||
|
this.rdoEmployeeWise.Location = new System.Drawing.Point(13, 34);
|
|||
|
this.rdoEmployeeWise.Name = "rdoEmployeeWise";
|
|||
|
this.rdoEmployeeWise.Size = new System.Drawing.Size(98, 17);
|
|||
|
this.rdoEmployeeWise.TabIndex = 9;
|
|||
|
this.rdoEmployeeWise.Text = "Employee Wise";
|
|||
|
this.rdoEmployeeWise.UseVisualStyleBackColor = true;
|
|||
|
this.rdoEmployeeWise.CheckedChanged += new System.EventHandler(this.rdoEmployeeWise_CheckedChanged);
|
|||
|
//
|
|||
|
// pnlSlection
|
|||
|
//
|
|||
|
this.pnlSlection.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
|
|||
|
this.pnlSlection.Controls.Add(this.rdoStatusWise);
|
|||
|
this.pnlSlection.Controls.Add(this.rdoEmployeeWise);
|
|||
|
this.pnlSlection.Location = new System.Drawing.Point(12, 9);
|
|||
|
this.pnlSlection.Name = "pnlSlection";
|
|||
|
this.pnlSlection.Size = new System.Drawing.Size(126, 61);
|
|||
|
this.pnlSlection.TabIndex = 10;
|
|||
|
//
|
|||
|
// rdoStatusWise
|
|||
|
//
|
|||
|
this.rdoStatusWise.AutoSize = true;
|
|||
|
this.rdoStatusWise.Checked = true;
|
|||
|
this.rdoStatusWise.Location = new System.Drawing.Point(13, 8);
|
|||
|
this.rdoStatusWise.Name = "rdoStatusWise";
|
|||
|
this.rdoStatusWise.Size = new System.Drawing.Size(107, 17);
|
|||
|
this.rdoStatusWise.TabIndex = 10;
|
|||
|
this.rdoStatusWise.TabStop = true;
|
|||
|
this.rdoStatusWise.Text = "Card Status Wise";
|
|||
|
this.rdoStatusWise.UseVisualStyleBackColor = true;
|
|||
|
//
|
|||
|
// btnFind
|
|||
|
//
|
|||
|
this.btnFind.Location = new System.Drawing.Point(438, 7);
|
|||
|
this.btnFind.Name = "btnFind";
|
|||
|
this.btnFind.Size = new System.Drawing.Size(75, 28);
|
|||
|
this.btnFind.TabIndex = 11;
|
|||
|
this.btnFind.Text = "&Find";
|
|||
|
this.btnFind.UseVisualStyleBackColor = true;
|
|||
|
this.btnFind.Click += new System.EventHandler(this.btnFind_Click);
|
|||
|
//
|
|||
|
// label1
|
|||
|
//
|
|||
|
this.label1.AutoSize = true;
|
|||
|
this.label1.Location = new System.Drawing.Point(142, 44);
|
|||
|
this.label1.Name = "label1";
|
|||
|
this.label1.Size = new System.Drawing.Size(53, 13);
|
|||
|
this.label1.TabIndex = 13;
|
|||
|
this.label1.Text = "Employee";
|
|||
|
//
|
|||
|
// ctlEmployee
|
|||
|
//
|
|||
|
this.ctlEmployee.EmployeeNo = "";
|
|||
|
this.ctlEmployee.Enabled = false;
|
|||
|
this.ctlEmployee.Grades = null;
|
|||
|
this.ctlEmployee.Location = new System.Drawing.Point(193, 38);
|
|||
|
this.ctlEmployee.Name = "ctlEmployee";
|
|||
|
this.ctlEmployee.SelectedEmployee = null;
|
|||
|
this.ctlEmployee.Size = new System.Drawing.Size(335, 27);
|
|||
|
this.ctlEmployee.TabIndex = 12;
|
|||
|
//
|
|||
|
// frmSearchCard
|
|||
|
//
|
|||
|
this.AcceptButton = this.btnOK;
|
|||
|
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(536, 444);
|
|||
|
this.Controls.Add(this.label1);
|
|||
|
this.Controls.Add(this.ctlEmployee);
|
|||
|
this.Controls.Add(this.btnFind);
|
|||
|
this.Controls.Add(this.pnlSlection);
|
|||
|
this.Controls.Add(this.groupBox5);
|
|||
|
this.Controls.Add(this.lsvCard);
|
|||
|
this.Controls.Add(this.cboStatus);
|
|||
|
this.Controls.Add(this.label2);
|
|||
|
this.Name = "frmSearchCard";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "Card Searching";
|
|||
|
this.Load += new System.EventHandler(this.frmSearchCard_Load);
|
|||
|
this.groupBox5.ResumeLayout(false);
|
|||
|
this.pnlSlection.ResumeLayout(false);
|
|||
|
this.pnlSlection.PerformLayout();
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label label2;
|
|||
|
private System.Windows.Forms.ComboBox cboStatus;
|
|||
|
private System.Windows.Forms.ListView lsvCard;
|
|||
|
private System.Windows.Forms.ColumnHeader clnCardNo;
|
|||
|
private System.Windows.Forms.ColumnHeader clnStatus;
|
|||
|
private System.Windows.Forms.GroupBox groupBox5;
|
|||
|
private System.Windows.Forms.Button btnClose;
|
|||
|
private System.Windows.Forms.Button btnOK;
|
|||
|
private System.Windows.Forms.RadioButton rdoEmployeeWise;
|
|||
|
private System.Windows.Forms.Panel pnlSlection;
|
|||
|
private System.Windows.Forms.Button btnSelectAll;
|
|||
|
private System.Windows.Forms.Button btnFind;
|
|||
|
private System.Windows.Forms.RadioButton rdoStatusWise;
|
|||
|
private System.Windows.Forms.Label label1;
|
|||
|
private ctlEmployee ctlEmployee;
|
|||
|
}
|
|||
|
}
|