2012-12-01 09:48:02 +00:00
|
|
|
|
namespace Tanshu.Accounts.Management
|
|
|
|
|
{
|
2013-02-12 13:25:10 +00:00
|
|
|
|
partial class ManagementForm
|
2012-12-01 09:48:02 +00:00
|
|
|
|
{
|
|
|
|
|
/// <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.dtpFinish = new System.Windows.Forms.DateTimePicker();
|
|
|
|
|
this.dtpStart = new System.Windows.Forms.DateTimePicker();
|
|
|
|
|
this.label10 = new System.Windows.Forms.Label();
|
|
|
|
|
this.btnGo = new System.Windows.Forms.Button();
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnTally = new System.Windows.Forms.Button();
|
|
|
|
|
this.btnFinalSanction = new System.Windows.Forms.Button();
|
|
|
|
|
this.btnExcel = new System.Windows.Forms.Button();
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.bwGo = new System.ComponentModel.BackgroundWorker();
|
|
|
|
|
this.txtStatus = new System.Windows.Forms.TextBox();
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.SuspendLayout();
|
|
|
|
|
//
|
|
|
|
|
// dtpFinish
|
|
|
|
|
//
|
|
|
|
|
this.dtpFinish.CustomFormat = "dd-MMM-yyyy";
|
|
|
|
|
this.dtpFinish.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.dtpFinish.Location = new System.Drawing.Point(168, 12);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.dtpFinish.Name = "dtpFinish";
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.dtpFinish.Size = new System.Drawing.Size(90, 20);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.dtpFinish.TabIndex = 21;
|
|
|
|
|
//
|
|
|
|
|
// dtpStart
|
|
|
|
|
//
|
|
|
|
|
this.dtpStart.CustomFormat = "dd-MMM-yyyy";
|
|
|
|
|
this.dtpStart.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.dtpStart.Location = new System.Drawing.Point(12, 12);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.dtpStart.Name = "dtpStart";
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.dtpStart.Size = new System.Drawing.Size(90, 20);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.dtpStart.TabIndex = 20;
|
|
|
|
|
//
|
|
|
|
|
// label10
|
|
|
|
|
//
|
|
|
|
|
this.label10.AutoSize = true;
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.label10.Location = new System.Drawing.Point(108, 16);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.label10.Name = "label10";
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.label10.Size = new System.Drawing.Size(54, 13);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.label10.TabIndex = 22;
|
|
|
|
|
this.label10.Text = "<- Date ->";
|
|
|
|
|
//
|
|
|
|
|
// btnGo
|
|
|
|
|
//
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnGo.Location = new System.Drawing.Point(12, 207);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.btnGo.Name = "btnGo";
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.btnGo.Size = new System.Drawing.Size(113, 23);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.btnGo.TabIndex = 24;
|
|
|
|
|
this.btnGo.Text = "Go";
|
|
|
|
|
this.btnGo.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
|
|
|
|
|
//
|
2014-10-12 09:41:45 +00:00
|
|
|
|
// btnTally
|
|
|
|
|
//
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.btnTally.Location = new System.Drawing.Point(145, 207);
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnTally.Name = "btnTally";
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.btnTally.Size = new System.Drawing.Size(113, 23);
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnTally.TabIndex = 25;
|
|
|
|
|
this.btnTally.Text = "Tally";
|
|
|
|
|
this.btnTally.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnTally.Click += new System.EventHandler(this.btnTally_Click);
|
|
|
|
|
//
|
|
|
|
|
// btnFinalSanction
|
|
|
|
|
//
|
|
|
|
|
this.btnFinalSanction.Location = new System.Drawing.Point(12, 178);
|
|
|
|
|
this.btnFinalSanction.Name = "btnFinalSanction";
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.btnFinalSanction.Size = new System.Drawing.Size(113, 23);
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnFinalSanction.TabIndex = 26;
|
|
|
|
|
this.btnFinalSanction.Text = "Final Sanction";
|
|
|
|
|
this.btnFinalSanction.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnFinalSanction.Click += new System.EventHandler(this.btnFinalSanction_Click);
|
|
|
|
|
//
|
|
|
|
|
// btnExcel
|
|
|
|
|
//
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.btnExcel.Location = new System.Drawing.Point(145, 178);
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnExcel.Name = "btnExcel";
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.btnExcel.Size = new System.Drawing.Size(113, 23);
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.btnExcel.TabIndex = 27;
|
|
|
|
|
this.btnExcel.Text = "Excel";
|
|
|
|
|
this.btnExcel.UseVisualStyleBackColor = true;
|
|
|
|
|
this.btnExcel.Click += new System.EventHandler(this.btnExcel_Click);
|
2013-02-12 13:25:10 +00:00
|
|
|
|
//
|
2014-12-03 07:13:35 +00:00
|
|
|
|
// bwGo
|
|
|
|
|
//
|
|
|
|
|
this.bwGo.WorkerReportsProgress = true;
|
|
|
|
|
this.bwGo.DoWork += new System.ComponentModel.DoWorkEventHandler(this.bwGo_DoWork);
|
|
|
|
|
this.bwGo.RunWorkerCompleted += new System.ComponentModel.RunWorkerCompletedEventHandler(this.bwGo_RunWorkerCompleted);
|
|
|
|
|
this.bwGo.ProgressChanged += new System.ComponentModel.ProgressChangedEventHandler(this.bwGo_ProgressChanged);
|
|
|
|
|
//
|
|
|
|
|
// txtStatus
|
|
|
|
|
//
|
|
|
|
|
this.txtStatus.AcceptsReturn = true;
|
|
|
|
|
this.txtStatus.Location = new System.Drawing.Point(12, 38);
|
|
|
|
|
this.txtStatus.Multiline = true;
|
|
|
|
|
this.txtStatus.Name = "txtStatus";
|
|
|
|
|
this.txtStatus.ReadOnly = true;
|
|
|
|
|
this.txtStatus.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
|
|
|
|
|
this.txtStatus.Size = new System.Drawing.Size(246, 134);
|
|
|
|
|
this.txtStatus.TabIndex = 28;
|
|
|
|
|
//
|
2013-02-12 13:25:10 +00:00
|
|
|
|
// ManagementForm
|
2012-12-01 09:48:02 +00:00
|
|
|
|
//
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
2014-12-03 07:13:35 +00:00
|
|
|
|
this.ClientSize = new System.Drawing.Size(270, 242);
|
|
|
|
|
this.Controls.Add(this.txtStatus);
|
2014-10-12 09:41:45 +00:00
|
|
|
|
this.Controls.Add(this.btnExcel);
|
|
|
|
|
this.Controls.Add(this.btnFinalSanction);
|
|
|
|
|
this.Controls.Add(this.btnTally);
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.Controls.Add(this.btnGo);
|
|
|
|
|
this.Controls.Add(this.dtpFinish);
|
|
|
|
|
this.Controls.Add(this.dtpStart);
|
|
|
|
|
this.Controls.Add(this.label10);
|
|
|
|
|
this.MaximizeBox = false;
|
2013-02-12 13:25:10 +00:00
|
|
|
|
this.Name = "ManagementForm";
|
2012-12-01 09:48:02 +00:00
|
|
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
|
|
|
this.Text = "Sale Analysis Form";
|
|
|
|
|
this.Load += new System.EventHandler(this.Sale_Analysis_Form_Load);
|
|
|
|
|
this.ResumeLayout(false);
|
|
|
|
|
this.PerformLayout();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
private System.Windows.Forms.DateTimePicker dtpFinish;
|
|
|
|
|
private System.Windows.Forms.DateTimePicker dtpStart;
|
|
|
|
|
private System.Windows.Forms.Label label10;
|
|
|
|
|
private System.Windows.Forms.Button btnGo;
|
2014-10-12 09:41:45 +00:00
|
|
|
|
private System.Windows.Forms.Button btnTally;
|
|
|
|
|
private System.Windows.Forms.Button btnFinalSanction;
|
|
|
|
|
private System.Windows.Forms.Button btnExcel;
|
2014-12-03 07:13:35 +00:00
|
|
|
|
private System.ComponentModel.BackgroundWorker bwGo;
|
|
|
|
|
private System.Windows.Forms.TextBox txtStatus;
|
2012-12-01 09:48:02 +00:00
|
|
|
|
}
|
|
|
|
|
}
|