CEL_Payroll/Payroll.Report/UI/frmChangedReport.Designer.cs
2024-09-17 14:30:13 +06:00

212 lines
9.5 KiB
C#

namespace Payroll.Report
{
partial class frmChangedReport
{
/// <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.dtpToDate = new System.Windows.Forms.DateTimePicker();
this.dtpFromDate = new System.Windows.Forms.DateTimePicker();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.groupBox2 = new System.Windows.Forms.GroupBox();
this.btnClose = new System.Windows.Forms.Button();
this.btnPreview = new System.Windows.Forms.Button();
this.groupBox3 = new System.Windows.Forms.GroupBox();
this.rbtnBasicSalary = new System.Windows.Forms.RadioButton();
this.rbtnBankAccount = new System.Windows.Forms.RadioButton();
this.btnExcelExport = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.groupBox2.SuspendLayout();
this.groupBox3.SuspendLayout();
this.SuspendLayout();
//
// dtpToDate
//
this.dtpToDate.CustomFormat = "dd MMM yyyy";
this.dtpToDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpToDate.Location = new System.Drawing.Point(281, 16);
this.dtpToDate.Name = "dtpToDate";
this.dtpToDate.Size = new System.Drawing.Size(116, 20);
this.dtpToDate.TabIndex = 6;
//
// dtpFromDate
//
this.dtpFromDate.CustomFormat = " dd MMM yyyy";
this.dtpFromDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpFromDate.Location = new System.Drawing.Point(73, 17);
this.dtpFromDate.Name = "dtpFromDate";
this.dtpFromDate.Size = new System.Drawing.Size(126, 20);
this.dtpFromDate.TabIndex = 7;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(229, 16);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(46, 13);
this.label2.TabIndex = 4;
this.label2.Text = "To Date";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(9, 16);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(56, 13);
this.label3.TabIndex = 5;
this.label3.Text = "From Date";
//
// groupBox1
//
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.dtpToDate);
this.groupBox1.Controls.Add(this.label3);
this.groupBox1.Location = new System.Drawing.Point(3, 1);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(414, 46);
this.groupBox1.TabIndex = 8;
this.groupBox1.TabStop = false;
//
// groupBox2
//
this.groupBox2.Controls.Add(this.btnExcelExport);
this.groupBox2.Controls.Add(this.btnClose);
this.groupBox2.Controls.Add(this.btnPreview);
this.groupBox2.Location = new System.Drawing.Point(3, 101);
this.groupBox2.Name = "groupBox2";
this.groupBox2.Size = new System.Drawing.Size(414, 59);
this.groupBox2.TabIndex = 9;
this.groupBox2.TabStop = false;
//
// btnClose
//
this.btnClose.Anchor = System.Windows.Forms.AnchorStyles.None;
this.btnClose.BackColor = System.Drawing.SystemColors.InactiveCaption;
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Location = new System.Drawing.Point(293, 17);
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(88, 32);
this.btnClose.TabIndex = 1;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = false;
//
// btnPreview
//
this.btnPreview.Anchor = System.Windows.Forms.AnchorStyles.None;
this.btnPreview.BackColor = System.Drawing.SystemColors.InactiveCaption;
this.btnPreview.ForeColor = System.Drawing.SystemColors.ControlText;
this.btnPreview.Location = new System.Drawing.Point(40, 17);
this.btnPreview.Name = "btnPreview";
this.btnPreview.Size = new System.Drawing.Size(86, 32);
this.btnPreview.TabIndex = 0;
this.btnPreview.Text = "Preview";
this.btnPreview.UseVisualStyleBackColor = false;
this.btnPreview.Click += new System.EventHandler(this.btnPreview_Click);
//
// groupBox3
//
this.groupBox3.Controls.Add(this.rbtnBankAccount);
this.groupBox3.Controls.Add(this.rbtnBasicSalary);
this.groupBox3.Location = new System.Drawing.Point(3, 54);
this.groupBox3.Name = "groupBox3";
this.groupBox3.Size = new System.Drawing.Size(414, 41);
this.groupBox3.TabIndex = 10;
this.groupBox3.TabStop = false;
//
// rbtnBasicSalary
//
this.rbtnBasicSalary.AutoSize = true;
this.rbtnBasicSalary.Location = new System.Drawing.Point(40, 16);
this.rbtnBasicSalary.Name = "rbtnBasicSalary";
this.rbtnBasicSalary.Size = new System.Drawing.Size(83, 17);
this.rbtnBasicSalary.TabIndex = 0;
this.rbtnBasicSalary.Text = "Basic Salary";
this.rbtnBasicSalary.UseVisualStyleBackColor = true;
//
// rbtnBankAccount
//
this.rbtnBankAccount.AutoSize = true;
this.rbtnBankAccount.Location = new System.Drawing.Point(228, 16);
this.rbtnBankAccount.Name = "rbtnBankAccount";
this.rbtnBankAccount.Size = new System.Drawing.Size(93, 17);
this.rbtnBankAccount.TabIndex = 1;
this.rbtnBankAccount.Text = "Bank Account";
this.rbtnBankAccount.UseVisualStyleBackColor = true;
//
// btnExcelExport
//
this.btnExcelExport.BackColor = System.Drawing.SystemColors.InactiveCaption;
this.btnExcelExport.Location = new System.Drawing.Point(148, 17);
this.btnExcelExport.Name = "btnExcelExport";
this.btnExcelExport.Size = new System.Drawing.Size(88, 32);
this.btnExcelExport.TabIndex = 2;
this.btnExcelExport.Text = "Excel Export";
this.btnExcelExport.UseVisualStyleBackColor = false;
this.btnExcelExport.Click += new System.EventHandler(this.btnExcelExport_Click);
//
// frmChangedReport
//
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(421, 164);
this.Controls.Add(this.groupBox3);
this.Controls.Add(this.groupBox2);
this.Controls.Add(this.dtpFromDate);
this.Controls.Add(this.groupBox1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmChangedReport";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Changed Report";
this.Load += new System.EventHandler(this.frmChangedReport_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.groupBox2.ResumeLayout(false);
this.groupBox3.ResumeLayout(false);
this.groupBox3.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DateTimePicker dtpToDate;
private System.Windows.Forms.DateTimePicker dtpFromDate;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.GroupBox groupBox2;
private System.Windows.Forms.Button btnClose;
private System.Windows.Forms.Button btnPreview;
private System.Windows.Forms.GroupBox groupBox3;
private System.Windows.Forms.RadioButton rbtnBankAccount;
private System.Windows.Forms.RadioButton rbtnBasicSalary;
private System.Windows.Forms.Button btnExcelExport;
}
}