147 lines
5.8 KiB
C#
147 lines
5.8 KiB
C#
|
namespace Payroll.Controls
|
|||
|
{
|
|||
|
partial class fCreatedRequisition
|
|||
|
{
|
|||
|
/// <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.btnOk = new System.Windows.Forms.Button();
|
|||
|
this.listView1 = new System.Windows.Forms.ListView();
|
|||
|
this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.btnClose = new System.Windows.Forms.Button();
|
|||
|
this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
|
|||
|
this.chkAll = new System.Windows.Forms.CheckBox();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// btnOk
|
|||
|
//
|
|||
|
this.btnOk.Location = new System.Drawing.Point(330, 335);
|
|||
|
this.btnOk.Name = "btnOk";
|
|||
|
this.btnOk.Size = new System.Drawing.Size(75, 29);
|
|||
|
this.btnOk.TabIndex = 0;
|
|||
|
this.btnOk.Text = "OK";
|
|||
|
this.btnOk.UseVisualStyleBackColor = true;
|
|||
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|||
|
//
|
|||
|
// listView1
|
|||
|
//
|
|||
|
this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
|
|||
|
this.columnHeader2,
|
|||
|
this.columnHeader3,
|
|||
|
this.columnHeader4,
|
|||
|
this.columnHeader5,
|
|||
|
this.columnHeader6});
|
|||
|
this.listView1.FullRowSelect = true;
|
|||
|
this.listView1.GridLines = true;
|
|||
|
this.listView1.Location = new System.Drawing.Point(3, 2);
|
|||
|
this.listView1.Name = "listView1";
|
|||
|
this.listView1.Size = new System.Drawing.Size(483, 327);
|
|||
|
this.listView1.TabIndex = 1;
|
|||
|
this.listView1.UseCompatibleStateImageBehavior = false;
|
|||
|
this.listView1.View = System.Windows.Forms.View.Details;
|
|||
|
//
|
|||
|
// columnHeader2
|
|||
|
//
|
|||
|
this.columnHeader2.Text = "Grade Code Name";
|
|||
|
this.columnHeader2.Width = 100;
|
|||
|
//
|
|||
|
// columnHeader3
|
|||
|
//
|
|||
|
this.columnHeader3.Text = "Position";
|
|||
|
this.columnHeader3.Width = 150;
|
|||
|
//
|
|||
|
// columnHeader4
|
|||
|
//
|
|||
|
this.columnHeader4.Text = "Max Employee";
|
|||
|
this.columnHeader4.Width = 90;
|
|||
|
//
|
|||
|
// columnHeader5
|
|||
|
//
|
|||
|
this.columnHeader5.Text = "Requisition Date";
|
|||
|
this.columnHeader5.Width = 100;
|
|||
|
//
|
|||
|
// btnClose
|
|||
|
//
|
|||
|
this.btnClose.Location = new System.Drawing.Point(411, 335);
|
|||
|
this.btnClose.Name = "btnClose";
|
|||
|
this.btnClose.Size = new System.Drawing.Size(75, 29);
|
|||
|
this.btnClose.TabIndex = 0;
|
|||
|
this.btnClose.Text = "Close";
|
|||
|
this.btnClose.UseVisualStyleBackColor = true;
|
|||
|
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
|
|||
|
//
|
|||
|
// columnHeader6
|
|||
|
//
|
|||
|
this.columnHeader6.Text = "ID";
|
|||
|
this.columnHeader6.Width = 0;
|
|||
|
//
|
|||
|
// chkAll
|
|||
|
//
|
|||
|
this.chkAll.AutoSize = true;
|
|||
|
this.chkAll.Location = new System.Drawing.Point(3, 339);
|
|||
|
this.chkAll.Name = "chkAll";
|
|||
|
this.chkAll.Size = new System.Drawing.Size(70, 17);
|
|||
|
this.chkAll.TabIndex = 2;
|
|||
|
this.chkAll.Text = "Select All";
|
|||
|
this.chkAll.UseVisualStyleBackColor = true;
|
|||
|
this.chkAll.CheckedChanged += new System.EventHandler(this.chkAll_CheckedChanged);
|
|||
|
//
|
|||
|
// fCreatedRequisition
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(491, 366);
|
|||
|
this.Controls.Add(this.chkAll);
|
|||
|
this.Controls.Add(this.listView1);
|
|||
|
this.Controls.Add(this.btnClose);
|
|||
|
this.Controls.Add(this.btnOk);
|
|||
|
this.MaximizeBox = false;
|
|||
|
this.MinimizeBox = false;
|
|||
|
this.Name = "fCreatedRequisition";
|
|||
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|||
|
this.Text = "Search Requisition";
|
|||
|
this.Load += new System.EventHandler(this.fCreatedRequisition_Load);
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Button btnOk;
|
|||
|
private System.Windows.Forms.ListView listView1;
|
|||
|
private System.Windows.Forms.ColumnHeader columnHeader2;
|
|||
|
private System.Windows.Forms.ColumnHeader columnHeader3;
|
|||
|
private System.Windows.Forms.ColumnHeader columnHeader4;
|
|||
|
private System.Windows.Forms.ColumnHeader columnHeader5;
|
|||
|
private System.Windows.Forms.Button btnClose;
|
|||
|
private System.Windows.Forms.ColumnHeader columnHeader6;
|
|||
|
private System.Windows.Forms.CheckBox chkAll;
|
|||
|
}
|
|||
|
}
|