/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.winterRdb = new System.Windows.Forms.RadioButton();
     this.holtRdb = new System.Windows.Forms.RadioButton();
     this.brownRdb = new System.Windows.Forms.RadioButton();
     this.sesRdb = new System.Windows.Forms.RadioButton();
     this.slengthLbl = new System.Windows.Forms.Label();
     this.okButton = new System.Windows.Forms.Button();
     this.cancelButton = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.beta = new zaitun.GUI.DecimalTextBox();
     this.gridSearchButton = new System.Windows.Forms.Button();
     this.gamma = new zaitun.GUI.DecimalTextBox();
     this.alpha = new zaitun.GUI.DecimalTextBox();
     this.seasonalLbl = new System.Windows.Forms.Label();
     this.trendLbl = new System.Windows.Forms.Label();
     this.levelLbl = new System.Windows.Forms.Label();
     this.betaLbl = new System.Windows.Forms.Label();
     this.gammaLbl = new System.Windows.Forms.Label();
     this.alphaLbl = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.seasonalBox = new zaitun.GUI.NumericTextBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.adtRdb = new System.Windows.Forms.RadioButton();
     this.mtpRdb = new System.Windows.Forms.RadioButton();
     this.storageButton = new System.Windows.Forms.Button();
     this.resultButton = new System.Windows.Forms.Button();
     this.optionsButton = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox5.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.winterRdb);
     this.groupBox1.Controls.Add(this.holtRdb);
     this.groupBox1.Controls.Add(this.brownRdb);
     this.groupBox1.Controls.Add(this.sesRdb);
     this.groupBox1.Location = new System.Drawing.Point(12, 52);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(267, 120);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Method";
     //
     // winterRdb
     //
     this.winterRdb.AutoSize = true;
     this.winterRdb.Location = new System.Drawing.Point(24, 91);
     this.winterRdb.Name = "winterRdb";
     this.winterRdb.Size = new System.Drawing.Size(202, 17);
     this.winterRdb.TabIndex = 3;
     this.winterRdb.Text = "Triple Exponential Smoothing (Winter)";
     this.winterRdb.UseVisualStyleBackColor = true;
     this.winterRdb.CheckedChanged += new System.EventHandler(this.winterRdb_CheckedChanged);
     //
     // holtRdb
     //
     this.holtRdb.AutoSize = true;
     this.holtRdb.Location = new System.Drawing.Point(24, 67);
     this.holtRdb.Name = "holtRdb";
     this.holtRdb.Size = new System.Drawing.Size(198, 17);
     this.holtRdb.TabIndex = 2;
     this.holtRdb.Text = "Double Exponential Smoothing (Holt)";
     this.holtRdb.UseVisualStyleBackColor = true;
     this.holtRdb.CheckedChanged += new System.EventHandler(this.holtRdb_CheckedChanged);
     //
     // brownRdb
     //
     this.brownRdb.AutoSize = true;
     this.brownRdb.Location = new System.Drawing.Point(24, 43);
     this.brownRdb.Name = "brownRdb";
     this.brownRdb.Size = new System.Drawing.Size(209, 17);
     this.brownRdb.TabIndex = 1;
     this.brownRdb.Text = "Double Exponential Smoothing (Brown)";
     this.brownRdb.UseVisualStyleBackColor = true;
     this.brownRdb.CheckedChanged += new System.EventHandler(this.brownRdb_CheckedChanged);
     //
     // sesRdb
     //
     this.sesRdb.AutoSize = true;
     this.sesRdb.Checked = true;
     this.sesRdb.Location = new System.Drawing.Point(24, 19);
     this.sesRdb.Name = "sesRdb";
     this.sesRdb.Size = new System.Drawing.Size(165, 17);
     this.sesRdb.TabIndex = 0;
     this.sesRdb.TabStop = true;
     this.sesRdb.Text = "Single Exponential Smoothing";
     this.sesRdb.UseVisualStyleBackColor = true;
     this.sesRdb.CheckedChanged += new System.EventHandler(this.sesRdb_CheckedChanged);
     //
     // slengthLbl
     //
     this.slengthLbl.AutoSize = true;
     this.slengthLbl.Enabled = false;
     this.slengthLbl.Location = new System.Drawing.Point(6, 22);
     this.slengthLbl.Name = "slengthLbl";
     this.slengthLbl.Size = new System.Drawing.Size(93, 13);
     this.slengthLbl.TabIndex = 1;
     this.slengthLbl.Text = "Seasonal Length :";
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.Yes;
     this.okButton.Location = new System.Drawing.Point(306, 343);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(76, 32);
     this.okButton.TabIndex = 12;
     this.okButton.Text = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location = new System.Drawing.Point(388, 343);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(76, 32);
     this.cancelButton.TabIndex = 13;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.beta);
     this.groupBox2.Controls.Add(this.gridSearchButton);
     this.groupBox2.Controls.Add(this.gamma);
     this.groupBox2.Controls.Add(this.alpha);
     this.groupBox2.Controls.Add(this.seasonalLbl);
     this.groupBox2.Controls.Add(this.trendLbl);
     this.groupBox2.Controls.Add(this.levelLbl);
     this.groupBox2.Controls.Add(this.betaLbl);
     this.groupBox2.Controls.Add(this.gammaLbl);
     this.groupBox2.Controls.Add(this.alphaLbl);
     this.groupBox2.Location = new System.Drawing.Point(12, 178);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(447, 151);
     this.groupBox2.TabIndex = 25;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Smoothing Constant";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(83, 113);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(297, 28);
     this.label2.TabIndex = 28;
     this.label2.Text = "You can click \'Grid Search\' button to identifying the optimum smoothing parameter" +
         "s ";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(21, 113);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(30, 13);
     this.label1.TabIndex = 27;
     this.label1.Text = "Note";
     //
     // beta
     //
     this.beta.Enabled = false;
     this.beta.Location = new System.Drawing.Point(86, 81);
     this.beta.Name = "beta";
     this.beta.Size = new System.Drawing.Size(73, 20);
     this.beta.TabIndex = 9;
     this.beta.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // gridSearchButton
     //
     this.gridSearchButton.Location = new System.Drawing.Point(261, 40);
     this.gridSearchButton.Name = "gridSearchButton";
     this.gridSearchButton.Size = new System.Drawing.Size(109, 45);
     this.gridSearchButton.TabIndex = 6;
     this.gridSearchButton.Text = "==> Grid Search";
     this.gridSearchButton.UseVisualStyleBackColor = true;
     this.gridSearchButton.Click += new System.EventHandler(this.gridSearchButton_Click);
     //
     // gamma
     //
     this.gamma.Enabled = false;
     this.gamma.Location = new System.Drawing.Point(86, 53);
     this.gamma.Name = "gamma";
     this.gamma.Size = new System.Drawing.Size(73, 20);
     this.gamma.TabIndex = 8;
     this.gamma.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // alpha
     //
     this.alpha.Location = new System.Drawing.Point(86, 24);
     this.alpha.Name = "alpha";
     this.alpha.Size = new System.Drawing.Size(73, 20);
     this.alpha.TabIndex = 7;
     this.alpha.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // seasonalLbl
     //
     this.seasonalLbl.AutoSize = true;
     this.seasonalLbl.Enabled = false;
     this.seasonalLbl.Location = new System.Drawing.Point(176, 84);
     this.seasonalLbl.Name = "seasonalLbl";
     this.seasonalLbl.Size = new System.Drawing.Size(51, 13);
     this.seasonalLbl.TabIndex = 8;
     this.seasonalLbl.Text = "Seasonal";
     //
     // trendLbl
     //
     this.trendLbl.AutoSize = true;
     this.trendLbl.Enabled = false;
     this.trendLbl.Location = new System.Drawing.Point(176, 56);
     this.trendLbl.Name = "trendLbl";
     this.trendLbl.Size = new System.Drawing.Size(35, 13);
     this.trendLbl.TabIndex = 7;
     this.trendLbl.Text = "Trend";
     //
     // levelLbl
     //
     this.levelLbl.AutoSize = true;
     this.levelLbl.Location = new System.Drawing.Point(176, 27);
     this.levelLbl.Name = "levelLbl";
     this.levelLbl.Size = new System.Drawing.Size(33, 13);
     this.levelLbl.TabIndex = 6;
     this.levelLbl.Text = "Level";
     //
     // betaLbl
     //
     this.betaLbl.AutoSize = true;
     this.betaLbl.Enabled = false;
     this.betaLbl.Location = new System.Drawing.Point(21, 84);
     this.betaLbl.Name = "betaLbl";
     this.betaLbl.Size = new System.Drawing.Size(35, 13);
     this.betaLbl.TabIndex = 2;
     this.betaLbl.Text = "Beta :";
     //
     // gammaLbl
     //
     this.gammaLbl.AutoSize = true;
     this.gammaLbl.Enabled = false;
     this.gammaLbl.Location = new System.Drawing.Point(21, 56);
     this.gammaLbl.Name = "gammaLbl";
     this.gammaLbl.Size = new System.Drawing.Size(49, 13);
     this.gammaLbl.TabIndex = 1;
     this.gammaLbl.Text = "Gamma :";
     //
     // alphaLbl
     //
     this.alphaLbl.AutoSize = true;
     this.alphaLbl.Location = new System.Drawing.Point(21, 27);
     this.alphaLbl.Name = "alphaLbl";
     this.alphaLbl.Size = new System.Drawing.Size(40, 13);
     this.alphaLbl.TabIndex = 0;
     this.alphaLbl.Text = "Alpha :";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.slengthLbl);
     this.groupBox4.Controls.Add(this.seasonalBox);
     this.groupBox4.Location = new System.Drawing.Point(285, 120);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(174, 52);
     this.groupBox4.TabIndex = 27;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Seasonal Length";
     //
     // seasonalBox
     //
     this.seasonalBox.Enabled = false;
     this.seasonalBox.Location = new System.Drawing.Point(105, 19);
     this.seasonalBox.Name = "seasonalBox";
     this.seasonalBox.Size = new System.Drawing.Size(45, 20);
     this.seasonalBox.TabIndex = 6;
     this.seasonalBox.Text = "12";
     this.seasonalBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.adtRdb);
     this.groupBox5.Controls.Add(this.mtpRdb);
     this.groupBox5.Location = new System.Drawing.Point(285, 52);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(174, 50);
     this.groupBox5.TabIndex = 28;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Model Type";
     //
     // adtRdb
     //
     this.adtRdb.AutoSize = true;
     this.adtRdb.Enabled = false;
     this.adtRdb.Location = new System.Drawing.Point(101, 19);
     this.adtRdb.Name = "adtRdb";
     this.adtRdb.Size = new System.Drawing.Size(63, 17);
     this.adtRdb.TabIndex = 5;
     this.adtRdb.Text = "Additive";
     this.adtRdb.UseVisualStyleBackColor = true;
     this.adtRdb.CheckedChanged += new System.EventHandler(this.adtRdb_CheckedChanged);
     //
     // mtpRdb
     //
     this.mtpRdb.AutoSize = true;
     this.mtpRdb.Checked = true;
     this.mtpRdb.Enabled = false;
     this.mtpRdb.Location = new System.Drawing.Point(9, 19);
     this.mtpRdb.Name = "mtpRdb";
     this.mtpRdb.Size = new System.Drawing.Size(86, 17);
     this.mtpRdb.TabIndex = 4;
     this.mtpRdb.TabStop = true;
     this.mtpRdb.Text = "Multiplicative";
     this.mtpRdb.UseVisualStyleBackColor = true;
     this.mtpRdb.CheckedChanged += new System.EventHandler(this.mtpRdb_CheckedChanged);
     //
     // storageButton
     //
     this.storageButton.Location = new System.Drawing.Point(90, 343);
     this.storageButton.Name = "storageButton";
     this.storageButton.Size = new System.Drawing.Size(81, 31);
     this.storageButton.TabIndex = 43;
     this.storageButton.Text = "&Storage...";
     this.storageButton.UseVisualStyleBackColor = true;
     this.storageButton.Click += new System.EventHandler(this.storageButton_Click);
     //
     // resultButton
     //
     this.resultButton.Location = new System.Drawing.Point(10, 343);
     this.resultButton.Name = "resultButton";
     this.resultButton.Size = new System.Drawing.Size(74, 31);
     this.resultButton.TabIndex = 42;
     this.resultButton.Text = "&Results...";
     this.resultButton.UseVisualStyleBackColor = true;
     this.resultButton.Click += new System.EventHandler(this.resultButton_Click);
     //
     // optionsButton
     //
     this.optionsButton.Location = new System.Drawing.Point(177, 343);
     this.optionsButton.Name = "optionsButton";
     this.optionsButton.Size = new System.Drawing.Size(81, 31);
     this.optionsButton.TabIndex = 44;
     this.optionsButton.Text = "&Options...";
     this.optionsButton.UseVisualStyleBackColor = true;
     this.optionsButton.Click += new System.EventHandler(this.optionsButton_Click);
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::zaitun.Properties.Resources.bottom;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.label6);
     this.panel1.Location = new System.Drawing.Point(0, -2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(475, 48);
     this.panel1.TabIndex = 45;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(12, 12);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(350, 25);
     this.label6.TabIndex = 0;
     this.label6.Text = "Exponential Smoothing Analysis";
     //
     // ExponentialSmoothingForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(472, 385);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.optionsButton);
     this.Controls.Add(this.storageButton);
     this.Controls.Add(this.resultButton);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.groupBox1);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "ExponentialSmoothingForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Exponential Smoothing Analysis";
     this.Load += new System.EventHandler(this.ExponentialSmoothingForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.gbxMetode = new System.Windows.Forms.GroupBox();
     this.dmaRadio = new System.Windows.Forms.RadioButton();
     this.smaRadio = new System.Windows.Forms.RadioButton();
     this.cancelButton = new System.Windows.Forms.Button();
     this.okButton = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.OrdeBox = new zaitun.GUI.NumericTextBox();
     this.lblOrde = new System.Windows.Forms.Label();
     this.storageButton = new System.Windows.Forms.Button();
     this.resultButton = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.gbxMetode.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // gbxMetode
     //
     this.gbxMetode.Controls.Add(this.dmaRadio);
     this.gbxMetode.Controls.Add(this.smaRadio);
     this.gbxMetode.Location = new System.Drawing.Point(12, 59);
     this.gbxMetode.Name = "gbxMetode";
     this.gbxMetode.Size = new System.Drawing.Size(200, 71);
     this.gbxMetode.TabIndex = 7;
     this.gbxMetode.TabStop = false;
     this.gbxMetode.Text = "Method:";
     //
     // dmaRadio
     //
     this.dmaRadio.AutoSize = true;
     this.dmaRadio.Location = new System.Drawing.Point(19, 43);
     this.dmaRadio.Name = "dmaRadio";
     this.dmaRadio.Size = new System.Drawing.Size(140, 17);
     this.dmaRadio.TabIndex = 1;
     this.dmaRadio.Text = "Double Moving Average";
     this.dmaRadio.UseVisualStyleBackColor = true;
     //
     // smaRadio
     //
     this.smaRadio.AutoSize = true;
     this.smaRadio.Checked = true;
     this.smaRadio.Location = new System.Drawing.Point(19, 20);
     this.smaRadio.Name = "smaRadio";
     this.smaRadio.Size = new System.Drawing.Size(135, 17);
     this.smaRadio.TabIndex = 0;
     this.smaRadio.TabStop = true;
     this.smaRadio.Text = "Single Moving Average";
     this.smaRadio.UseVisualStyleBackColor = true;
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location = new System.Drawing.Point(228, 119);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(76, 32);
     this.cancelButton.TabIndex = 18;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.Yes;
     this.okButton.Location = new System.Drawing.Point(228, 64);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(76, 32);
     this.okButton.TabIndex = 19;
     this.okButton.Text = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.OrdeBox);
     this.groupBox1.Controls.Add(this.lblOrde);
     this.groupBox1.Location = new System.Drawing.Point(12, 136);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(200, 47);
     this.groupBox1.TabIndex = 20;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Moving Average Length";
     //
     // OrdeBox
     //
     this.OrdeBox.Location = new System.Drawing.Point(120, 17);
     this.OrdeBox.Name = "OrdeBox";
     this.OrdeBox.Size = new System.Drawing.Size(61, 20);
     this.OrdeBox.TabIndex = 19;
     this.OrdeBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblOrde
     //
     this.lblOrde.AutoSize = true;
     this.lblOrde.Location = new System.Drawing.Point(16, 20);
     this.lblOrde.Name = "lblOrde";
     this.lblOrde.Size = new System.Drawing.Size(97, 13);
     this.lblOrde.TabIndex = 18;
     this.lblOrde.Text = "MA Length (Orde) :";
     //
     // storageButton
     //
     this.storageButton.Location = new System.Drawing.Point(92, 197);
     this.storageButton.Name = "storageButton";
     this.storageButton.Size = new System.Drawing.Size(81, 31);
     this.storageButton.TabIndex = 41;
     this.storageButton.Text = "&Storage...";
     this.storageButton.UseVisualStyleBackColor = true;
     this.storageButton.Click += new System.EventHandler(this.storageButton_Click);
     //
     // resultButton
     //
     this.resultButton.Location = new System.Drawing.Point(12, 197);
     this.resultButton.Name = "resultButton";
     this.resultButton.Size = new System.Drawing.Size(74, 31);
     this.resultButton.TabIndex = 40;
     this.resultButton.Text = "&Results...";
     this.resultButton.UseVisualStyleBackColor = true;
     this.resultButton.Click += new System.EventHandler(this.resultButton_Click);
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::zaitun.Properties.Resources.bottom;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.label6);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(332, 48);
     this.panel1.TabIndex = 42;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(12, 11);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(278, 25);
     this.label6.TabIndex = 0;
     this.label6.Text = "Moving Average Analysis";
     //
     // MovingAverageForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(322, 239);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.storageButton);
     this.Controls.Add(this.resultButton);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.gbxMetode);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "MovingAverageForm";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Moving Average";
     this.Load += new System.EventHandler(this.MovingAverageForm_Load);
     this.gbxMetode.ResumeLayout(false);
     this.gbxMetode.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.resultGrid = new System.Windows.Forms.DataGridView();
     this.alphaColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gammaColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.BetaColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.maeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mseColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mpeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mapeColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.betaStopUpDown = new System.Windows.Forms.NumericUpDown();
     this.betaIncrementUpDown = new System.Windows.Forms.NumericUpDown();
     this.betaStartUpDown = new System.Windows.Forms.NumericUpDown();
     this.label8 = new System.Windows.Forms.Label();
     this.gammaStopUpDown = new System.Windows.Forms.NumericUpDown();
     this.gammaIncrementUpDown = new System.Windows.Forms.NumericUpDown();
     this.gammaStartUpDown = new System.Windows.Forms.NumericUpDown();
     this.label5 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.solutionBox = new zaitun.GUI.NumericTextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.alphaStopUpDown = new System.Windows.Forms.NumericUpDown();
     this.alphaIncrementUpDown = new System.Windows.Forms.NumericUpDown();
     this.alphaStartUpDown = new System.Windows.Forms.NumericUpDown();
     this.searchButton = new System.Windows.Forms.Button();
     this.label4 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.selectButton = new System.Windows.Forms.Button();
     this.cancelButton = new System.Windows.Forms.Button();
     this.timer1 = new System.Windows.Forms.Timer(this.components);
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dataGridViewTextBoxColumn7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label9 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.resultGrid)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.betaStopUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.betaIncrementUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.betaStartUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gammaStopUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gammaIncrementUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.gammaStartUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.alphaStopUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.alphaIncrementUpDown)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.alphaStartUpDown)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // resultGrid
     //
     this.resultGrid.AllowUserToAddRows = false;
     this.resultGrid.AllowUserToDeleteRows = false;
     this.resultGrid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.resultGrid.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.alphaColumn,
     this.gammaColumn,
     this.BetaColumn,
     this.maeColumn,
     this.mseColumn,
     this.mpeColumn,
     this.mapeColumn});
     this.resultGrid.Location = new System.Drawing.Point(19, 191);
     this.resultGrid.MultiSelect = false;
     this.resultGrid.Name = "resultGrid";
     this.resultGrid.ReadOnly = true;
     this.resultGrid.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
     this.resultGrid.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.resultGrid.Size = new System.Drawing.Size(606, 280);
     this.resultGrid.TabIndex = 0;
     //
     // alphaColumn
     //
     this.alphaColumn.FillWeight = 60F;
     this.alphaColumn.HeaderText = "Alpha";
     this.alphaColumn.Name = "alphaColumn";
     this.alphaColumn.ReadOnly = true;
     //
     // gammaColumn
     //
     this.gammaColumn.FillWeight = 60F;
     this.gammaColumn.HeaderText = "Gamma";
     this.gammaColumn.Name = "gammaColumn";
     this.gammaColumn.ReadOnly = true;
     //
     // BetaColumn
     //
     this.BetaColumn.HeaderText = "Beta";
     this.BetaColumn.Name = "BetaColumn";
     this.BetaColumn.ReadOnly = true;
     //
     // maeColumn
     //
     this.maeColumn.HeaderText = "MAE";
     this.maeColumn.Name = "maeColumn";
     this.maeColumn.ReadOnly = true;
     //
     // mseColumn
     //
     this.mseColumn.HeaderText = "MSE";
     this.mseColumn.Name = "mseColumn";
     this.mseColumn.ReadOnly = true;
     //
     // mpeColumn
     //
     this.mpeColumn.HeaderText = "MPE";
     this.mpeColumn.Name = "mpeColumn";
     this.mpeColumn.ReadOnly = true;
     //
     // mapeColumn
     //
     this.mapeColumn.HeaderText = "MAPE";
     this.mapeColumn.Name = "mapeColumn";
     this.mapeColumn.ReadOnly = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.betaStopUpDown);
     this.groupBox1.Controls.Add(this.betaIncrementUpDown);
     this.groupBox1.Controls.Add(this.betaStartUpDown);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.gammaStopUpDown);
     this.groupBox1.Controls.Add(this.gammaIncrementUpDown);
     this.groupBox1.Controls.Add(this.gammaStartUpDown);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.solutionBox);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.alphaStopUpDown);
     this.groupBox1.Controls.Add(this.alphaIncrementUpDown);
     this.groupBox1.Controls.Add(this.alphaStartUpDown);
     this.groupBox1.Controls.Add(this.searchButton);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Location = new System.Drawing.Point(13, 54);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(618, 116);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search Parameter";
     //
     // betaStopUpDown
     //
     this.betaStopUpDown.DecimalPlaces = 3;
     this.betaStopUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.betaStopUpDown.Location = new System.Drawing.Point(303, 89);
     this.betaStopUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.betaStopUpDown.Name = "betaStopUpDown";
     this.betaStopUpDown.Size = new System.Drawing.Size(69, 20);
     this.betaStopUpDown.TabIndex = 20;
     this.betaStopUpDown.Value = new decimal(new int[] {
     900,
     0,
     0,
     196608});
     //
     // betaIncrementUpDown
     //
     this.betaIncrementUpDown.DecimalPlaces = 3;
     this.betaIncrementUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.betaIncrementUpDown.Location = new System.Drawing.Point(192, 89);
     this.betaIncrementUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.betaIncrementUpDown.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.betaIncrementUpDown.Name = "betaIncrementUpDown";
     this.betaIncrementUpDown.Size = new System.Drawing.Size(69, 20);
     this.betaIncrementUpDown.TabIndex = 19;
     this.betaIncrementUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     196608});
     //
     // betaStartUpDown
     //
     this.betaStartUpDown.DecimalPlaces = 3;
     this.betaStartUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.betaStartUpDown.Location = new System.Drawing.Point(86, 89);
     this.betaStartUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.betaStartUpDown.Name = "betaStartUpDown";
     this.betaStartUpDown.Size = new System.Drawing.Size(69, 20);
     this.betaStartUpDown.TabIndex = 18;
     this.betaStartUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     196608});
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(6, 91);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(28, 13);
     this.label8.TabIndex = 17;
     this.label8.Text = "beta";
     //
     // gammaStopUpDown
     //
     this.gammaStopUpDown.DecimalPlaces = 3;
     this.gammaStopUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.gammaStopUpDown.Location = new System.Drawing.Point(303, 63);
     this.gammaStopUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.gammaStopUpDown.Name = "gammaStopUpDown";
     this.gammaStopUpDown.Size = new System.Drawing.Size(69, 20);
     this.gammaStopUpDown.TabIndex = 16;
     this.gammaStopUpDown.Value = new decimal(new int[] {
     900,
     0,
     0,
     196608});
     //
     // gammaIncrementUpDown
     //
     this.gammaIncrementUpDown.DecimalPlaces = 3;
     this.gammaIncrementUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.gammaIncrementUpDown.Location = new System.Drawing.Point(192, 63);
     this.gammaIncrementUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.gammaIncrementUpDown.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.gammaIncrementUpDown.Name = "gammaIncrementUpDown";
     this.gammaIncrementUpDown.Size = new System.Drawing.Size(69, 20);
     this.gammaIncrementUpDown.TabIndex = 15;
     this.gammaIncrementUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     196608});
     //
     // gammaStartUpDown
     //
     this.gammaStartUpDown.DecimalPlaces = 3;
     this.gammaStartUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.gammaStartUpDown.Location = new System.Drawing.Point(86, 63);
     this.gammaStartUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.gammaStartUpDown.Name = "gammaStartUpDown";
     this.gammaStartUpDown.Size = new System.Drawing.Size(69, 20);
     this.gammaStartUpDown.TabIndex = 14;
     this.gammaStartUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     196608});
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(6, 65);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(41, 13);
     this.label5.TabIndex = 13;
     this.label5.Text = "gamma";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(445, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(48, 13);
     this.label7.TabIndex = 12;
     this.label7.Text = "Solution:";
     //
     // solutionBox
     //
     this.solutionBox.Location = new System.Drawing.Point(439, 51);
     this.solutionBox.Name = "solutionBox";
     this.solutionBox.Size = new System.Drawing.Size(57, 20);
     this.solutionBox.TabIndex = 11;
     this.solutionBox.Text = "10";
     this.solutionBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.SystemColors.Control;
     this.label6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.label6.Location = new System.Drawing.Point(411, 14);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(2, 94);
     this.label6.TabIndex = 10;
     //
     // alphaStopUpDown
     //
     this.alphaStopUpDown.DecimalPlaces = 3;
     this.alphaStopUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.alphaStopUpDown.Location = new System.Drawing.Point(303, 37);
     this.alphaStopUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.alphaStopUpDown.Name = "alphaStopUpDown";
     this.alphaStopUpDown.Size = new System.Drawing.Size(69, 20);
     this.alphaStopUpDown.TabIndex = 7;
     this.alphaStopUpDown.Value = new decimal(new int[] {
     900,
     0,
     0,
     196608});
     //
     // alphaIncrementUpDown
     //
     this.alphaIncrementUpDown.DecimalPlaces = 3;
     this.alphaIncrementUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.alphaIncrementUpDown.Location = new System.Drawing.Point(192, 37);
     this.alphaIncrementUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.alphaIncrementUpDown.Minimum = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.alphaIncrementUpDown.Name = "alphaIncrementUpDown";
     this.alphaIncrementUpDown.Size = new System.Drawing.Size(69, 20);
     this.alphaIncrementUpDown.TabIndex = 6;
     this.alphaIncrementUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     196608});
     //
     // alphaStartUpDown
     //
     this.alphaStartUpDown.DecimalPlaces = 3;
     this.alphaStartUpDown.Increment = new decimal(new int[] {
     1,
     0,
     0,
     196608});
     this.alphaStartUpDown.Location = new System.Drawing.Point(86, 37);
     this.alphaStartUpDown.Maximum = new decimal(new int[] {
     1,
     0,
     0,
     0});
     this.alphaStartUpDown.Name = "alphaStartUpDown";
     this.alphaStartUpDown.Size = new System.Drawing.Size(69, 20);
     this.alphaStartUpDown.TabIndex = 5;
     this.alphaStartUpDown.Value = new decimal(new int[] {
     100,
     0,
     0,
     196608});
     //
     // searchButton
     //
     this.searchButton.Location = new System.Drawing.Point(525, 19);
     this.searchButton.Name = "searchButton";
     this.searchButton.Size = new System.Drawing.Size(87, 35);
     this.searchButton.TabIndex = 4;
     this.searchButton.Text = "Search";
     this.searchButton.UseVisualStyleBackColor = true;
     this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(291, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(94, 13);
     this.label4.TabIndex = 3;
     this.label4.Text = "Stop parameter at:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(190, 16);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(71, 13);
     this.label3.TabIndex = 2;
     this.label3.Text = "Increment by:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(71, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(94, 13);
     this.label2.TabIndex = 1;
     this.label2.Text = "Start parameter at:";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(6, 39);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(33, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "alpha";
     //
     // groupBox2
     //
     this.groupBox2.Location = new System.Drawing.Point(13, 172);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(618, 305);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Best Result";
     //
     // selectButton
     //
     this.selectButton.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.selectButton.Enabled = false;
     this.selectButton.Location = new System.Drawing.Point(433, 487);
     this.selectButton.Name = "selectButton";
     this.selectButton.Size = new System.Drawing.Size(99, 29);
     this.selectButton.TabIndex = 3;
     this.selectButton.Text = "Select This";
     this.selectButton.UseVisualStyleBackColor = true;
     this.selectButton.Click += new System.EventHandler(this.selectButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location = new System.Drawing.Point(538, 487);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(85, 29);
     this.cancelButton.TabIndex = 5;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // textBox1
     //
     this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox1.Location = new System.Drawing.Point(174, 492);
     this.textBox1.Name = "textBox1";
     this.textBox1.ReadOnly = true;
     this.textBox1.Size = new System.Drawing.Size(100, 13);
     this.textBox1.TabIndex = 6;
     this.textBox1.Visible = false;
     //
     // textBox2
     //
     this.textBox2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.textBox2.Location = new System.Drawing.Point(292, 492);
     this.textBox2.Name = "textBox2";
     this.textBox2.ReadOnly = true;
     this.textBox2.Size = new System.Drawing.Size(74, 13);
     this.textBox2.TabIndex = 8;
     this.textBox2.Visible = false;
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.FillWeight = 60F;
     this.dataGridViewTextBoxColumn1.HeaderText = "Alpha";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     this.dataGridViewTextBoxColumn1.Width = 50;
     //
     // dataGridViewTextBoxColumn2
     //
     this.dataGridViewTextBoxColumn2.FillWeight = 60F;
     this.dataGridViewTextBoxColumn2.HeaderText = "MAD";
     this.dataGridViewTextBoxColumn2.Name = "dataGridViewTextBoxColumn2";
     this.dataGridViewTextBoxColumn2.ReadOnly = true;
     this.dataGridViewTextBoxColumn2.Width = 50;
     //
     // dataGridViewTextBoxColumn3
     //
     this.dataGridViewTextBoxColumn3.HeaderText = "MAPE";
     this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
     this.dataGridViewTextBoxColumn3.ReadOnly = true;
     this.dataGridViewTextBoxColumn3.Width = 50;
     //
     // dataGridViewTextBoxColumn4
     //
     this.dataGridViewTextBoxColumn4.HeaderText = "MSE";
     this.dataGridViewTextBoxColumn4.Name = "dataGridViewTextBoxColumn4";
     this.dataGridViewTextBoxColumn4.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn5
     //
     this.dataGridViewTextBoxColumn5.HeaderText = "MPE";
     this.dataGridViewTextBoxColumn5.Name = "dataGridViewTextBoxColumn5";
     this.dataGridViewTextBoxColumn5.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn6
     //
     this.dataGridViewTextBoxColumn6.HeaderText = "MPE";
     this.dataGridViewTextBoxColumn6.Name = "dataGridViewTextBoxColumn6";
     this.dataGridViewTextBoxColumn6.ReadOnly = true;
     //
     // dataGridViewTextBoxColumn7
     //
     this.dataGridViewTextBoxColumn7.HeaderText = "MPE";
     this.dataGridViewTextBoxColumn7.Name = "dataGridViewTextBoxColumn7";
     this.dataGridViewTextBoxColumn7.ReadOnly = true;
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::zaitun.Properties.Resources.bottom;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.label9);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(645, 48);
     this.panel1.TabIndex = 22;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(12, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(453, 25);
     this.label9.TabIndex = 0;
     this.label9.Text = "Triple Exponential Smoothing Grid Search";
     //
     // TripleESWinterGridSearch
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(643, 526);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.selectButton);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.resultGrid);
     this.Controls.Add(this.groupBox2);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "TripleESWinterGridSearch";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Triple ES Winter Grid Search";
     this.Load += new System.EventHandler(this.TripleESWinterGridSearch_Load);
     ((System.ComponentModel.ISupportInitialize)(this.resultGrid)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.betaStopUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.betaIncrementUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.betaStartUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gammaStopUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gammaIncrementUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.gammaStartUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.alphaStopUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.alphaIncrementUpDown)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.alphaStartUpDown)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.CorrelogramGroupBox1 = new System.Windows.Forms.GroupBox();
     this.seconddifference = new System.Windows.Forms.RadioButton();
     this.firstdifference = new System.Windows.Forms.RadioButton();
     this.level = new System.Windows.Forms.RadioButton();
     this.LagGroupBox = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.OK = new System.Windows.Forms.Button();
     this.Cancel = new System.Windows.Forms.Button();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.whiteNoiseCheckBox = new System.Windows.Forms.CheckBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.numericlag = new zaitun.GUI.NumericTextBox();
     this.CorrelogramGroupBox1.SuspendLayout();
     this.LagGroupBox.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // CorrelogramGroupBox1
     //
     this.CorrelogramGroupBox1.Controls.Add(this.seconddifference);
     this.CorrelogramGroupBox1.Controls.Add(this.firstdifference);
     this.CorrelogramGroupBox1.Controls.Add(this.level);
     this.CorrelogramGroupBox1.Location = new System.Drawing.Point(10, 54);
     this.CorrelogramGroupBox1.Name = "CorrelogramGroupBox1";
     this.CorrelogramGroupBox1.Size = new System.Drawing.Size(175, 99);
     this.CorrelogramGroupBox1.TabIndex = 0;
     this.CorrelogramGroupBox1.TabStop = false;
     this.CorrelogramGroupBox1.Text = "Correlogram of";
     //
     // seconddifference
     //
     this.seconddifference.AutoSize = true;
     this.seconddifference.Location = new System.Drawing.Point(10, 65);
     this.seconddifference.Name = "seconddifference";
     this.seconddifference.Size = new System.Drawing.Size(93, 17);
     this.seconddifference.TabIndex = 2;
     this.seconddifference.TabStop = true;
     this.seconddifference.Text = "2nd difference";
     this.seconddifference.UseVisualStyleBackColor = true;
     //
     // firstdifference
     //
     this.firstdifference.AutoSize = true;
     this.firstdifference.Location = new System.Drawing.Point(10, 42);
     this.firstdifference.Name = "firstdifference";
     this.firstdifference.Size = new System.Drawing.Size(89, 17);
     this.firstdifference.TabIndex = 1;
     this.firstdifference.TabStop = true;
     this.firstdifference.Text = "1st difference";
     this.firstdifference.UseVisualStyleBackColor = true;
     //
     // level
     //
     this.level.AutoSize = true;
     this.level.Location = new System.Drawing.Point(10, 19);
     this.level.Name = "level";
     this.level.Size = new System.Drawing.Size(51, 17);
     this.level.TabIndex = 0;
     this.level.TabStop = true;
     this.level.Text = "Level";
     this.level.UseVisualStyleBackColor = true;
     //
     // LagGroupBox
     //
     this.LagGroupBox.Controls.Add(this.label1);
     this.LagGroupBox.Controls.Add(this.numericlag);
     this.LagGroupBox.Location = new System.Drawing.Point(10, 159);
     this.LagGroupBox.Name = "LagGroupBox";
     this.LagGroupBox.Size = new System.Drawing.Size(175, 54);
     this.LagGroupBox.TabIndex = 1;
     this.LagGroupBox.TabStop = false;
     this.LagGroupBox.Text = "Number of Lags";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(7, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(81, 13);
     this.label1.TabIndex = 5;
     this.label1.Text = "Number of lags:";
     //
     // OK
     //
     this.OK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.OK.Location = new System.Drawing.Point(220, 63);
     this.OK.Name = "OK";
     this.OK.Size = new System.Drawing.Size(75, 37);
     this.OK.TabIndex = 3;
     this.OK.Text = "OK";
     this.OK.UseVisualStyleBackColor = true;
     this.OK.Click += new System.EventHandler(this.OK_Click);
     //
     // Cancel
     //
     this.Cancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.Cancel.Location = new System.Drawing.Point(220, 110);
     this.Cancel.Name = "Cancel";
     this.Cancel.Size = new System.Drawing.Size(75, 34);
     this.Cancel.TabIndex = 4;
     this.Cancel.Text = "Cancel";
     this.Cancel.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.whiteNoiseCheckBox);
     this.groupBox1.Location = new System.Drawing.Point(10, 219);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(285, 54);
     this.groupBox1.TabIndex = 6;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "White noise standard errors";
     this.groupBox1.Visible = false;
     //
     // whiteNoiseCheckBox
     //
     this.whiteNoiseCheckBox.AutoSize = true;
     this.whiteNoiseCheckBox.Checked = true;
     this.whiteNoiseCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.whiteNoiseCheckBox.Location = new System.Drawing.Point(12, 24);
     this.whiteNoiseCheckBox.Name = "whiteNoiseCheckBox";
     this.whiteNoiseCheckBox.Size = new System.Drawing.Size(193, 17);
     this.whiteNoiseCheckBox.TabIndex = 0;
     this.whiteNoiseCheckBox.Text = "White noise standard errors on ACF";
     this.whiteNoiseCheckBox.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::zaitun.Properties.Resources.bottom;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.label6);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(316, 48);
     this.panel1.TabIndex = 22;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(12, 12);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(141, 25);
     this.label6.TabIndex = 0;
     this.label6.Text = "Correlogram";
     //
     // numericlag
     //
     this.numericlag.Location = new System.Drawing.Point(94, 26);
     this.numericlag.Name = "numericlag";
     this.numericlag.Size = new System.Drawing.Size(62, 20);
     this.numericlag.TabIndex = 0;
     this.numericlag.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // CorrelogramForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(316, 223);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Cancel);
     this.Controls.Add(this.OK);
     this.Controls.Add(this.LagGroupBox);
     this.Controls.Add(this.CorrelogramGroupBox1);
     this.Name = "CorrelogramForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Correlogram";
     this.Load += new System.EventHandler(this.correlogram_Load);
     this.CorrelogramGroupBox1.ResumeLayout(false);
     this.CorrelogramGroupBox1.PerformLayout();
     this.LagGroupBox.ResumeLayout(false);
     this.LagGroupBox.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.SeasonalLengthBox = new zaitun.GUI.NumericTextBox();
     this.lblOrde = new System.Windows.Forms.Label();
     this.okButton = new System.Windows.Forms.Button();
     this.cancelButton = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.additiveRdb = new System.Windows.Forms.RadioButton();
     this.multiplikativeRdb = new System.Windows.Forms.RadioButton();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.trendComboBox = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.storageButton = new System.Windows.Forms.Button();
     this.resultButton = new System.Windows.Forms.Button();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.SeasonalLengthBox);
     this.groupBox1.Controls.Add(this.lblOrde);
     this.groupBox1.Location = new System.Drawing.Point(9, 58);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(225, 47);
     this.groupBox1.TabIndex = 24;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Seasonal Length";
     //
     // SeasonalLengthBox
     //
     this.SeasonalLengthBox.Location = new System.Drawing.Point(112, 17);
     this.SeasonalLengthBox.Name = "SeasonalLengthBox";
     this.SeasonalLengthBox.Size = new System.Drawing.Size(69, 20);
     this.SeasonalLengthBox.TabIndex = 0;
     this.SeasonalLengthBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblOrde
     //
     this.lblOrde.AutoSize = true;
     this.lblOrde.Location = new System.Drawing.Point(16, 20);
     this.lblOrde.Name = "lblOrde";
     this.lblOrde.Size = new System.Drawing.Size(90, 13);
     this.lblOrde.TabIndex = 18;
     this.lblOrde.Text = "Seasonal Length:";
     //
     // okButton
     //
     this.okButton.DialogResult = System.Windows.Forms.DialogResult.Yes;
     this.okButton.Location = new System.Drawing.Point(251, 63);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(76, 32);
     this.okButton.TabIndex = 9;
     this.okButton.Text = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // cancelButton
     //
     this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.cancelButton.Location = new System.Drawing.Point(251, 118);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(76, 32);
     this.cancelButton.TabIndex = 10;
     this.cancelButton.Text = "Cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.additiveRdb);
     this.groupBox2.Controls.Add(this.multiplikativeRdb);
     this.groupBox2.Location = new System.Drawing.Point(9, 111);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(225, 67);
     this.groupBox2.TabIndex = 26;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Model Type";
     //
     // additiveRdb
     //
     this.additiveRdb.AutoSize = true;
     this.additiveRdb.Location = new System.Drawing.Point(19, 42);
     this.additiveRdb.Name = "additiveRdb";
     this.additiveRdb.Size = new System.Drawing.Size(63, 17);
     this.additiveRdb.TabIndex = 2;
     this.additiveRdb.TabStop = true;
     this.additiveRdb.Text = "Additive";
     this.additiveRdb.UseVisualStyleBackColor = true;
     //
     // multiplikativeRdb
     //
     this.multiplikativeRdb.AutoSize = true;
     this.multiplikativeRdb.Checked = true;
     this.multiplikativeRdb.Location = new System.Drawing.Point(19, 19);
     this.multiplikativeRdb.Name = "multiplikativeRdb";
     this.multiplikativeRdb.Size = new System.Drawing.Size(86, 17);
     this.multiplikativeRdb.TabIndex = 1;
     this.multiplikativeRdb.TabStop = true;
     this.multiplikativeRdb.Text = "Multiplicative";
     this.multiplikativeRdb.UseVisualStyleBackColor = true;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.trendComboBox);
     this.groupBox4.Controls.Add(this.label1);
     this.groupBox4.Location = new System.Drawing.Point(9, 184);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(225, 52);
     this.groupBox4.TabIndex = 28;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Trend";
     //
     // trendComboBox
     //
     this.trendComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.trendComboBox.FormattingEnabled = true;
     this.trendComboBox.Items.AddRange(new object[] {
     "Linear",
     "Quadratic",
     "Cubic",
     "Exponential"});
     this.trendComboBox.Location = new System.Drawing.Point(99, 19);
     this.trendComboBox.Name = "trendComboBox";
     this.trendComboBox.Size = new System.Drawing.Size(105, 21);
     this.trendComboBox.TabIndex = 3;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(16, 22);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(73, 13);
     this.label1.TabIndex = 0;
     this.label1.Text = "Trend Model :";
     //
     // storageButton
     //
     this.storageButton.Location = new System.Drawing.Point(89, 242);
     this.storageButton.Name = "storageButton";
     this.storageButton.Size = new System.Drawing.Size(81, 31);
     this.storageButton.TabIndex = 39;
     this.storageButton.Text = "&Storage...";
     this.storageButton.UseVisualStyleBackColor = true;
     this.storageButton.Click += new System.EventHandler(this.storageButton_Click);
     //
     // resultButton
     //
     this.resultButton.Location = new System.Drawing.Point(9, 242);
     this.resultButton.Name = "resultButton";
     this.resultButton.Size = new System.Drawing.Size(74, 31);
     this.resultButton.TabIndex = 38;
     this.resultButton.Text = "&Results...";
     this.resultButton.UseVisualStyleBackColor = true;
     this.resultButton.Click += new System.EventHandler(this.resultButton_Click);
     //
     // panel1
     //
     this.panel1.BackgroundImage = global::zaitun.Properties.Resources.bottom;
     this.panel1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.panel1.Controls.Add(this.label6);
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(353, 48);
     this.panel1.TabIndex = 40;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(12, 12);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(263, 25);
     this.label6.TabIndex = 0;
     this.label6.Text = "Decomposition Analysis";
     //
     // DecompositionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(343, 287);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.storageButton);
     this.Controls.Add(this.resultButton);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "DecompositionForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Decomposition Analysis";
     this.Load += new System.EventHandler(this.DecompositionForm_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
 }