a984b1f527
Initial commit dunno what has changed.
119 lines
5.3 KiB
C#
119 lines
5.3 KiB
C#
namespace Tanshu.Accounts.Management
|
|
{
|
|
partial class NcForm
|
|
{
|
|
/// <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.dtpStartDate = new System.Windows.Forms.DateTimePicker();
|
|
this.flpProducts = new System.Windows.Forms.FlowLayoutPanel();
|
|
this.btnGo = new System.Windows.Forms.Button();
|
|
this.dtpFinishDate = new System.Windows.Forms.DateTimePicker();
|
|
this.btnProcess = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// dtpStartDate
|
|
//
|
|
this.dtpStartDate.CustomFormat = "dd-MMM-yyyy";
|
|
this.dtpStartDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|
this.dtpStartDate.Location = new System.Drawing.Point(16, 15);
|
|
this.dtpStartDate.Margin = new System.Windows.Forms.Padding(4);
|
|
this.dtpStartDate.Name = "dtpStartDate";
|
|
this.dtpStartDate.Size = new System.Drawing.Size(119, 22);
|
|
this.dtpStartDate.TabIndex = 0;
|
|
//
|
|
// flpProducts
|
|
//
|
|
this.flpProducts.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.flpProducts.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
|
|
this.flpProducts.Location = new System.Drawing.Point(16, 47);
|
|
this.flpProducts.Margin = new System.Windows.Forms.Padding(4);
|
|
this.flpProducts.Name = "flpProducts";
|
|
this.flpProducts.Size = new System.Drawing.Size(447, 390);
|
|
this.flpProducts.TabIndex = 2;
|
|
//
|
|
// btnGo
|
|
//
|
|
this.btnGo.Location = new System.Drawing.Point(16, 445);
|
|
this.btnGo.Margin = new System.Windows.Forms.Padding(4);
|
|
this.btnGo.Name = "btnGo";
|
|
this.btnGo.Size = new System.Drawing.Size(200, 28);
|
|
this.btnGo.TabIndex = 24;
|
|
this.btnGo.Text = "Load";
|
|
this.btnGo.UseVisualStyleBackColor = true;
|
|
this.btnGo.Click += new System.EventHandler(this.btnGo_Click);
|
|
//
|
|
// dtpFinishDate
|
|
//
|
|
this.dtpFinishDate.CustomFormat = "dd-MMM-yyyy";
|
|
this.dtpFinishDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
|
|
this.dtpFinishDate.Location = new System.Drawing.Point(143, 15);
|
|
this.dtpFinishDate.Margin = new System.Windows.Forms.Padding(4);
|
|
this.dtpFinishDate.Name = "dtpFinishDate";
|
|
this.dtpFinishDate.Size = new System.Drawing.Size(119, 22);
|
|
this.dtpFinishDate.TabIndex = 1;
|
|
//
|
|
// btnProcess
|
|
//
|
|
this.btnProcess.Location = new System.Drawing.Point(263, 445);
|
|
this.btnProcess.Margin = new System.Windows.Forms.Padding(4);
|
|
this.btnProcess.Name = "btnProcess";
|
|
this.btnProcess.Size = new System.Drawing.Size(200, 28);
|
|
this.btnProcess.TabIndex = 25;
|
|
this.btnProcess.Text = "Process";
|
|
this.btnProcess.UseVisualStyleBackColor = true;
|
|
this.btnProcess.Click += new System.EventHandler(this.btnProcess_Click);
|
|
//
|
|
// MoveForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(479, 488);
|
|
this.Controls.Add(this.btnProcess);
|
|
this.Controls.Add(this.dtpFinishDate);
|
|
this.Controls.Add(this.btnGo);
|
|
this.Controls.Add(this.flpProducts);
|
|
this.Controls.Add(this.dtpStartDate);
|
|
this.Margin = new System.Windows.Forms.Padding(4);
|
|
this.MaximizeBox = false;
|
|
this.Name = "MoveForm";
|
|
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);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.DateTimePicker dtpStartDate;
|
|
private System.Windows.Forms.FlowLayoutPanel flpProducts;
|
|
private System.Windows.Forms.Button btnGo;
|
|
private System.Windows.Forms.DateTimePicker dtpFinishDate;
|
|
private System.Windows.Forms.Button btnProcess;
|
|
}
|
|
} |