/// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(RadioCheckbox));
     this.checkBox = new System.Windows.Forms.CheckBox();
     this.radioButton = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // checkBox
     //
     resources.ApplyResources(this.checkBox, "checkBox");
     this.checkBox.Name = "checkBox";
     this.checkBox.UseVisualStyleBackColor = true;
     //
     // radioButton
     //
     resources.ApplyResources(this.radioButton, "radioButton");
     this.radioButton.Name = "radioButton";
     this.radioButton.TabStop = true;
     this.radioButton.UseVisualStyleBackColor = true;
     this.radioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
     //
     // RadioCheckbox
     //
     this.Controls.Add(this.radioButton);
     this.Controls.Add(this.checkBox);
     this.Name = "RadioCheckbox";
     resources.ApplyResources(this, "$this");
     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.colourFrameButton = new System.Windows.Forms.RadioButton();
     this.depthFrameButton = new System.Windows.Forms.RadioButton();
     this.frameImage = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.frameImage)).BeginInit();
     this.SuspendLayout();
     //
     // colourFrameButton
     //
     this.colourFrameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.colourFrameButton.AutoSize = true;
     this.colourFrameButton.BackColor = System.Drawing.Color.Transparent;
     this.colourFrameButton.Location = new System.Drawing.Point(433, 419);
     this.colourFrameButton.Name = "colourFrameButton";
     this.colourFrameButton.Size = new System.Drawing.Size(55, 17);
     this.colourFrameButton.TabIndex = 5;
     this.colourFrameButton.Text = "Colour";
     this.colourFrameButton.UseVisualStyleBackColor = false;
     this.colourFrameButton.CheckedChanged += new System.EventHandler(this.colourFrameButton_CheckedChanged);
     //
     // depthFrameButton
     //
     this.depthFrameButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.depthFrameButton.AutoSize = true;
     this.depthFrameButton.BackColor = System.Drawing.Color.Transparent;
     this.depthFrameButton.Checked = true;
     this.depthFrameButton.Location = new System.Drawing.Point(373, 419);
     this.depthFrameButton.Name = "depthFrameButton";
     this.depthFrameButton.Size = new System.Drawing.Size(54, 17);
     this.depthFrameButton.TabIndex = 4;
     this.depthFrameButton.TabStop = true;
     this.depthFrameButton.Text = "Depth";
     this.depthFrameButton.UseVisualStyleBackColor = false;
     this.depthFrameButton.CheckedChanged += new System.EventHandler(this.depthFrameButton_CheckedChanged);
     //
     // frameImage
     //
     this.frameImage.Dock = System.Windows.Forms.DockStyle.Fill;
     this.frameImage.Location = new System.Drawing.Point(0, 0);
     this.frameImage.Name = "frameImage";
     this.frameImage.Size = new System.Drawing.Size(492, 439);
     this.frameImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.frameImage.TabIndex = 3;
     this.frameImage.TabStop = false;
     //
     // KinectCamera
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.colourFrameButton);
     this.Controls.Add(this.depthFrameButton);
     this.Controls.Add(this.frameImage);
     this.Name = "KinectCamera";
     this.Size = new System.Drawing.Size(492, 439);
     ((System.ComponentModel.ISupportInitialize)(this.frameImage)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 3
0
 public RadioButton()
 {
     mRadioButton = null;
     mPoint = new Point2I();
     mSize = new Size2I();
     mContain = null;
     mText = null;
 }
Esempio n. 4
0
 public RadioButtonEx()
 {
     mCheckCommand = null;
     mCheckCmd = null;
     mRadioButton = null;
     mPoint = new Point2I();
     mSize = new Size2I();
     mContain = null;
     mText = null;
 }
Esempio n. 5
0
 public override void _initControl()
 {
     if (null == mRadioButton || mRadioButton.IsDisposed)
     {
         mRadioButton = new System.Windows.Forms.RadioButton();
         mRadioButton.Location = new Point(mPoint._getX(), mPoint._getY());
         mRadioButton.Size = new Size(mSize._getWidth(), mSize._getHeight());
         mRadioButton.Text = mText;
         mRadioButton.AutoCheck = false;
         mRadioButton.Click += this._radioButtonClick;
         mRadioButton.CheckedChanged += this._radioButtonCheckedChanged;
     }
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WizardIntroduction));
     this.labelTitle = new System.Windows.Forms.Label();
     this.radioButtonCopyFile = new System.Windows.Forms.RadioButton();
     this.radioButtonTypeText = new System.Windows.Forms.RadioButton();
     this.labelRadioButtonHeader = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // labelTitle
     //
     resources.ApplyResources(this.labelTitle, "labelTitle");
     this.labelTitle.Name = "labelTitle";
     //
     // radioButtonCopyFile
     //
     resources.ApplyResources(this.radioButtonCopyFile, "radioButtonCopyFile");
     this.radioButtonCopyFile.Checked = true;
     this.radioButtonCopyFile.Name = "radioButtonCopyFile";
     this.radioButtonCopyFile.TabStop = true;
     this.radioButtonCopyFile.UseVisualStyleBackColor = true;
     this.radioButtonCopyFile.MouseClick += new System.Windows.Forms.MouseEventHandler(this.radioButtonTypeText_MouseClick);
     //
     // radioButtonTypeText
     //
     resources.ApplyResources(this.radioButtonTypeText, "radioButtonTypeText");
     this.radioButtonTypeText.Name = "radioButtonTypeText";
     this.radioButtonTypeText.TabStop = true;
     this.radioButtonTypeText.UseVisualStyleBackColor = true;
     this.radioButtonTypeText.MouseClick += new System.Windows.Forms.MouseEventHandler(this.radioButtonTypeText_MouseClick);
     //
     // labelRadioButtonHeader
     //
     resources.ApplyResources(this.labelRadioButtonHeader, "labelRadioButtonHeader");
     this.labelRadioButtonHeader.Name = "labelRadioButtonHeader";
     //
     // WizardIntroduction
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.labelRadioButtonHeader);
     this.Controls.Add(this.radioButtonTypeText);
     this.Controls.Add(this.radioButtonCopyFile);
     this.Controls.Add(this.labelTitle);
     this.Name = "WizardIntroduction";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 7
0
 public override void _initControl()
 {
     if (null == mRadioButton || mRadioButton.IsDisposed)
     {
         mRadioButton = new System.Windows.Forms.RadioButton();
         if (null != mPoint)
         {
             mRadioButton.Location = new Point(mPoint._getX(), mPoint._getY());
         }
         if (null != mSize)
         {
             mRadioButton.Size = new Size(mSize._getWidth(), mSize._getHeight());
         }
         mRadioButton.Text = mText;
     }
 }
 /// <summary>
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.m_radioButton = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // m_radioButton
     //
     this.m_radioButton.AutoSize = true;
     this.m_radioButton.Location = new System.Drawing.Point(0, 0);
     this.m_radioButton.Name = "m_radioButton";
     this.m_radioButton.Size = new System.Drawing.Size(104, 24);
     this.m_radioButton.TabIndex = 0;
     this.m_radioButton.TabStop = true;
     this.m_radioButton.Text = "radioButton";
     this.m_radioButton.UseVisualStyleBackColor = true;
     this.m_radioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
     //
     // RadioGroupBox
     //
     this.ControlAdded += new System.Windows.Forms.ControlEventHandler(this.CheckGroupBox_ControlAdded);
     this.ResumeLayout(false);
 }
Esempio n. 9
0
 private void salvaDadosInterface(ref System.Windows.Forms.RadioButton rbRE, ref mdlComponentesGraficos.TextBox tbRE, ref System.Windows.Forms.DateTimePicker dtpkRE, ref System.Windows.Forms.Label lSD, ref mdlComponentesGraficos.TextBox tbSD, ref System.Windows.Forms.DateTimePicker dtpkSD, ref System.Windows.Forms.RadioButton rbDSE, ref mdlComponentesGraficos.TextBox tbDSE, ref System.Windows.Forms.DateTimePicker dtpkDSE)
 {
     try
     {
         if (rbRE.Checked)
         {
             m_bRE           = true;
             m_strRE         = tbRE.Text;
             tbRE.Enabled    = true;
             m_dtDataRE      = dtpkRE.Value;
             dtpkRE.Enabled  = true;
             lSD.Enabled     = true;
             m_strSD         = tbSD.Text;
             tbSD.Enabled    = true;
             m_dtDataSD      = dtpkSD.Value;
             dtpkSD.Enabled  = true;
             rbDSE.Checked   = false;
             m_strDSE        = tbDSE.Text;
             tbDSE.Enabled   = false;
             m_dtDataDSE     = dtpkDSE.Value;
             dtpkDSE.Enabled = false;
         }
         else if (rbDSE.Checked)
         {
             m_bRE           = false;
             m_strRE         = tbRE.Text;
             tbRE.Enabled    = false;
             m_dtDataRE      = dtpkRE.Value;
             dtpkRE.Enabled  = false;
             lSD.Enabled     = false;
             m_strSD         = tbSD.Text;
             tbSD.Enabled    = false;
             m_dtDataSD      = dtpkSD.Value;
             dtpkSD.Enabled  = false;
             m_strDSE        = tbDSE.Text;
             tbDSE.Enabled   = true;
             m_dtDataDSE     = dtpkDSE.Value;
             dtpkDSE.Enabled = true;
         }
         else
         {
             tbRE.Enabled    = false;
             dtpkRE.Enabled  = false;
             lSD.Enabled     = false;
             tbSD.Enabled    = false;
             dtpkSD.Enabled  = false;
             tbDSE.Enabled   = false;
             dtpkDSE.Enabled = false;
         }
     }
     catch (Exception err)
     {
         Object erro = err;
         m_cls_ter_tratadorErro.trataErro(ref erro);
     }
 }
Esempio n. 10
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1        = new System.Windows.Forms.GroupBox();
     this.lbl_Z            = new System.Windows.Forms.Label();
     this.lbl_Y            = new System.Windows.Forms.Label();
     this.lbl_X            = new System.Windows.Forms.Label();
     this.txt_Z1           = new System.Windows.Forms.TextBox();
     this.txt_Y1           = new System.Windows.Forms.TextBox();
     this.txt_X1           = new System.Windows.Forms.TextBox();
     this.btn_LoadFamily   = new System.Windows.Forms.Button();
     this.btn_Create       = new System.Windows.Forms.Button();
     this.statusStrip1     = new System.Windows.Forms.StatusStrip();
     this.toolStrip_Status = new System.Windows.Forms.ToolStripStatusLabel();
     this.groupBox2        = new System.Windows.Forms.GroupBox();
     this.groupBox3        = new System.Windows.Forms.GroupBox();
     this.rdbtn_meter      = new System.Windows.Forms.RadioButton();
     this.rdbtn_feet       = new System.Windows.Forms.RadioButton();
     this.btn_Ok           = new System.Windows.Forms.Button();
     this.btn_Cancel       = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.lbl_Z);
     this.groupBox1.Controls.Add(this.lbl_Y);
     this.groupBox1.Controls.Add(this.lbl_X);
     this.groupBox1.Controls.Add(this.txt_Z1);
     this.groupBox1.Controls.Add(this.txt_Y1);
     this.groupBox1.Controls.Add(this.txt_X1);
     this.groupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(190, 139);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "New Point";
     //
     // lbl_Z
     //
     this.lbl_Z.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_Z.Location = new System.Drawing.Point(10, 99);
     this.lbl_Z.Name     = "lbl_Z";
     this.lbl_Z.Size     = new System.Drawing.Size(19, 23);
     this.lbl_Z.TabIndex = 8;
     this.lbl_Z.Text     = "Z:";
     //
     // lbl_Y
     //
     this.lbl_Y.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_Y.Location = new System.Drawing.Point(10, 64);
     this.lbl_Y.Name     = "lbl_Y";
     this.lbl_Y.Size     = new System.Drawing.Size(19, 23);
     this.lbl_Y.TabIndex = 7;
     this.lbl_Y.Text     = "Y:";
     //
     // lbl_X
     //
     this.lbl_X.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_X.Location = new System.Drawing.Point(10, 29);
     this.lbl_X.Name     = "lbl_X";
     this.lbl_X.Size     = new System.Drawing.Size(19, 23);
     this.lbl_X.TabIndex = 6;
     this.lbl_X.Text     = "X:";
     //
     // txt_Z1
     //
     this.txt_Z1.Location = new System.Drawing.Point(35, 97);
     this.txt_Z1.Name     = "txt_Z1";
     this.txt_Z1.Size     = new System.Drawing.Size(135, 20);
     this.txt_Z1.TabIndex = 4;
     //
     // txt_Y1
     //
     this.txt_Y1.Location = new System.Drawing.Point(35, 62);
     this.txt_Y1.Name     = "txt_Y1";
     this.txt_Y1.Size     = new System.Drawing.Size(135, 20);
     this.txt_Y1.TabIndex = 3;
     //
     // txt_X1
     //
     this.txt_X1.Location = new System.Drawing.Point(35, 26);
     this.txt_X1.Name     = "txt_X1";
     this.txt_X1.Size     = new System.Drawing.Size(135, 20);
     this.txt_X1.TabIndex = 2;
     //
     // btn_LoadFamily
     //
     this.btn_LoadFamily.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_LoadFamily.Location = new System.Drawing.Point(13, 24);
     this.btn_LoadFamily.Name     = "btn_LoadFamily";
     this.btn_LoadFamily.Size     = new System.Drawing.Size(75, 23);
     this.btn_LoadFamily.TabIndex = 9;
     this.btn_LoadFamily.Text     = "&Load";
     this.btn_LoadFamily.UseVisualStyleBackColor = true;
     this.btn_LoadFamily.Click += new System.EventHandler(this.Btn_LoadFamilyClick);
     //
     // btn_Create
     //
     this.btn_Create.Location = new System.Drawing.Point(73, 163);
     this.btn_Create.Name     = "btn_Create";
     this.btn_Create.Size     = new System.Drawing.Size(75, 23);
     this.btn_Create.TabIndex = 5;
     this.btn_Create.Text     = "&Create";
     this.btn_Create.UseVisualStyleBackColor = true;
     this.btn_Create.Click += new System.EventHandler(this.Btn_CreateClick);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStrip_Status
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 203);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(316, 22);
     this.statusStrip1.TabIndex = 1;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStrip_Status
     //
     this.toolStrip_Status.Name = "toolStrip_Status";
     this.toolStrip_Status.Size = new System.Drawing.Size(0, 17);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btn_LoadFamily);
     this.groupBox2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.Location = new System.Drawing.Point(208, 14);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(102, 61);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Load Family";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rdbtn_meter);
     this.groupBox3.Controls.Add(this.rdbtn_feet);
     this.groupBox3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.Location = new System.Drawing.Point(208, 80);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Size     = new System.Drawing.Size(102, 71);
     this.groupBox3.TabIndex = 6;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Units";
     //
     // rdbtn_meter
     //
     this.rdbtn_meter.Checked  = true;
     this.rdbtn_meter.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtn_meter.Location = new System.Drawing.Point(13, 17);
     this.rdbtn_meter.Name     = "rdbtn_meter";
     this.rdbtn_meter.Size     = new System.Drawing.Size(83, 24);
     this.rdbtn_meter.TabIndex = 9;
     this.rdbtn_meter.TabStop  = true;
     this.rdbtn_meter.Text     = "in meters";
     this.rdbtn_meter.UseVisualStyleBackColor = true;
     //
     // rdbtn_feet
     //
     this.rdbtn_feet.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbtn_feet.Location = new System.Drawing.Point(13, 39);
     this.rdbtn_feet.Name     = "rdbtn_feet";
     this.rdbtn_feet.Size     = new System.Drawing.Size(77, 24);
     this.rdbtn_feet.TabIndex = 10;
     this.rdbtn_feet.Text     = "in feet";
     this.rdbtn_feet.UseVisualStyleBackColor = true;
     //
     // btn_Ok
     //
     this.btn_Ok.Location = new System.Drawing.Point(154, 163);
     this.btn_Ok.Name     = "btn_Ok";
     this.btn_Ok.Size     = new System.Drawing.Size(75, 23);
     this.btn_Ok.TabIndex = 7;
     this.btn_Ok.Text     = "&OK";
     this.btn_Ok.UseVisualStyleBackColor = true;
     this.btn_Ok.Click += new System.EventHandler(this.Btn_OkClick);
     //
     // btn_Cancel
     //
     this.btn_Cancel.Location = new System.Drawing.Point(235, 163);
     this.btn_Cancel.Name     = "btn_Cancel";
     this.btn_Cancel.Size     = new System.Drawing.Size(75, 23);
     this.btn_Cancel.TabIndex = 8;
     this.btn_Cancel.Text     = "&Cancel";
     this.btn_Cancel.UseVisualStyleBackColor = true;
     this.btn_Cancel.Click += new System.EventHandler(this.Btn_CancelClick);
     //
     // Create
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(316, 225);
     this.Controls.Add(this.btn_Create);
     this.Controls.Add(this.btn_Cancel);
     this.Controls.Add(this.btn_Ok);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "Create";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Create Point";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChooseRegionDialog));
     this.lblExplanation  = new System.Windows.Forms.Label();
     this.radJapan        = new System.Windows.Forms.RadioButton();
     this.radNorthAmerica = new System.Windows.Forms.RadioButton();
     this.radEurope       = new System.Windows.Forms.RadioButton();
     this.btnOK           = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // lblExplanation
     //
     this.lblExplanation.AccessibleDescription = null;
     this.lblExplanation.AccessibleName        = null;
     resources.ApplyResources(this.lblExplanation, "lblExplanation");
     this.lblExplanation.BackColor = System.Drawing.SystemColors.Control;
     this.lblExplanation.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.lblExplanation.Font      = null;
     this.lblExplanation.Name      = "lblExplanation";
     //
     // radJapan
     //
     this.radJapan.AccessibleDescription = null;
     this.radJapan.AccessibleName        = null;
     resources.ApplyResources(this.radJapan, "radJapan");
     this.radJapan.BackgroundImage = null;
     this.radJapan.Font            = null;
     this.radJapan.Name            = "radJapan";
     //
     // radNorthAmerica
     //
     this.radNorthAmerica.AccessibleDescription = null;
     this.radNorthAmerica.AccessibleName        = null;
     resources.ApplyResources(this.radNorthAmerica, "radNorthAmerica");
     this.radNorthAmerica.BackgroundImage = null;
     this.radNorthAmerica.Font            = null;
     this.radNorthAmerica.Name            = "radNorthAmerica";
     //
     // radEurope
     //
     this.radEurope.AccessibleDescription = null;
     this.radEurope.AccessibleName        = null;
     resources.ApplyResources(this.radEurope, "radEurope");
     this.radEurope.BackgroundImage = null;
     this.radEurope.Font            = null;
     this.radEurope.Name            = "radEurope";
     //
     // btnOK
     //
     this.btnOK.AccessibleDescription = null;
     this.btnOK.AccessibleName        = null;
     resources.ApplyResources(this.btnOK, "btnOK");
     this.btnOK.BackgroundImage = null;
     this.btnOK.DialogResult    = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Font            = null;
     this.btnOK.Name            = "btnOK";
     this.btnOK.Click          += new System.EventHandler(this.btnOK_Click);
     //
     // ChooseRegionDialog
     //
     this.AccessibleDescription = null;
     this.AccessibleName        = null;
     resources.ApplyResources(this, "$this");
     this.BackgroundImage = null;
     this.ControlBox      = false;
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.radEurope);
     this.Controls.Add(this.radNorthAmerica);
     this.Controls.Add(this.radJapan);
     this.Controls.Add(this.lblExplanation);
     this.Font            = null;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon            = null;
     this.Name            = "ChooseRegionDialog";
     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.components = new System.ComponentModel.Container();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.button3 = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.cbNhanVien = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.rbDaTaoThe_InPin = new System.Windows.Forms.RadioButton();
     this.rbChuaMoTK_The = new System.Windows.Forms.RadioButton();
     this.button4 = new System.Windows.Forms.Button();
     this.button6 = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.tbNoiNhanThe = new System.Windows.Forms.TextBox();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.label6 = new System.Windows.Forms.Label();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.label4 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.tbCMND = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rbChuyenXuongQuay = new System.Windows.Forms.RadioButton();
     this.rbNgayNone = new System.Windows.Forms.RadioButton();
     this.rbDaGiaoThe = new System.Windows.Forms.RadioButton();
     this.rbDaTaoThe = new System.Windows.Forms.RadioButton();
     this.button1 = new System.Windows.Forms.Button();
     this.tbFullName = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.addToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.groupBox1.BackColor = System.Drawing.SystemColors.GradientInactiveCaption;
     this.groupBox1.Controls.Add(this.button3);
     this.groupBox1.Controls.Add(this.groupBox3);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.tbCMND);
     this.groupBox1.Controls.Add(this.groupBox2);
     this.groupBox1.Controls.Add(this.button1);
     this.groupBox1.Controls.Add(this.tbFullName);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.button2);
     this.groupBox1.Location = new System.Drawing.Point(2, 246);
     this.groupBox1.Margin = new System.Windows.Forms.Padding(2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Padding = new System.Windows.Forms.Padding(2);
     this.groupBox1.Size = new System.Drawing.Size(988, 166);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search";
     //
     // button3
     //
     this.button3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button3.Location = new System.Drawing.Point(375, 124);
     this.button3.Margin = new System.Windows.Forms.Padding(2);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(70, 27);
     this.button3.TabIndex = 20;
     this.button3.Text = "Refresh";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.label8);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.cbNhanVien);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.groupBox4);
     this.groupBox3.Controls.Add(this.button4);
     this.groupBox3.Controls.Add(this.button6);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.tbNoiNhanThe);
     this.groupBox3.Controls.Add(this.dateTimePicker1);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Controls.Add(this.dateTimePicker2);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Location = new System.Drawing.Point(467, 18);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(450, 133);
     this.groupBox3.TabIndex = 19;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Report";
     //
     // cbNhanVien
     //
     this.cbNhanVien.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbNhanVien.FormattingEnabled = true;
     this.cbNhanVien.Items.AddRange(new object[] {
     "-ALL-",
     "NHOM POS",
     "NHOM THE 1",
     "NHOM THE 2",
     "NGUYEN THI THANH TRUC",
     "DOAN VU LONG",
     "NGUYEN THANH VINH",
     "NGUYEN THI MY NHU",
     "NGUYEN THANH TRU",
     "BUI PHUONG HA",
     "BUI XUAN HIEP",
     "DO THI HUONG",
     "QUANG NHUT DIEM DIEM",
     "NGUYEN TUAN QUANG",
     "LE VAN THANG",
     "NGUYEN THANH LONG",
     "PHAM THI HUONG THUC",
     "NGUYEN THI NHU Y"});
     this.cbNhanVien.Location = new System.Drawing.Point(75, 75);
     this.cbNhanVien.Name = "cbNhanVien";
     this.cbNhanVien.Size = new System.Drawing.Size(176, 21);
     this.cbNhanVien.TabIndex = 158;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(6, 78);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(59, 13);
     this.label3.TabIndex = 157;
     this.label3.Text = "Nhân viên:";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.rbDaTaoThe_InPin);
     this.groupBox4.Controls.Add(this.rbChuaMoTK_The);
     this.groupBox4.Location = new System.Drawing.Point(267, 12);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(170, 73);
     this.groupBox4.TabIndex = 29;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Option";
     //
     // rbDaTaoThe_InPin
     //
     this.rbDaTaoThe_InPin.AutoSize = true;
     this.rbDaTaoThe_InPin.Location = new System.Drawing.Point(14, 42);
     this.rbDaTaoThe_InPin.Name = "rbDaTaoThe_InPin";
     this.rbDaTaoThe_InPin.Size = new System.Drawing.Size(118, 17);
     this.rbDaTaoThe_InPin.TabIndex = 29;
     this.rbDaTaoThe_InPin.Text = "Đã tạo thẻ và in pin";
     this.rbDaTaoThe_InPin.UseVisualStyleBackColor = true;
     //
     // rbChuaMoTK_The
     //
     this.rbChuaMoTK_The.AutoSize = true;
     this.rbChuaMoTK_The.Checked = true;
     this.rbChuaMoTK_The.Location = new System.Drawing.Point(13, 23);
     this.rbChuaMoTK_The.Name = "rbChuaMoTK_The";
     this.rbChuaMoTK_The.Size = new System.Drawing.Size(153, 17);
     this.rbChuaMoTK_The.TabIndex = 28;
     this.rbChuaMoTK_The.TabStop = true;
     this.rbChuaMoTK_The.Text = "Chưa mở tài khoản, tạo thẻ";
     this.rbChuaMoTK_The.UseVisualStyleBackColor = true;
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(348, 104);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(75, 22);
     this.button4.TabIndex = 27;
     this.button4.Text = "Load";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // button6
     //
     this.button6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button6.Location = new System.Drawing.Point(264, 104);
     this.button6.Margin = new System.Windows.Forms.Padding(2);
     this.button6.Name = "button6";
     this.button6.Size = new System.Drawing.Size(67, 24);
     this.button6.TabIndex = 26;
     this.button6.Text = "Execute";
     this.button6.UseVisualStyleBackColor = true;
     this.button6.Click += new System.EventHandler(this.button6_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(7, 51);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(52, 13);
     this.label5.TabIndex = 25;
     this.label5.Text = "To Date :";
     //
     // tbNoiNhanThe
     //
     this.tbNoiNhanThe.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbNoiNhanThe.Location = new System.Drawing.Point(75, 100);
     this.tbNoiNhanThe.Margin = new System.Windows.Forms.Padding(2);
     this.tbNoiNhanThe.Name = "tbNoiNhanThe";
     this.tbNoiNhanThe.Size = new System.Drawing.Size(176, 20);
     this.tbNoiNhanThe.TabIndex = 2;
     this.tbNoiNhanThe.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbFullName_KeyDown);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker1.Location = new System.Drawing.Point(75, 19);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(109, 20);
     this.dateTimePicker1.TabIndex = 22;
     //
     // label6
     //
     this.label6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(5, 104);
     this.label6.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(68, 13);
     this.label6.TabIndex = 3;
     this.label6.Text = "Nơi nhận thẻ";
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dateTimePicker2.Location = new System.Drawing.Point(75, 45);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(109, 20);
     this.dateTimePicker2.TabIndex = 23;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(7, 22);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 24;
     this.label4.Text = "From Date :";
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(195, 55);
     this.label1.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(39, 13);
     this.label1.TabIndex = 16;
     this.label1.Text = "CMND";
     //
     // tbCMND
     //
     this.tbCMND.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbCMND.Location = new System.Drawing.Point(284, 50);
     this.tbCMND.Margin = new System.Windows.Forms.Padding(2);
     this.tbCMND.Name = "tbCMND";
     this.tbCMND.Size = new System.Drawing.Size(178, 20);
     this.tbCMND.TabIndex = 15;
     this.tbCMND.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbCMND_KeyDown);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.rbChuyenXuongQuay);
     this.groupBox2.Controls.Add(this.rbNgayNone);
     this.groupBox2.Controls.Add(this.rbDaGiaoThe);
     this.groupBox2.Controls.Add(this.rbDaTaoThe);
     this.groupBox2.Location = new System.Drawing.Point(8, 14);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(182, 140);
     this.groupBox2.TabIndex = 13;
     this.groupBox2.TabStop = false;
     //
     // rbChuyenXuongQuay
     //
     this.rbChuyenXuongQuay.AutoSize = true;
     this.rbChuyenXuongQuay.Location = new System.Drawing.Point(18, 53);
     this.rbChuyenXuongQuay.Name = "rbChuyenXuongQuay";
     this.rbChuyenXuongQuay.Size = new System.Drawing.Size(119, 17);
     this.rbChuyenXuongQuay.TabIndex = 3;
     this.rbChuyenXuongQuay.Text = "Chuyển xuống quầy";
     this.rbChuyenXuongQuay.UseVisualStyleBackColor = true;
     //
     // rbNgayNone
     //
     this.rbNgayNone.AutoSize = true;
     this.rbNgayNone.Location = new System.Drawing.Point(18, 21);
     this.rbNgayNone.Name = "rbNgayNone";
     this.rbNgayNone.Size = new System.Drawing.Size(36, 17);
     this.rbNgayNone.TabIndex = 2;
     this.rbNgayNone.Text = "All";
     this.rbNgayNone.UseVisualStyleBackColor = true;
     //
     // rbDaGiaoThe
     //
     this.rbDaGiaoThe.AutoSize = true;
     this.rbDaGiaoThe.Checked = true;
     this.rbDaGiaoThe.Location = new System.Drawing.Point(18, 110);
     this.rbDaGiaoThe.Name = "rbDaGiaoThe";
     this.rbDaGiaoThe.Size = new System.Drawing.Size(144, 17);
     this.rbDaGiaoThe.TabIndex = 1;
     this.rbDaGiaoThe.TabStop = true;
     this.rbDaGiaoThe.Text = "Đã giao và kích hoạt thẻ";
     this.rbDaGiaoThe.UseVisualStyleBackColor = true;
     //
     // rbDaTaoThe
     //
     this.rbDaTaoThe.AutoSize = true;
     this.rbDaTaoThe.Location = new System.Drawing.Point(18, 83);
     this.rbDaTaoThe.Name = "rbDaTaoThe";
     this.rbDaTaoThe.Size = new System.Drawing.Size(122, 17);
     this.rbDaTaoThe.TabIndex = 0;
     this.rbDaTaoThe.Text = "Đã tạo thẻ và in PIN";
     this.rbDaTaoThe.UseVisualStyleBackColor = true;
     //
     // button1
     //
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(917, 124);
     this.button1.Margin = new System.Windows.Forms.Padding(2);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(67, 24);
     this.button1.TabIndex = 0;
     this.button1.Text = "Close";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // tbFullName
     //
     this.tbFullName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.tbFullName.Location = new System.Drawing.Point(284, 77);
     this.tbFullName.Margin = new System.Windows.Forms.Padding(2);
     this.tbFullName.Name = "tbFullName";
     this.tbFullName.Size = new System.Drawing.Size(178, 20);
     this.tbFullName.TabIndex = 2;
     this.tbFullName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tbFullName_KeyDown);
     //
     // label2
     //
     this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(195, 81);
     this.label2.Margin = new System.Windows.Forms.Padding(2, 0, 2, 0);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(60, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Họ tên KH:";
     //
     // button2
     //
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.button2.Location = new System.Drawing.Point(284, 124);
     this.button2.Margin = new System.Windows.Forms.Padding(2);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(70, 27);
     this.button2.TabIndex = 4;
     this.button2.Text = "Search";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // dataGridView1
     //
     this.dataGridView1.AllowUserToAddRows = false;
     this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dataGridView1.AutoSizeRowsMode = System.Windows.Forms.DataGridViewAutoSizeRowsMode.AllHeaders;
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.ContextMenuStrip = this.contextMenuStrip1;
     this.dataGridView1.Location = new System.Drawing.Point(-2, 2);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.ReadOnly = true;
     this.dataGridView1.Size = new System.Drawing.Size(992, 239);
     this.dataGridView1.TabIndex = 10;
     this.dataGridView1.CellContentDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentDoubleClick);
     this.dataGridView1.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.addToolStripMenuItem,
     this.editToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(97, 48);
     //
     // addToolStripMenuItem
     //
     this.addToolStripMenuItem.Name = "addToolStripMenuItem";
     this.addToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
     this.addToolStripMenuItem.Text = "Add";
     this.addToolStripMenuItem.Click += new System.EventHandler(this.addToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(96, 22);
     this.editToolStripMenuItem.Text = "Edit";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(190, 25);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(71, 13);
     this.label7.TabIndex = 159;
     this.label7.Text = "(dd/mm/yyyy)";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(190, 51);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(71, 13);
     this.label8.TabIndex = 159;
     this.label8.Text = "(dd/mm/yyyy)";
     //
     // Frm_Card_Issuance
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(994, 409);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.groupBox1);
     this.Name = "Frm_Card_Issuance";
     this.Text = "Frm_Card_Issuance";
     this.Load += new System.EventHandler(this.Frm_Card_Issuance_Load);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     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()
 {
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_PllaAyutaTrabajadores));
     this.lbltotalregistros = new System.Windows.Forms.Label();
     this.lblanulado = new System.Windows.Forms.Label();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.btnCerrar = new System.Windows.Forms.Button();
     this.btnSeleccionar = new System.Windows.Forms.Button();
     this.dgProveedor = new System.Windows.Forms.DataGridView();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.chktipoplanilla = new System.Windows.Forms.CheckBox();
     this.cmbtipoplanilla = new System.Windows.Forms.ComboBox();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.rbtodos3 = new System.Windows.Forms.RadioButton();
     this.rbtodos2 = new System.Windows.Forms.RadioButton();
     this.rbtodos1 = new System.Windows.Forms.RadioButton();
     this.btnrefrescar = new System.Windows.Forms.Button();
     this.chknombre = new System.Windows.Forms.CheckBox();
     this.txtnombre = new System.Windows.Forms.TextBox();
     this.fichaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nrodni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombrelargo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.situtrabname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.activo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipopllaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.GroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgProveedor)).BeginInit();
     this.GroupBox1.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // lbltotalregistros
     //
     this.lbltotalregistros.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalregistros.Location = new System.Drawing.Point(567, 478);
     this.lbltotalregistros.Name = "lbltotalregistros";
     this.lbltotalregistros.Size = new System.Drawing.Size(270, 23);
     this.lbltotalregistros.TabIndex = 9;
     //
     // lblanulado
     //
     this.lblanulado.AutoSize = true;
     this.lblanulado.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lblanulado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblanulado.ForeColor = System.Drawing.Color.Red;
     this.lblanulado.Location = new System.Drawing.Point(12, 483);
     this.lblanulado.Name = "lblanulado";
     this.lblanulado.Size = new System.Drawing.Size(72, 13);
     this.lblanulado.TabIndex = 7;
     this.lblanulado.Text = "ANULADOS :";
     this.lblanulado.Visible = false;
     //
     // GroupBox4
     //
     this.GroupBox4.Controls.Add(this.btnCerrar);
     this.GroupBox4.Controls.Add(this.btnSeleccionar);
     this.GroupBox4.Location = new System.Drawing.Point(277, 470);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(188, 42);
     this.GroupBox4.TabIndex = 8;
     this.GroupBox4.TabStop = false;
     //
     // btnCerrar
     //
     this.btnCerrar.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnCerrar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnCerrar.Location = new System.Drawing.Point(96, 11);
     this.btnCerrar.Name = "btnCerrar";
     this.btnCerrar.Size = new System.Drawing.Size(86, 25);
     this.btnCerrar.TabIndex = 1;
     this.btnCerrar.Text = "&Cancelar  ";
     this.btnCerrar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnCerrar.UseVisualStyleBackColor = true;
     this.btnCerrar.Click += new System.EventHandler(this.btnCerrar_Click);
     //
     // btnSeleccionar
     //
     this.btnSeleccionar.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnSeleccionar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSeleccionar.Location = new System.Drawing.Point(6, 11);
     this.btnSeleccionar.Name = "btnSeleccionar";
     this.btnSeleccionar.Size = new System.Drawing.Size(86, 25);
     this.btnSeleccionar.TabIndex = 0;
     this.btnSeleccionar.Text = "&Seleccionar";
     this.btnSeleccionar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSeleccionar.UseVisualStyleBackColor = true;
     this.btnSeleccionar.Click += new System.EventHandler(this.btnSeleccionar_Click);
     //
     // dgProveedor
     //
     this.dgProveedor.AllowUserToAddRows = false;
     this.dgProveedor.AllowUserToDeleteRows = false;
     this.dgProveedor.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.ActiveCaption;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.White;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgProveedor.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgProveedor.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgProveedor.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.fichaid,
     this.nrodni,
     this.nombrelargo,
     this.situtrabname,
     this.activo,
     this.tipopllaname});
     this.dgProveedor.Location = new System.Drawing.Point(10, 82);
     this.dgProveedor.MultiSelect = false;
     this.dgProveedor.Name = "dgProveedor";
     this.dgProveedor.ReadOnly = true;
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.dgProveedor.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
     this.dgProveedor.RowHeadersWidth = 24;
     this.dgProveedor.RowTemplate.Height = 20;
     this.dgProveedor.Size = new System.Drawing.Size(830, 391);
     this.dgProveedor.TabIndex = 6;
     this.dgProveedor.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgProveedor_CellDoubleClick);
     this.dgProveedor.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgProveedor_ColumnHeaderMouseClick);
     this.dgProveedor.DoubleClick += new System.EventHandler(this.dgProveedor_DoubleClick);
     this.dgProveedor.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dgProveedor_KeyDown);
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.chktipoplanilla);
     this.GroupBox1.Controls.Add(this.cmbtipoplanilla);
     this.GroupBox1.Controls.Add(this.btnrefrescar);
     this.GroupBox1.Controls.Add(this.chknombre);
     this.GroupBox1.Controls.Add(this.txtnombre);
     this.GroupBox1.Controls.Add(this.GroupBox3);
     this.GroupBox1.Location = new System.Drawing.Point(10, 3);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(830, 74);
     this.GroupBox1.TabIndex = 5;
     this.GroupBox1.TabStop = false;
     //
     // chktipoplanilla
     //
     this.chktipoplanilla.AutoSize = true;
     this.chktipoplanilla.ForeColor = System.Drawing.Color.RoyalBlue;
     this.chktipoplanilla.Location = new System.Drawing.Point(334, 16);
     this.chktipoplanilla.Name = "chktipoplanilla";
     this.chktipoplanilla.Size = new System.Drawing.Size(83, 17);
     this.chktipoplanilla.TabIndex = 3;
     this.chktipoplanilla.TabStop = false;
     this.chktipoplanilla.Text = "Tipo Planilla";
     this.chktipoplanilla.UseVisualStyleBackColor = true;
     this.chktipoplanilla.CheckedChanged += new System.EventHandler(this.chktipoplanilla_CheckedChanged);
     //
     // cmbtipoplanilla
     //
     this.cmbtipoplanilla.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbtipoplanilla.Enabled = false;
     this.cmbtipoplanilla.FormattingEnabled = true;
     this.cmbtipoplanilla.Location = new System.Drawing.Point(330, 38);
     this.cmbtipoplanilla.Name = "cmbtipoplanilla";
     this.cmbtipoplanilla.Size = new System.Drawing.Size(226, 21);
     this.cmbtipoplanilla.TabIndex = 4;
     this.cmbtipoplanilla.SelectedIndexChanged += new System.EventHandler(this.cmbtipoplanilla_SelectedIndexChanged);
     //
     // GroupBox3
     //
     this.GroupBox3.Controls.Add(this.rbtodos3);
     this.GroupBox3.Controls.Add(this.rbtodos2);
     this.GroupBox3.Controls.Add(this.rbtodos1);
     this.GroupBox3.Location = new System.Drawing.Point(562, 7);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(257, 32);
     this.GroupBox3.TabIndex = 2;
     this.GroupBox3.TabStop = false;
     //
     // rbtodos3
     //
     this.rbtodos3.AutoSize = true;
     this.rbtodos3.Location = new System.Drawing.Point(181, 10);
     this.rbtodos3.Name = "rbtodos3";
     this.rbtodos3.Size = new System.Drawing.Size(68, 17);
     this.rbtodos3.TabIndex = 2;
     this.rbtodos3.Text = "Inactivos";
     this.rbtodos3.UseVisualStyleBackColor = true;
     this.rbtodos3.CheckedChanged += new System.EventHandler(this.rbtodos3_CheckedChanged);
     //
     // rbtodos2
     //
     this.rbtodos2.AutoSize = true;
     this.rbtodos2.Checked = true;
     this.rbtodos2.Location = new System.Drawing.Point(89, 10);
     this.rbtodos2.Name = "rbtodos2";
     this.rbtodos2.Size = new System.Drawing.Size(84, 17);
     this.rbtodos2.TabIndex = 1;
     this.rbtodos2.TabStop = true;
     this.rbtodos2.Text = "Solo Activos";
     this.rbtodos2.UseVisualStyleBackColor = true;
     this.rbtodos2.CheckedChanged += new System.EventHandler(this.rbtodos2_CheckedChanged);
     //
     // rbtodos1
     //
     this.rbtodos1.AutoSize = true;
     this.rbtodos1.Location = new System.Drawing.Point(7, 10);
     this.rbtodos1.Name = "rbtodos1";
     this.rbtodos1.Size = new System.Drawing.Size(74, 17);
     this.rbtodos1.TabIndex = 0;
     this.rbtodos1.Text = "Ver Todos";
     this.rbtodos1.UseVisualStyleBackColor = true;
     this.rbtodos1.CheckedChanged += new System.EventHandler(this.rbtodos1_CheckedChanged);
     //
     // btnrefrescar
     //
     this.btnrefrescar.Image = global::BapFormulariosNet.Properties.Resources.lupa18;
     this.btnrefrescar.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnrefrescar.Location = new System.Drawing.Point(723, 42);
     this.btnrefrescar.Name = "btnrefrescar";
     this.btnrefrescar.Size = new System.Drawing.Size(82, 27);
     this.btnrefrescar.TabIndex = 5;
     this.btnrefrescar.Text = "&Refrescar";
     this.btnrefrescar.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnrefrescar.UseVisualStyleBackColor = true;
     this.btnrefrescar.Click += new System.EventHandler(this.btnrefrescar_Click);
     //
     // chknombre
     //
     this.chknombre.AutoSize = true;
     this.chknombre.ForeColor = System.Drawing.Color.RoyalBlue;
     this.chknombre.Location = new System.Drawing.Point(12, 16);
     this.chknombre.Name = "chknombre";
     this.chknombre.Size = new System.Drawing.Size(159, 17);
     this.chknombre.TabIndex = 0;
     this.chknombre.Text = "Buscar Ocurrencia Nombres";
     this.chknombre.UseVisualStyleBackColor = true;
     this.chknombre.CheckedChanged += new System.EventHandler(this.chknombre_CheckedChanged);
     //
     // txtnombre
     //
     this.txtnombre.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtnombre.Location = new System.Drawing.Point(9, 38);
     this.txtnombre.Name = "txtnombre";
     this.txtnombre.Size = new System.Drawing.Size(300, 20);
     this.txtnombre.TabIndex = 1;
     this.txtnombre.TextChanged += new System.EventHandler(this.txtnombre_TextChanged);
     //
     // fichaid
     //
     this.fichaid.DataPropertyName = "fichaid";
     this.fichaid.HeaderText = "Código";
     this.fichaid.Name = "fichaid";
     this.fichaid.ReadOnly = true;
     //
     // nrodni
     //
     this.nrodni.DataPropertyName = "nrodni";
     this.nrodni.HeaderText = "Nº DNI";
     this.nrodni.Name = "nrodni";
     this.nrodni.ReadOnly = true;
     //
     // nombrelargo
     //
     this.nombrelargo.DataPropertyName = "nombrelargo";
     this.nombrelargo.HeaderText = "Apellidos y Nombres";
     this.nombrelargo.Name = "nombrelargo";
     this.nombrelargo.ReadOnly = true;
     this.nombrelargo.Width = 320;
     //
     // situtrabname
     //
     this.situtrabname.DataPropertyName = "situtrabname";
     this.situtrabname.HeaderText = "Estado";
     this.situtrabname.Name = "situtrabname";
     this.situtrabname.ReadOnly = true;
     this.situtrabname.Width = 80;
     //
     // activo
     //
     this.activo.DataPropertyName = "activo";
     this.activo.HeaderText = "activo";
     this.activo.Name = "activo";
     this.activo.ReadOnly = true;
     this.activo.Visible = false;
     //
     // tipopllaname
     //
     this.tipopllaname.DataPropertyName = "tipopllaname";
     this.tipopllaname.HeaderText = "Tipo Planilla";
     this.tipopllaname.Name = "tipopllaname";
     this.tipopllaname.ReadOnly = true;
     this.tipopllaname.Width = 180;
     //
     // Frm_PllaAyutaTrabajadores
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(848, 513);
     this.Controls.Add(this.lbltotalregistros);
     this.Controls.Add(this.lblanulado);
     this.Controls.Add(this.dgProveedor);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.GroupBox4);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "Frm_PllaAyutaTrabajadores";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "<< Buscar Trabajadores >>";
     this.Activated += new System.EventHandler(this.Frm_PllaAyutaTrabajadores_Activated);
     this.Load += new System.EventHandler(this.Frm_PllaAyutaTrabajadores_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_PllaAyutaTrabajadores_KeyDown);
     this.GroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgProveedor)).EndInit();
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.GroupBox3.ResumeLayout(false);
     this.GroupBox3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.rb_LeftLane        = new System.Windows.Forms.RadioButton();
     this.gb_my_car_pos      = new System.Windows.Forms.GroupBox();
     this.rb_RightLane       = new System.Windows.Forms.RadioButton();
     this.rb_MidLane         = new System.Windows.Forms.RadioButton();
     this.Lb_lane_line       = new System.Windows.Forms.Label();
     this.hsb_LeftLane       = new System.Windows.Forms.HScrollBar();
     this.hsb_MidLane        = new System.Windows.Forms.HScrollBar();
     this.label1             = new System.Windows.Forms.Label();
     this.hsb_RightLane      = new System.Windows.Forms.HScrollBar();
     this.label2             = new System.Windows.Forms.Label();
     this.label3             = new System.Windows.Forms.Label();
     this.tb_LeftLane_speed  = new System.Windows.Forms.TextBox();
     this.lbl_mph_ll         = new System.Windows.Forms.Label();
     this.label4             = new System.Windows.Forms.Label();
     this.tb_MidLane_speed   = new System.Windows.Forms.TextBox();
     this.label5             = new System.Windows.Forms.Label();
     this.tb_RightLane_speed = new System.Windows.Forms.TextBox();
     this.lbl_LeftLane_dist  = new System.Windows.Forms.Label();
     this.lbl_MidLane_dist   = new System.Windows.Forms.Label();
     this.lbl_RightLane_dist = new System.Windows.Forms.Label();
     this.gp_pred            = new System.Windows.Forms.GroupBox();
     this.bt_RightLane_pred  = new System.Windows.Forms.Button();
     this.bt_LeftLane_pred   = new System.Windows.Forms.Button();
     this.bt_MidLane_pred    = new System.Windows.Forms.Button();
     this.bt_get_pred        = new System.Windows.Forms.Button();
     this.bt_step            = new System.Windows.Forms.Button();
     this.label6             = new System.Windows.Forms.Label();
     this.tb_my_vel          = new System.Windows.Forms.TextBox();
     this.label7             = new System.Windows.Forms.Label();
     this.rtb_Pred_results   = new System.Windows.Forms.RichTextBox();
     this.bt_One_step_back   = new System.Windows.Forms.Button();
     this.tb_cost_w1         = new System.Windows.Forms.TextBox();
     this.tb_cost_w2         = new System.Windows.Forms.TextBox();
     this.tb_cost_w3         = new System.Windows.Forms.TextBox();
     this.label8             = new System.Windows.Forms.Label();
     this.gb_my_car_pos.SuspendLayout();
     this.gp_pred.SuspendLayout();
     this.SuspendLayout();
     //
     // rb_LeftLane
     //
     this.rb_LeftLane.Location = new System.Drawing.Point(25, 25);
     this.rb_LeftLane.Name     = "rb_LeftLane";
     this.rb_LeftLane.Size     = new System.Drawing.Size(21, 24);
     this.rb_LeftLane.TabIndex = 3;
     this.rb_LeftLane.UseVisualStyleBackColor = true;
     this.rb_LeftLane.CheckedChanged         += new System.EventHandler(this.Rb_LeftLaneCheckedChanged);
     //
     // gb_my_car_pos
     //
     this.gb_my_car_pos.Controls.Add(this.rb_RightLane);
     this.gb_my_car_pos.Controls.Add(this.rb_MidLane);
     this.gb_my_car_pos.Controls.Add(this.rb_LeftLane);
     this.gb_my_car_pos.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gb_my_car_pos.Location = new System.Drawing.Point(12, 12);
     this.gb_my_car_pos.Name     = "gb_my_car_pos";
     this.gb_my_car_pos.Size     = new System.Drawing.Size(74, 186);
     this.gb_my_car_pos.TabIndex = 4;
     this.gb_my_car_pos.TabStop  = false;
     this.gb_my_car_pos.Text     = "My pos";
     //
     // rb_RightLane
     //
     this.rb_RightLane.Location = new System.Drawing.Point(25, 138);
     this.rb_RightLane.Name     = "rb_RightLane";
     this.rb_RightLane.Size     = new System.Drawing.Size(21, 24);
     this.rb_RightLane.TabIndex = 5;
     this.rb_RightLane.UseVisualStyleBackColor = true;
     this.rb_RightLane.CheckedChanged         += new System.EventHandler(this.Rb_RightLaneCheckedChanged);
     //
     // rb_MidLane
     //
     this.rb_MidLane.Checked  = true;
     this.rb_MidLane.Location = new System.Drawing.Point(25, 81);
     this.rb_MidLane.Name     = "rb_MidLane";
     this.rb_MidLane.Size     = new System.Drawing.Size(21, 24);
     this.rb_MidLane.TabIndex = 4;
     this.rb_MidLane.TabStop  = true;
     this.rb_MidLane.UseVisualStyleBackColor = true;
     this.rb_MidLane.CheckedChanged         += new System.EventHandler(this.Rb_MidLaneCheckedChanged);
     //
     // Lb_lane_line
     //
     this.Lb_lane_line.Font     = new System.Drawing.Font("Microsoft Sans Serif", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Lb_lane_line.Location = new System.Drawing.Point(209, 40);
     this.Lb_lane_line.Name     = "Lb_lane_line";
     this.Lb_lane_line.Size     = new System.Drawing.Size(411, 77);
     this.Lb_lane_line.TabIndex = 5;
     this.Lb_lane_line.Text     = "- - - - - - - - - - - - ";
     //
     // hsb_LeftLane
     //
     this.hsb_LeftLane.Location = new System.Drawing.Point(341, 34);
     this.hsb_LeftLane.Minimum  = 1;
     this.hsb_LeftLane.Name     = "hsb_LeftLane";
     this.hsb_LeftLane.Size     = new System.Drawing.Size(272, 30);
     this.hsb_LeftLane.TabIndex = 6;
     this.hsb_LeftLane.Value    = 99;
     this.hsb_LeftLane.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.HSB_Left_laneScroll);
     //
     // hsb_MidLane
     //
     this.hsb_MidLane.Location = new System.Drawing.Point(341, 87);
     this.hsb_MidLane.Minimum  = 1;
     this.hsb_MidLane.Name     = "hsb_MidLane";
     this.hsb_MidLane.Size     = new System.Drawing.Size(272, 30);
     this.hsb_MidLane.TabIndex = 8;
     this.hsb_MidLane.Value    = 99;
     this.hsb_MidLane.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.Hsb_mid_laneScroll);
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(209, 93);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(411, 77);
     this.label1.TabIndex = 7;
     this.label1.Text     = "- - - - - - - - - - - - ";
     //
     // hsb_RightLane
     //
     this.hsb_RightLane.Location = new System.Drawing.Point(341, 140);
     this.hsb_RightLane.Minimum  = 1;
     this.hsb_RightLane.Name     = "hsb_RightLane";
     this.hsb_RightLane.Size     = new System.Drawing.Size(272, 30);
     this.hsb_RightLane.TabIndex = 10;
     this.hsb_RightLane.Value    = 99;
     this.hsb_RightLane.Scroll  += new System.Windows.Forms.ScrollEventHandler(this.Hsb_right_laneScroll);
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(209, 145);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(404, 77);
     this.label2.TabIndex = 9;
     this.label2.Text     = "- - - - - - - - - - - - ";
     //
     // label3
     //
     this.label3.Font     = new System.Drawing.Font("Microsoft Sans Serif", 40F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(209, 3);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(435, 77);
     this.label3.TabIndex = 11;
     this.label3.Text     = "- - - - - - - - - - - - ";
     //
     // tb_LeftLane_speed
     //
     this.tb_LeftLane_speed.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_LeftLane_speed.Location     = new System.Drawing.Point(220, 38);
     this.tb_LeftLane_speed.Name         = "tb_LeftLane_speed";
     this.tb_LeftLane_speed.Size         = new System.Drawing.Size(62, 26);
     this.tb_LeftLane_speed.TabIndex     = 12;
     this.tb_LeftLane_speed.TextChanged += new System.EventHandler(this.Tb_Left_lane_speedTextChanged);
     //
     // lbl_mph_ll
     //
     this.lbl_mph_ll.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_mph_ll.Location = new System.Drawing.Point(281, 38);
     this.lbl_mph_ll.Name     = "lbl_mph_ll";
     this.lbl_mph_ll.Size     = new System.Drawing.Size(57, 23);
     this.lbl_mph_ll.TabIndex = 13;
     this.lbl_mph_ll.Text     = "mph";
     //
     // label4
     //
     this.label4.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(281, 100);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(50, 23);
     this.label4.TabIndex = 15;
     this.label4.Text     = "mph";
     //
     // tb_MidLane_speed
     //
     this.tb_MidLane_speed.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_MidLane_speed.Location     = new System.Drawing.Point(220, 97);
     this.tb_MidLane_speed.Name         = "tb_MidLane_speed";
     this.tb_MidLane_speed.Size         = new System.Drawing.Size(62, 26);
     this.tb_MidLane_speed.TabIndex     = 14;
     this.tb_MidLane_speed.TextChanged += new System.EventHandler(this.Tb_Mid_lane_speedTextChanged);
     //
     // label5
     //
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(281, 148);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(57, 23);
     this.label5.TabIndex = 17;
     this.label5.Text     = "mph";
     //
     // tb_RightLane_speed
     //
     this.tb_RightLane_speed.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_RightLane_speed.Location     = new System.Drawing.Point(220, 145);
     this.tb_RightLane_speed.Name         = "tb_RightLane_speed";
     this.tb_RightLane_speed.Size         = new System.Drawing.Size(62, 26);
     this.tb_RightLane_speed.TabIndex     = 16;
     this.tb_RightLane_speed.TextChanged += new System.EventHandler(this.Tb_Right_lane_speedTextChanged);
     //
     // lbl_LeftLane_dist
     //
     this.lbl_LeftLane_dist.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_LeftLane_dist.Location = new System.Drawing.Point(626, 38);
     this.lbl_LeftLane_dist.Name     = "lbl_LeftLane_dist";
     this.lbl_LeftLane_dist.Size     = new System.Drawing.Size(57, 23);
     this.lbl_LeftLane_dist.TabIndex = 18;
     this.lbl_LeftLane_dist.Text     = "00 m";
     //
     // lbl_MidLane_dist
     //
     this.lbl_MidLane_dist.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_MidLane_dist.Location = new System.Drawing.Point(626, 87);
     this.lbl_MidLane_dist.Name     = "lbl_MidLane_dist";
     this.lbl_MidLane_dist.Size     = new System.Drawing.Size(57, 23);
     this.lbl_MidLane_dist.TabIndex = 19;
     this.lbl_MidLane_dist.Text     = "00 m";
     //
     // lbl_RightLane_dist
     //
     this.lbl_RightLane_dist.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_RightLane_dist.Location = new System.Drawing.Point(626, 145);
     this.lbl_RightLane_dist.Name     = "lbl_RightLane_dist";
     this.lbl_RightLane_dist.Size     = new System.Drawing.Size(57, 23);
     this.lbl_RightLane_dist.TabIndex = 20;
     this.lbl_RightLane_dist.Text     = "00 m";
     //
     // gp_pred
     //
     this.gp_pred.Controls.Add(this.bt_RightLane_pred);
     this.gp_pred.Controls.Add(this.bt_LeftLane_pred);
     this.gp_pred.Controls.Add(this.bt_MidLane_pred);
     this.gp_pred.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gp_pred.Location = new System.Drawing.Point(92, 12);
     this.gp_pred.Name     = "gp_pred";
     this.gp_pred.Size     = new System.Drawing.Size(111, 186);
     this.gp_pred.TabIndex = 6;
     this.gp_pred.TabStop  = false;
     this.gp_pred.Text     = "pred";
     //
     // bt_RightLane_pred
     //
     this.bt_RightLane_pred.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_RightLane_pred.Location = new System.Drawing.Point(3, 132);
     this.bt_RightLane_pred.Name     = "bt_RightLane_pred";
     this.bt_RightLane_pred.Size     = new System.Drawing.Size(102, 30);
     this.bt_RightLane_pred.TabIndex = 23;
     this.bt_RightLane_pred.Text     = "Right Lane";
     this.bt_RightLane_pred.UseVisualStyleBackColor = true;
     //
     // bt_LeftLane_pred
     //
     this.bt_LeftLane_pred.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_LeftLane_pred.Location = new System.Drawing.Point(3, 25);
     this.bt_LeftLane_pred.Name     = "bt_LeftLane_pred";
     this.bt_LeftLane_pred.Size     = new System.Drawing.Size(102, 30);
     this.bt_LeftLane_pred.TabIndex = 21;
     this.bt_LeftLane_pred.Text     = "Left Lane";
     this.bt_LeftLane_pred.UseVisualStyleBackColor = true;
     //
     // bt_MidLane_pred
     //
     this.bt_MidLane_pred.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_MidLane_pred.Location = new System.Drawing.Point(3, 83);
     this.bt_MidLane_pred.Name     = "bt_MidLane_pred";
     this.bt_MidLane_pred.Size     = new System.Drawing.Size(102, 30);
     this.bt_MidLane_pred.TabIndex = 22;
     this.bt_MidLane_pred.Text     = "Mid Lane";
     this.bt_MidLane_pred.UseVisualStyleBackColor = true;
     //
     // bt_get_pred
     //
     this.bt_get_pred.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_get_pred.Location = new System.Drawing.Point(686, 12);
     this.bt_get_pred.Name     = "bt_get_pred";
     this.bt_get_pred.Size     = new System.Drawing.Size(92, 68);
     this.bt_get_pred.TabIndex = 21;
     this.bt_get_pred.Text     = "Get Prediction";
     this.bt_get_pred.UseVisualStyleBackColor = true;
     this.bt_get_pred.Click += new System.EventHandler(this.Bt_get_predClick);
     //
     // bt_step
     //
     this.bt_step.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_step.Location = new System.Drawing.Point(686, 86);
     this.bt_step.Name     = "bt_step";
     this.bt_step.Size     = new System.Drawing.Size(92, 68);
     this.bt_step.TabIndex = 22;
     this.bt_step.Text     = "One Step";
     this.bt_step.UseVisualStyleBackColor = true;
     this.bt_step.Click += new System.EventHandler(this.Bt_stepClick);
     //
     // label6
     //
     this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(140, 207);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(57, 23);
     this.label6.TabIndex = 24;
     this.label6.Text     = "mph";
     //
     // tb_my_vel
     //
     this.tb_my_vel.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_my_vel.Location     = new System.Drawing.Point(75, 204);
     this.tb_my_vel.Name         = "tb_my_vel";
     this.tb_my_vel.Size         = new System.Drawing.Size(62, 26);
     this.tb_my_vel.TabIndex     = 23;
     this.tb_my_vel.TextChanged += new System.EventHandler(this.Tb_my_velTextChanged);
     //
     // label7
     //
     this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(12, 207);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(57, 23);
     this.label7.TabIndex = 25;
     this.label7.Text     = "My vel";
     //
     // rtb_Pred_results
     //
     this.rtb_Pred_results.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rtb_Pred_results.Location = new System.Drawing.Point(13, 234);
     this.rtb_Pred_results.Name     = "rtb_Pred_results";
     this.rtb_Pred_results.Size     = new System.Drawing.Size(765, 283);
     this.rtb_Pred_results.TabIndex = 26;
     this.rtb_Pred_results.Text     = "";
     //
     // bt_One_step_back
     //
     this.bt_One_step_back.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.bt_One_step_back.Location = new System.Drawing.Point(686, 160);
     this.bt_One_step_back.Name     = "bt_One_step_back";
     this.bt_One_step_back.Size     = new System.Drawing.Size(92, 68);
     this.bt_One_step_back.TabIndex = 27;
     this.bt_One_step_back.Text     = "One Step Back";
     this.bt_One_step_back.UseVisualStyleBackColor = true;
     this.bt_One_step_back.Click += new System.EventHandler(this.Bt_One_step_backClick);
     //
     // tb_cost_w1
     //
     this.tb_cost_w1.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_cost_w1.Location     = new System.Drawing.Point(313, 202);
     this.tb_cost_w1.Name         = "tb_cost_w1";
     this.tb_cost_w1.Size         = new System.Drawing.Size(62, 26);
     this.tb_cost_w1.TabIndex     = 28;
     this.tb_cost_w1.Text         = "1.0";
     this.tb_cost_w1.TextChanged += new System.EventHandler(this.Tb_cost_w1TextChanged);
     //
     // tb_cost_w2
     //
     this.tb_cost_w2.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_cost_w2.Location     = new System.Drawing.Point(381, 202);
     this.tb_cost_w2.Name         = "tb_cost_w2";
     this.tb_cost_w2.Size         = new System.Drawing.Size(62, 26);
     this.tb_cost_w2.TabIndex     = 29;
     this.tb_cost_w2.Text         = "1.0";
     this.tb_cost_w2.TextChanged += new System.EventHandler(this.Tb_cost_w2TextChanged);
     //
     // tb_cost_w3
     //
     this.tb_cost_w3.Font         = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_cost_w3.Location     = new System.Drawing.Point(449, 202);
     this.tb_cost_w3.Name         = "tb_cost_w3";
     this.tb_cost_w3.Size         = new System.Drawing.Size(62, 26);
     this.tb_cost_w3.TabIndex     = 30;
     this.tb_cost_w3.Text         = "1.0";
     this.tb_cost_w3.TextChanged += new System.EventHandler(this.Tb_cost_w3TextChanged);
     //
     // label8
     //
     this.label8.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(238, 205);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(69, 23);
     this.label8.TabIndex = 31;
     this.label8.Text     = "weights";
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize          = new System.Drawing.Size(790, 529);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.tb_cost_w3);
     this.Controls.Add(this.tb_cost_w2);
     this.Controls.Add(this.tb_cost_w1);
     this.Controls.Add(this.bt_One_step_back);
     this.Controls.Add(this.rtb_Pred_results);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.tb_my_vel);
     this.Controls.Add(this.bt_step);
     this.Controls.Add(this.bt_get_pred);
     this.Controls.Add(this.gp_pred);
     this.Controls.Add(this.lbl_RightLane_dist);
     this.Controls.Add(this.lbl_MidLane_dist);
     this.Controls.Add(this.lbl_LeftLane_dist);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.tb_RightLane_speed);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.tb_MidLane_speed);
     this.Controls.Add(this.lbl_mph_ll);
     this.Controls.Add(this.tb_LeftLane_speed);
     this.Controls.Add(this.hsb_RightLane);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.hsb_MidLane);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.hsb_LeftLane);
     this.Controls.Add(this.Lb_lane_line);
     this.Controls.Add(this.gb_my_car_pos);
     this.Controls.Add(this.label3);
     this.Name = "MainForm";
     this.Text = "Highway_decision_tester";
     this.gb_my_car_pos.ResumeLayout(false);
     this.gp_pred.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 15
0
 /// <summary>
 /// 
 /// </summary>
 private void InitializeComponent()
 {
     System.Windows.Forms.Label label2;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MovieAnimationItem));
     this.outputBox = new System.Windows.Forms.GroupBox();
     this.outputCheckBox = new System.Windows.Forms.CheckBox();
     this.sizeDetailLabel = new System.Windows.Forms.Label();
     this.maxSizeTextBox = new System.Windows.Forms.TextBox();
     this.maxSizeRadio = new System.Windows.Forms.RadioButton();
     this.noLimitRadio = new System.Windows.Forms.RadioButton();
     this.label1 = new System.Windows.Forms.Label();
     this.aviFileName = new Ecell.IDE.Plugins.PathwayWindow.UIComponent.PropertySaveFileItem();
     label2 = new System.Windows.Forms.Label();
     this.outputBox.SuspendLayout();
     this.SuspendLayout();
     //
     // label2
     //
     resources.ApplyResources(label2, "label2");
     label2.Name = "label2";
     //
     // outputBox
     //
     resources.ApplyResources(this.outputBox, "outputBox");
     this.outputBox.Controls.Add(this.outputCheckBox);
     this.outputBox.Controls.Add(this.sizeDetailLabel);
     this.outputBox.Controls.Add(label2);
     this.outputBox.Controls.Add(this.maxSizeTextBox);
     this.outputBox.Controls.Add(this.maxSizeRadio);
     this.outputBox.Controls.Add(this.noLimitRadio);
     this.outputBox.Controls.Add(this.label1);
     this.outputBox.Controls.Add(this.aviFileName);
     this.outputBox.Name = "outputBox";
     this.outputBox.TabStop = false;
     //
     // outputCheckBox
     //
     resources.ApplyResources(this.outputCheckBox, "outputCheckBox");
     this.outputCheckBox.Checked = true;
     this.outputCheckBox.CheckState = System.Windows.Forms.CheckState.Checked;
     this.outputCheckBox.Name = "outputCheckBox";
     this.outputCheckBox.UseVisualStyleBackColor = true;
     //
     // sizeDetailLabel
     //
     resources.ApplyResources(this.sizeDetailLabel, "sizeDetailLabel");
     this.sizeDetailLabel.Name = "sizeDetailLabel";
     //
     // maxSizeTextBox
     //
     resources.ApplyResources(this.maxSizeTextBox, "maxSizeTextBox");
     this.maxSizeTextBox.Name = "maxSizeTextBox";
     this.maxSizeTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxSizeTextBox_Validating);
     //
     // maxSizeRadio
     //
     resources.ApplyResources(this.maxSizeRadio, "maxSizeRadio");
     this.maxSizeRadio.Name = "maxSizeRadio";
     this.maxSizeRadio.TabStop = true;
     this.maxSizeRadio.UseVisualStyleBackColor = true;
     //
     // noLimitRadio
     //
     resources.ApplyResources(this.noLimitRadio, "noLimitRadio");
     this.noLimitRadio.Checked = true;
     this.noLimitRadio.Name = "noLimitRadio";
     this.noLimitRadio.TabStop = true;
     this.noLimitRadio.UseVisualStyleBackColor = true;
     this.noLimitRadio.CheckedChanged += new System.EventHandler(this.noLimitRadio_CheckedChanged);
     //
     // label1
     //
     resources.ApplyResources(this.label1, "label1");
     this.label1.Name = "label1";
     //
     // aviFileName
     //
     resources.ApplyResources(this.aviFileName, "aviFileName");
     this.aviFileName.FileName = "ecell-ide.avi";
     this.aviFileName.Filter = null;
     this.aviFileName.FilterIndex = 0;
     this.aviFileName.Name = "aviFileName";
     //
     // MovieAnimationItem
     //
     this.Controls.Add(this.outputBox);
     this.Name = "MovieAnimationItem";
     resources.ApplyResources(this, "$this");
     this.outputBox.ResumeLayout(false);
     this.outputBox.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsForm));
     this.BottomButtonPanel        = new System.Windows.Forms.Panel();
     this.TipTextLabel             = new System.Windows.Forms.Label();
     this.TipImage                 = new System.Windows.Forms.PictureBox();
     this.StoreInMemoryRadioButton = new System.Windows.Forms.RadioButton();
     this.SaveSettingsRadioButton  = new System.Windows.Forms.RadioButton();
     this.CancelButton             = new System.Windows.Forms.Button();
     this.SaveButton               = new System.Windows.Forms.Button();
     this.TabHostControl           = new DataJuggler.Win.Controls.TabHostControl();
     this.SelectPlayersControl     = new CardCounter.UI.Controls.SelectPlayersControl();
     this.OptionsControl           = new CardCounter.UI.Controls.OptionsControl();
     this.BottomButtonPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TipImage)).BeginInit();
     this.SuspendLayout();
     //
     // BottomButtonPanel
     //
     this.BottomButtonPanel.BackColor = System.Drawing.Color.Transparent;
     this.BottomButtonPanel.Controls.Add(this.TipTextLabel);
     this.BottomButtonPanel.Controls.Add(this.TipImage);
     this.BottomButtonPanel.Controls.Add(this.StoreInMemoryRadioButton);
     this.BottomButtonPanel.Controls.Add(this.SaveSettingsRadioButton);
     this.BottomButtonPanel.Controls.Add(this.CancelButton);
     this.BottomButtonPanel.Controls.Add(this.SaveButton);
     this.BottomButtonPanel.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.BottomButtonPanel.Location = new System.Drawing.Point(0, 633);
     this.BottomButtonPanel.Name     = "BottomButtonPanel";
     this.BottomButtonPanel.Size     = new System.Drawing.Size(704, 108);
     this.BottomButtonPanel.TabIndex = 44;
     //
     // TipTextLabel
     //
     this.TipTextLabel.Font     = new System.Drawing.Font("Comic Sans MS", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.TipTextLabel.Location = new System.Drawing.Point(91, 0);
     this.TipTextLabel.Name     = "TipTextLabel";
     this.TipTextLabel.Size     = new System.Drawing.Size(483, 23);
     this.TipTextLabel.TabIndex = 44;
     this.TipTextLabel.Text     = "Click the chips rack to select amounts without typing.\r\n\r\n";
     //
     // TipImage
     //
     this.TipImage.BackgroundImage       = global::CardCounter.Properties.Resources.Tip;
     this.TipImage.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.TipImage.Location = new System.Drawing.Point(57, 0);
     this.TipImage.Name     = "TipImage";
     this.TipImage.Size     = new System.Drawing.Size(32, 32);
     this.TipImage.TabIndex = 43;
     this.TipImage.TabStop  = false;
     //
     // StoreInMemoryRadioButton
     //
     this.StoreInMemoryRadioButton.AutoSize  = true;
     this.StoreInMemoryRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.StoreInMemoryRadioButton.Checked   = true;
     this.StoreInMemoryRadioButton.Font      = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.StoreInMemoryRadioButton.Location  = new System.Drawing.Point(57, 75);
     this.StoreInMemoryRadioButton.Name      = "StoreInMemoryRadioButton";
     this.StoreInMemoryRadioButton.Size      = new System.Drawing.Size(281, 27);
     this.StoreInMemoryRadioButton.TabIndex  = 42;
     this.StoreInMemoryRadioButton.TabStop   = true;
     this.StoreInMemoryRadioButton.Text      = "Save for this session only.";
     this.StoreInMemoryRadioButton.UseVisualStyleBackColor = false;
     //
     // SaveSettingsRadioButton
     //
     this.SaveSettingsRadioButton.AutoSize  = true;
     this.SaveSettingsRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.SaveSettingsRadioButton.Font      = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SaveSettingsRadioButton.Location  = new System.Drawing.Point(57, 46);
     this.SaveSettingsRadioButton.Name      = "SaveSettingsRadioButton";
     this.SaveSettingsRadioButton.Size      = new System.Drawing.Size(326, 27);
     this.SaveSettingsRadioButton.TabIndex  = 41;
     this.SaveSettingsRadioButton.Text      = "Save options on this computer.";
     this.SaveSettingsRadioButton.UseVisualStyleBackColor = false;
     //
     // CancelButton
     //
     this.CancelButton.BackColor                         = System.Drawing.Color.Transparent;
     this.CancelButton.BackgroundImage                   = global::CardCounter.Properties.Resources.DarkBlueButton;
     this.CancelButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.CancelButton.FlatAppearance.BorderSize         = 0;
     this.CancelButton.FlatAppearance.CheckedBackColor   = System.Drawing.Color.Transparent;
     this.CancelButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.CancelButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.CancelButton.FlatStyle                         = System.Windows.Forms.FlatStyle.Flat;
     this.CancelButton.Font      = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CancelButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.CancelButton.Location  = new System.Drawing.Point(548, 64);
     this.CancelButton.Name      = "CancelButton";
     this.CancelButton.Size      = new System.Drawing.Size(132, 36);
     this.CancelButton.TabIndex  = 40;
     this.CancelButton.Text      = "Cancel";
     this.CancelButton.UseVisualStyleBackColor = false;
     this.CancelButton.Click      += new System.EventHandler(this.CancelButton_Click);
     this.CancelButton.MouseEnter += new System.EventHandler(this.Button_MouseEnter);
     this.CancelButton.MouseLeave += new System.EventHandler(this.Button_MouseLeave);
     //
     // SaveButton
     //
     this.SaveButton.BackColor                         = System.Drawing.Color.Transparent;
     this.SaveButton.BackgroundImage                   = global::CardCounter.Properties.Resources.DarkBlueButton;
     this.SaveButton.BackgroundImageLayout             = System.Windows.Forms.ImageLayout.Stretch;
     this.SaveButton.FlatAppearance.BorderSize         = 0;
     this.SaveButton.FlatAppearance.CheckedBackColor   = System.Drawing.Color.Transparent;
     this.SaveButton.FlatAppearance.MouseDownBackColor = System.Drawing.Color.Transparent;
     this.SaveButton.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Transparent;
     this.SaveButton.FlatStyle                         = System.Windows.Forms.FlatStyle.Flat;
     this.SaveButton.Font      = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.SaveButton.ForeColor = System.Drawing.Color.LemonChiffon;
     this.SaveButton.Location  = new System.Drawing.Point(402, 64);
     this.SaveButton.Name      = "SaveButton";
     this.SaveButton.Size      = new System.Drawing.Size(132, 36);
     this.SaveButton.TabIndex  = 39;
     this.SaveButton.Text      = "Save";
     this.SaveButton.UseVisualStyleBackColor = false;
     this.SaveButton.Click      += new System.EventHandler(this.SaveButton_Click);
     this.SaveButton.MouseEnter += new System.EventHandler(this.Button_MouseEnter);
     this.SaveButton.MouseLeave += new System.EventHandler(this.Button_MouseLeave);
     //
     // TabHostControl
     //
     this.TabHostControl.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("TabHostControl.BackgroundImage")));
     this.TabHostControl.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.TabHostControl.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.TabHostControl.Dock          = System.Windows.Forms.DockStyle.Top;
     this.TabHostControl.LeftMargin    = 20;
     this.TabHostControl.Location      = new System.Drawing.Point(0, 0);
     this.TabHostControl.Name          = "TabHostControl";
     this.TabHostControl.Size          = new System.Drawing.Size(704, 64);
     this.TabHostControl.TabHostParent = null;
     this.TabHostControl.TabIndex      = 20;
     this.TabHostControl.TopMargin     = 16;
     //
     // SelectPlayersControl
     //
     this.SelectPlayersControl.BackColor = System.Drawing.Color.Transparent;
     this.SelectPlayersControl.Location  = new System.Drawing.Point(0, 80);
     this.SelectPlayersControl.Name      = "SelectPlayersControl";
     this.SelectPlayersControl.Size      = new System.Drawing.Size(704, 554);
     this.SelectPlayersControl.TabIndex  = 46;
     this.SelectPlayersControl.Visible   = false;
     //
     // OptionsControl
     //
     this.OptionsControl.BackColor = System.Drawing.Color.Transparent;
     this.OptionsControl.Location  = new System.Drawing.Point(0, 80);
     this.OptionsControl.Name      = "OptionsControl";
     this.OptionsControl.Size      = new System.Drawing.Size(704, 554);
     this.OptionsControl.TabIndex  = 45;
     this.OptionsControl.Visible   = false;
     //
     // OptionsForm
     //
     this.AutoScaleMode         = System.Windows.Forms.AutoScaleMode.None;
     this.BackgroundImage       = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize            = new System.Drawing.Size(704, 741);
     this.Controls.Add(this.TabHostControl);
     this.Controls.Add(this.BottomButtonPanel);
     this.Controls.Add(this.SelectPlayersControl);
     this.Controls.Add(this.OptionsControl);
     this.DoubleBuffered = true;
     this.Icon           = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximumSize    = new System.Drawing.Size(720, 780);
     this.MinimumSize    = new System.Drawing.Size(720, 780);
     this.Name           = "OptionsForm";
     this.StartPosition  = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text           = "House Rules / Options";
     this.Load          += new System.EventHandler(this.OptionsForm_Load);
     this.BottomButtonPanel.ResumeLayout(false);
     this.BottomButtonPanel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.TipImage)).EndInit();
     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.labelRegistrationNO     = new System.Windows.Forms.Label();
     this.labelName               = new System.Windows.Forms.Label();
     this.labelSurname            = new System.Windows.Forms.Label();
     this.labelGender             = new System.Windows.Forms.Label();
     this.labelDateOfBirth        = new System.Windows.Forms.Label();
     this.labelMobilePhone        = new System.Windows.Forms.Label();
     this.labelSemester           = new System.Windows.Forms.Label();
     this.labelCourse             = new System.Windows.Forms.Label();
     this.labelSchoolName         = new System.Windows.Forms.Label();
     this.labelDate               = new System.Windows.Forms.Label();
     this.labelAddress            = new System.Windows.Forms.Label();
     this.labelEmail              = new System.Windows.Forms.Label();
     this.panelBody               = new System.Windows.Forms.Panel();
     this.comboBoxDate            = new System.Windows.Forms.ComboBox();
     this.textBoxSemester         = new System.Windows.Forms.TextBox();
     this.labelRegistrationId     = new System.Windows.Forms.Label();
     this.buttonReset             = new System.Windows.Forms.Button();
     this.buttonSubmit            = new System.Windows.Forms.Button();
     this.richTextBoxAddress      = new System.Windows.Forms.RichTextBox();
     this.comboBoxCourse          = new System.Windows.Forms.ComboBox();
     this.dateTimePickerBirthDate = new System.Windows.Forms.DateTimePicker();
     this.radioButtonFemale       = new System.Windows.Forms.RadioButton();
     this.radioButtonMale         = new System.Windows.Forms.RadioButton();
     this.textBoxSchoolName       = new System.Windows.Forms.TextBox();
     this.textBoxEmail            = new System.Windows.Forms.TextBox();
     this.textBoxMobilePhone      = new System.Windows.Forms.TextBox();
     this.textBoxSurname          = new System.Windows.Forms.TextBox();
     this.textBoxName             = new System.Windows.Forms.TextBox();
     this.pictureBox              = new System.Windows.Forms.PictureBox();
     this.panelBody.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
     this.SuspendLayout();
     //
     // labelRegistrationNO
     //
     this.labelRegistrationNO.AutoSize = true;
     this.labelRegistrationNO.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelRegistrationNO.Location = new System.Drawing.Point(60, 120);
     this.labelRegistrationNO.Name     = "labelRegistrationNO";
     this.labelRegistrationNO.Size     = new System.Drawing.Size(126, 20);
     this.labelRegistrationNO.TabIndex = 0;
     this.labelRegistrationNO.Text     = "Registration NO:";
     //
     // labelName
     //
     this.labelName.AutoSize = true;
     this.labelName.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelName.Location = new System.Drawing.Point(60, 160);
     this.labelName.Name     = "labelName";
     this.labelName.Size     = new System.Drawing.Size(62, 23);
     this.labelName.TabIndex = 1;
     this.labelName.Text     = "Name:";
     //
     // labelSurname
     //
     this.labelSurname.AutoSize = true;
     this.labelSurname.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelSurname.Location = new System.Drawing.Point(60, 205);
     this.labelSurname.Name     = "labelSurname";
     this.labelSurname.Size     = new System.Drawing.Size(85, 23);
     this.labelSurname.TabIndex = 2;
     this.labelSurname.Text     = "Surname:";
     //
     // labelGender
     //
     this.labelGender.AutoSize = true;
     this.labelGender.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelGender.Location = new System.Drawing.Point(60, 250);
     this.labelGender.Name     = "labelGender";
     this.labelGender.Size     = new System.Drawing.Size(74, 23);
     this.labelGender.TabIndex = 3;
     this.labelGender.Text     = "Gender:";
     //
     // labelDateOfBirth
     //
     this.labelDateOfBirth.AutoSize = true;
     this.labelDateOfBirth.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelDateOfBirth.Location = new System.Drawing.Point(60, 295);
     this.labelDateOfBirth.Name     = "labelDateOfBirth";
     this.labelDateOfBirth.Size     = new System.Drawing.Size(117, 23);
     this.labelDateOfBirth.TabIndex = 4;
     this.labelDateOfBirth.Text     = "Date of Birth:";
     //
     // labelMobilePhone
     //
     this.labelMobilePhone.AutoSize = true;
     this.labelMobilePhone.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelMobilePhone.Location = new System.Drawing.Point(60, 340);
     this.labelMobilePhone.Name     = "labelMobilePhone";
     this.labelMobilePhone.Size     = new System.Drawing.Size(126, 23);
     this.labelMobilePhone.TabIndex = 5;
     this.labelMobilePhone.Text     = "Mobile Phone:";
     //
     // labelSemester
     //
     this.labelSemester.AutoSize = true;
     this.labelSemester.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelSemester.Location = new System.Drawing.Point(430, 160);
     this.labelSemester.Name     = "labelSemester";
     this.labelSemester.Size     = new System.Drawing.Size(91, 23);
     this.labelSemester.TabIndex = 6;
     this.labelSemester.Text     = "Semester:";
     //
     // labelCourse
     //
     this.labelCourse.AutoSize = true;
     this.labelCourse.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelCourse.Location = new System.Drawing.Point(430, 205);
     this.labelCourse.Name     = "labelCourse";
     this.labelCourse.Size     = new System.Drawing.Size(70, 23);
     this.labelCourse.TabIndex = 7;
     this.labelCourse.Text     = "Course:";
     //
     // labelSchoolName
     //
     this.labelSchoolName.AutoSize = true;
     this.labelSchoolName.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelSchoolName.Location = new System.Drawing.Point(430, 250);
     this.labelSchoolName.Name     = "labelSchoolName";
     this.labelSchoolName.Size     = new System.Drawing.Size(118, 23);
     this.labelSchoolName.TabIndex = 8;
     this.labelSchoolName.Text     = "School Name:";
     //
     // labelDate
     //
     this.labelDate.AutoSize = true;
     this.labelDate.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelDate.Location = new System.Drawing.Point(430, 295);
     this.labelDate.Name     = "labelDate";
     this.labelDate.Size     = new System.Drawing.Size(97, 23);
     this.labelDate.TabIndex = 9;
     this.labelDate.Text     = "Inlist Date:";
     //
     // labelAddress
     //
     this.labelAddress.AutoSize = true;
     this.labelAddress.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelAddress.Location = new System.Drawing.Point(430, 340);
     this.labelAddress.Name     = "labelAddress";
     this.labelAddress.Size     = new System.Drawing.Size(80, 23);
     this.labelAddress.TabIndex = 10;
     this.labelAddress.Text     = "Address:";
     //
     // labelEmail
     //
     this.labelEmail.AutoSize = true;
     this.labelEmail.Font     = new System.Drawing.Font("Calibri", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelEmail.Location = new System.Drawing.Point(60, 385);
     this.labelEmail.Name     = "labelEmail";
     this.labelEmail.Size     = new System.Drawing.Size(64, 23);
     this.labelEmail.TabIndex = 11;
     this.labelEmail.Text     = "E-mail:";
     //
     // panel_Body
     //
     this.panelBody.BackColor = System.Drawing.Color.White;
     this.panelBody.Controls.Add(this.comboBoxDate);
     this.panelBody.Controls.Add(this.textBoxSemester);
     this.panelBody.Controls.Add(this.labelRegistrationId);
     this.panelBody.Controls.Add(this.buttonReset);
     this.panelBody.Controls.Add(this.buttonSubmit);
     this.panelBody.Controls.Add(this.richTextBoxAddress);
     this.panelBody.Controls.Add(this.comboBoxCourse);
     this.panelBody.Controls.Add(this.dateTimePickerBirthDate);
     this.panelBody.Controls.Add(this.radioButtonFemale);
     this.panelBody.Controls.Add(this.radioButtonMale);
     this.panelBody.Controls.Add(this.textBoxSchoolName);
     this.panelBody.Controls.Add(this.textBoxEmail);
     this.panelBody.Controls.Add(this.textBoxMobilePhone);
     this.panelBody.Controls.Add(this.textBoxSurname);
     this.panelBody.Controls.Add(this.textBoxName);
     this.panelBody.Controls.Add(this.labelDate);
     this.panelBody.Controls.Add(this.pictureBox);
     this.panelBody.Controls.Add(this.labelSemester);
     this.panelBody.Controls.Add(this.labelMobilePhone);
     this.panelBody.Controls.Add(this.labelEmail);
     this.panelBody.Controls.Add(this.labelDateOfBirth);
     this.panelBody.Controls.Add(this.labelCourse);
     this.panelBody.Controls.Add(this.labelGender);
     this.panelBody.Controls.Add(this.labelAddress);
     this.panelBody.Controls.Add(this.labelSurname);
     this.panelBody.Controls.Add(this.labelSchoolName);
     this.panelBody.Controls.Add(this.labelName);
     this.panelBody.Controls.Add(this.labelRegistrationNO);
     this.panelBody.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panelBody.Location = new System.Drawing.Point(0, 0);
     this.panelBody.Name     = "panel_Body";
     this.panelBody.Size     = new System.Drawing.Size(800, 475);
     this.panelBody.TabIndex = 13;
     //
     // comboBox_Date
     //
     this.comboBoxDate.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.comboBoxDate.FormattingEnabled = true;
     this.comboBoxDate.Location          = new System.Drawing.Point(570, 295);
     this.comboBoxDate.Name     = "comboBox_Date";
     this.comboBoxDate.Size     = new System.Drawing.Size(85, 26);
     this.comboBoxDate.TabIndex = 11;
     //
     // textBox_Semester
     //
     this.textBoxSemester.Enabled  = false;
     this.textBoxSemester.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textBoxSemester.Location = new System.Drawing.Point(570, 159);
     this.textBoxSemester.Name     = "textBox_Semester";
     this.textBoxSemester.Size     = new System.Drawing.Size(170, 24);
     this.textBoxSemester.TabIndex = 29;
     this.textBoxSemester.Text     = "First Semester";
     //
     // labelRegistrationId
     //
     this.labelRegistrationId.AutoSize  = true;
     this.labelRegistrationId.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.labelRegistrationId.ForeColor = System.Drawing.Color.Red;
     this.labelRegistrationId.Location  = new System.Drawing.Point(185, 120);
     this.labelRegistrationId.Name      = "labelRegistrationId";
     this.labelRegistrationId.Size      = new System.Drawing.Size(20, 20);
     this.labelRegistrationId.TabIndex  = 28;
     this.labelRegistrationId.Text      = "N";
     //
     // Button_Reset
     //
     this.buttonReset.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.buttonReset.Font     = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.buttonReset.Location = new System.Drawing.Point(434, 425);
     this.buttonReset.Name     = "Button_Reset";
     this.buttonReset.Size     = new System.Drawing.Size(80, 25);
     this.buttonReset.TabIndex = 14;
     this.buttonReset.Text     = "Reset";
     this.buttonReset.UseVisualStyleBackColor = true;
     this.buttonReset.Click += new System.EventHandler(this.ButtonReset_Click);
     //
     // Button_Submit
     //
     this.buttonSubmit.Cursor   = System.Windows.Forms.Cursors.Hand;
     this.buttonSubmit.Font     = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.buttonSubmit.Location = new System.Drawing.Point(290, 425);
     this.buttonSubmit.Name     = "Button_Submit";
     this.buttonSubmit.Size     = new System.Drawing.Size(80, 25);
     this.buttonSubmit.TabIndex = 13;
     this.buttonSubmit.Text     = "Submit";
     this.buttonSubmit.UseVisualStyleBackColor = true;
     this.buttonSubmit.Click += new System.EventHandler(this.ButtonSubmit_Click);
     //
     // richTextBox_Address
     //
     this.richTextBoxAddress.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.richTextBoxAddress.Location = new System.Drawing.Point(570, 340);
     this.richTextBoxAddress.Name     = "richTextBox_Address";
     this.richTextBoxAddress.Size     = new System.Drawing.Size(170, 66);
     this.richTextBoxAddress.TabIndex = 12;
     this.richTextBoxAddress.Text     = string.Empty;
     //
     // comboBox_Course
     //
     this.comboBoxCourse.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.comboBoxCourse.FormattingEnabled = true;
     this.comboBoxCourse.Location          = new System.Drawing.Point(570, 205);
     this.comboBoxCourse.Name     = "comboBox_Course";
     this.comboBoxCourse.Size     = new System.Drawing.Size(170, 26);
     this.comboBoxCourse.TabIndex = 9;
     //
     // dateTimePickerBirthDate
     //
     this.dateTimePickerBirthDate.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.dateTimePickerBirthDate.Location = new System.Drawing.Point(200, 295);
     this.dateTimePickerBirthDate.Name     = "dateTimePickerBirthDate";
     this.dateTimePickerBirthDate.Size     = new System.Drawing.Size(170, 24);
     this.dateTimePickerBirthDate.TabIndex = 5;
     //
     // radioButtonFemale
     //
     this.radioButtonFemale.AutoSize = true;
     this.radioButtonFemale.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.radioButtonFemale.Location = new System.Drawing.Point(290, 250);
     this.radioButtonFemale.Name     = "radioButtonFemale";
     this.radioButtonFemale.Size     = new System.Drawing.Size(75, 22);
     this.radioButtonFemale.TabIndex = 4;
     this.radioButtonFemale.TabStop  = true;
     this.radioButtonFemale.Text     = "Female";
     this.radioButtonFemale.UseVisualStyleBackColor = true;
     //
     // radioButtonMale
     //
     this.radioButtonMale.AutoSize = true;
     this.radioButtonMale.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.radioButtonMale.Location = new System.Drawing.Point(200, 250);
     this.radioButtonMale.Name     = "radioButtonMale";
     this.radioButtonMale.Size     = new System.Drawing.Size(58, 22);
     this.radioButtonMale.TabIndex = 3;
     this.radioButtonMale.TabStop  = true;
     this.radioButtonMale.Text     = "Male";
     this.radioButtonMale.UseVisualStyleBackColor = true;
     //
     // textBox_SchoolName
     //
     this.textBoxSchoolName.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textBoxSchoolName.Location = new System.Drawing.Point(570, 250);
     this.textBoxSchoolName.Name     = "textBox_SchoolName";
     this.textBoxSchoolName.Size     = new System.Drawing.Size(170, 24);
     this.textBoxSchoolName.TabIndex = 10;
     //
     // textBox_Email
     //
     this.textBoxEmail.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textBoxEmail.Location = new System.Drawing.Point(200, 385);
     this.textBoxEmail.Name     = "textBox_Email";
     this.textBoxEmail.Size     = new System.Drawing.Size(170, 24);
     this.textBoxEmail.TabIndex = 7;
     //
     // textBox_MobilePhone
     //
     this.textBoxMobilePhone.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textBoxMobilePhone.Location = new System.Drawing.Point(200, 340);
     this.textBoxMobilePhone.Name     = "textBox_MobilePhone";
     this.textBoxMobilePhone.Size     = new System.Drawing.Size(170, 24);
     this.textBoxMobilePhone.TabIndex = 6;
     //
     // textBox_Surname
     //
     this.textBoxSurname.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textBoxSurname.Location = new System.Drawing.Point(200, 205);
     this.textBoxSurname.Name     = "textBox_Surname";
     this.textBoxSurname.Size     = new System.Drawing.Size(170, 24);
     this.textBoxSurname.TabIndex = 2;
     //
     // textBox_Name
     //
     this.textBoxName.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.textBoxName.Location = new System.Drawing.Point(200, 159);
     this.textBoxName.Name     = "textBox_Name";
     this.textBoxName.Size     = new System.Drawing.Size(170, 24);
     this.textBoxName.TabIndex = 1;
     //
     // pictureBox1
     //
     this.pictureBox.Image    = global::CollegeManagementSystem.Properties.Resources.Admission_banner;
     this.pictureBox.Location = new System.Drawing.Point(125, 20);
     this.pictureBox.Name     = "pictureBox1";
     this.pictureBox.Size     = new System.Drawing.Size(550, 85);
     this.pictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox.TabIndex = 12;
     this.pictureBox.TabStop  = false;
     //
     // Form_NewAdmission
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(800, 475);
     this.Controls.Add(this.panelBody);
     this.Name          = "Form_NewAdmission";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "New Admission";
     this.Load         += new System.EventHandler(this.Form_NewAdmission_Load);
     this.panelBody.ResumeLayout(false);
     this.panelBody.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 18
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PrinterTest));
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.idbox         = new System.Windows.Forms.TextBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.label5        = new System.Windows.Forms.Label();
     this.leftoverbox   = new System.Windows.Forms.TextBox();
     this.typebox       = new System.Windows.Forms.ComboBox();
     this.radioButton2  = new System.Windows.Forms.RadioButton();
     this.radioButton1  = new System.Windows.Forms.RadioButton();
     this.notebox       = new System.Windows.Forms.TextBox();
     this.label1        = new System.Windows.Forms.Label();
     this.label9        = new System.Windows.Forms.Label();
     this.label2        = new System.Windows.Forms.Label();
     this.label4        = new System.Windows.Forms.Label();
     this.label3        = new System.Windows.Forms.Label();
     this.modelbox      = new System.Windows.Forms.TextBox();
     this.serialbox     = new System.Windows.Forms.TextBox();
     this.brandbox      = new System.Windows.Forms.TextBox();
     this.pauseBtn      = new System.Windows.Forms.Button();
     this.StatusBtnOK   = new System.Windows.Forms.Button();
     this.StatusBtnDEF  = new System.Windows.Forms.Button();
     this.groupBox2     = new System.Windows.Forms.GroupBox();
     this.label13       = new System.Windows.Forms.Label();
     this.label12       = new System.Windows.Forms.Label();
     this.label11       = new System.Windows.Forms.Label();
     this.comboBox3     = new System.Windows.Forms.ComboBox();
     this.comboBox1     = new System.Windows.Forms.ComboBox();
     this.comboBox2     = new System.Windows.Forms.ComboBox();
     this.deletebtn     = new System.Windows.Forms.Button();
     this.exitBtn       = new System.Windows.Forms.Button();
     this.pictureBox1   = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Location = new System.Drawing.Point(13, 418);
     this.dataGridView1.Name     = "dataGridView1";
     this.dataGridView1.Size     = new System.Drawing.Size(983, 300);
     this.dataGridView1.TabIndex = 11;
     //
     // idbox
     //
     this.idbox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.idbox.Font        = new System.Drawing.Font("Segoe UI", 12F);
     this.idbox.Location    = new System.Drawing.Point(6, 28);
     this.idbox.Name        = "idbox";
     this.idbox.Size        = new System.Drawing.Size(200, 29);
     this.idbox.TabIndex    = 0;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.leftoverbox);
     this.groupBox1.Controls.Add(this.typebox);
     this.groupBox1.Controls.Add(this.radioButton2);
     this.groupBox1.Controls.Add(this.radioButton1);
     this.groupBox1.Controls.Add(this.notebox);
     this.groupBox1.Controls.Add(this.idbox);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label9);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.modelbox);
     this.groupBox1.Controls.Add(this.serialbox);
     this.groupBox1.Controls.Add(this.brandbox);
     this.groupBox1.Font     = new System.Drawing.Font("Segoe UI", 12F);
     this.groupBox1.Location = new System.Drawing.Point(13, 13);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(397, 399);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Information";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(213, 235);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(162, 28);
     this.label5.TabIndex = 12;
     this.label5.Text     = "Resterende Toner (%)";
     //
     // leftoverbox
     //
     this.leftoverbox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.leftoverbox.Location    = new System.Drawing.Point(7, 235);
     this.leftoverbox.Name        = "leftoverbox";
     this.leftoverbox.Size        = new System.Drawing.Size(199, 29);
     this.leftoverbox.TabIndex    = 7;
     //
     // typebox
     //
     this.typebox.FormattingEnabled = true;
     this.typebox.Items.AddRange(new object[] {
         "Laser Printer",
         "Ink Printer",
         "All-In-One Printer",
         "Kopimaskine",
         "Scanner"
     });
     this.typebox.Location = new System.Drawing.Point(6, 170);
     this.typebox.Name     = "typebox";
     this.typebox.Size     = new System.Drawing.Size(200, 29);
     this.typebox.TabIndex = 4;
     //
     // radioButton2
     //
     this.radioButton2.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
     this.radioButton2.Location   = new System.Drawing.Point(102, 202);
     this.radioButton2.Name       = "radioButton2";
     this.radioButton2.Size       = new System.Drawing.Size(104, 30);
     this.radioButton2.TabIndex   = 6;
     this.radioButton2.TabStop    = true;
     this.radioButton2.Text       = "Sort/Hvid";
     this.radioButton2.UseVisualStyleBackColor = true;
     //
     // radioButton1
     //
     this.radioButton1.ImageAlign = System.Drawing.ContentAlignment.TopLeft;
     this.radioButton1.Location   = new System.Drawing.Point(8, 202);
     this.radioButton1.Name       = "radioButton1";
     this.radioButton1.Size       = new System.Drawing.Size(75, 30);
     this.radioButton1.TabIndex   = 5;
     this.radioButton1.TabStop    = true;
     this.radioButton1.Text       = "Farve";
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // notebox
     //
     this.notebox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.notebox.Location    = new System.Drawing.Point(5, 284);
     this.notebox.Multiline   = true;
     this.notebox.Name        = "notebox";
     this.notebox.Size        = new System.Drawing.Size(384, 109);
     this.notebox.TabIndex    = 8;
     this.notebox.Text        = "Noter";
     this.notebox.TextAlign   = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label1
     //
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.label1.Location  = new System.Drawing.Point(212, 28);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(150, 29);
     this.label1.TabIndex  = 1;
     this.label1.Text      = "ID";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label9
     //
     this.label9.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.label9.Location  = new System.Drawing.Point(212, 167);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(150, 29);
     this.label9.TabIndex  = 1;
     this.label9.Text      = "Type";
     this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.label2.Location  = new System.Drawing.Point(212, 63);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(150, 29);
     this.label2.TabIndex  = 1;
     this.label2.Text      = "Mærke";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label4
     //
     this.label4.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.label4.Location  = new System.Drawing.Point(212, 133);
     this.label4.Name      = "label4";
     this.label4.Size      = new System.Drawing.Size(150, 29);
     this.label4.TabIndex  = 1;
     this.label4.Text      = "Serienummer";
     this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label3
     //
     this.label3.Font      = new System.Drawing.Font("Segoe UI", 12F);
     this.label3.Location  = new System.Drawing.Point(211, 98);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(150, 29);
     this.label3.TabIndex  = 1;
     this.label3.Text      = "Model";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // modelbox
     //
     this.modelbox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.modelbox.Font        = new System.Drawing.Font("Segoe UI", 12F);
     this.modelbox.Location    = new System.Drawing.Point(5, 98);
     this.modelbox.Name        = "modelbox";
     this.modelbox.Size        = new System.Drawing.Size(200, 29);
     this.modelbox.TabIndex    = 2;
     //
     // serialbox
     //
     this.serialbox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.serialbox.Font        = new System.Drawing.Font("Segoe UI", 12F);
     this.serialbox.Location    = new System.Drawing.Point(6, 133);
     this.serialbox.Name        = "serialbox";
     this.serialbox.Size        = new System.Drawing.Size(200, 29);
     this.serialbox.TabIndex    = 3;
     //
     // brandbox
     //
     this.brandbox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.brandbox.Font        = new System.Drawing.Font("Segoe UI", 12F);
     this.brandbox.Location    = new System.Drawing.Point(6, 63);
     this.brandbox.Name        = "brandbox";
     this.brandbox.Size        = new System.Drawing.Size(200, 29);
     this.brandbox.TabIndex    = 1;
     //
     // pauseBtn
     //
     this.pauseBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(128)))));
     this.pauseBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.pauseBtn.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.pauseBtn.Location  = new System.Drawing.Point(875, 217);
     this.pauseBtn.Name      = "pauseBtn";
     this.pauseBtn.Size      = new System.Drawing.Size(120, 65);
     this.pauseBtn.TabIndex  = 2;
     this.pauseBtn.Text      = "&Pause";
     this.pauseBtn.UseVisualStyleBackColor = false;
     //
     // StatusBtnOK
     //
     this.StatusBtnOK.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.StatusBtnOK.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.StatusBtnOK.Font      = new System.Drawing.Font("Segoe UI", 18F);
     this.StatusBtnOK.Location  = new System.Drawing.Point(6, 149);
     this.StatusBtnOK.Name      = "StatusBtnOK";
     this.StatusBtnOK.Size      = new System.Drawing.Size(120, 65);
     this.StatusBtnOK.TabIndex  = 0;
     this.StatusBtnOK.Text      = "&OK";
     this.StatusBtnOK.UseVisualStyleBackColor = false;
     this.StatusBtnOK.Click += new System.EventHandler(this.StatusBtnOKClick);
     //
     // StatusBtnDEF
     //
     this.StatusBtnDEF.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(192)))));
     this.StatusBtnDEF.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.StatusBtnDEF.Font      = new System.Drawing.Font("Segoe UI", 18F);
     this.StatusBtnDEF.Location  = new System.Drawing.Point(199, 149);
     this.StatusBtnDEF.Name      = "StatusBtnDEF";
     this.StatusBtnDEF.Size      = new System.Drawing.Size(120, 65);
     this.StatusBtnDEF.TabIndex  = 1;
     this.StatusBtnDEF.Text      = "&DEFEKT";
     this.StatusBtnDEF.UseVisualStyleBackColor = false;
     this.StatusBtnDEF.Click += new System.EventHandler(this.StatusBtnDEFClick);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.label13);
     this.groupBox2.Controls.Add(this.label12);
     this.groupBox2.Controls.Add(this.label11);
     this.groupBox2.Controls.Add(this.comboBox3);
     this.groupBox2.Controls.Add(this.comboBox1);
     this.groupBox2.Controls.Add(this.comboBox2);
     this.groupBox2.Controls.Add(this.deletebtn);
     this.groupBox2.Controls.Add(this.StatusBtnDEF);
     this.groupBox2.Controls.Add(this.StatusBtnOK);
     this.groupBox2.Font     = new System.Drawing.Font("Segoe UI", 12F);
     this.groupBox2.Location = new System.Drawing.Point(473, 106);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Size     = new System.Drawing.Size(325, 306);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "STATUS";
     //
     // label13
     //
     this.label13.Location  = new System.Drawing.Point(164, 98);
     this.label13.Name      = "label13";
     this.label13.Size      = new System.Drawing.Size(115, 29);
     this.label13.TabIndex  = 21;
     this.label13.Text      = "Tilbehør";
     this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label12
     //
     this.label12.Location  = new System.Drawing.Point(164, 62);
     this.label12.Name      = "label12";
     this.label12.Size      = new System.Drawing.Size(115, 29);
     this.label12.TabIndex  = 22;
     this.label12.Text      = "Funktionalitet";
     this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label11
     //
     this.label11.Location  = new System.Drawing.Point(164, 28);
     this.label11.Name      = "label11";
     this.label11.Size      = new System.Drawing.Size(115, 29);
     this.label11.TabIndex  = 23;
     this.label11.Text      = "Kosmetisk";
     this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // comboBox3
     //
     this.comboBox3.FormattingEnabled = true;
     this.comboBox3.Items.AddRange(new object[] {
         "Missing feet",
         "Missing Ext. PSU",
         "Ext. PSU incl."
     });
     this.comboBox3.Location = new System.Drawing.Point(9, 98);
     this.comboBox3.Name     = "comboBox3";
     this.comboBox3.Size     = new System.Drawing.Size(149, 29);
     this.comboBox3.TabIndex = 18;
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         "OK",
         "Light Scratches",
         "No boot",
         "Signal error",
         "Pixel error",
         "Pressure marks"
     });
     this.comboBox1.Location = new System.Drawing.Point(9, 63);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(149, 29);
     this.comboBox1.TabIndex = 19;
     //
     // comboBox2
     //
     this.comboBox2.FormattingEnabled = true;
     this.comboBox2.Items.AddRange(new object[] {
         "OK",
         "Removed Label",
         "Scratches",
         "Broken Cabinet"
     });
     this.comboBox2.Location = new System.Drawing.Point(9, 28);
     this.comboBox2.Name     = "comboBox2";
     this.comboBox2.Size     = new System.Drawing.Size(149, 29);
     this.comboBox2.TabIndex = 20;
     //
     // deletebtn
     //
     this.deletebtn.BackColor = System.Drawing.Color.White;
     this.deletebtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.deletebtn.Font      = new System.Drawing.Font("Segoe UI", 18F);
     this.deletebtn.ForeColor = System.Drawing.Color.Black;
     this.deletebtn.Location  = new System.Drawing.Point(103, 235);
     this.deletebtn.Name      = "deletebtn";
     this.deletebtn.Size      = new System.Drawing.Size(120, 65);
     this.deletebtn.TabIndex  = 17;
     this.deletebtn.Text      = "&SLET";
     this.deletebtn.UseVisualStyleBackColor = false;
     this.deletebtn.Click += new System.EventHandler(this.DeletebtnClick);
     //
     // exitBtn
     //
     this.exitBtn.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(128)))), ((int)(((byte)(128)))));
     this.exitBtn.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.exitBtn.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.exitBtn.Location  = new System.Drawing.Point(875, 297);
     this.exitBtn.Name      = "exitBtn";
     this.exitBtn.Size      = new System.Drawing.Size(120, 65);
     this.exitBtn.TabIndex  = 3;
     this.exitBtn.Text      = "Afslut";
     this.exitBtn.UseVisualStyleBackColor = false;
     this.exitBtn.Click += new System.EventHandler(this.ExitBtnClick);
     //
     // pictureBox1
     //
     this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBox1.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.pictureBox1.Enabled      = false;
     this.pictureBox1.Image        = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.InitialImage = ((System.Drawing.Image)(resources.GetObject("pictureBox1.InitialImage")));
     this.pictureBox1.Location     = new System.Drawing.Point(856, 8);
     this.pictureBox1.Name         = "pictureBox1";
     this.pictureBox1.Size         = new System.Drawing.Size(140, 99);
     this.pictureBox1.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex     = 16;
     this.pictureBox1.TabStop      = false;
     //
     // PrinterTest
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1008, 730);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.dataGridView1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.pauseBtn);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.exitBtn);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "PrinterTest";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "PrinterTest";
     this.Load           += new System.EventHandler(this.PrinterTestLoad);
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     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.RenkKanallari = new System.Windows.Forms.GroupBox();
     this.radioMavi = new System.Windows.Forms.RadioButton();
     this.radioKirmizi = new System.Windows.Forms.RadioButton();
     this.radioYesil = new System.Windows.Forms.RadioButton();
     this.Olceklendirmegroup = new System.Windows.Forms.GroupBox();
     this.Genislik = new System.Windows.Forms.NumericUpDown();
     this.Yukseklik = new System.Windows.Forms.NumericUpDown();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.histogramgroup = new System.Windows.Forms.GroupBox();
     this.radioGriHistogram = new System.Windows.Forms.RadioButton();
     this.radioMaviHistogram = new System.Windows.Forms.RadioButton();
     this.radioKirmiziHistogram = new System.Windows.Forms.RadioButton();
     this.radioYesilHistogram = new System.Windows.Forms.RadioButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.Dondurmegroup = new System.Windows.Forms.GroupBox();
     this.Aynalamagroup = new System.Windows.Forms.GroupBox();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.toolTip2 = new System.Windows.Forms.ToolTip(this.components);
     this.toolTip3 = new System.Windows.Forms.ToolTip(this.components);
     this.toolTip4 = new System.Windows.Forms.ToolTip(this.components);
     this.toolTip5 = new System.Windows.Forms.ToolTip(this.components);
     this.toolTip6 = new System.Windows.Forms.ToolTip(this.components);
     this.panel2 = new System.Windows.Forms.Panel();
     this.pictureBox3 = new System.Windows.Forms.PictureBox();
     this.pictureBox2 = new System.Windows.Forms.PictureBox();
     this.DikeyAyna = new System.Windows.Forms.Button();
     this.YatayAyna = new System.Windows.Forms.Button();
     this.SolaDondume = new System.Windows.Forms.Button();
     this.SagaDondurme = new System.Windows.Forms.Button();
     this.islempaneli = new System.Windows.Forms.Button();
     this.anasayfa = new System.Windows.Forms.Button();
     this.DosyaAc = new System.Windows.Forms.Button();
     this.Sifirla = new System.Windows.Forms.Button();
     this.Kaydet = new System.Windows.Forms.Button();
     this.MenuKontrol = new System.Windows.Forms.Button();
     this.HistogramUygula = new System.Windows.Forms.Button();
     this.OlceklendirmeUygula = new System.Windows.Forms.Button();
     this.renkKanallarıUygula = new System.Windows.Forms.Button();
     this.Tersleme = new System.Windows.Forms.Button();
     this.Grileme = new System.Windows.Forms.Button();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.RenkKanallari.SuspendLayout();
     this.Olceklendirmegroup.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Genislik)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Yukseklik)).BeginInit();
     this.histogramgroup.SuspendLayout();
     this.panel1.SuspendLayout();
     this.Dondurmegroup.SuspendLayout();
     this.Aynalamagroup.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // RenkKanallari
     //
     this.RenkKanallari.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))));
     this.RenkKanallari.Controls.Add(this.renkKanallarıUygula);
     this.RenkKanallari.Controls.Add(this.radioMavi);
     this.RenkKanallari.Controls.Add(this.radioKirmizi);
     this.RenkKanallari.Controls.Add(this.radioYesil);
     this.RenkKanallari.ForeColor = System.Drawing.Color.White;
     this.RenkKanallari.Location = new System.Drawing.Point(644, 167);
     this.RenkKanallari.Name = "RenkKanallari";
     this.RenkKanallari.Size = new System.Drawing.Size(145, 87);
     this.RenkKanallari.TabIndex = 10;
     this.RenkKanallari.TabStop = false;
     this.RenkKanallari.Text = "Renk Kanalları";
     this.RenkKanallari.Visible = false;
     //
     // radioMavi
     //
     this.radioMavi.AutoSize = true;
     this.radioMavi.Location = new System.Drawing.Point(6, 19);
     this.radioMavi.Name = "radioMavi";
     this.radioMavi.Size = new System.Drawing.Size(48, 17);
     this.radioMavi.TabIndex = 9;
     this.radioMavi.TabStop = true;
     this.radioMavi.Text = "Mavi";
     this.radioMavi.UseVisualStyleBackColor = true;
     //
     // radioKirmizi
     //
     this.radioKirmizi.AutoSize = true;
     this.radioKirmizi.Location = new System.Drawing.Point(6, 39);
     this.radioKirmizi.Name = "radioKirmizi";
     this.radioKirmizi.Size = new System.Drawing.Size(54, 17);
     this.radioKirmizi.TabIndex = 7;
     this.radioKirmizi.TabStop = true;
     this.radioKirmizi.Text = "Kırmızı";
     this.radioKirmizi.UseVisualStyleBackColor = true;
     //
     // radioYesil
     //
     this.radioYesil.AutoSize = true;
     this.radioYesil.Location = new System.Drawing.Point(6, 60);
     this.radioYesil.Name = "radioYesil";
     this.radioYesil.Size = new System.Drawing.Size(47, 17);
     this.radioYesil.TabIndex = 8;
     this.radioYesil.TabStop = true;
     this.radioYesil.Text = "Yesil";
     this.radioYesil.UseVisualStyleBackColor = true;
     //
     // Olceklendirmegroup
     //
     this.Olceklendirmegroup.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))));
     this.Olceklendirmegroup.Controls.Add(this.Genislik);
     this.Olceklendirmegroup.Controls.Add(this.Yukseklik);
     this.Olceklendirmegroup.Controls.Add(this.label2);
     this.Olceklendirmegroup.Controls.Add(this.label1);
     this.Olceklendirmegroup.Controls.Add(this.OlceklendirmeUygula);
     this.Olceklendirmegroup.ForeColor = System.Drawing.Color.White;
     this.Olceklendirmegroup.Location = new System.Drawing.Point(844, 216);
     this.Olceklendirmegroup.Name = "Olceklendirmegroup";
     this.Olceklendirmegroup.Size = new System.Drawing.Size(180, 71);
     this.Olceklendirmegroup.TabIndex = 15;
     this.Olceklendirmegroup.TabStop = false;
     this.Olceklendirmegroup.Text = "Ölçeklendirme";
     this.Olceklendirmegroup.Visible = false;
     //
     // Genislik
     //
     this.Genislik.Location = new System.Drawing.Point(68, 33);
     this.Genislik.Maximum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.Genislik.Name = "Genislik";
     this.Genislik.Size = new System.Drawing.Size(37, 20);
     this.Genislik.TabIndex = 13;
     //
     // Yukseklik
     //
     this.Yukseklik.Location = new System.Drawing.Point(12, 33);
     this.Yukseklik.Maximum = new decimal(new int[] {
     1000,
     0,
     0,
     0});
     this.Yukseklik.Name = "Yukseklik";
     this.Yukseklik.Size = new System.Drawing.Size(37, 20);
     this.Yukseklik.TabIndex = 12;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(65, 16);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(44, 13);
     this.label2.TabIndex = 11;
     this.label2.Text = "Genişlik";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(6, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(53, 13);
     this.label1.TabIndex = 10;
     this.label1.Text = "Yükseklik";
     //
     // histogramgroup
     //
     this.histogramgroup.Controls.Add(this.HistogramUygula);
     this.histogramgroup.Controls.Add(this.radioGriHistogram);
     this.histogramgroup.Controls.Add(this.radioMaviHistogram);
     this.histogramgroup.Controls.Add(this.radioKirmiziHistogram);
     this.histogramgroup.Controls.Add(this.radioYesilHistogram);
     this.histogramgroup.ForeColor = System.Drawing.Color.White;
     this.histogramgroup.Location = new System.Drawing.Point(858, 468);
     this.histogramgroup.Name = "histogramgroup";
     this.histogramgroup.Size = new System.Drawing.Size(145, 111);
     this.histogramgroup.TabIndex = 16;
     this.histogramgroup.TabStop = false;
     this.histogramgroup.Text = "Histogram";
     this.histogramgroup.Visible = false;
     //
     // radioGriHistogram
     //
     this.radioGriHistogram.AutoSize = true;
     this.radioGriHistogram.Location = new System.Drawing.Point(6, 83);
     this.radioGriHistogram.Name = "radioGriHistogram";
     this.radioGriHistogram.Size = new System.Drawing.Size(38, 17);
     this.radioGriHistogram.TabIndex = 10;
     this.radioGriHistogram.TabStop = true;
     this.radioGriHistogram.Text = "Gri";
     this.radioGriHistogram.UseVisualStyleBackColor = true;
     //
     // radioMaviHistogram
     //
     this.radioMaviHistogram.AutoSize = true;
     this.radioMaviHistogram.Location = new System.Drawing.Point(6, 19);
     this.radioMaviHistogram.Name = "radioMaviHistogram";
     this.radioMaviHistogram.Size = new System.Drawing.Size(48, 17);
     this.radioMaviHistogram.TabIndex = 9;
     this.radioMaviHistogram.TabStop = true;
     this.radioMaviHistogram.Text = "Mavi";
     this.radioMaviHistogram.UseVisualStyleBackColor = true;
     //
     // radioKirmiziHistogram
     //
     this.radioKirmiziHistogram.AutoSize = true;
     this.radioKirmiziHistogram.Location = new System.Drawing.Point(6, 39);
     this.radioKirmiziHistogram.Name = "radioKirmiziHistogram";
     this.radioKirmiziHistogram.Size = new System.Drawing.Size(54, 17);
     this.radioKirmiziHistogram.TabIndex = 7;
     this.radioKirmiziHistogram.TabStop = true;
     this.radioKirmiziHistogram.Text = "Kırmızı";
     this.radioKirmiziHistogram.UseVisualStyleBackColor = true;
     //
     // radioYesilHistogram
     //
     this.radioYesilHistogram.AutoSize = true;
     this.radioYesilHistogram.Location = new System.Drawing.Point(6, 60);
     this.radioYesilHistogram.Name = "radioYesilHistogram";
     this.radioYesilHistogram.Size = new System.Drawing.Size(47, 17);
     this.radioYesilHistogram.TabIndex = 8;
     this.radioYesilHistogram.TabStop = true;
     this.radioYesilHistogram.Text = "Yeşil";
     this.radioYesilHistogram.UseVisualStyleBackColor = true;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.islempaneli);
     this.panel1.Controls.Add(this.anasayfa);
     this.panel1.Controls.Add(this.DosyaAc);
     this.panel1.Controls.Add(this.Sifirla);
     this.panel1.Controls.Add(this.Kaydet);
     this.panel1.Location = new System.Drawing.Point(58, 58);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(243, 45);
     this.panel1.TabIndex = 18;
     this.panel1.Visible = false;
     //
     // Dondurmegroup
     //
     this.Dondurmegroup.Controls.Add(this.SolaDondume);
     this.Dondurmegroup.Controls.Add(this.SagaDondurme);
     this.Dondurmegroup.ForeColor = System.Drawing.Color.White;
     this.Dondurmegroup.Location = new System.Drawing.Point(644, 325);
     this.Dondurmegroup.Name = "Dondurmegroup";
     this.Dondurmegroup.Size = new System.Drawing.Size(144, 119);
     this.Dondurmegroup.TabIndex = 19;
     this.Dondurmegroup.TabStop = false;
     this.Dondurmegroup.Text = "Döndürme";
     this.Dondurmegroup.Visible = false;
     //
     // Aynalamagroup
     //
     this.Aynalamagroup.Controls.Add(this.DikeyAyna);
     this.Aynalamagroup.Controls.Add(this.YatayAyna);
     this.Aynalamagroup.ForeColor = System.Drawing.Color.White;
     this.Aynalamagroup.Location = new System.Drawing.Point(644, 506);
     this.Aynalamagroup.Name = "Aynalamagroup";
     this.Aynalamagroup.Size = new System.Drawing.Size(145, 112);
     this.Aynalamagroup.TabIndex = 20;
     this.Aynalamagroup.TabStop = false;
     this.Aynalamagroup.Text = "Aynalama";
     this.Aynalamagroup.Visible = false;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.MidnightBlue;
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.panel2.Controls.Add(this.pictureBox3);
     this.panel2.Controls.Add(this.pictureBox2);
     this.panel2.Location = new System.Drawing.Point(2, 1);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1072, 44);
     this.panel2.TabIndex = 23;
     this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
     this.panel2.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseDown);
     this.panel2.MouseMove += new System.Windows.Forms.MouseEventHandler(this.panel2_MouseMove);
     //
     // pictureBox3
     //
     this.pictureBox3.Image = global::YazlabProje1_.Properties.Resources.Adsız1;
     this.pictureBox3.Location = new System.Drawing.Point(-2, 3);
     this.pictureBox3.Name = "pictureBox3";
     this.pictureBox3.Size = new System.Drawing.Size(465, 32);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox3.TabIndex = 22;
     this.pictureBox3.TabStop = false;
     this.pictureBox3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.pictureBox3_MouseDown);
     this.pictureBox3.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBox3_MouseMove);
     //
     // pictureBox2
     //
     this.pictureBox2.BackColor = System.Drawing.Color.MidnightBlue;
     this.pictureBox2.Image = global::YazlabProje1_.Properties.Resources.if_Cancel_1493282__3_;
     this.pictureBox2.Location = new System.Drawing.Point(1011, 3);
     this.pictureBox2.Name = "pictureBox2";
     this.pictureBox2.Size = new System.Drawing.Size(32, 32);
     this.pictureBox2.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox2.TabIndex = 21;
     this.pictureBox2.TabStop = false;
     this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click);
     //
     // DikeyAyna
     //
     this.DikeyAyna.BackColor = System.Drawing.Color.Transparent;
     this.DikeyAyna.ForeColor = System.Drawing.Color.Black;
     this.DikeyAyna.Image = global::YazlabProje1_.Properties.Resources.mirror_vertical_32;
     this.DikeyAyna.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.DikeyAyna.Location = new System.Drawing.Point(6, 19);
     this.DikeyAyna.Name = "DikeyAyna";
     this.DikeyAyna.Size = new System.Drawing.Size(120, 40);
     this.DikeyAyna.TabIndex = 13;
     this.DikeyAyna.Text = "Dikey Aynalama";
     this.DikeyAyna.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.DikeyAyna.UseVisualStyleBackColor = false;
     this.DikeyAyna.Click += new System.EventHandler(this.DikeyAyna_Click);
     //
     // YatayAyna
     //
     this.YatayAyna.BackColor = System.Drawing.Color.Transparent;
     this.YatayAyna.ForeColor = System.Drawing.Color.Black;
     this.YatayAyna.Image = global::YazlabProje1_.Properties.Resources.mirror_horizontal_32;
     this.YatayAyna.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.YatayAyna.Location = new System.Drawing.Point(6, 65);
     this.YatayAyna.Name = "YatayAyna";
     this.YatayAyna.Size = new System.Drawing.Size(120, 40);
     this.YatayAyna.TabIndex = 14;
     this.YatayAyna.Text = "Dikey Aynalama";
     this.YatayAyna.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.YatayAyna.UseVisualStyleBackColor = false;
     this.YatayAyna.Click += new System.EventHandler(this.YatayAyna_Click);
     //
     // SolaDondume
     //
     this.SolaDondume.BackColor = System.Drawing.Color.Transparent;
     this.SolaDondume.ForeColor = System.Drawing.Color.Black;
     this.SolaDondume.Image = global::YazlabProje1_.Properties.Resources.if_up_left_308947;
     this.SolaDondume.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SolaDondume.Location = new System.Drawing.Point(6, 19);
     this.SolaDondume.Name = "SolaDondume";
     this.SolaDondume.Size = new System.Drawing.Size(130, 40);
     this.SolaDondume.TabIndex = 11;
     this.SolaDondume.Text = "Sola Döndürme";
     this.SolaDondume.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.SolaDondume.UseVisualStyleBackColor = false;
     this.SolaDondume.Click += new System.EventHandler(this.SolaDondume_Click);
     //
     // SagaDondurme
     //
     this.SagaDondurme.BackColor = System.Drawing.Color.Transparent;
     this.SagaDondurme.ForeColor = System.Drawing.Color.Black;
     this.SagaDondurme.Image = global::YazlabProje1_.Properties.Resources.if_up_right_308946;
     this.SagaDondurme.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.SagaDondurme.Location = new System.Drawing.Point(6, 65);
     this.SagaDondurme.Name = "SagaDondurme";
     this.SagaDondurme.Size = new System.Drawing.Size(130, 40);
     this.SagaDondurme.TabIndex = 12;
     this.SagaDondurme.Text = "Sağa Döndürme";
     this.SagaDondurme.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.SagaDondurme.UseVisualStyleBackColor = false;
     this.SagaDondurme.Click += new System.EventHandler(this.SagaDondurme_Click);
     //
     // islempaneli
     //
     this.islempaneli.Image = global::YazlabProje1_.Properties.Resources.if_image_edit_103592;
     this.islempaneli.Location = new System.Drawing.Point(191, 3);
     this.islempaneli.Name = "islempaneli";
     this.islempaneli.Size = new System.Drawing.Size(41, 40);
     this.islempaneli.TabIndex = 21;
     this.toolTip6.SetToolTip(this.islempaneli, "İşlem Paneli");
     this.islempaneli.UseVisualStyleBackColor = true;
     this.islempaneli.Click += new System.EventHandler(this.button1_Click);
     //
     // anasayfa
     //
     this.anasayfa.Image = global::YazlabProje1_.Properties.Resources.oneline_home_32;
     this.anasayfa.Location = new System.Drawing.Point(3, 3);
     this.anasayfa.Name = "anasayfa";
     this.anasayfa.Size = new System.Drawing.Size(41, 40);
     this.anasayfa.TabIndex = 0;
     this.toolTip2.SetToolTip(this.anasayfa, "Anasayfa");
     this.anasayfa.UseVisualStyleBackColor = true;
     this.anasayfa.Click += new System.EventHandler(this.anasayfa_Click);
     //
     // DosyaAc
     //
     this.DosyaAc.BackColor = System.Drawing.Color.Transparent;
     this.DosyaAc.Image = global::YazlabProje1_.Properties.Resources._4_24;
     this.DosyaAc.Location = new System.Drawing.Point(50, 3);
     this.DosyaAc.Name = "DosyaAc";
     this.DosyaAc.Size = new System.Drawing.Size(41, 40);
     this.DosyaAc.TabIndex = 5;
     this.toolTip3.SetToolTip(this.DosyaAc, "Dosya Aç");
     this.DosyaAc.UseVisualStyleBackColor = false;
     this.DosyaAc.Click += new System.EventHandler(this.DosyaAc_Click);
     //
     // Sifirla
     //
     this.Sifirla.Image = global::YazlabProje1_.Properties.Resources.if_BT_past_905646__1_;
     this.Sifirla.Location = new System.Drawing.Point(97, 2);
     this.Sifirla.Name = "Sifirla";
     this.Sifirla.Size = new System.Drawing.Size(41, 40);
     this.Sifirla.TabIndex = 5;
     this.toolTip4.SetToolTip(this.Sifirla, "Sıfırla");
     this.Sifirla.UseVisualStyleBackColor = true;
     this.Sifirla.Click += new System.EventHandler(this.Sifirla_Click);
     //
     // Kaydet
     //
     this.Kaydet.BackColor = System.Drawing.Color.Transparent;
     this.Kaydet.Image = global::YazlabProje1_.Properties.Resources.save_24;
     this.Kaydet.Location = new System.Drawing.Point(144, 3);
     this.Kaydet.Name = "Kaydet";
     this.Kaydet.Size = new System.Drawing.Size(41, 40);
     this.Kaydet.TabIndex = 5;
     this.toolTip5.SetToolTip(this.Kaydet, "Kaydet");
     this.Kaydet.UseVisualStyleBackColor = false;
     this.Kaydet.Click += new System.EventHandler(this.Kaydet_Click);
     //
     // MenuKontrol
     //
     this.MenuKontrol.Image = global::YazlabProje1_.Properties.Resources.menu_list_4_32;
     this.MenuKontrol.Location = new System.Drawing.Point(12, 60);
     this.MenuKontrol.Name = "MenuKontrol";
     this.MenuKontrol.Size = new System.Drawing.Size(40, 40);
     this.MenuKontrol.TabIndex = 17;
     this.toolTip1.SetToolTip(this.MenuKontrol, "Menü");
     this.MenuKontrol.UseVisualStyleBackColor = true;
     this.MenuKontrol.Click += new System.EventHandler(this.MenuKontrol_Click);
     //
     // HistogramUygula
     //
     this.HistogramUygula.Image = global::YazlabProje1_.Properties.Resources.if_check_mark_tick_correct_approve_button_ok_1076779;
     this.HistogramUygula.Location = new System.Drawing.Point(85, 37);
     this.HistogramUygula.Name = "HistogramUygula";
     this.HistogramUygula.Size = new System.Drawing.Size(40, 40);
     this.HistogramUygula.TabIndex = 22;
     this.HistogramUygula.UseVisualStyleBackColor = true;
     this.HistogramUygula.Click += new System.EventHandler(this.button2_Click);
     //
     // OlceklendirmeUygula
     //
     this.OlceklendirmeUygula.BackColor = System.Drawing.Color.Transparent;
     this.OlceklendirmeUygula.ForeColor = System.Drawing.Color.Black;
     this.OlceklendirmeUygula.Image = global::YazlabProje1_.Properties.Resources.if_check_mark_tick_correct_approve_button_ok_10767791;
     this.OlceklendirmeUygula.Location = new System.Drawing.Point(125, 19);
     this.OlceklendirmeUygula.Name = "OlceklendirmeUygula";
     this.OlceklendirmeUygula.Size = new System.Drawing.Size(40, 40);
     this.OlceklendirmeUygula.TabIndex = 9;
     this.OlceklendirmeUygula.UseVisualStyleBackColor = false;
     this.OlceklendirmeUygula.Click += new System.EventHandler(this.OlceklendirmeUygula_Click);
     //
     // renkKanallarıUygula
     //
     this.renkKanallarıUygula.Image = global::YazlabProje1_.Properties.Resources.if_check_mark_tick_correct_approve_button_ok_1076779;
     this.renkKanallarıUygula.Location = new System.Drawing.Point(85, 27);
     this.renkKanallarıUygula.Name = "renkKanallarıUygula";
     this.renkKanallarıUygula.Size = new System.Drawing.Size(40, 40);
     this.renkKanallarıUygula.TabIndex = 22;
     this.renkKanallarıUygula.UseVisualStyleBackColor = true;
     this.renkKanallarıUygula.Click += new System.EventHandler(this.renkKanallarıUygu_Click);
     //
     // Tersleme
     //
     this.Tersleme.BackColor = System.Drawing.Color.Transparent;
     this.Tersleme.Image = global::YazlabProje1_.Properties.Resources.negative_line_neutral_save_24;
     this.Tersleme.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.Tersleme.Location = new System.Drawing.Point(883, 325);
     this.Tersleme.Name = "Tersleme";
     this.Tersleme.Size = new System.Drawing.Size(100, 40);
     this.Tersleme.TabIndex = 7;
     this.Tersleme.Text = "Negative";
     this.Tersleme.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Tersleme.UseVisualStyleBackColor = false;
     this.Tersleme.Visible = false;
     this.Tersleme.Click += new System.EventHandler(this.Tersleme_Click);
     //
     // Grileme
     //
     this.Grileme.BackColor = System.Drawing.Color.Transparent;
     this.Grileme.Image = global::YazlabProje1_.Properties.Resources.Eyedropper_24;
     this.Grileme.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.Grileme.Location = new System.Drawing.Point(883, 390);
     this.Grileme.Name = "Grileme";
     this.Grileme.Size = new System.Drawing.Size(100, 40);
     this.Grileme.TabIndex = 6;
     this.Grileme.Text = "Gri Tonlama";
     this.Grileme.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.Grileme.UseVisualStyleBackColor = false;
     this.Grileme.Visible = false;
     this.Grileme.Click += new System.EventHandler(this.Grileme_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Silver;
     this.pictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pictureBox1.Image = global::YazlabProje1_.Properties.Resources.Add_Image_512;
     this.pictureBox1.Location = new System.Drawing.Point(12, 123);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(600, 550);
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop = false;
     this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click);
     //
     // Form5
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(26)))), ((int)(((byte)(26)))), ((int)(((byte)(59)))));
     this.ClientSize = new System.Drawing.Size(1050, 694);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.Aynalamagroup);
     this.Controls.Add(this.Dondurmegroup);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.MenuKontrol);
     this.Controls.Add(this.histogramgroup);
     this.Controls.Add(this.Olceklendirmegroup);
     this.Controls.Add(this.RenkKanallari);
     this.Controls.Add(this.Tersleme);
     this.Controls.Add(this.Grileme);
     this.Controls.Add(this.pictureBox1);
     this.ForeColor = System.Drawing.SystemColors.ControlText;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name = "Form5";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Form5";
     this.RenkKanallari.ResumeLayout(false);
     this.RenkKanallari.PerformLayout();
     this.Olceklendirmegroup.ResumeLayout(false);
     this.Olceklendirmegroup.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Genislik)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Yukseklik)).EndInit();
     this.histogramgroup.ResumeLayout(false);
     this.histogramgroup.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.Dondurmegroup.ResumeLayout(false);
     this.Aynalamagroup.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1     = new System.Windows.Forms.Label();
     this.nama       = new System.Windows.Forms.TextBox();
     this.label2     = new System.Windows.Forms.Label();
     this.stb        = new System.Windows.Forms.TextBox();
     this.label3     = new System.Windows.Forms.Label();
     this.perempuan  = new System.Windows.Forms.RadioButton();
     this.laki_laki  = new System.Windows.Forms.RadioButton();
     this.label6     = new System.Windows.Forms.Label();
     this.label7     = new System.Windows.Forms.Label();
     this.textBox3   = new System.Windows.Forms.TextBox();
     this.label4     = new System.Windows.Forms.Label();
     this.hasilnama  = new System.Windows.Forms.Label();
     this.label8     = new System.Windows.Forms.Label();
     this.hasilstb   = new System.Windows.Forms.Label();
     this.label9     = new System.Windows.Forms.Label();
     this.jkel       = new System.Windows.Forms.Label();
     this.email      = new System.Windows.Forms.TextBox();
     this.label5     = new System.Windows.Forms.Label();
     this.label10    = new System.Windows.Forms.Label();
     this.hasilemail = new System.Windows.Forms.Label();
     this.label11    = new System.Windows.Forms.Label();
     this.hasilnohp  = new System.Windows.Forms.Label();
     this.nohp       = new System.Windows.Forms.TextBox();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(39, 56);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(94, 20);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Masukkan Nama";
     //
     // nama
     //
     this.nama.Location     = new System.Drawing.Point(139, 53);
     this.nama.Name         = "nama";
     this.nama.Size         = new System.Drawing.Size(173, 20);
     this.nama.TabIndex     = 1;
     this.nama.TextChanged += new System.EventHandler(this.NamaTextChanged);
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(39, 91);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(94, 20);
     this.label2.TabIndex = 2;
     this.label2.Text     = "Masukkan STB";
     //
     // stb
     //
     this.stb.Location     = new System.Drawing.Point(139, 88);
     this.stb.Name         = "stb";
     this.stb.Size         = new System.Drawing.Size(173, 20);
     this.stb.TabIndex     = 3;
     this.stb.TextChanged += new System.EventHandler(this.StbTextChanged);
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(39, 125);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(94, 20);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Jenis Kelamin";
     //
     // perempuan
     //
     this.perempuan.Location = new System.Drawing.Point(215, 119);
     this.perempuan.Name     = "perempuan";
     this.perempuan.Size     = new System.Drawing.Size(104, 24);
     this.perempuan.TabIndex = 5;
     this.perempuan.TabStop  = true;
     this.perempuan.Text     = "Perempuan";
     this.perempuan.UseVisualStyleBackColor = true;
     this.perempuan.CheckedChanged         += new System.EventHandler(this.PerempuanCheckedChanged);
     //
     // laki_laki
     //
     this.laki_laki.Location = new System.Drawing.Point(139, 119);
     this.laki_laki.Name     = "laki_laki";
     this.laki_laki.Size     = new System.Drawing.Size(70, 24);
     this.laki_laki.TabIndex = 6;
     this.laki_laki.TabStop  = true;
     this.laki_laki.Text     = "Laki-laki";
     this.laki_laki.UseVisualStyleBackColor = true;
     this.laki_laki.CheckedChanged         += new System.EventHandler(this.Laki_lakiCheckedChanged);
     //
     // label6
     //
     this.label6.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.label6.Font      = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location  = new System.Drawing.Point(41, 11);
     this.label6.Name      = "label6";
     this.label6.Size      = new System.Drawing.Size(270, 30);
     this.label6.TabIndex  = 14;
     this.label6.Text      = "BIODATA";
     this.label6.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(41, 190);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(94, 20);
     this.label7.TabIndex = 16;
     this.label7.Text     = "No. Hp";
     //
     // textBox3
     //
     this.textBox3.Location  = new System.Drawing.Point(25, 235);
     this.textBox3.Multiline = true;
     this.textBox3.Name      = "textBox3";
     this.textBox3.Size      = new System.Drawing.Size(294, 189);
     this.textBox3.TabIndex  = 17;
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(45, 238);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(74, 22);
     this.label4.TabIndex = 19;
     this.label4.Text     = "Nama";
     //
     // hasilnama
     //
     this.hasilnama.Location = new System.Drawing.Point(125, 238);
     this.hasilnama.Name     = "hasilnama";
     this.hasilnama.Size     = new System.Drawing.Size(170, 22);
     this.hasilnama.TabIndex = 20;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(45, 269);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(74, 22);
     this.label8.TabIndex = 21;
     this.label8.Text     = "STB";
     //
     // hasilstb
     //
     this.hasilstb.Location = new System.Drawing.Point(125, 269);
     this.hasilstb.Name     = "hasilstb";
     this.hasilstb.Size     = new System.Drawing.Size(170, 22);
     this.hasilstb.TabIndex = 22;
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(45, 301);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(74, 22);
     this.label9.TabIndex = 23;
     this.label9.Text     = "Jkel";
     //
     // jkel
     //
     this.jkel.Location = new System.Drawing.Point(125, 301);
     this.jkel.Name     = "jkel";
     this.jkel.Size     = new System.Drawing.Size(170, 22);
     this.jkel.TabIndex = 24;
     //
     // email
     //
     this.email.Location     = new System.Drawing.Point(138, 152);
     this.email.Name         = "email";
     this.email.Size         = new System.Drawing.Size(173, 20);
     this.email.TabIndex     = 25;
     this.email.TextChanged += new System.EventHandler(this.EmailTextChanged);
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(41, 152);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(94, 20);
     this.label5.TabIndex = 13;
     this.label5.Text     = "Email";
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(45, 334);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(74, 22);
     this.label10.TabIndex = 26;
     this.label10.Text     = "Email";
     //
     // hasilemail
     //
     this.hasilemail.Location = new System.Drawing.Point(125, 334);
     this.hasilemail.Name     = "hasilemail";
     this.hasilemail.Size     = new System.Drawing.Size(170, 22);
     this.hasilemail.TabIndex = 27;
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(45, 367);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(74, 22);
     this.label11.TabIndex = 28;
     this.label11.Text     = "No. Hp";
     //
     // hasilnohp
     //
     this.hasilnohp.Location = new System.Drawing.Point(125, 367);
     this.hasilnohp.Name     = "hasilnohp";
     this.hasilnohp.Size     = new System.Drawing.Size(170, 22);
     this.hasilnohp.TabIndex = 29;
     this.hasilnohp.Click   += new System.EventHandler(this.HasilnohpClick);
     //
     // nohp
     //
     this.nohp.Location     = new System.Drawing.Point(138, 190);
     this.nohp.Name         = "nohp";
     this.nohp.Size         = new System.Drawing.Size(173, 20);
     this.nohp.TabIndex     = 30;
     this.nohp.TextChanged += new System.EventHandler(this.NohpTextChanged);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.AppWorkspace;
     this.ClientSize          = new System.Drawing.Size(375, 436);
     this.Controls.Add(this.nohp);
     this.Controls.Add(this.hasilnohp);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.hasilemail);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.email);
     this.Controls.Add(this.jkel);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.hasilstb);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.hasilnama);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.textBox3);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.laki_laki);
     this.Controls.Add(this.perempuan);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.stb);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.nama);
     this.Controls.Add(this.label1);
     this.Name  = "MainForm";
     this.Text  = "Penginputan";
     this.Load += new System.EventHandler(this.MainFormLoad);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 21
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmDocumentoFiscal));
     this.Toolbar1          = new System.Windows.Forms.ToolStrip();
     this._Toolbar1_Button1 = new System.Windows.Forms.ToolStripButton();
     this._Toolbar1_Button2 = new System.Windows.Forms.ToolStripSeparator();
     this.tlbGuardar        = new System.Windows.Forms.ToolStripButton();
     this._Toolbar1_Button4 = new System.Windows.Forms.ToolStripSeparator();
     this.tbImprimir        = new System.Windows.Forms.ToolStripButton();
     this._Toolbar1_Button6 = new System.Windows.Forms.ToolStripSeparator();
     this._Toolbar1_Button7 = new System.Windows.Forms.ToolStripButton();
     this._Toolbar1_Button8 = new System.Windows.Forms.ToolStripSeparator();
     this._Toolbar1_Button9 = new System.Windows.Forms.ToolStripButton();
     this.Calendario        = new System.Windows.Forms.MonthCalendar();
     this.GroupBox1         = new System.Windows.Forms.GroupBox();
     this.cmbRemito4        = new System.Windows.Forms.ComboBox();
     this.cmbRemito3        = new System.Windows.Forms.ComboBox();
     this.cmbRemito2        = new System.Windows.Forms.ComboBox();
     this.cmbRemito1        = new System.Windows.Forms.ComboBox();
     this.gridDatos         = new System.Windows.Forms.DataGridView();
     this.colCodigo         = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colProducto       = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colCantidad       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colUMedida        = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colPrecioUnitario = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colBonif          = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colSubTotal       = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colAlicuotaIVA    = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colSubTotCIva     = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.PictureBox1       = new System.Windows.Forms.PictureBox();
     this.TabControl1       = new System.Windows.Forms.TabControl();
     this.frCliente         = new System.Windows.Forms.GroupBox();
     this.cmbPosIVA         = new System.Windows.Forms.ComboBox();
     this.cmdClienteNuevo   = new System.Windows.Forms.Button();
     this.cmbRazonSocial    = new System.Windows.Forms.ComboBox();
     this.Frame1            = new System.Windows.Forms.GroupBox();
     this._Lbl_7            = new System.Windows.Forms.Label();
     this.lblIDCliente      = new System.Windows.Forms.Label();
     this._Lbl_1            = new System.Windows.Forms.Label();
     this._Lbl_2            = new System.Windows.Forms.Label();
     this._Lbl_3            = new System.Windows.Forms.Label();
     this.lblLocalidad      = new System.Windows.Forms.Label();
     this.lblDireccion      = new System.Windows.Forms.Label();
     this.lblProvincia      = new System.Windows.Forms.Label();
     this._Lbl_4            = new System.Windows.Forms.Label();
     this.lblCUIT           = new System.Windows.Forms.Label();
     this.lblDolar          = new System.Windows.Forms.Label();
     this._Lbl_17           = new System.Windows.Forms.Label();
     this.txtCodBarNum      = new System.Windows.Forms.TextBox();
     this.frFecha           = new System.Windows.Forms.GroupBox();
     this.dtFecha           = new System.Windows.Forms.DateTimePicker();
     this.frNumFact         = new System.Windows.Forms.GroupBox();
     this.cmbSucursal       = new System.Windows.Forms.ComboBox();
     this.txtNumFact        = new System.Windows.Forms.TextBox();
     this.frTipoFC          = new System.Windows.Forms.GroupBox();
     this.lblCod_cbe        = new System.Windows.Forms.Label();
     this.lblTipoFC         = new System.Windows.Forms.Label();
     this.frDescuento       = new System.Windows.Forms.GroupBox();
     this.lblDescuento      = new System.Windows.Forms.Label();
     this.Frame3            = new System.Windows.Forms.GroupBox();
     this.optPeso           = new System.Windows.Forms.RadioButton();
     this.optDolar          = new System.Windows.Forms.RadioButton();
     this.lblToken          = new System.Windows.Forms.Label();
     this.lblSign           = new System.Windows.Forms.Label();
     this.Toolbar1.SuspendLayout();
     this.GroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridDatos)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).BeginInit();
     this.frCliente.SuspendLayout();
     this.frFecha.SuspendLayout();
     this.frNumFact.SuspendLayout();
     this.frTipoFC.SuspendLayout();
     this.frDescuento.SuspendLayout();
     this.Frame3.SuspendLayout();
     this.SuspendLayout();
     //
     // Toolbar1
     //
     this.Toolbar1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this._Toolbar1_Button1,
         this._Toolbar1_Button2,
         this.tlbGuardar,
         this._Toolbar1_Button4,
         this.tbImprimir,
         this._Toolbar1_Button6,
         this._Toolbar1_Button7,
         this._Toolbar1_Button8,
         this._Toolbar1_Button9
     });
     this.Toolbar1.Location = new System.Drawing.Point(0, 0);
     this.Toolbar1.Name     = "Toolbar1";
     this.Toolbar1.Size     = new System.Drawing.Size(1301, 39);
     this.Toolbar1.TabIndex = 158;
     //
     // _Toolbar1_Button1
     //
     this._Toolbar1_Button1.Image             = ((System.Drawing.Image)(resources.GetObject("_Toolbar1_Button1.Image")));
     this._Toolbar1_Button1.ImageScaling      = System.Windows.Forms.ToolStripItemImageScaling.None;
     this._Toolbar1_Button1.Name              = "_Toolbar1_Button1";
     this._Toolbar1_Button1.Size              = new System.Drawing.Size(26, 36);
     this._Toolbar1_Button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this._Toolbar1_Button1.ToolTipText       = "Nuevo";
     //
     // _Toolbar1_Button2
     //
     this._Toolbar1_Button2.Name = "_Toolbar1_Button2";
     this._Toolbar1_Button2.Size = new System.Drawing.Size(6, 39);
     //
     // tlbGuardar
     //
     this.tlbGuardar.Image             = ((System.Drawing.Image)(resources.GetObject("tlbGuardar.Image")));
     this.tlbGuardar.ImageScaling      = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.tlbGuardar.Name              = "tlbGuardar";
     this.tlbGuardar.Size              = new System.Drawing.Size(26, 36);
     this.tlbGuardar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tlbGuardar.ToolTipText       = "Guardar";
     //
     // _Toolbar1_Button4
     //
     this._Toolbar1_Button4.AutoSize = false;
     this._Toolbar1_Button4.Name     = "_Toolbar1_Button4";
     this._Toolbar1_Button4.Size     = new System.Drawing.Size(0, 39);
     //
     // tbImprimir
     //
     this.tbImprimir.Image             = ((System.Drawing.Image)(resources.GetObject("tbImprimir.Image")));
     this.tbImprimir.ImageScaling      = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.tbImprimir.Name              = "tbImprimir";
     this.tbImprimir.Size              = new System.Drawing.Size(26, 36);
     this.tbImprimir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.tbImprimir.ToolTipText       = "Imprimir";
     //
     // _Toolbar1_Button6
     //
     this._Toolbar1_Button6.Name = "_Toolbar1_Button6";
     this._Toolbar1_Button6.Size = new System.Drawing.Size(6, 39);
     //
     // _Toolbar1_Button7
     //
     this._Toolbar1_Button7.Image             = ((System.Drawing.Image)(resources.GetObject("_Toolbar1_Button7.Image")));
     this._Toolbar1_Button7.ImageScaling      = System.Windows.Forms.ToolStripItemImageScaling.None;
     this._Toolbar1_Button7.Name              = "_Toolbar1_Button7";
     this._Toolbar1_Button7.Size              = new System.Drawing.Size(26, 36);
     this._Toolbar1_Button7.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this._Toolbar1_Button7.ToolTipText       = "Anular";
     //
     // _Toolbar1_Button8
     //
     this._Toolbar1_Button8.Name = "_Toolbar1_Button8";
     this._Toolbar1_Button8.Size = new System.Drawing.Size(6, 39);
     //
     // _Toolbar1_Button9
     //
     this._Toolbar1_Button9.Image             = ((System.Drawing.Image)(resources.GetObject("_Toolbar1_Button9.Image")));
     this._Toolbar1_Button9.ImageScaling      = System.Windows.Forms.ToolStripItemImageScaling.None;
     this._Toolbar1_Button9.Name              = "_Toolbar1_Button9";
     this._Toolbar1_Button9.Size              = new System.Drawing.Size(26, 36);
     this._Toolbar1_Button9.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this._Toolbar1_Button9.ToolTipText       = "Editar";
     //
     // Calendario
     //
     this.Calendario.Location = new System.Drawing.Point(715, 530);
     this.Calendario.Name     = "Calendario";
     this.Calendario.TabIndex = 157;
     this.Calendario.Visible  = false;
     //
     // GroupBox1
     //
     this.GroupBox1.BackColor = System.Drawing.SystemColors.Control;
     this.GroupBox1.Controls.Add(this.cmbRemito4);
     this.GroupBox1.Controls.Add(this.cmbRemito3);
     this.GroupBox1.Controls.Add(this.cmbRemito2);
     this.GroupBox1.Controls.Add(this.cmbRemito1);
     this.GroupBox1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.GroupBox1.Location    = new System.Drawing.Point(659, 210);
     this.GroupBox1.Name        = "GroupBox1";
     this.GroupBox1.Padding     = new System.Windows.Forms.Padding(0);
     this.GroupBox1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.GroupBox1.Size        = new System.Drawing.Size(236, 105);
     this.GroupBox1.TabIndex    = 156;
     this.GroupBox1.TabStop     = false;
     this.GroupBox1.Text        = "Remitos";
     //
     // cmbRemito4
     //
     this.cmbRemito4.FormattingEnabled = true;
     this.cmbRemito4.Location          = new System.Drawing.Point(4, 46);
     this.cmbRemito4.Name     = "cmbRemito4";
     this.cmbRemito4.Size     = new System.Drawing.Size(58, 21);
     this.cmbRemito4.TabIndex = 0;
     this.cmbRemito4.Text     = "0";
     //
     // cmbRemito3
     //
     this.cmbRemito3.FormattingEnabled = true;
     this.cmbRemito3.Location          = new System.Drawing.Point(144, 16);
     this.cmbRemito3.Name     = "cmbRemito3";
     this.cmbRemito3.Size     = new System.Drawing.Size(58, 21);
     this.cmbRemito3.TabIndex = 1;
     this.cmbRemito3.Text     = "0";
     //
     // cmbRemito2
     //
     this.cmbRemito2.FormattingEnabled = true;
     this.cmbRemito2.Location          = new System.Drawing.Point(68, 16);
     this.cmbRemito2.Name     = "cmbRemito2";
     this.cmbRemito2.Size     = new System.Drawing.Size(58, 21);
     this.cmbRemito2.TabIndex = 2;
     this.cmbRemito2.Text     = "0";
     //
     // cmbRemito1
     //
     this.cmbRemito1.FormattingEnabled = true;
     this.cmbRemito1.Location          = new System.Drawing.Point(4, 16);
     this.cmbRemito1.Name     = "cmbRemito1";
     this.cmbRemito1.Size     = new System.Drawing.Size(58, 21);
     this.cmbRemito1.TabIndex = 3;
     this.cmbRemito1.Text     = "0";
     //
     // gridDatos
     //
     this.gridDatos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.gridDatos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
         this.colCodigo,
         this.colProducto,
         this.colCantidad,
         this.colUMedida,
         this.colPrecioUnitario,
         this.colBonif,
         this.colSubTotal,
         this.colAlicuotaIVA,
         this.colSubTotCIva
     });
     this.gridDatos.Location = new System.Drawing.Point(28, 335);
     this.gridDatos.Name     = "gridDatos";
     this.gridDatos.Size     = new System.Drawing.Size(601, 183);
     this.gridDatos.TabIndex = 155;
     //
     // colCodigo
     //
     this.colCodigo.HeaderText = "Codigo";
     this.colCodigo.Name       = "colCodigo";
     //
     // colProducto
     //
     this.colProducto.DisplayStyle = System.Windows.Forms.DataGridViewComboBoxDisplayStyle.ComboBox;
     this.colProducto.HeaderText   = "Producto";
     this.colProducto.Name         = "colProducto";
     //
     // colCantidad
     //
     this.colCantidad.HeaderText = "Cantidad";
     this.colCantidad.Name       = "colCantidad";
     this.colCantidad.Resizable  = System.Windows.Forms.DataGridViewTriState.True;
     this.colCantidad.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // colUMedida
     //
     this.colUMedida.HeaderText = "U. Medida";
     this.colUMedida.Name       = "colUMedida";
     this.colUMedida.Resizable  = System.Windows.Forms.DataGridViewTriState.True;
     this.colUMedida.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // colPrecioUnitario
     //
     this.colPrecioUnitario.HeaderText = "PrecioUnitario(USD)";
     this.colPrecioUnitario.Name       = "colPrecioUnitario";
     this.colPrecioUnitario.Resizable  = System.Windows.Forms.DataGridViewTriState.True;
     this.colPrecioUnitario.SortMode   = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // colBonif
     //
     this.colBonif.HeaderText = "%Bonif";
     this.colBonif.Items.AddRange(new object[] {
         "0",
         "20"
     });
     this.colBonif.Name = "colBonif";
     //
     // colSubTotal
     //
     this.colSubTotal.HeaderText = "Subtotal(USD)";
     this.colSubTotal.Name       = "colSubTotal";
     //
     // colAlicuotaIVA
     //
     this.colAlicuotaIVA.HeaderText = "Alicuota IVA";
     this.colAlicuotaIVA.Items.AddRange(new object[] {
         "0",
         "10,5",
         "21"
     });
     this.colAlicuotaIVA.Name      = "colAlicuotaIVA";
     this.colAlicuotaIVA.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.colAlicuotaIVA.SortMode  = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // colSubTotCIva
     //
     this.colSubTotCIva.HeaderText = "Subtotal c/Iva (USD)";
     this.colSubTotCIva.Name       = "colSubTotCIva";
     //
     // PictureBox1
     //
     this.PictureBox1.BackColor   = System.Drawing.Color.White;
     this.PictureBox1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.PictureBox1.Location    = new System.Drawing.Point(19, 582);
     this.PictureBox1.Name        = "PictureBox1";
     this.PictureBox1.Size        = new System.Drawing.Size(625, 39);
     this.PictureBox1.TabIndex    = 154;
     this.PictureBox1.TabStop     = false;
     //
     // TabControl1
     //
     this.TabControl1.Location      = new System.Drawing.Point(659, 357);
     this.TabControl1.Name          = "TabControl1";
     this.TabControl1.SelectedIndex = 0;
     this.TabControl1.Size          = new System.Drawing.Size(240, 161);
     this.TabControl1.TabIndex      = 153;
     //
     // frCliente
     //
     this.frCliente.BackColor = System.Drawing.SystemColors.Control;
     this.frCliente.Controls.Add(this.cmbPosIVA);
     this.frCliente.Controls.Add(this.cmdClienteNuevo);
     this.frCliente.Controls.Add(this.cmbRazonSocial);
     this.frCliente.Controls.Add(this.Frame1);
     this.frCliente.Controls.Add(this._Lbl_7);
     this.frCliente.Controls.Add(this.lblIDCliente);
     this.frCliente.Controls.Add(this._Lbl_1);
     this.frCliente.Controls.Add(this._Lbl_2);
     this.frCliente.Controls.Add(this._Lbl_3);
     this.frCliente.Controls.Add(this.lblLocalidad);
     this.frCliente.Controls.Add(this.lblDireccion);
     this.frCliente.Controls.Add(this.lblProvincia);
     this.frCliente.Controls.Add(this._Lbl_4);
     this.frCliente.Controls.Add(this.lblCUIT);
     this.frCliente.Controls.Add(this.lblDolar);
     this.frCliente.Controls.Add(this._Lbl_17);
     this.frCliente.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.frCliente.Location    = new System.Drawing.Point(20, 138);
     this.frCliente.Name        = "frCliente";
     this.frCliente.Padding     = new System.Windows.Forms.Padding(0);
     this.frCliente.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.frCliente.Size        = new System.Drawing.Size(625, 177);
     this.frCliente.TabIndex    = 146;
     this.frCliente.TabStop     = false;
     //
     // cmbPosIVA
     //
     this.cmbPosIVA.BackColor   = System.Drawing.SystemColors.Window;
     this.cmbPosIVA.Cursor      = System.Windows.Forms.Cursors.Default;
     this.cmbPosIVA.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.cmbPosIVA.Location    = new System.Drawing.Point(256, 128);
     this.cmbPosIVA.Name        = "cmbPosIVA";
     this.cmbPosIVA.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbPosIVA.Size        = new System.Drawing.Size(225, 21);
     this.cmbPosIVA.TabIndex    = 54;
     this.cmbPosIVA.Text        = "Resp Incripto";
     //
     // cmdClienteNuevo
     //
     this.cmdClienteNuevo.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClienteNuevo.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdClienteNuevo.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClienteNuevo.Location                = new System.Drawing.Point(592, 16);
     this.cmdClienteNuevo.Name                    = "cmdClienteNuevo";
     this.cmdClienteNuevo.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClienteNuevo.Size                    = new System.Drawing.Size(17, 21);
     this.cmdClienteNuevo.TabIndex                = 4;
     this.cmdClienteNuevo.Text                    = "...";
     this.cmdClienteNuevo.UseVisualStyleBackColor = false;
     //
     // cmbRazonSocial
     //
     this.cmbRazonSocial.BackColor   = System.Drawing.SystemColors.Control;
     this.cmbRazonSocial.Cursor      = System.Windows.Forms.Cursors.Default;
     this.cmbRazonSocial.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.cmbRazonSocial.Location    = new System.Drawing.Point(8, 16);
     this.cmbRazonSocial.Name        = "cmbRazonSocial";
     this.cmbRazonSocial.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbRazonSocial.Size        = new System.Drawing.Size(577, 21);
     this.cmbRazonSocial.Sorted      = true;
     this.cmbRazonSocial.TabIndex    = 55;
     //
     // Frame1
     //
     this.Frame1.BackColor   = System.Drawing.SystemColors.Control;
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(440, 176);
     this.Frame1.Name        = "Frame1";
     this.Frame1.Padding     = new System.Windows.Forms.Padding(0);
     this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Size        = new System.Drawing.Size(185, 1);
     this.Frame1.TabIndex    = 2;
     this.Frame1.TabStop     = false;
     this.Frame1.Text        = "Frame1";
     //
     // _Lbl_7
     //
     this._Lbl_7.AutoSize    = true;
     this._Lbl_7.BackColor   = System.Drawing.SystemColors.Control;
     this._Lbl_7.Cursor      = System.Windows.Forms.Cursors.Default;
     this._Lbl_7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._Lbl_7.Location    = new System.Drawing.Point(280, 104);
     this._Lbl_7.Name        = "_Lbl_7";
     this._Lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._Lbl_7.Size        = new System.Drawing.Size(16, 13);
     this._Lbl_7.TabIndex    = 53;
     this._Lbl_7.Text        = "Id";
     this._Lbl_7.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblIDCliente
     //
     this.lblIDCliente.BackColor   = System.Drawing.SystemColors.Control;
     this.lblIDCliente.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblIDCliente.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblIDCliente.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblIDCliente.Location    = new System.Drawing.Point(296, 96);
     this.lblIDCliente.Name        = "lblIDCliente";
     this.lblIDCliente.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblIDCliente.Size        = new System.Drawing.Size(177, 25);
     this.lblIDCliente.TabIndex    = 26;
     //
     // _Lbl_1
     //
     this._Lbl_1.AutoSize    = true;
     this._Lbl_1.BackColor   = System.Drawing.SystemColors.Control;
     this._Lbl_1.Cursor      = System.Windows.Forms.Cursors.Default;
     this._Lbl_1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._Lbl_1.Location    = new System.Drawing.Point(16, 48);
     this._Lbl_1.Name        = "_Lbl_1";
     this._Lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._Lbl_1.Size        = new System.Drawing.Size(52, 13);
     this._Lbl_1.TabIndex    = 14;
     this._Lbl_1.Text        = "Direccion";
     this._Lbl_1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // _Lbl_2
     //
     this._Lbl_2.AutoSize    = true;
     this._Lbl_2.BackColor   = System.Drawing.SystemColors.Control;
     this._Lbl_2.Cursor      = System.Windows.Forms.Cursors.Default;
     this._Lbl_2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._Lbl_2.Location    = new System.Drawing.Point(16, 80);
     this._Lbl_2.Name        = "_Lbl_2";
     this._Lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._Lbl_2.Size        = new System.Drawing.Size(53, 13);
     this._Lbl_2.TabIndex    = 13;
     this._Lbl_2.Text        = "Localidad";
     this._Lbl_2.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // _Lbl_3
     //
     this._Lbl_3.AutoSize    = true;
     this._Lbl_3.BackColor   = System.Drawing.SystemColors.Control;
     this._Lbl_3.Cursor      = System.Windows.Forms.Cursors.Default;
     this._Lbl_3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._Lbl_3.Location    = new System.Drawing.Point(256, 80);
     this._Lbl_3.Name        = "_Lbl_3";
     this._Lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._Lbl_3.Size        = new System.Drawing.Size(51, 13);
     this._Lbl_3.TabIndex    = 12;
     this._Lbl_3.Text        = "Provincia";
     this._Lbl_3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblLocalidad
     //
     this.lblLocalidad.BackColor   = System.Drawing.SystemColors.Control;
     this.lblLocalidad.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblLocalidad.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblLocalidad.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblLocalidad.Location    = new System.Drawing.Point(72, 72);
     this.lblLocalidad.Name        = "lblLocalidad";
     this.lblLocalidad.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblLocalidad.Size        = new System.Drawing.Size(177, 20);
     this.lblLocalidad.TabIndex    = 11;
     //
     // lblDireccion
     //
     this.lblDireccion.BackColor   = System.Drawing.Color.Transparent;
     this.lblDireccion.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblDireccion.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblDireccion.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblDireccion.Location    = new System.Drawing.Point(72, 48);
     this.lblDireccion.Name        = "lblDireccion";
     this.lblDireccion.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblDireccion.Size        = new System.Drawing.Size(361, 20);
     this.lblDireccion.TabIndex    = 10;
     //
     // lblProvincia
     //
     this.lblProvincia.BackColor   = System.Drawing.SystemColors.Control;
     this.lblProvincia.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblProvincia.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblProvincia.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblProvincia.Location    = new System.Drawing.Point(304, 72);
     this.lblProvincia.Name        = "lblProvincia";
     this.lblProvincia.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblProvincia.Size        = new System.Drawing.Size(169, 20);
     this.lblProvincia.TabIndex    = 9;
     //
     // _Lbl_4
     //
     this._Lbl_4.AutoSize    = true;
     this._Lbl_4.BackColor   = System.Drawing.SystemColors.Control;
     this._Lbl_4.Cursor      = System.Windows.Forms.Cursors.Default;
     this._Lbl_4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._Lbl_4.Location    = new System.Drawing.Point(40, 104);
     this._Lbl_4.Name        = "_Lbl_4";
     this._Lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._Lbl_4.Size        = new System.Drawing.Size(32, 13);
     this._Lbl_4.TabIndex    = 8;
     this._Lbl_4.Text        = "CUIT";
     this._Lbl_4.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblCUIT
     //
     this.lblCUIT.BackColor   = System.Drawing.SystemColors.Control;
     this.lblCUIT.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblCUIT.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblCUIT.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblCUIT.Location    = new System.Drawing.Point(72, 96);
     this.lblCUIT.Name        = "lblCUIT";
     this.lblCUIT.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCUIT.Size        = new System.Drawing.Size(129, 20);
     this.lblCUIT.TabIndex    = 7;
     //
     // lblDolar
     //
     this.lblDolar.BackColor   = System.Drawing.SystemColors.Control;
     this.lblDolar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblDolar.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblDolar.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblDolar.Location    = new System.Drawing.Point(72, 120);
     this.lblDolar.Name        = "lblDolar";
     this.lblDolar.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblDolar.Size        = new System.Drawing.Size(81, 20);
     this.lblDolar.TabIndex    = 56;
     //
     // _Lbl_17
     //
     this._Lbl_17.AutoSize    = true;
     this._Lbl_17.BackColor   = System.Drawing.SystemColors.Control;
     this._Lbl_17.Cursor      = System.Windows.Forms.Cursors.Default;
     this._Lbl_17.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._Lbl_17.Location    = new System.Drawing.Point(40, 128);
     this._Lbl_17.Name        = "_Lbl_17";
     this._Lbl_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._Lbl_17.Size        = new System.Drawing.Size(32, 13);
     this._Lbl_17.TabIndex    = 5;
     this._Lbl_17.Text        = "Dolar";
     this._Lbl_17.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // txtCodBarNum
     //
     this.txtCodBarNum.AcceptsReturn = true;
     this.txtCodBarNum.BackColor     = System.Drawing.SystemColors.Window;
     this.txtCodBarNum.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCodBarNum.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCodBarNum.Location      = new System.Drawing.Point(112, 544);
     this.txtCodBarNum.MaxLength     = 0;
     this.txtCodBarNum.Name          = "txtCodBarNum";
     this.txtCodBarNum.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCodBarNum.Size          = new System.Drawing.Size(473, 20);
     this.txtCodBarNum.TabIndex      = 152;
     //
     // frFecha
     //
     this.frFecha.BackColor = System.Drawing.SystemColors.Control;
     this.frFecha.Controls.Add(this.dtFecha);
     this.frFecha.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.frFecha.Location    = new System.Drawing.Point(740, 63);
     this.frFecha.Name        = "frFecha";
     this.frFecha.Padding     = new System.Windows.Forms.Padding(0);
     this.frFecha.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.frFecha.Size        = new System.Drawing.Size(121, 49);
     this.frFecha.TabIndex    = 149;
     this.frFecha.TabStop     = false;
     this.frFecha.Text        = "Fecha";
     //
     // dtFecha
     //
     this.dtFecha.Format   = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtFecha.Location = new System.Drawing.Point(15, 16);
     this.dtFecha.Name     = "dtFecha";
     this.dtFecha.Size     = new System.Drawing.Size(90, 20);
     this.dtFecha.TabIndex = 88;
     this.dtFecha.Visible  = false;
     //
     // frNumFact
     //
     this.frNumFact.BackColor = System.Drawing.SystemColors.Control;
     this.frNumFact.Controls.Add(this.cmbSucursal);
     this.frNumFact.Controls.Add(this.txtNumFact);
     this.frNumFact.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.frNumFact.Location    = new System.Drawing.Point(536, 63);
     this.frNumFact.Name        = "frNumFact";
     this.frNumFact.Padding     = new System.Windows.Forms.Padding(0);
     this.frNumFact.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.frNumFact.Size        = new System.Drawing.Size(193, 41);
     this.frNumFact.TabIndex    = 148;
     this.frNumFact.TabStop     = false;
     this.frNumFact.Text        = "Nro Factura";
     //
     // cmbSucursal
     //
     this.cmbSucursal.BackColor = System.Drawing.SystemColors.Window;
     this.cmbSucursal.Cursor    = System.Windows.Forms.Cursors.Default;
     this.cmbSucursal.ForeColor = System.Drawing.SystemColors.WindowText;
     this.cmbSucursal.Items.AddRange(new object[] {
         "0001",
         "0002",
         "0003"
     });
     this.cmbSucursal.Location    = new System.Drawing.Point(16, 16);
     this.cmbSucursal.Name        = "cmbSucursal";
     this.cmbSucursal.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbSucursal.Size        = new System.Drawing.Size(65, 21);
     this.cmbSucursal.TabIndex    = 43;
     this.cmbSucursal.Text        = "0003";
     //
     // txtNumFact
     //
     this.txtNumFact.AcceptsReturn = true;
     this.txtNumFact.BackColor     = System.Drawing.SystemColors.Window;
     this.txtNumFact.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtNumFact.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtNumFact.Location      = new System.Drawing.Point(104, 16);
     this.txtNumFact.MaxLength     = 0;
     this.txtNumFact.Name          = "txtNumFact";
     this.txtNumFact.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtNumFact.Size          = new System.Drawing.Size(81, 20);
     this.txtNumFact.TabIndex      = 28;
     //
     // frTipoFC
     //
     this.frTipoFC.BackColor = System.Drawing.SystemColors.Control;
     this.frTipoFC.Controls.Add(this.lblCod_cbe);
     this.frTipoFC.Controls.Add(this.lblTipoFC);
     this.frTipoFC.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.frTipoFC.Location    = new System.Drawing.Point(416, 63);
     this.frTipoFC.Name        = "frTipoFC";
     this.frTipoFC.Padding     = new System.Windows.Forms.Padding(0);
     this.frTipoFC.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.frTipoFC.Size        = new System.Drawing.Size(114, 56);
     this.frTipoFC.TabIndex    = 147;
     this.frTipoFC.TabStop     = false;
     this.frTipoFC.Text        = "Tipo de Factura";
     //
     // lblCod_cbe
     //
     this.lblCod_cbe.BackColor   = System.Drawing.SystemColors.Control;
     this.lblCod_cbe.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblCod_cbe.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblCod_cbe.Location    = new System.Drawing.Point(53, 32);
     this.lblCod_cbe.Name        = "lblCod_cbe";
     this.lblCod_cbe.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCod_cbe.Size        = new System.Drawing.Size(24, 17);
     this.lblCod_cbe.TabIndex    = 61;
     this.lblCod_cbe.Text        = "01";
     //
     // lblTipoFC
     //
     this.lblTipoFC.AutoSize    = true;
     this.lblTipoFC.BackColor   = System.Drawing.SystemColors.Control;
     this.lblTipoFC.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblTipoFC.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblTipoFC.Location    = new System.Drawing.Point(56, 13);
     this.lblTipoFC.Name        = "lblTipoFC";
     this.lblTipoFC.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblTipoFC.Size        = new System.Drawing.Size(14, 13);
     this.lblTipoFC.TabIndex    = 58;
     this.lblTipoFC.Text        = "A";
     //
     // frDescuento
     //
     this.frDescuento.BackColor = System.Drawing.SystemColors.Control;
     this.frDescuento.Controls.Add(this.lblDescuento);
     this.frDescuento.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.frDescuento.Location    = new System.Drawing.Point(788, 147);
     this.frDescuento.Name        = "frDescuento";
     this.frDescuento.Padding     = new System.Windows.Forms.Padding(0);
     this.frDescuento.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.frDescuento.Size        = new System.Drawing.Size(73, 41);
     this.frDescuento.TabIndex    = 151;
     this.frDescuento.TabStop     = false;
     this.frDescuento.Text        = "Descuento";
     //
     // lblDescuento
     //
     this.lblDescuento.BackColor   = System.Drawing.SystemColors.Control;
     this.lblDescuento.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblDescuento.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblDescuento.Location    = new System.Drawing.Point(16, 16);
     this.lblDescuento.Name        = "lblDescuento";
     this.lblDescuento.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblDescuento.Size        = new System.Drawing.Size(41, 17);
     this.lblDescuento.TabIndex    = 45;
     this.lblDescuento.Text        = "0";
     this.lblDescuento.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // Frame3
     //
     this.Frame3.BackColor = System.Drawing.SystemColors.Control;
     this.Frame3.Controls.Add(this.optPeso);
     this.Frame3.Controls.Add(this.optDolar);
     this.Frame3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame3.Location    = new System.Drawing.Point(651, 138);
     this.Frame3.Name        = "Frame3";
     this.Frame3.Padding     = new System.Windows.Forms.Padding(0);
     this.Frame3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame3.Size        = new System.Drawing.Size(129, 50);
     this.Frame3.TabIndex    = 150;
     this.Frame3.TabStop     = false;
     //
     // optPeso
     //
     this.optPeso.Appearance              = System.Windows.Forms.Appearance.Button;
     this.optPeso.BackColor               = System.Drawing.SystemColors.Control;
     this.optPeso.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.optPeso.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.optPeso.Location                = new System.Drawing.Point(72, 16);
     this.optPeso.Name                    = "optPeso";
     this.optPeso.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.optPeso.Size                    = new System.Drawing.Size(49, 21);
     this.optPeso.TabIndex                = 42;
     this.optPeso.TabStop                 = true;
     this.optPeso.Text                    = "Peso";
     this.optPeso.TextAlign               = System.Drawing.ContentAlignment.MiddleCenter;
     this.optPeso.UseVisualStyleBackColor = false;
     //
     // optDolar
     //
     this.optDolar.Appearance              = System.Windows.Forms.Appearance.Button;
     this.optDolar.BackColor               = System.Drawing.SystemColors.Control;
     this.optDolar.Checked                 = true;
     this.optDolar.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.optDolar.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.optDolar.Location                = new System.Drawing.Point(8, 16);
     this.optDolar.Name                    = "optDolar";
     this.optDolar.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.optDolar.Size                    = new System.Drawing.Size(53, 21);
     this.optDolar.TabIndex                = 41;
     this.optDolar.TabStop                 = true;
     this.optDolar.Text                    = "Dolar";
     this.optDolar.TextAlign               = System.Drawing.ContentAlignment.MiddleCenter;
     this.optDolar.UseVisualStyleBackColor = false;
     //
     // lblToken
     //
     this.lblToken.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblToken.Location    = new System.Drawing.Point(1035, 276);
     this.lblToken.Name        = "lblToken";
     this.lblToken.Size        = new System.Drawing.Size(167, 38);
     this.lblToken.TabIndex    = 159;
     this.lblToken.Text        = "label1";
     //
     // lblSign
     //
     this.lblSign.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblSign.Location    = new System.Drawing.Point(1043, 338);
     this.lblSign.Name        = "lblSign";
     this.lblSign.Size        = new System.Drawing.Size(126, 56);
     this.lblSign.TabIndex    = 160;
     this.lblSign.Text        = "label1";
     //
     // frmDocumentoFiscal
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(1301, 750);
     this.Controls.Add(this.lblSign);
     this.Controls.Add(this.lblToken);
     this.Controls.Add(this.Toolbar1);
     this.Controls.Add(this.Calendario);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.gridDatos);
     this.Controls.Add(this.PictureBox1);
     this.Controls.Add(this.TabControl1);
     this.Controls.Add(this.frCliente);
     this.Controls.Add(this.txtCodBarNum);
     this.Controls.Add(this.frFecha);
     this.Controls.Add(this.frNumFact);
     this.Controls.Add(this.frTipoFC);
     this.Controls.Add(this.frDescuento);
     this.Controls.Add(this.Frame3);
     this.Name        = "frmDocumentoFiscal";
     this.Text        = "frmDocumentoFiscal";
     this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
     this.Load       += new System.EventHandler(this.FrmDocumentoFiscalLoad);
     this.Toolbar1.ResumeLayout(false);
     this.Toolbar1.PerformLayout();
     this.GroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.gridDatos)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.PictureBox1)).EndInit();
     this.frCliente.ResumeLayout(false);
     this.frCliente.PerformLayout();
     this.frFecha.ResumeLayout(false);
     this.frNumFact.ResumeLayout(false);
     this.frNumFact.PerformLayout();
     this.frTipoFC.ResumeLayout(false);
     this.frTipoFC.PerformLayout();
     this.frDescuento.ResumeLayout(false);
     this.Frame3.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 22
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     listBoxSources              = new System.Windows.Forms.ListBox();
     buttonAddFiles              = new System.Windows.Forms.Button();
     buttonReset                 = new System.Windows.Forms.Button();
     groupBox1                   = new System.Windows.Forms.GroupBox();
     radioButtonEM10MarkII       = new System.Windows.Forms.RadioButton();
     radioButtonEM10             = new System.Windows.Forms.RadioButton();
     groupBox2                   = new System.Windows.Forms.GroupBox();
     buttonAddFolder             = new System.Windows.Forms.Button();
     checkBoxIncludeSubfolders   = new System.Windows.Forms.CheckBox();
     groupBox3                   = new System.Windows.Forms.GroupBox();
     buttonFolder                = new System.Windows.Forms.Button();
     textBoxFolder               = new System.Windows.Forms.TextBox();
     checkBoxOverwrite           = new System.Windows.Forms.CheckBox();
     radioButtonFolder           = new System.Windows.Forms.RadioButton();
     radioButtonOriginalLocation =
         new System.Windows.Forms.RadioButton();
     buttonConvert = new System.Windows.Forms.Button();
     folderBrowserDialogDestination =
         new System.Windows.Forms.FolderBrowserDialog();
     openFileDialogAddFiles       = new System.Windows.Forms.OpenFileDialog();
     folderBrowserDialogAddFolder =
         new System.Windows.Forms.FolderBrowserDialog();
     groupBox1.SuspendLayout();
     groupBox2.SuspendLayout();
     groupBox3.SuspendLayout();
     SuspendLayout();
     //
     // listBoxSources
     //
     listBoxSources.AllowDrop           = true;
     listBoxSources.FormattingEnabled   = true;
     listBoxSources.HorizontalScrollbar = true;
     listBoxSources.IntegralHeight      = false;
     listBoxSources.ItemHeight          = 31;
     listBoxSources.Location            = new System.Drawing.Point(17, 37);
     listBoxSources.Name          = "listBoxSources";
     listBoxSources.SelectionMode =
         System.Windows.Forms.SelectionMode.MultiExtended;
     listBoxSources.Size      = new System.Drawing.Size(931, 697);
     listBoxSources.Sorted    = true;
     listBoxSources.TabIndex  = 0;
     listBoxSources.DragDrop +=
         new System.Windows.Forms.DragEventHandler(
             listBoxSources_DragDrop);
     listBoxSources.DragEnter +=
         new System.Windows.Forms.DragEventHandler(
             listBoxSources_DragEnter);
     //
     // buttonAddFiles
     //
     buttonAddFiles.Location = new System.Drawing.Point(591, 751);
     buttonAddFiles.Name     = "buttonAddFiles";
     buttonAddFiles.Size     = new System.Drawing.Size(200, 59);
     buttonAddFiles.TabIndex = 3;
     buttonAddFiles.Text     = "&Add files...";
     buttonAddFiles.UseVisualStyleBackColor = true;
     buttonAddFiles.Click += new System.EventHandler(
         buttonAddFiles_Click);
     //
     // buttonReset
     //
     buttonReset.Location = new System.Drawing.Point(797, 751);
     buttonReset.Name     = "buttonReset";
     buttonReset.Size     = new System.Drawing.Size(150, 59);
     buttonReset.TabIndex = 4;
     buttonReset.Text     = "&Reset";
     buttonReset.UseVisualStyleBackColor = true;
     buttonReset.Click += new System.EventHandler(
         buttonReset_Click);
     //
     // groupBox1
     //
     groupBox1.Controls.Add(radioButtonEM10MarkII);
     groupBox1.Controls.Add(radioButtonEM10);
     groupBox1.Location = new System.Drawing.Point(998, 16);
     groupBox1.Name     = "groupBox1";
     groupBox1.Size     = new System.Drawing.Size(555, 130);
     groupBox1.TabIndex = 1;
     groupBox1.TabStop  = false;
     groupBox1.Text     = "Convert &to";
     //
     // radioButtonEM10MarkII
     //
     radioButtonEM10MarkII.AutoSize = true;
     radioButtonEM10MarkII.Location = new System.Drawing.Point(16, 79);
     radioButtonEM10MarkII.Name     = "radioButtonEM10MarkII";
     radioButtonEM10MarkII.Size     = new System.Drawing.Size(306, 36);
     radioButtonEM10MarkII.TabIndex = 1;
     radioButtonEM10MarkII.Text     = "OM-D E-M10 Mark II";
     radioButtonEM10MarkII.UseVisualStyleBackColor = true;
     //
     // radioButtonEM10
     //
     radioButtonEM10.AutoSize = true;
     radioButtonEM10.Location = new System.Drawing.Point(16, 37);
     radioButtonEM10.Name     = "radioButtonEM10";
     radioButtonEM10.Size     = new System.Drawing.Size(216, 36);
     radioButtonEM10.TabIndex = 0;
     radioButtonEM10.TabStop  = true;
     radioButtonEM10.Text     = "OM-D E-M10";
     radioButtonEM10.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     groupBox2.Controls.Add(buttonAddFolder);
     groupBox2.Controls.Add(checkBoxIncludeSubfolders);
     groupBox2.Controls.Add(buttonAddFiles);
     groupBox2.Controls.Add(buttonReset);
     groupBox2.Controls.Add(listBoxSources);
     groupBox2.Location = new System.Drawing.Point(16, 16);
     groupBox2.Name     = "groupBox2";
     groupBox2.Size     = new System.Drawing.Size(966, 826);
     groupBox2.TabIndex = 0;
     groupBox2.TabStop  = false;
     groupBox2.Text     =
         "&Items to convert (add or drop files and folders here)";
     //
     // buttonAddFolder
     //
     buttonAddFolder.Location = new System.Drawing.Point(385, 751);
     buttonAddFolder.Name     = "buttonAddFolder";
     buttonAddFolder.Size     = new System.Drawing.Size(200, 59);
     buttonAddFolder.TabIndex = 2;
     buttonAddFolder.Text     = "A&dd folder...";
     buttonAddFolder.UseVisualStyleBackColor = true;
     buttonAddFolder.Click +=
         new System.EventHandler(buttonAddFolder_Click);
     //
     // checkBoxIncludeSubfolders
     //
     checkBoxIncludeSubfolders.AutoSize = true;
     checkBoxIncludeSubfolders.Checked  =
         global::ORFConverter.Properties.Settings.Default.Recurse;
     checkBoxIncludeSubfolders.CheckState =
         System.Windows.Forms.CheckState.Checked;
     checkBoxIncludeSubfolders.DataBindings.Add(
         new System.Windows.Forms.Binding(
             "Checked",
             global::ORFConverter.Properties.Settings.Default,
             "Recurse",
             true,
             System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     checkBoxIncludeSubfolders.Location =
         new System.Drawing.Point(17, 763);
     checkBoxIncludeSubfolders.Name     = "checkBoxIncludeSubfolders";
     checkBoxIncludeSubfolders.Size     = new System.Drawing.Size(284, 36);
     checkBoxIncludeSubfolders.TabIndex = 1;
     checkBoxIncludeSubfolders.Text     = "Include &subfolders";
     checkBoxIncludeSubfolders.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     groupBox3.Controls.Add(buttonFolder);
     groupBox3.Controls.Add(textBoxFolder);
     groupBox3.Controls.Add(checkBoxOverwrite);
     groupBox3.Controls.Add(radioButtonFolder);
     groupBox3.Controls.Add(radioButtonOriginalLocation);
     groupBox3.Location = new System.Drawing.Point(998, 152);
     groupBox3.Name     = "groupBox3";
     groupBox3.Size     = new System.Drawing.Size(555, 225);
     groupBox3.TabIndex = 2;
     groupBox3.TabStop  = false;
     groupBox3.Text     = "&Destination";
     //
     // buttonFolder
     //
     buttonFolder.Enabled  = false;
     buttonFolder.Location = new System.Drawing.Point(485, 165);
     buttonFolder.Name     = "buttonFolder";
     buttonFolder.Size     = new System.Drawing.Size(49, 38);
     buttonFolder.TabIndex = 4;
     buttonFolder.Text     = "&...";
     buttonFolder.UseVisualStyleBackColor = true;
     buttonFolder.Click +=
         new System.EventHandler(buttonFolder_Click);
     //
     // textBoxFolder
     //
     textBoxFolder.AllowDrop = true;
     textBoxFolder.DataBindings.Add(new System.Windows.Forms.Binding(
                                        "Text",
                                        global::ORFConverter.Properties.Settings.Default,
                                        "DestinationFolderText",
                                        true,
                                        System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     textBoxFolder.Enabled  = false;
     textBoxFolder.Location = new System.Drawing.Point(56, 165);
     textBoxFolder.Name     = "textBoxFolder";
     textBoxFolder.Size     = new System.Drawing.Size(422, 38);
     textBoxFolder.TabIndex = 3;
     textBoxFolder.Text     =
         global::ORFConverter.Properties.Settings.Default.
         DestinationFolderText;
     textBoxFolder.TextChanged +=
         new System.EventHandler(textBoxFolder_TextChanged);
     textBoxFolder.DragDrop +=
         new System.Windows.Forms.DragEventHandler(textBoxFolder_DragDrop);
     textBoxFolder.DragEnter +=
         new System.Windows.Forms.DragEventHandler(textBoxFolder_DragEnter);
     //
     // checkBoxOverwrite
     //
     checkBoxOverwrite.AutoSize = true;
     checkBoxOverwrite.Checked  =
         global::ORFConverter.Properties.Settings.Default.Overwrite;
     checkBoxOverwrite.DataBindings.Add(
         new System.Windows.Forms.Binding(
             "Checked", global::ORFConverter.Properties.Settings.Default,
             "Overwrite",
             true,
             System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     checkBoxOverwrite.Location = new System.Drawing.Point(56, 80);
     checkBoxOverwrite.Name     = "checkBoxOverwrite";
     checkBoxOverwrite.Size     = new System.Drawing.Size(320, 36);
     checkBoxOverwrite.TabIndex = 1;
     checkBoxOverwrite.Text     = "Over&write original file";
     checkBoxOverwrite.UseVisualStyleBackColor = true;
     //
     // radioButtonFolder
     //
     radioButtonFolder.AutoSize = true;
     radioButtonFolder.Location = new System.Drawing.Point(16, 122);
     radioButtonFolder.Name     = "radioButtonFolder";
     radioButtonFolder.Size     = new System.Drawing.Size(141, 36);
     radioButtonFolder.TabIndex = 2;
     radioButtonFolder.Text     = "Folder:";
     radioButtonFolder.UseVisualStyleBackColor = true;
     radioButtonFolder.CheckedChanged         +=
         new System.EventHandler(radioButtonFolder_CheckedChanged);
     //
     // radioButtonOriginalLocation
     //
     radioButtonOriginalLocation.AutoSize = true;
     radioButtonOriginalLocation.Location = new System.Drawing.Point(16, 38);
     radioButtonOriginalLocation.Name     = "radioButtonOriginalLocation";
     radioButtonOriginalLocation.Size     = new System.Drawing.Size(259, 36);
     radioButtonOriginalLocation.TabIndex = 0;
     radioButtonOriginalLocation.TabStop  = true;
     radioButtonOriginalLocation.Text     = "Original location";
     radioButtonOriginalLocation.UseVisualStyleBackColor = true;
     radioButtonOriginalLocation.CheckedChanged         +=
         new System.EventHandler(radioButtonOriginalLocation_CheckedChanged);
     //
     // buttonConvert
     //
     buttonConvert.Enabled = false;
     buttonConvert.Font    = new System.Drawing.Font(
         "Arial", 12F, System.Drawing.FontStyle.Bold,
         System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     buttonConvert.Location = new System.Drawing.Point(1233, 762);
     buttonConvert.Name     = "buttonConvert";
     buttonConvert.Size     = new System.Drawing.Size(320, 80);
     buttonConvert.TabIndex = 3;
     buttonConvert.Text     = "&Convert";
     buttonConvert.UseVisualStyleBackColor = true;
     buttonConvert.Click += new System.EventHandler(buttonConvert_Click);
     //
     // folderBrowserDialogDestination
     //
     folderBrowserDialogDestination.Description =
         "Select destination folder into which converted files will be " +
         "written:";
     //
     // openFileDialogAddFiles
     //
     openFileDialogAddFiles.Filter      = "Olympus raw files (*.ORF)|*.ORF";
     openFileDialogAddFiles.Multiselect = true;
     openFileDialogAddFiles.Title       = "Select files to convert";
     //
     // folderBrowserDialogAddFolder
     //
     folderBrowserDialogAddFolder.Description =
         "Select folder containing files to be converted:";
     folderBrowserDialogAddFolder.ShowNewFolderButton = false;
     //
     // FormMain
     //
     AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
     AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     AutoSize            = true;
     AutoSizeMode        = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     ClientSize          = new System.Drawing.Size(1568, 892);
     Controls.Add(buttonConvert);
     Controls.Add(groupBox3);
     Controls.Add(groupBox1);
     Controls.Add(groupBox2);
     MaximizeBox   = false;
     Name          = "FormMain";
     Padding       = new System.Windows.Forms.Padding(12);
     SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     Text          = "Olympus RAW File Converter";
     FormClosed   +=
         new System.Windows.Forms.FormClosedEventHandler(FormMain_FormClosed);
     Load += new System.EventHandler(FormMain_Load);
     groupBox1.ResumeLayout(false);
     groupBox1.PerformLayout();
     groupBox2.ResumeLayout(false);
     groupBox2.PerformLayout();
     groupBox3.ResumeLayout(false);
     groupBox3.PerformLayout();
     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.txtExpression = new System.Windows.Forms.TextBox();
     this.txtSql = new System.Windows.Forms.TextBox();
     this.btnQuery = new System.Windows.Forms.Button();
     this.chkUseOriginal = new System.Windows.Forms.CheckBox();
     this.radioQuery1 = new System.Windows.Forms.RadioButton();
     this.radioQuery2 = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // txtExpression
     //
     this.txtExpression.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtExpression.Location = new System.Drawing.Point(12, 11);
     this.txtExpression.Multiline = true;
     this.txtExpression.Name = "txtExpression";
     this.txtExpression.ReadOnly = true;
     this.txtExpression.Size = new System.Drawing.Size(661, 69);
     this.txtExpression.TabIndex = 0;
     //
     // txtSql
     //
     this.txtSql.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.txtSql.Location = new System.Drawing.Point(13, 86);
     this.txtSql.Multiline = true;
     this.txtSql.Name = "txtSql";
     this.txtSql.Size = new System.Drawing.Size(660, 192);
     this.txtSql.TabIndex = 1;
     //
     // btnQuery
     //
     this.btnQuery.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnQuery.Location = new System.Drawing.Point(609, 284);
     this.btnQuery.Name = "btnQuery";
     this.btnQuery.Size = new System.Drawing.Size(64, 23);
     this.btnQuery.TabIndex = 3;
     this.btnQuery.Text = "Execute";
     this.btnQuery.UseVisualStyleBackColor = true;
     this.btnQuery.Click += new System.EventHandler(this.btnQuery_Click);
     //
     // chkUseOriginal
     //
     this.chkUseOriginal.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkUseOriginal.AutoSize = true;
     this.chkUseOriginal.Location = new System.Drawing.Point(13, 286);
     this.chkUseOriginal.Name = "chkUseOriginal";
     this.chkUseOriginal.Size = new System.Drawing.Size(90, 17);
     this.chkUseOriginal.TabIndex = 4;
     this.chkUseOriginal.Text = "Original query";
     this.chkUseOriginal.UseVisualStyleBackColor = true;
     this.chkUseOriginal.CheckedChanged += new System.EventHandler(this.chkIncludeParams_CheckedChanged);
     //
     // radioQuery1
     //
     this.radioQuery1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.radioQuery1.AutoSize = true;
     this.radioQuery1.Location = new System.Drawing.Point(150, 286);
     this.radioQuery1.Name = "radioQuery1";
     this.radioQuery1.Size = new System.Drawing.Size(62, 17);
     this.radioQuery1.TabIndex = 5;
     this.radioQuery1.TabStop = true;
     this.radioQuery1.Text = "Query 1";
     this.radioQuery1.UseVisualStyleBackColor = true;
     this.radioQuery1.Visible = false;
     this.radioQuery1.CheckedChanged += new System.EventHandler(this.radioQuery1_CheckedChanged);
     //
     // radioQuery2
     //
     this.radioQuery2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.radioQuery2.AutoSize = true;
     this.radioQuery2.Location = new System.Drawing.Point(218, 285);
     this.radioQuery2.Name = "radioQuery2";
     this.radioQuery2.Size = new System.Drawing.Size(62, 17);
     this.radioQuery2.TabIndex = 6;
     this.radioQuery2.TabStop = true;
     this.radioQuery2.Text = "Query 2";
     this.radioQuery2.UseVisualStyleBackColor = true;
     this.radioQuery2.Visible = false;
     //
     // QueryVisualizerForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(685, 308);
     this.Controls.Add(this.radioQuery2);
     this.Controls.Add(this.radioQuery1);
     this.Controls.Add(this.chkUseOriginal);
     this.Controls.Add(this.btnQuery);
     this.Controls.Add(this.txtSql);
     this.Controls.Add(this.txtExpression);
     this.Name = "QueryVisualizerForm";
     this.Text = "Linq to Sql Query Visualizer";
     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()
 {
     Syncfusion.Windows.Forms.Chart.ChartSeries                  chartSeries1                  = new Syncfusion.Windows.Forms.Chart.ChartSeries();
     Syncfusion.Windows.Forms.Chart.ChartBorder                  chartBorder1                  = new Syncfusion.Windows.Forms.Chart.ChartBorder();
     Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo         chartCustomShapeInfo1         = new Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo();
     Syncfusion.Windows.Forms.Chart.ChartLineInfo                chartLineInfo1                = new Syncfusion.Windows.Forms.Chart.ChartLineInfo();
     Syncfusion.Windows.Forms.Chart.ChartSeries                  chartSeries2                  = new Syncfusion.Windows.Forms.Chart.ChartSeries();
     Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo         chartCustomShapeInfo2         = new Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo();
     Syncfusion.Windows.Forms.Chart.ChartSeries                  chartSeries3                  = new Syncfusion.Windows.Forms.Chart.ChartSeries();
     Syncfusion.Windows.Forms.Chart.ChartBorder                  chartBorder2                  = new Syncfusion.Windows.Forms.Chart.ChartBorder();
     Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo         chartCustomShapeInfo3         = new Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo();
     Syncfusion.Windows.Forms.Chart.ChartLineInfo                chartLineInfo2                = new Syncfusion.Windows.Forms.Chart.ChartLineInfo();
     Syncfusion.Windows.Forms.Chart.ChartSeries                  chartSeries4                  = new Syncfusion.Windows.Forms.Chart.ChartSeries();
     Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo         chartCustomShapeInfo4         = new Syncfusion.Windows.Forms.Chart.ChartCustomShapeInfo();
     Syncfusion.Windows.Forms.Chart.ChartToolBarSaveItem         chartToolBarSaveItem1         = new Syncfusion.Windows.Forms.Chart.ChartToolBarSaveItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarCopyItem         chartToolBarCopyItem1         = new Syncfusion.Windows.Forms.Chart.ChartToolBarCopyItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarPrintItem        chartToolBarPrintItem1        = new Syncfusion.Windows.Forms.Chart.ChartToolBarPrintItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarPrintPreviewItem chartToolBarPrintPreviewItem1 = new Syncfusion.Windows.Forms.Chart.ChartToolBarPrintPreviewItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarSplitter         chartToolBarSplitter1         = new Syncfusion.Windows.Forms.Chart.ChartToolBarSplitter();
     Syncfusion.Windows.Forms.Chart.ChartToolBarPaletteItem      chartToolBarPaletteItem1      = new Syncfusion.Windows.Forms.Chart.ChartToolBarPaletteItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarStyleItem        chartToolBarStyleItem1        = new Syncfusion.Windows.Forms.Chart.ChartToolBarStyleItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarTypeItem         chartToolBarTypeItem1         = new Syncfusion.Windows.Forms.Chart.ChartToolBarTypeItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarSeries3DItem     chartToolBarSeries3DItem1     = new Syncfusion.Windows.Forms.Chart.ChartToolBarSeries3DItem();
     Syncfusion.Windows.Forms.Chart.ChartToolBarShowLegendItem   chartToolBarShowLegendItem1   = new Syncfusion.Windows.Forms.Chart.ChartToolBarShowLegendItem();
     this.accountsChart          = new Syncfusion.Windows.Forms.Chart.ChartControl();
     this.n                      = new System.Windows.Forms.TableLayoutPanel();
     this.accountChartPanel      = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.label1                 = new System.Windows.Forms.Label();
     this.contributionChartPanel = new Syncfusion.Windows.Forms.Tools.GradientPanel();
     this.panel1                 = new System.Windows.Forms.Panel();
     this.groupBox1              = new System.Windows.Forms.GroupBox();
     this.countryRadioButton     = new System.Windows.Forms.RadioButton();
     this.sectorRadioButton      = new System.Windows.Forms.RadioButton();
     this.contributionChart      = new Syncfusion.Windows.Forms.Chart.ChartControl();
     this.n.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.accountChartPanel)).BeginInit();
     this.accountChartPanel.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.contributionChartPanel)).BeginInit();
     this.contributionChartPanel.SuspendLayout();
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // accountsChart
     //
     this.accountsChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.accountsChart.BackInterior             = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.White, System.Drawing.Color.White);
     this.accountsChart.ChartArea.BackInterior   = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.accountsChart.ChartArea.CursorLocation = new System.Drawing.Point(0, 0);
     this.accountsChart.ChartArea.CursorReDraw   = false;
     this.accountsChart.ChartInterior            = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.accountsChart.CustomPalette            = new System.Drawing.Color[] {
         System.Drawing.Color.FromArgb(((int)(((byte)(162)))), ((int)(((byte)(206)))), ((int)(((byte)(54))))),
         System.Drawing.Color.FromArgb(((int)(((byte)(249)))), ((int)(((byte)(65)))), ((int)(((byte)(104))))),
         System.Drawing.Color.FromArgb(((int)(((byte)(119)))), ((int)(((byte)(119)))), ((int)(((byte)(247))))),
         System.Drawing.Color.FromArgb(((int)(((byte)(239)))), ((int)(((byte)(187)))), ((int)(((byte)(20))))),
         System.Drawing.Color.FromArgb(((int)(((byte)(244)))), ((int)(((byte)(127)))), ((int)(((byte)(49))))),
         System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(0)))), ((int)(((byte)(115)))))
     };
     this.accountsChart.DataSourceName  = "";
     this.accountsChart.ElementsSpacing = 4;
     this.accountsChart.Font            = new System.Drawing.Font("Segoe UI", 8.25F);
     this.accountsChart.ForeColor       = System.Drawing.SystemColors.ControlText;
     this.accountsChart.IsWindowLess    = false;
     //
     //
     //
     this.accountsChart.Legend.Location        = new System.Drawing.Point(289, 75);
     this.accountsChart.Legend.Visible         = false;
     this.accountsChart.Localize               = null;
     this.accountsChart.Location               = new System.Drawing.Point(3, 37);
     this.accountsChart.Name                   = "accountsChart";
     this.accountsChart.PrimaryXAxis.Crossing  = double.NaN;
     this.accountsChart.PrimaryXAxis.DrawGrid  = false;
     this.accountsChart.PrimaryXAxis.Font      = new System.Drawing.Font("Segoe UI", 8.25F);
     this.accountsChart.PrimaryXAxis.ForeColor = System.Drawing.SystemColors.ControlText;
     this.accountsChart.PrimaryXAxis.GridLineType.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(231)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryXAxis.LineType.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(231)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryXAxis.Margin                 = true;
     this.accountsChart.PrimaryXAxis.TickColor              = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryXAxis.TitleColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryXAxis.ValueType              = Syncfusion.Windows.Forms.Chart.ChartValueType.Custom;
     this.accountsChart.PrimaryYAxis.Crossing               = double.NaN;
     this.accountsChart.PrimaryYAxis.Font                   = new System.Drawing.Font("Segoe UI", 8.25F);
     this.accountsChart.PrimaryYAxis.ForceZero              = true;
     this.accountsChart.PrimaryYAxis.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.accountsChart.PrimaryYAxis.GridLineType.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(231)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryYAxis.LineType.ForeColor     = System.Drawing.Color.FromArgb(((int)(((byte)(222)))), ((int)(((byte)(231)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryYAxis.Margin                 = true;
     this.accountsChart.PrimaryYAxis.TickColor              = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     this.accountsChart.PrimaryYAxis.TitleColor             = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
     chartSeries1.FancyToolTip.ResizeInsideSymbol           = true;
     chartSeries1.Name = "Default0";
     chartSeries1.Points.Add(1D, ((double)(55D)));
     chartSeries1.Points.Add(2D, ((double)(70D)));
     chartSeries1.Points.Add(3D, ((double)(80D)));
     chartSeries1.Points.Add(4D, ((double)(65D)));
     chartSeries1.Points.Add(5D, ((double)(75D)));
     chartSeries1.Resolution          = 0D;
     chartSeries1.StackingGroup       = "Default Group";
     chartSeries1.Style.AltTagFormat  = "";
     chartSeries1.Style.DrawTextShape = false;
     chartSeries1.Style.Symbol.Border = chartLineInfo1;
     chartSeries1.Style.Font.Facename = "Microsoft Sans Serif";
     chartLineInfo1.Alignment         = System.Drawing.Drawing2D.PenAlignment.Center;
     chartLineInfo1.Color             = System.Drawing.SystemColors.ControlText;
     chartLineInfo1.DashPattern       = null;
     chartLineInfo1.DashStyle         = System.Drawing.Drawing2D.DashStyle.Solid;
     chartLineInfo1.Width             = 1F;
     chartCustomShapeInfo1.Border     = chartLineInfo1;
     chartCustomShapeInfo1.Color      = System.Drawing.SystemColors.HighlightText;
     chartCustomShapeInfo1.Type       = Syncfusion.Windows.Forms.Chart.ChartCustomShape.Square;
     chartSeries1.Style.TextShape     = chartCustomShapeInfo1;
     chartSeries1.Text = "Default0";
     chartSeries2.FancyToolTip.ResizeInsideSymbol = true;
     chartSeries2.Name = "Default1";
     chartSeries2.Points.Add(1D, ((double)(70D)));
     chartSeries2.Points.Add(2D, ((double)(35D)));
     chartSeries2.Points.Add(3D, ((double)(65D)));
     chartSeries2.Points.Add(4D, ((double)(25D)));
     chartSeries2.Points.Add(5D, ((double)(50D)));
     chartSeries2.Resolution          = 0D;
     chartSeries2.StackingGroup       = "Default Group";
     chartSeries2.Style.AltTagFormat  = "";
     chartSeries2.Style.DrawTextShape = false;
     chartSeries2.Style.Symbol.Border = chartLineInfo1;
     chartSeries2.Style.Font.Facename = "Microsoft Sans Serif";
     chartCustomShapeInfo2.Border     = chartLineInfo1;
     chartCustomShapeInfo2.Color      = System.Drawing.SystemColors.HighlightText;
     chartCustomShapeInfo2.Type       = Syncfusion.Windows.Forms.Chart.ChartCustomShape.Square;
     chartSeries2.Style.TextShape     = chartCustomShapeInfo2;
     chartSeries2.Text = "Default1";
     this.accountsChart.Series.Add(chartSeries1);
     this.accountsChart.Series.Add(chartSeries2);
     this.accountsChart.Size     = new System.Drawing.Size(443, 412);
     this.accountsChart.TabIndex = 0;
     this.accountsChart.Text     = "Portfolio Accounts";
     //
     //
     //
     this.accountsChart.Title.Font      = new System.Drawing.Font("Segoe UI", 14F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.accountsChart.Title.ForeColor = System.Drawing.SystemColors.ControlText;
     this.accountsChart.Title.Name      = "Default";
     this.accountsChart.Titles.Add(this.accountsChart.Title);
     //
     // n
     //
     this.n.BackColor   = System.Drawing.Color.White;
     this.n.ColumnCount = 2;
     this.n.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 49.83992F));
     this.n.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50.16008F));
     this.n.Controls.Add(this.accountChartPanel, 0, 0);
     this.n.Controls.Add(this.contributionChartPanel, 1, 0);
     this.n.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.n.Font     = new System.Drawing.Font("Segoe UI", 8.25F);
     this.n.Location = new System.Drawing.Point(0, 0);
     this.n.Name     = "n";
     this.n.RowCount = 1;
     this.n.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 12.92776F));
     this.n.Size     = new System.Drawing.Size(937, 467);
     this.n.TabIndex = 1;
     //
     // accountChartPanel
     //
     this.accountChartPanel.BackColor       = System.Drawing.Color.White;
     this.accountChartPanel.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.White, System.Drawing.Color.White);
     this.accountChartPanel.BorderColor     = System.Drawing.Color.Transparent;
     this.accountChartPanel.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.accountChartPanel.Controls.Add(this.label1);
     this.accountChartPanel.Controls.Add(this.accountsChart);
     this.accountChartPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.accountChartPanel.Font     = new System.Drawing.Font("Segoe UI", 8.25F);
     this.accountChartPanel.Location = new System.Drawing.Point(3, 3);
     this.accountChartPanel.Name     = "accountChartPanel";
     this.accountChartPanel.Size     = new System.Drawing.Size(461, 461);
     this.accountChartPanel.TabIndex = 2;
     //
     // label1
     //
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font      = new System.Drawing.Font("Segoe UI", 11F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.label1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label1.Location  = new System.Drawing.Point(3, 16);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(425, 18);
     this.label1.TabIndex  = 0;
     this.label1.Text      = "Click the Portfolio accounts to DrillDown by Contributions";
     //
     // contributionChartPanel
     //
     this.contributionChartPanel.BackColor       = System.Drawing.Color.White;
     this.contributionChartPanel.BackgroundColor = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.White, System.Drawing.Color.White);
     this.contributionChartPanel.BorderColor     = System.Drawing.Color.Transparent;
     this.contributionChartPanel.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this.contributionChartPanel.Controls.Add(this.panel1);
     this.contributionChartPanel.Controls.Add(this.contributionChart);
     this.contributionChartPanel.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.contributionChartPanel.Font     = new System.Drawing.Font("Segoe UI", 8.25F);
     this.contributionChartPanel.Location = new System.Drawing.Point(470, 3);
     this.contributionChartPanel.Name     = "contributionChartPanel";
     this.contributionChartPanel.Size     = new System.Drawing.Size(464, 461);
     this.contributionChartPanel.TabIndex = 3;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.groupBox1);
     this.panel1.Location = new System.Drawing.Point(23, 3);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(198, 56);
     this.panel1.TabIndex = 4;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.countryRadioButton);
     this.groupBox1.Controls.Add(this.sectorRadioButton);
     this.groupBox1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.groupBox1.Font     = new System.Drawing.Font("Segoe UI", 10F);
     this.groupBox1.Location = new System.Drawing.Point(0, 0);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(198, 56);
     this.groupBox1.TabIndex = 3;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "GroupBy Options";
     //
     // countryRadioButton
     //
     this.countryRadioButton.AutoSize  = true;
     this.countryRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.countryRadioButton.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.countryRadioButton.ForeColor = System.Drawing.SystemColors.ControlText;
     this.countryRadioButton.Location  = new System.Drawing.Point(98, 26);
     this.countryRadioButton.Name      = "countryRadioButton";
     this.countryRadioButton.Size      = new System.Drawing.Size(77, 23);
     this.countryRadioButton.TabIndex  = 2;
     this.countryRadioButton.TabStop   = true;
     this.countryRadioButton.Text      = "Country";
     this.countryRadioButton.UseVisualStyleBackColor = false;
     this.countryRadioButton.CheckedChanged         += new System.EventHandler(this.radioButton3_CheckedChanged);
     //
     // sectorRadioButton
     //
     this.sectorRadioButton.AutoSize  = true;
     this.sectorRadioButton.BackColor = System.Drawing.Color.Transparent;
     this.sectorRadioButton.Font      = new System.Drawing.Font("Segoe UI", 10F);
     this.sectorRadioButton.ForeColor = System.Drawing.SystemColors.ControlText;
     this.sectorRadioButton.Location  = new System.Drawing.Point(6, 26);
     this.sectorRadioButton.Name      = "sectorRadioButton";
     this.sectorRadioButton.Size      = new System.Drawing.Size(65, 23);
     this.sectorRadioButton.TabIndex  = 0;
     this.sectorRadioButton.TabStop   = true;
     this.sectorRadioButton.Text      = "Sector";
     this.sectorRadioButton.UseVisualStyleBackColor = false;
     this.sectorRadioButton.CheckedChanged         += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // contributionChart
     //
     this.contributionChart.AllowGradientPalette = true;
     this.contributionChart.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                            | System.Windows.Forms.AnchorStyles.Left)
                                                                           | System.Windows.Forms.AnchorStyles.Right)));
     this.contributionChart.BackInterior             = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.White, System.Drawing.Color.White);
     this.contributionChart.ChartArea.BackInterior   = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.contributionChart.ChartArea.CursorLocation = new System.Drawing.Point(0, 0);
     this.contributionChart.ChartArea.CursorReDraw   = false;
     this.contributionChart.ChartAreaMargins         = new Syncfusion.Windows.Forms.Chart.ChartMargins(0, 0, 0, 0);
     this.contributionChart.ChartInterior            = new Syncfusion.Drawing.BrushInfo(Syncfusion.Drawing.GradientStyle.Vertical, System.Drawing.Color.Transparent, System.Drawing.Color.Transparent);
     this.contributionChart.DataSourceName           = "";
     this.contributionChart.ElementsSpacing          = 0;
     this.contributionChart.Font         = new System.Drawing.Font("Segoe UI", 8.25F);
     this.contributionChart.ForeColor    = System.Drawing.SystemColors.ControlText;
     this.contributionChart.IsWindowLess = false;
     //
     //
     //
     this.contributionChart.Legend.Location        = new System.Drawing.Point(486, 75);
     this.contributionChart.Legend.Visible         = false;
     this.contributionChart.Localize               = null;
     this.contributionChart.Location               = new System.Drawing.Point(3, 65);
     this.contributionChart.Name                   = "contributionChart";
     this.contributionChart.Palette                = Syncfusion.Windows.Forms.Chart.ChartColorPalette.Metro;
     this.contributionChart.PrimaryXAxis.Crossing  = double.NaN;
     this.contributionChart.PrimaryXAxis.Font      = new System.Drawing.Font("Cambria", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.contributionChart.PrimaryXAxis.ForeColor = System.Drawing.SystemColors.ControlText;
     this.contributionChart.PrimaryXAxis.Margin    = true;
     this.contributionChart.PrimaryYAxis.Crossing  = double.NaN;
     this.contributionChart.PrimaryYAxis.Font      = new System.Drawing.Font("Cambria", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.contributionChart.PrimaryYAxis.ForceZero = true;
     this.contributionChart.PrimaryYAxis.ForeColor = System.Drawing.SystemColors.ControlText;
     this.contributionChart.PrimaryYAxis.Margin    = true;
     chartSeries3.FancyToolTip.ResizeInsideSymbol  = true;
     chartSeries3.Name = "Default0";
     chartSeries3.Points.Add(1D, ((double)(55D)));
     chartSeries3.Points.Add(2D, ((double)(70D)));
     chartSeries3.Points.Add(3D, ((double)(80D)));
     chartSeries3.Points.Add(4D, ((double)(65D)));
     chartSeries3.Points.Add(5D, ((double)(75D)));
     chartSeries3.Resolution          = 0D;
     chartSeries3.StackingGroup       = "Default Group";
     chartSeries3.Style.AltTagFormat  = "";
     chartSeries3.Style.DrawTextShape = false;
     chartSeries3.Style.Symbol.Border = chartLineInfo2;
     chartSeries3.Style.Font.Facename = "Microsoft Sans Serif";
     chartLineInfo2.Alignment         = System.Drawing.Drawing2D.PenAlignment.Center;
     chartLineInfo2.Color             = System.Drawing.SystemColors.ControlText;
     chartLineInfo2.DashPattern       = null;
     chartLineInfo2.DashStyle         = System.Drawing.Drawing2D.DashStyle.Solid;
     chartLineInfo2.Width             = 1F;
     chartCustomShapeInfo3.Border     = chartLineInfo2;
     chartCustomShapeInfo3.Color      = System.Drawing.SystemColors.HighlightText;
     chartCustomShapeInfo3.Type       = Syncfusion.Windows.Forms.Chart.ChartCustomShape.Square;
     chartSeries3.Style.TextShape     = chartCustomShapeInfo3;
     chartSeries3.Text = "Default0";
     chartSeries4.FancyToolTip.ResizeInsideSymbol = true;
     chartSeries4.Name = "Default1";
     chartSeries4.Points.Add(1D, ((double)(70D)));
     chartSeries4.Points.Add(2D, ((double)(35D)));
     chartSeries4.Points.Add(3D, ((double)(65D)));
     chartSeries4.Points.Add(4D, ((double)(25D)));
     chartSeries4.Points.Add(5D, ((double)(50D)));
     chartSeries4.Resolution          = 0D;
     chartSeries4.StackingGroup       = "Default Group";
     chartSeries4.Style.AltTagFormat  = "";
     chartSeries4.Style.DrawTextShape = false;
     chartSeries4.Style.Symbol.Border = chartLineInfo2;
     chartSeries4.Style.Font.Facename = "Microsoft Sans Serif";
     chartCustomShapeInfo4.Border     = chartLineInfo2;
     chartCustomShapeInfo4.Color      = System.Drawing.SystemColors.HighlightText;
     chartCustomShapeInfo4.Type       = Syncfusion.Windows.Forms.Chart.ChartCustomShape.Square;
     chartSeries4.Style.TextShape     = chartCustomShapeInfo4;
     chartSeries4.Text = "Default1";
     this.contributionChart.Series.Add(chartSeries3);
     this.contributionChart.Series.Add(chartSeries4);
     this.contributionChart.Size     = new System.Drawing.Size(458, 384);
     this.contributionChart.TabIndex = 0;
     this.contributionChart.Text     = "Contributions";
     //
     //
     //
     this.contributionChart.Title.Font      = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.contributionChart.Title.ForeColor = System.Drawing.SystemColors.ControlText;
     this.contributionChart.Title.Name      = "Default";
     this.contributionChart.Titles.Add(this.contributionChart.Title);
     this.contributionChart.ToolBar.EnableDefaultItems = false;
     this.contributionChart.ToolBar.Items.Add(chartToolBarSaveItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarCopyItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarPrintItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarPrintPreviewItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarSplitter1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarPaletteItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarStyleItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarTypeItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarSeries3DItem1);
     this.contributionChart.ToolBar.Items.Add(chartToolBarShowLegendItem1);
     //
     // Contribution
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.Controls.Add(this.n);
     this.Name = "Contribution";
     this.Size = new System.Drawing.Size(937, 467);
     this.n.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.accountChartPanel)).EndInit();
     this.accountChartPanel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.contributionChartPanel)).EndInit();
     this.contributionChartPanel.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmWaterSoilConservation));
     this.cmbC = new System.Windows.Forms.ComboBox();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOK = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.rbtnNDVI = new System.Windows.Forms.RadioButton();
     this.rbtnVegCover = new System.Windows.Forms.RadioButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cmbSoilOrganic = new System.Windows.Forms.ComboBox();
     this.cmbSoilSand = new System.Windows.Forms.ComboBox();
     this.cmbSoilSlit = new System.Windows.Forms.ComboBox();
     this.label15 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.cmbSoilClay = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rbtnPcp = new System.Windows.Forms.RadioButton();
     this.txtPcpPath = new System.Windows.Forms.TextBox();
     this.rbtnR = new System.Windows.Forms.RadioButton();
     this.btnOpenPcp = new System.Windows.Forms.Button();
     this.cmbR = new System.Windows.Forms.ComboBox();
     this.cmbP = new System.Windows.Forms.ComboBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.txtCellSize = new System.Windows.Forms.TextBox();
     this.chkbCellsize = new System.Windows.Forms.CheckBox();
     this.label1 = new System.Windows.Forms.Label();
     this.cmbDem = new System.Windows.Forms.ComboBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.txtSavePath = new System.Windows.Forms.TextBox();
     this.btnSavePath = new System.Windows.Forms.Button();
     this.groupBox6 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.txtPcpPrefix = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.txtPcpSuffix = new System.Windows.Forms.TextBox();
     this.groupBox5.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox6.SuspendLayout();
     this.SuspendLayout();
     //
     // cmbC
     //
     this.cmbC.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbC.FormattingEnabled = true;
     this.cmbC.Location = new System.Drawing.Point(314, 14);
     this.cmbC.Name = "cmbC";
     this.cmbC.Size = new System.Drawing.Size(218, 20);
     this.cmbC.TabIndex = 6;
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(457, 454);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 22;
     this.btnCancel.Text = "取消";
     this.btnCancel.UseVisualStyleBackColor = true;
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(341, 454);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 21;
     this.btnOK.Text = "确定";
     this.btnOK.UseVisualStyleBackColor = true;
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.rbtnNDVI);
     this.groupBox5.Controls.Add(this.rbtnVegCover);
     this.groupBox5.Controls.Add(this.cmbC);
     this.groupBox5.Location = new System.Drawing.Point(15, 291);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(547, 42);
     this.groupBox5.TabIndex = 17;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "地表覆被因子C[0-1]";
     //
     // rbtnNDVI
     //
     this.rbtnNDVI.AutoSize = true;
     this.rbtnNDVI.Location = new System.Drawing.Point(151, 15);
     this.rbtnNDVI.Name = "rbtnNDVI";
     this.rbtnNDVI.Size = new System.Drawing.Size(143, 16);
     this.rbtnNDVI.TabIndex = 7;
     this.rbtnNDVI.TabStop = true;
     this.rbtnNDVI.Text = "归一化植被指数,NDVI";
     this.rbtnNDVI.UseVisualStyleBackColor = true;
     //
     // rbtnVegCover
     //
     this.rbtnVegCover.AutoSize = true;
     this.rbtnVegCover.Checked = true;
     this.rbtnVegCover.Location = new System.Drawing.Point(31, 18);
     this.rbtnVegCover.Name = "rbtnVegCover";
     this.rbtnVegCover.Size = new System.Drawing.Size(83, 16);
     this.rbtnVegCover.TabIndex = 7;
     this.rbtnVegCover.TabStop = true;
     this.rbtnVegCover.Text = "植被覆盖度";
     this.rbtnVegCover.UseVisualStyleBackColor = true;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.cmbSoilOrganic);
     this.groupBox2.Controls.Add(this.cmbSoilSand);
     this.groupBox2.Controls.Add(this.cmbSoilSlit);
     this.groupBox2.Controls.Add(this.label15);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.cmbSoilClay);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label4);
     this.groupBox2.Location = new System.Drawing.Point(15, 135);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(547, 93);
     this.groupBox2.TabIndex = 15;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "土壤可蚀力因子K";
     //
     // cmbSoilOrganic
     //
     this.cmbSoilOrganic.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSoilOrganic.FormattingEnabled = true;
     this.cmbSoilOrganic.Location = new System.Drawing.Point(392, 56);
     this.cmbSoilOrganic.Name = "cmbSoilOrganic";
     this.cmbSoilOrganic.Size = new System.Drawing.Size(140, 20);
     this.cmbSoilOrganic.TabIndex = 8;
     //
     // cmbSoilSand
     //
     this.cmbSoilSand.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSoilSand.FormattingEnabled = true;
     this.cmbSoilSand.Location = new System.Drawing.Point(130, 56);
     this.cmbSoilSand.Name = "cmbSoilSand";
     this.cmbSoilSand.Size = new System.Drawing.Size(140, 20);
     this.cmbSoilSand.TabIndex = 7;
     //
     // cmbSoilSlit
     //
     this.cmbSoilSlit.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSoilSlit.FormattingEnabled = true;
     this.cmbSoilSlit.Location = new System.Drawing.Point(392, 21);
     this.cmbSoilSlit.Name = "cmbSoilSlit";
     this.cmbSoilSlit.Size = new System.Drawing.Size(140, 20);
     this.cmbSoilSlit.TabIndex = 7;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Location = new System.Drawing.Point(25, 62);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(95, 12);
     this.label15.TabIndex = 2;
     this.label15.Text = "土壤砂粒含量(%)";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(296, 26);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(95, 12);
     this.label2.TabIndex = 2;
     this.label2.Text = "土壤粉粒含量(%)";
     //
     // cmbSoilClay
     //
     this.cmbSoilClay.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSoilClay.FormattingEnabled = true;
     this.cmbSoilClay.Location = new System.Drawing.Point(130, 23);
     this.cmbSoilClay.Name = "cmbSoilClay";
     this.cmbSoilClay.Size = new System.Drawing.Size(140, 20);
     this.cmbSoilClay.TabIndex = 7;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 25);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(95, 12);
     this.label3.TabIndex = 2;
     this.label3.Text = "土壤黏粒含量(%)";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(296, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(83, 12);
     this.label4.TabIndex = 3;
     this.label4.Text = "有机物含量(%)";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rbtnPcp);
     this.groupBox1.Controls.Add(this.txtPcpSuffix);
     this.groupBox1.Controls.Add(this.txtPcpPrefix);
     this.groupBox1.Controls.Add(this.txtPcpPath);
     this.groupBox1.Controls.Add(this.rbtnR);
     this.groupBox1.Controls.Add(this.btnOpenPcp);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.cmbR);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Location = new System.Drawing.Point(15, 8);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(547, 121);
     this.groupBox1.TabIndex = 14;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "降雨侵蚀力因子R ";
     //
     // rbtnPcp
     //
     this.rbtnPcp.AutoSize = true;
     this.rbtnPcp.Location = new System.Drawing.Point(19, 57);
     this.rbtnPcp.Name = "rbtnPcp";
     this.rbtnPcp.Size = new System.Drawing.Size(191, 16);
     this.rbtnPcp.TabIndex = 9;
     this.rbtnPcp.Text = "多年平均各月降雨量数据 P(mm)";
     this.rbtnPcp.UseVisualStyleBackColor = true;
     this.rbtnPcp.CheckedChanged += new System.EventHandler(this.rbtnPcp_CheckedChanged);
     //
     // txtPcpPath
     //
     this.txtPcpPath.Enabled = false;
     this.txtPcpPath.Location = new System.Drawing.Point(216, 56);
     this.txtPcpPath.Name = "txtPcpPath";
     this.txtPcpPath.Size = new System.Drawing.Size(284, 21);
     this.txtPcpPath.TabIndex = 27;
     this.txtPcpPath.Text = "请输入月降水数据的上一级目录...(格式:pcp_1m)";
     //
     // rbtnR
     //
     this.rbtnR.AutoSize = true;
     this.rbtnR.Checked = true;
     this.rbtnR.Location = new System.Drawing.Point(19, 25);
     this.rbtnR.Name = "rbtnR";
     this.rbtnR.Size = new System.Drawing.Size(197, 16);
     this.rbtnR.TabIndex = 9;
     this.rbtnR.TabStop = true;
     this.rbtnR.Text = "降雨侵蚀力(MJ*mm)/(ha*h*year)";
     this.rbtnR.UseVisualStyleBackColor = true;
     //
     // btnOpenPcp
     //
     this.btnOpenPcp.Enabled = false;
     this.btnOpenPcp.Image = ((System.Drawing.Image)(resources.GetObject("btnOpenPcp.Image")));
     this.btnOpenPcp.Location = new System.Drawing.Point(507, 53);
     this.btnOpenPcp.Name = "btnOpenPcp";
     this.btnOpenPcp.Size = new System.Drawing.Size(25, 25);
     this.btnOpenPcp.TabIndex = 26;
     this.btnOpenPcp.UseVisualStyleBackColor = true;
     this.btnOpenPcp.Click += new System.EventHandler(this.btnOpenPcp_Click);
     //
     // cmbR
     //
     this.cmbR.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbR.FormattingEnabled = true;
     this.cmbR.Location = new System.Drawing.Point(216, 22);
     this.cmbR.Name = "cmbR";
     this.cmbR.Size = new System.Drawing.Size(284, 20);
     this.cmbR.TabIndex = 2;
     //
     // cmbP
     //
     this.cmbP.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbP.FormattingEnabled = true;
     this.cmbP.Location = new System.Drawing.Point(46, 358);
     this.cmbP.Name = "cmbP";
     this.cmbP.Size = new System.Drawing.Size(501, 20);
     this.cmbP.TabIndex = 7;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.txtCellSize);
     this.groupBox4.Controls.Add(this.chkbCellsize);
     this.groupBox4.Controls.Add(this.label1);
     this.groupBox4.Controls.Add(this.cmbDem);
     this.groupBox4.Location = new System.Drawing.Point(15, 234);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(547, 42);
     this.groupBox4.TabIndex = 18;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "地形因子LS ";
     //
     // txtCellSize
     //
     this.txtCellSize.Enabled = false;
     this.txtCellSize.Location = new System.Drawing.Point(432, 15);
     this.txtCellSize.Name = "txtCellSize";
     this.txtCellSize.Size = new System.Drawing.Size(100, 21);
     this.txtCellSize.TabIndex = 24;
     //
     // chkbCellsize
     //
     this.chkbCellsize.AutoSize = true;
     this.chkbCellsize.Location = new System.Drawing.Point(341, 18);
     this.chkbCellsize.Name = "chkbCellsize";
     this.chkbCellsize.Size = new System.Drawing.Size(90, 16);
     this.chkbCellsize.TabIndex = 25;
     this.chkbCellsize.Text = "栅格大小(m)";
     this.chkbCellsize.UseVisualStyleBackColor = true;
     this.chkbCellsize.CheckedChanged += new System.EventHandler(this.chkbCellsize_CheckedChanged);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(29, 20);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(125, 12);
     this.label1.TabIndex = 8;
     this.label1.Text = "数字高程模型,DEM(m)";
     //
     // cmbDem
     //
     this.cmbDem.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbDem.FormattingEnabled = true;
     this.cmbDem.Location = new System.Drawing.Point(160, 16);
     this.cmbDem.Name = "cmbDem";
     this.cmbDem.Size = new System.Drawing.Size(166, 20);
     this.cmbDem.TabIndex = 7;
     this.cmbDem.SelectedIndexChanged += new System.EventHandler(this.cmbDem_SelectedIndexChanged);
     //
     // groupBox3
     //
     this.groupBox3.Location = new System.Drawing.Point(15, 339);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(258, 49);
     this.groupBox3.TabIndex = 16;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "水土保持措施因子P[0-1]";
     //
     // txtSavePath
     //
     this.txtSavePath.Location = new System.Drawing.Point(26, 27);
     this.txtSavePath.Name = "txtSavePath";
     this.txtSavePath.Size = new System.Drawing.Size(474, 21);
     this.txtSavePath.TabIndex = 27;
     //
     // btnSavePath
     //
     this.btnSavePath.Image = ((System.Drawing.Image)(resources.GetObject("btnSavePath.Image")));
     this.btnSavePath.Location = new System.Drawing.Point(507, 24);
     this.btnSavePath.Name = "btnSavePath";
     this.btnSavePath.Size = new System.Drawing.Size(25, 25);
     this.btnSavePath.TabIndex = 26;
     this.btnSavePath.UseVisualStyleBackColor = true;
     this.btnSavePath.Click += new System.EventHandler(this.btnSavePath_Click);
     //
     // groupBox6
     //
     this.groupBox6.Controls.Add(this.btnSavePath);
     this.groupBox6.Controls.Add(this.txtSavePath);
     this.groupBox6.Location = new System.Drawing.Point(15, 394);
     this.groupBox6.Name = "groupBox6";
     this.groupBox6.Size = new System.Drawing.Size(547, 63);
     this.groupBox6.TabIndex = 18;
     this.groupBox6.TabStop = false;
     this.groupBox6.Text = "水土保持生态红线";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(92, 86);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(119, 12);
     this.label5.TabIndex = 3;
     this.label5.Text = "数据前缀(如:pcp_*)";
     //
     // txtPcpPrefix
     //
     this.txtPcpPrefix.Enabled = false;
     this.txtPcpPrefix.Location = new System.Drawing.Point(216, 85);
     this.txtPcpPrefix.Name = "txtPcpPrefix";
     this.txtPcpPrefix.Size = new System.Drawing.Size(77, 21);
     this.txtPcpPrefix.TabIndex = 27;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(309, 87);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(101, 12);
     this.label6.TabIndex = 3;
     this.label6.Text = "数据后缀(如:*m)";
     //
     // txtPcpSuffix
     //
     this.txtPcpSuffix.Enabled = false;
     this.txtPcpSuffix.Location = new System.Drawing.Point(423, 88);
     this.txtPcpSuffix.Name = "txtPcpSuffix";
     this.txtPcpSuffix.Size = new System.Drawing.Size(77, 21);
     this.txtPcpSuffix.TabIndex = 27;
     //
     // frmWaterSoilConservation
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(576, 498);
     this.Controls.Add(this.cmbP);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.groupBox6);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.groupBox3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Name = "frmWaterSoilConservation";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "水土保持生态红线";
     this.Load += new System.EventHandler(this.frmSoilRunOffSpatial_Load);
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox6.ResumeLayout(false);
     this.groupBox6.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 26
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.rbColour        = new System.Windows.Forms.RadioButton();
     this.rbBlackWhite    = new System.Windows.Forms.RadioButton();
     this.btnOk           = new System.Windows.Forms.Button();
     this.btnCancel       = new System.Windows.Forms.Button();
     this.rbText          = new System.Windows.Forms.RadioButton();
     this.rbImage         = new System.Windows.Forms.RadioButton();
     this.layoutContainer = new System.Windows.Forms.TableLayoutPanel();
     this.layoutBWColour  = new System.Windows.Forms.TableLayoutPanel();
     this.layoutTextImage = new System.Windows.Forms.TableLayoutPanel();
     this.layoutButtons   = new System.Windows.Forms.TableLayoutPanel();
     this.layoutContainer.SuspendLayout();
     this.layoutBWColour.SuspendLayout();
     this.layoutTextImage.SuspendLayout();
     this.layoutButtons.SuspendLayout();
     this.SuspendLayout();
     //
     // rbColour
     //
     this.rbColour.Appearance = System.Windows.Forms.Appearance.Button;
     this.rbColour.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.rbColour.Location   = new System.Drawing.Point(183, 3);
     this.rbColour.Name       = "rbColour";
     this.rbColour.Size       = new System.Drawing.Size(174, 121);
     this.rbColour.TabIndex   = 1;
     this.rbColour.Text       = "rbColour";
     this.rbColour.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.rbColour.UseVisualStyleBackColor = true;
     //
     // rbBlackWhite
     //
     this.rbBlackWhite.Appearance = System.Windows.Forms.Appearance.Button;
     this.rbBlackWhite.Checked    = true;
     this.rbBlackWhite.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.rbBlackWhite.Location   = new System.Drawing.Point(3, 3);
     this.rbBlackWhite.Name       = "rbBlackWhite";
     this.rbBlackWhite.Size       = new System.Drawing.Size(174, 121);
     this.rbBlackWhite.TabIndex   = 0;
     this.rbBlackWhite.TabStop    = true;
     this.rbBlackWhite.Text       = "rbBlackWhite";
     this.rbBlackWhite.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.rbBlackWhite.UseVisualStyleBackColor = true;
     //
     // btnOk
     //
     this.btnOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.btnOk.Location                = new System.Drawing.Point(3, 3);
     this.btnOk.Name                    = "btnOk";
     this.btnOk.Size                    = new System.Drawing.Size(94, 30);
     this.btnOk.TabIndex                = 2;
     this.btnOk.Text                    = "btnOk";
     this.btnOk.UseVisualStyleBackColor = true;
     //
     // btnCancel
     //
     this.btnCancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location                = new System.Drawing.Point(263, 3);
     this.btnCancel.Name                    = "btnCancel";
     this.btnCancel.Size                    = new System.Drawing.Size(94, 30);
     this.btnCancel.TabIndex                = 3;
     this.btnCancel.Text                    = "btnCancel";
     this.btnCancel.UseVisualStyleBackColor = true;
     //
     // rbText
     //
     this.rbText.Appearance = System.Windows.Forms.Appearance.Button;
     this.rbText.Checked    = true;
     this.rbText.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.rbText.Location   = new System.Drawing.Point(3, 3);
     this.rbText.Name       = "rbText";
     this.rbText.Size       = new System.Drawing.Size(174, 121);
     this.rbText.TabIndex   = 0;
     this.rbText.TabStop    = true;
     this.rbText.Text       = "rbText";
     this.rbText.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.rbText.UseVisualStyleBackColor = true;
     //
     // rbImage
     //
     this.rbImage.Appearance = System.Windows.Forms.Appearance.Button;
     this.rbImage.Dock       = System.Windows.Forms.DockStyle.Fill;
     this.rbImage.Location   = new System.Drawing.Point(183, 3);
     this.rbImage.Name       = "rbImage";
     this.rbImage.Size       = new System.Drawing.Size(174, 121);
     this.rbImage.TabIndex   = 1;
     this.rbImage.Text       = "rbImage";
     this.rbImage.TextAlign  = System.Drawing.ContentAlignment.MiddleCenter;
     this.rbImage.UseVisualStyleBackColor = true;
     //
     // layoutContainer
     //
     this.layoutContainer.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                          | System.Windows.Forms.AnchorStyles.Left)
                                                                         | System.Windows.Forms.AnchorStyles.Right)));
     this.layoutContainer.ColumnCount = 1;
     this.layoutContainer.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.layoutContainer.Controls.Add(this.layoutBWColour, 0, 0);
     this.layoutContainer.Controls.Add(this.layoutTextImage, 0, 1);
     this.layoutContainer.Controls.Add(this.layoutButtons, 0, 2);
     this.layoutContainer.Location = new System.Drawing.Point(12, 12);
     this.layoutContainer.Name     = "layoutContainer";
     this.layoutContainer.RowCount = 3;
     this.layoutContainer.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutContainer.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutContainer.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 36F));
     this.layoutContainer.Size     = new System.Drawing.Size(360, 290);
     this.layoutContainer.TabIndex = 4;
     //
     // layoutBWColour
     //
     this.layoutBWColour.ColumnCount = 2;
     this.layoutBWColour.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutBWColour.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutBWColour.Controls.Add(this.rbColour, 1, 0);
     this.layoutBWColour.Controls.Add(this.rbBlackWhite, 0, 0);
     this.layoutBWColour.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutBWColour.Location = new System.Drawing.Point(0, 0);
     this.layoutBWColour.Margin   = new System.Windows.Forms.Padding(0);
     this.layoutBWColour.Name     = "layoutBWColour";
     this.layoutBWColour.RowCount = 1;
     this.layoutBWColour.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutBWColour.Size     = new System.Drawing.Size(360, 127);
     this.layoutBWColour.TabIndex = 0;
     //
     // layoutTextImage
     //
     this.layoutTextImage.ColumnCount = 2;
     this.layoutTextImage.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutTextImage.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutTextImage.Controls.Add(this.rbImage, 1, 0);
     this.layoutTextImage.Controls.Add(this.rbText, 0, 0);
     this.layoutTextImage.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutTextImage.Location = new System.Drawing.Point(0, 127);
     this.layoutTextImage.Margin   = new System.Windows.Forms.Padding(0);
     this.layoutTextImage.Name     = "layoutTextImage";
     this.layoutTextImage.RowCount = 1;
     this.layoutTextImage.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
     this.layoutTextImage.Size     = new System.Drawing.Size(360, 127);
     this.layoutTextImage.TabIndex = 1;
     //
     // layoutButtons
     //
     this.layoutButtons.ColumnCount = 3;
     this.layoutButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.layoutButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.layoutButtons.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.layoutButtons.Controls.Add(this.btnOk, 0, 0);
     this.layoutButtons.Controls.Add(this.btnCancel, 2, 0);
     this.layoutButtons.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.layoutButtons.Location = new System.Drawing.Point(0, 254);
     this.layoutButtons.Margin   = new System.Windows.Forms.Padding(0);
     this.layoutButtons.Name     = "layoutButtons";
     this.layoutButtons.RowCount = 1;
     this.layoutButtons.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.layoutButtons.Size     = new System.Drawing.Size(360, 36);
     this.layoutButtons.TabIndex = 2;
     //
     // FormSaveAs
     //
     this.AcceptButton        = this.btnOk;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.btnCancel;
     this.ClientSize          = new System.Drawing.Size(384, 314);
     this.ControlBox          = false;
     this.Controls.Add(this.layoutContainer);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.MinimumSize   = new System.Drawing.Size(275, 169);
     this.Name          = "FormSaveAs";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "FormSaveAs";
     this.layoutContainer.ResumeLayout(false);
     this.layoutBWColour.ResumeLayout(false);
     this.layoutTextImage.ResumeLayout(false);
     this.layoutButtons.ResumeLayout(false);
     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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(mainAssets));
     this.listBindingSource = new System.Windows.Forms.BindingSource(this.components);
     this.assetsDataSet1 = new WWassets.assetsDataSet1();
     this.assetsGB = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.panel5 = new System.Windows.Forms.Panel();
     this.assetsListBox = new System.Windows.Forms.ListBox();
     this.panel4 = new System.Windows.Forms.Panel();
     this.notificationlbl = new System.Windows.Forms.Label();
     this.personPCRB = new System.Windows.Forms.RadioButton();
     this.miscPCRB = new System.Windows.Forms.RadioButton();
     this.panel3 = new System.Windows.Forms.Panel();
     this.serialrb = new System.Windows.Forms.RadioButton();
     this.firstnameRB = new System.Windows.Forms.RadioButton();
     this.lastnameRB = new System.Windows.Forms.RadioButton();
     this.miscnamerb = new System.Windows.Forms.RadioButton();
     this.assetsearchtb = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.miscnamelbl = new System.Windows.Forms.Label();
     this.addAssetBTN = new System.Windows.Forms.Button();
     this.lNameTB = new System.Windows.Forms.TextBox();
     this.firstNameLbl = new System.Windows.Forms.Label();
     this.tagLbl = new System.Windows.Forms.Label();
     this.computerNameTB = new System.Windows.Forms.TextBox();
     this.costcentertb = new System.Windows.Forms.TextBox();
     this.productKeyTB = new System.Windows.Forms.TextBox();
     this.locationcb = new System.Windows.Forms.ComboBox();
     this.dateInServiceTB = new System.Windows.Forms.TextBox();
     this.departmentcb = new System.Windows.Forms.ComboBox();
     this.formfactorcb = new System.Windows.Forms.ComboBox();
     this.fNameTB = new System.Windows.Forms.TextBox();
     this.lNameLbl = new System.Windows.Forms.Label();
     this.pricetb = new System.Windows.Forms.TextBox();
     this.tagNumTB = new System.Windows.Forms.TextBox();
     this.makeLbl = new System.Windows.Forms.Label();
     this.modelLbl = new System.Windows.Forms.Label();
     this.serialLbl = new System.Windows.Forms.Label();
     this.formfactorlbl = new System.Windows.Forms.Label();
     this.makeTB = new System.Windows.Forms.TextBox();
     this.serialTB = new System.Windows.Forms.TextBox();
     this.modelTB = new System.Windows.Forms.TextBox();
     this.pricelbl = new System.Windows.Forms.Label();
     this.locationlbl = new System.Windows.Forms.Label();
     this.costcenterlbl = new System.Windows.Forms.Label();
     this.departmentlbl = new System.Windows.Forms.Label();
     this.dateInServiceLbl = new System.Windows.Forms.Label();
     this.productKeyLbl = new System.Windows.Forms.Label();
     this.computerNameLbl = new System.Windows.Forms.Label();
     this.userInfoTA = new WWassets.assetsDataSet1TableAdapters.userInfoTA();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.getHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.aboutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.listTableAdapter1 = new WWassets.assetsDataSetTableAdapters.listTableAdapter();
     ((System.ComponentModel.ISupportInitialize)(this.listBindingSource)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.assetsDataSet1)).BeginInit();
     this.assetsGB.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.panel5.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listBindingSource
     //
     this.listBindingSource.DataMember = "list";
     this.listBindingSource.DataSource = this.assetsDataSet1;
     //
     // assetsDataSet1
     //
     this.assetsDataSet1.DataSetName = "assetsDataSet1";
     this.assetsDataSet1.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
     //
     // assetsGB
     //
     this.assetsGB.Controls.Add(this.splitContainer1);
     this.assetsGB.Dock = System.Windows.Forms.DockStyle.Fill;
     this.assetsGB.Location = new System.Drawing.Point(0, 24);
     this.assetsGB.Name = "assetsGB";
     this.assetsGB.Size = new System.Drawing.Size(556, 606);
     this.assetsGB.TabIndex = 1;
     this.assetsGB.TabStop = false;
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Left;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.panel5);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.panel4);
     this.splitContainer1.Panel2.Controls.Add(this.panel3);
     this.splitContainer1.Panel2.Controls.Add(this.panel2);
     this.splitContainer1.Size = new System.Drawing.Size(545, 587);
     this.splitContainer1.SplitterDistance = 181;
     this.splitContainer1.TabIndex = 1;
     //
     // panel5
     //
     this.panel5.Controls.Add(this.assetsListBox);
     this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel5.Location = new System.Drawing.Point(0, 0);
     this.panel5.Name = "panel5";
     this.panel5.Size = new System.Drawing.Size(181, 587);
     this.panel5.TabIndex = 0;
     //
     // assetsListBox
     //
     this.assetsListBox.Dock = System.Windows.Forms.DockStyle.Fill;
     this.assetsListBox.FormattingEnabled = true;
     this.assetsListBox.Location = new System.Drawing.Point(0, 0);
     this.assetsListBox.Name = "assetsListBox";
     this.assetsListBox.Size = new System.Drawing.Size(181, 587);
     this.assetsListBox.TabIndex = 0;
     this.assetsListBox.MouseClick += new System.Windows.Forms.MouseEventHandler(this.assetsListBox_MouseClick);
     //
     // panel4
     //
     this.panel4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel4.Controls.Add(this.notificationlbl);
     this.panel4.Controls.Add(this.personPCRB);
     this.panel4.Controls.Add(this.miscPCRB);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Right;
     this.panel4.Location = new System.Drawing.Point(181, 0);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(179, 122);
     this.panel4.TabIndex = 2;
     //
     // notificationlbl
     //
     this.notificationlbl.AutoSize = true;
     this.notificationlbl.Location = new System.Drawing.Point(4, 9);
     this.notificationlbl.Name = "notificationlbl";
     this.notificationlbl.Size = new System.Drawing.Size(168, 26);
     this.notificationlbl.TabIndex = 2;
     this.notificationlbl.Text = "Please select one of the following \r\noptions.";
     //
     // personPCRB
     //
     this.personPCRB.AutoSize = true;
     this.personPCRB.Location = new System.Drawing.Point(14, 44);
     this.personPCRB.Name = "personPCRB";
     this.personPCRB.Size = new System.Drawing.Size(114, 17);
     this.personPCRB.TabIndex = 1;
     this.personPCRB.TabStop = true;
     this.personPCRB.Text = "Personal Computer";
     this.personPCRB.UseVisualStyleBackColor = true;
     //
     // miscPCRB
     //
     this.miscPCRB.AutoSize = true;
     this.miscPCRB.Location = new System.Drawing.Point(14, 67);
     this.miscPCRB.Name = "miscPCRB";
     this.miscPCRB.Size = new System.Drawing.Size(140, 17);
     this.miscPCRB.TabIndex = 0;
     this.miscPCRB.TabStop = true;
     this.miscPCRB.Text = "Miscellaneous Computer";
     this.miscPCRB.UseVisualStyleBackColor = true;
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.serialrb);
     this.panel3.Controls.Add(this.firstnameRB);
     this.panel3.Controls.Add(this.lastnameRB);
     this.panel3.Controls.Add(this.miscnamerb);
     this.panel3.Controls.Add(this.assetsearchtb);
     this.panel3.Dock = System.Windows.Forms.DockStyle.Left;
     this.panel3.Location = new System.Drawing.Point(0, 0);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(183, 122);
     this.panel3.TabIndex = 1;
     //
     // serialrb
     //
     this.serialrb.AutoSize = true;
     this.serialrb.Location = new System.Drawing.Point(40, 97);
     this.serialrb.Name = "serialrb";
     this.serialrb.Size = new System.Drawing.Size(91, 17);
     this.serialrb.TabIndex = 35;
     this.serialrb.TabStop = true;
     this.serialrb.Text = "Serial Number";
     this.serialrb.UseVisualStyleBackColor = true;
     //
     // firstnameRB
     //
     this.firstnameRB.AutoSize = true;
     this.firstnameRB.Location = new System.Drawing.Point(40, 28);
     this.firstnameRB.Name = "firstnameRB";
     this.firstnameRB.Size = new System.Drawing.Size(75, 17);
     this.firstnameRB.TabIndex = 34;
     this.firstnameRB.TabStop = true;
     this.firstnameRB.Text = "First Name";
     this.firstnameRB.UseVisualStyleBackColor = true;
     //
     // lastnameRB
     //
     this.lastnameRB.AutoSize = true;
     this.lastnameRB.Location = new System.Drawing.Point(40, 51);
     this.lastnameRB.Name = "lastnameRB";
     this.lastnameRB.Size = new System.Drawing.Size(76, 17);
     this.lastnameRB.TabIndex = 1;
     this.lastnameRB.TabStop = true;
     this.lastnameRB.Text = "Last Name";
     this.lastnameRB.UseVisualStyleBackColor = true;
     this.lastnameRB.CheckedChanged += new System.EventHandler(this.lastnameRB_CheckedChanged);
     //
     // miscnamerb
     //
     this.miscnamerb.AutoSize = true;
     this.miscnamerb.Location = new System.Drawing.Point(40, 74);
     this.miscnamerb.Name = "miscnamerb";
     this.miscnamerb.Size = new System.Drawing.Size(78, 17);
     this.miscnamerb.TabIndex = 32;
     this.miscnamerb.TabStop = true;
     this.miscnamerb.Text = "Misc Name";
     this.miscnamerb.UseVisualStyleBackColor = true;
     this.miscnamerb.CheckedChanged += new System.EventHandler(this.miscnamerb_CheckedChanged);
     //
     // assetsearchtb
     //
     this.assetsearchtb.BackColor = System.Drawing.SystemColors.ButtonHighlight;
     this.assetsearchtb.Location = new System.Drawing.Point(3, 3);
     this.assetsearchtb.Name = "assetsearchtb";
     this.assetsearchtb.Size = new System.Drawing.Size(156, 20);
     this.assetsearchtb.TabIndex = 2;
     this.assetsearchtb.TextChanged += new System.EventHandler(this.assetsearchtb_TextChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.textBox1);
     this.panel2.Controls.Add(this.miscnamelbl);
     this.panel2.Controls.Add(this.addAssetBTN);
     this.panel2.Controls.Add(this.lNameTB);
     this.panel2.Controls.Add(this.firstNameLbl);
     this.panel2.Controls.Add(this.tagLbl);
     this.panel2.Controls.Add(this.computerNameTB);
     this.panel2.Controls.Add(this.costcentertb);
     this.panel2.Controls.Add(this.productKeyTB);
     this.panel2.Controls.Add(this.locationcb);
     this.panel2.Controls.Add(this.dateInServiceTB);
     this.panel2.Controls.Add(this.departmentcb);
     this.panel2.Controls.Add(this.formfactorcb);
     this.panel2.Controls.Add(this.fNameTB);
     this.panel2.Controls.Add(this.lNameLbl);
     this.panel2.Controls.Add(this.pricetb);
     this.panel2.Controls.Add(this.tagNumTB);
     this.panel2.Controls.Add(this.makeLbl);
     this.panel2.Controls.Add(this.modelLbl);
     this.panel2.Controls.Add(this.serialLbl);
     this.panel2.Controls.Add(this.formfactorlbl);
     this.panel2.Controls.Add(this.makeTB);
     this.panel2.Controls.Add(this.serialTB);
     this.panel2.Controls.Add(this.modelTB);
     this.panel2.Controls.Add(this.pricelbl);
     this.panel2.Controls.Add(this.locationlbl);
     this.panel2.Controls.Add(this.costcenterlbl);
     this.panel2.Controls.Add(this.departmentlbl);
     this.panel2.Controls.Add(this.dateInServiceLbl);
     this.panel2.Controls.Add(this.productKeyLbl);
     this.panel2.Controls.Add(this.computerNameLbl);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel2.Location = new System.Drawing.Point(0, 122);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(360, 465);
     this.panel2.TabIndex = 0;
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(136, 94);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(100, 20);
     this.textBox1.TabIndex = 27;
     //
     // miscnamelbl
     //
     this.miscnamelbl.AutoSize = true;
     this.miscnamelbl.Location = new System.Drawing.Point(67, 101);
     this.miscnamelbl.Name = "miscnamelbl";
     this.miscnamelbl.Size = new System.Drawing.Size(63, 13);
     this.miscnamelbl.TabIndex = 26;
     this.miscnamelbl.Text = "Misc Name:";
     //
     // addAssetBTN
     //
     this.addAssetBTN.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.addAssetBTN.Image = global::WWassets.Properties.Resources.add_asset_btn;
     this.addAssetBTN.Location = new System.Drawing.Point(137, 414);
     this.addAssetBTN.Name = "addAssetBTN";
     this.addAssetBTN.Size = new System.Drawing.Size(83, 28);
     this.addAssetBTN.TabIndex = 21;
     this.addAssetBTN.UseVisualStyleBackColor = true;
     this.addAssetBTN.Click += new System.EventHandler(this.addAssetBtn_Click);
     //
     // lNameTB
     //
     this.lNameTB.Location = new System.Drawing.Point(136, 68);
     this.lNameTB.Name = "lNameTB";
     this.lNameTB.Size = new System.Drawing.Size(100, 20);
     this.lNameTB.TabIndex = 11;
     //
     // firstNameLbl
     //
     this.firstNameLbl.AutoSize = true;
     this.firstNameLbl.Location = new System.Drawing.Point(70, 49);
     this.firstNameLbl.Name = "firstNameLbl";
     this.firstNameLbl.Size = new System.Drawing.Size(60, 13);
     this.firstNameLbl.TabIndex = 1;
     this.firstNameLbl.Text = "First Name:";
     //
     // tagLbl
     //
     this.tagLbl.AutoSize = true;
     this.tagLbl.Location = new System.Drawing.Point(91, 23);
     this.tagLbl.Name = "tagLbl";
     this.tagLbl.Size = new System.Drawing.Size(39, 13);
     this.tagLbl.TabIndex = 0;
     this.tagLbl.Text = "Tag #:";
     //
     // computerNameTB
     //
     this.computerNameTB.Enabled = false;
     this.computerNameTB.Location = new System.Drawing.Point(137, 386);
     this.computerNameTB.Name = "computerNameTB";
     this.computerNameTB.Size = new System.Drawing.Size(120, 20);
     this.computerNameTB.TabIndex = 17;
     //
     // costcentertb
     //
     this.costcentertb.Location = new System.Drawing.Point(137, 309);
     this.costcentertb.Name = "costcentertb";
     this.costcentertb.Size = new System.Drawing.Size(109, 20);
     this.costcentertb.TabIndex = 19;
     //
     // productKeyTB
     //
     this.productKeyTB.Location = new System.Drawing.Point(137, 361);
     this.productKeyTB.Name = "productKeyTB";
     this.productKeyTB.Size = new System.Drawing.Size(162, 20);
     this.productKeyTB.TabIndex = 20;
     this.productKeyTB.TextChanged += new System.EventHandler(this.productKeyTB_TextChanged);
     //
     // locationcb
     //
     this.locationcb.FormattingEnabled = true;
     this.locationcb.Items.AddRange(new object[] {
     "Bismarck Truck Center",
     "Dickinson",
     "Fargo Trailer",
     "Minot",
     "Northwest Truck and Trailer",
     "Wallwork Financial",
     "Wallwork Rent a Car",
     "Wallwork Truck Center",
     "Williston",
     "Valley Imports",
     "Valley Wireless"});
     this.locationcb.Location = new System.Drawing.Point(137, 254);
     this.locationcb.Name = "locationcb";
     this.locationcb.Size = new System.Drawing.Size(143, 21);
     this.locationcb.TabIndex = 17;
     //
     // dateInServiceTB
     //
     this.dateInServiceTB.Enabled = false;
     this.dateInServiceTB.Location = new System.Drawing.Point(137, 335);
     this.dateInServiceTB.Name = "dateInServiceTB";
     this.dateInServiceTB.Size = new System.Drawing.Size(120, 20);
     this.dateInServiceTB.TabIndex = 25;
     //
     // departmentcb
     //
     this.departmentcb.FormattingEnabled = true;
     this.departmentcb.Items.AddRange(new object[] {
     "Admin",
     "Financial",
     "Parts",
     "Sales",
     "Outside Sales",
     "Warranty"});
     this.departmentcb.Location = new System.Drawing.Point(137, 281);
     this.departmentcb.Name = "departmentcb";
     this.departmentcb.Size = new System.Drawing.Size(134, 21);
     this.departmentcb.TabIndex = 18;
     //
     // formfactorcb
     //
     this.formfactorcb.FormattingEnabled = true;
     this.formfactorcb.Location = new System.Drawing.Point(137, 200);
     this.formfactorcb.Name = "formfactorcb";
     this.formfactorcb.Size = new System.Drawing.Size(100, 21);
     this.formfactorcb.TabIndex = 15;
     //
     // fNameTB
     //
     this.fNameTB.Location = new System.Drawing.Point(136, 42);
     this.fNameTB.Name = "fNameTB";
     this.fNameTB.Size = new System.Drawing.Size(100, 20);
     this.fNameTB.TabIndex = 10;
     //
     // lNameLbl
     //
     this.lNameLbl.AutoSize = true;
     this.lNameLbl.Location = new System.Drawing.Point(70, 75);
     this.lNameLbl.Name = "lNameLbl";
     this.lNameLbl.Size = new System.Drawing.Size(61, 13);
     this.lNameLbl.TabIndex = 2;
     this.lNameLbl.Text = "Last Name:";
     //
     // pricetb
     //
     this.pricetb.Location = new System.Drawing.Point(137, 228);
     this.pricetb.Name = "pricetb";
     this.pricetb.Size = new System.Drawing.Size(100, 20);
     this.pricetb.TabIndex = 16;
     //
     // tagNumTB
     //
     this.tagNumTB.Enabled = false;
     this.tagNumTB.Location = new System.Drawing.Point(136, 16);
     this.tagNumTB.Name = "tagNumTB";
     this.tagNumTB.Size = new System.Drawing.Size(32, 20);
     this.tagNumTB.TabIndex = 9;
     //
     // makeLbl
     //
     this.makeLbl.AutoSize = true;
     this.makeLbl.Location = new System.Drawing.Point(94, 128);
     this.makeLbl.Name = "makeLbl";
     this.makeLbl.Size = new System.Drawing.Size(37, 13);
     this.makeLbl.TabIndex = 3;
     this.makeLbl.Text = "Make:";
     //
     // modelLbl
     //
     this.modelLbl.AutoSize = true;
     this.modelLbl.Location = new System.Drawing.Point(92, 154);
     this.modelLbl.Name = "modelLbl";
     this.modelLbl.Size = new System.Drawing.Size(39, 13);
     this.modelLbl.TabIndex = 4;
     this.modelLbl.Text = "Model:";
     //
     // serialLbl
     //
     this.serialLbl.AutoSize = true;
     this.serialLbl.Location = new System.Drawing.Point(85, 180);
     this.serialLbl.Name = "serialLbl";
     this.serialLbl.Size = new System.Drawing.Size(46, 13);
     this.serialLbl.TabIndex = 5;
     this.serialLbl.Text = "Serial #:";
     //
     // formfactorlbl
     //
     this.formfactorlbl.AutoSize = true;
     this.formfactorlbl.Location = new System.Drawing.Point(65, 208);
     this.formfactorlbl.Name = "formfactorlbl";
     this.formfactorlbl.Size = new System.Drawing.Size(66, 13);
     this.formfactorlbl.TabIndex = 19;
     this.formfactorlbl.Text = "Form Factor:";
     //
     // makeTB
     //
     this.makeTB.Location = new System.Drawing.Point(137, 121);
     this.makeTB.Name = "makeTB";
     this.makeTB.Size = new System.Drawing.Size(100, 20);
     this.makeTB.TabIndex = 12;
     //
     // serialTB
     //
     this.serialTB.Location = new System.Drawing.Point(137, 173);
     this.serialTB.Name = "serialTB";
     this.serialTB.Size = new System.Drawing.Size(100, 20);
     this.serialTB.TabIndex = 14;
     this.serialTB.TextChanged += new System.EventHandler(this.serialTB_TextChanged);
     //
     // modelTB
     //
     this.modelTB.Location = new System.Drawing.Point(137, 147);
     this.modelTB.Name = "modelTB";
     this.modelTB.Size = new System.Drawing.Size(100, 20);
     this.modelTB.TabIndex = 13;
     //
     // pricelbl
     //
     this.pricelbl.AutoSize = true;
     this.pricelbl.Location = new System.Drawing.Point(97, 235);
     this.pricelbl.Name = "pricelbl";
     this.pricelbl.Size = new System.Drawing.Size(34, 13);
     this.pricelbl.TabIndex = 19;
     this.pricelbl.Text = "Price:";
     //
     // locationlbl
     //
     this.locationlbl.AutoSize = true;
     this.locationlbl.Location = new System.Drawing.Point(80, 262);
     this.locationlbl.Name = "locationlbl";
     this.locationlbl.Size = new System.Drawing.Size(51, 13);
     this.locationlbl.TabIndex = 19;
     this.locationlbl.Text = "Location:";
     //
     // costcenterlbl
     //
     this.costcenterlbl.AutoSize = true;
     this.costcenterlbl.Location = new System.Drawing.Point(66, 316);
     this.costcenterlbl.Name = "costcenterlbl";
     this.costcenterlbl.Size = new System.Drawing.Size(65, 13);
     this.costcenterlbl.TabIndex = 19;
     this.costcenterlbl.Text = "Cost Center:";
     //
     // departmentlbl
     //
     this.departmentlbl.AutoSize = true;
     this.departmentlbl.Location = new System.Drawing.Point(67, 288);
     this.departmentlbl.Name = "departmentlbl";
     this.departmentlbl.Size = new System.Drawing.Size(65, 13);
     this.departmentlbl.TabIndex = 19;
     this.departmentlbl.Text = "Department:";
     //
     // dateInServiceLbl
     //
     this.dateInServiceLbl.AutoSize = true;
     this.dateInServiceLbl.Location = new System.Drawing.Point(47, 342);
     this.dateInServiceLbl.Name = "dateInServiceLbl";
     this.dateInServiceLbl.Size = new System.Drawing.Size(84, 13);
     this.dateInServiceLbl.TabIndex = 6;
     this.dateInServiceLbl.Text = "Date In Service:";
     //
     // productKeyLbl
     //
     this.productKeyLbl.AutoSize = true;
     this.productKeyLbl.Location = new System.Drawing.Point(63, 368);
     this.productKeyLbl.Name = "productKeyLbl";
     this.productKeyLbl.Size = new System.Drawing.Size(68, 13);
     this.productKeyLbl.TabIndex = 7;
     this.productKeyLbl.Text = "Product Key:";
     //
     // computerNameLbl
     //
     this.computerNameLbl.AutoSize = true;
     this.computerNameLbl.Location = new System.Drawing.Point(45, 393);
     this.computerNameLbl.Name = "computerNameLbl";
     this.computerNameLbl.Size = new System.Drawing.Size(86, 13);
     this.computerNameLbl.TabIndex = 8;
     this.computerNameLbl.Text = "Computer Name:";
     //
     // userInfoTA
     //
     this.userInfoTA.ClearBeforeFill = true;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1,
     this.helpToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(556, 24);
     this.menuStrip1.TabIndex = 3;
     this.menuStrip1.Text = "menuStrip1";
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.exitToolStripMenuItem});
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(37, 20);
     this.toolStripMenuItem1.Text = "File";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(92, 22);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.getHelpToolStripMenuItem,
     this.aboutToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "Help";
     //
     // getHelpToolStripMenuItem
     //
     this.getHelpToolStripMenuItem.Name = "getHelpToolStripMenuItem";
     this.getHelpToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.getHelpToolStripMenuItem.Text = "Help";
     //
     // aboutToolStripMenuItem
     //
     this.aboutToolStripMenuItem.Name = "aboutToolStripMenuItem";
     this.aboutToolStripMenuItem.Size = new System.Drawing.Size(107, 22);
     this.aboutToolStripMenuItem.Text = "About";
     this.aboutToolStripMenuItem.Click += new System.EventHandler(this.aboutToolStripMenuItem_Click);
     //
     // listTableAdapter1
     //
     this.listTableAdapter1.ClearBeforeFill = true;
     //
     // mainAssets
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::WWassets.Properties.Resources.tabbackground_copy;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(556, 630);
     this.Controls.Add(this.assetsGB);
     this.Controls.Add(this.menuStrip1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "mainAssets";
     this.Text = "Wallwork Assets";
     ((System.ComponentModel.ISupportInitialize)(this.listBindingSource)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.assetsDataSet1)).EndInit();
     this.assetsGB.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     this.panel5.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 28
0
 /// <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 ( );
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager ( typeof ( frmStartGame ) );
     this.rbtSteadyTraf = new System.Windows.Forms.RadioButton ( );
     this.rbnIncreasingTraf = new System.Windows.Forms.RadioButton ( );
     this.label1 = new System.Windows.Forms.Label ( );
     this.nudTraffic = new System.Windows.Forms.NumericUpDown ( );
     this.btnStart = new System.Windows.Forms.PictureBox ( );
     this.btnBack = new System.Windows.Forms.PictureBox ( );
     this.tmrOpenWindow = new System.Windows.Forms.Timer ( this.components );
     this.tmrCloseWindow = new System.Windows.Forms.Timer ( this.components );
     ( ( System.ComponentModel.ISupportInitialize ) ( this.nudTraffic ) ).BeginInit ( );
     ( ( System.ComponentModel.ISupportInitialize ) ( this.btnStart ) ).BeginInit ( );
     ( ( System.ComponentModel.ISupportInitialize ) ( this.btnBack ) ).BeginInit ( );
     this.SuspendLayout ( );
     //
     // rbtSteadyTraf
     //
     this.rbtSteadyTraf.AutoSize = true;
     this.rbtSteadyTraf.BackColor = System.Drawing.Color.Transparent;
     this.rbtSteadyTraf.Font = new System.Drawing.Font ( "Consolas", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 0 ) ) );
     this.rbtSteadyTraf.ForeColor = System.Drawing.Color.White;
     this.rbtSteadyTraf.Location = new System.Drawing.Point ( 93, 128 );
     this.rbtSteadyTraf.Name = "rbtSteadyTraf";
     this.rbtSteadyTraf.Size = new System.Drawing.Size ( 256, 28 );
     this.rbtSteadyTraf.TabIndex = 17;
     this.rbtSteadyTraf.Text = "Steady traffic flow";
     this.rbtSteadyTraf.UseVisualStyleBackColor = false;
     this.rbtSteadyTraf.CheckedChanged += new System.EventHandler ( this.TypeOfTrafficChanged );
     //
     // rbnIncreasingTraf
     //
     this.rbnIncreasingTraf.AutoSize = true;
     this.rbnIncreasingTraf.BackColor = System.Drawing.Color.Transparent;
     this.rbnIncreasingTraf.Checked = true;
     this.rbnIncreasingTraf.Font = new System.Drawing.Font ( "Consolas", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 0 ) ) );
     this.rbnIncreasingTraf.ForeColor = System.Drawing.Color.White;
     this.rbnIncreasingTraf.Location = new System.Drawing.Point ( 93, 85 );
     this.rbnIncreasingTraf.Name = "rbnIncreasingTraf";
     this.rbnIncreasingTraf.Size = new System.Drawing.Size ( 304, 28 );
     this.rbnIncreasingTraf.TabIndex = 18;
     this.rbnIncreasingTraf.TabStop = true;
     this.rbnIncreasingTraf.Text = "Increasing traffic flow";
     this.rbnIncreasingTraf.UseVisualStyleBackColor = false;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font ( "Consolas", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 0 ) ) );
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location = new System.Drawing.Point ( 49, 15 );
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size ( 399, 43 );
     this.label1.TabIndex = 16;
     this.label1.Text = "Traffic preferences";
     //
     // nudTraffic
     //
     this.nudTraffic.Font = new System.Drawing.Font ( "Consolas", 27.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 0 ) ) );
     this.nudTraffic.Location = new System.Drawing.Point ( 148, 162 );
     this.nudTraffic.Maximum = new decimal ( new int [ ] {
     20,
     0,
     0,
     0} );
     this.nudTraffic.Minimum = new decimal ( new int [ ] {
     2,
     0,
     0,
     0} );
     this.nudTraffic.Name = "nudTraffic";
     this.nudTraffic.Size = new System.Drawing.Size ( 80, 51 );
     this.nudTraffic.TabIndex = 15;
     this.nudTraffic.Value = new decimal ( new int [ ] {
     10,
     0,
     0,
     0} );
     this.nudTraffic.Visible = false;
     //
     // btnStart
     //
     this.btnStart.BackColor = System.Drawing.Color.Transparent;
     this.btnStart.Font = new System.Drawing.Font ( "Arial", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 204 ) ) );
     this.btnStart.ForeColor = System.Drawing.Color.Black;
     this.btnStart.Image = global::ATC.Properties.Resources.Start_stell;
     this.btnStart.Location = new System.Drawing.Point ( 635, 242 );
     this.btnStart.Name = "btnStart";
     this.btnStart.Size = new System.Drawing.Size ( 100, 50 );
     this.btnStart.TabIndex = 19;
     this.btnStart.TabStop = false;
     this.btnStart.Tag = "Start";
     this.btnStart.Click += new System.EventHandler ( this.btnStart_Click );
     this.btnStart.MouseEnter += new System.EventHandler ( this.ButtonOver );
     this.btnStart.MouseLeave += new System.EventHandler ( this.ButtonOut );
     //
     // btnBack
     //
     this.btnBack.BackColor = System.Drawing.Color.Transparent;
     this.btnBack.Font = new System.Drawing.Font ( "Arial", 24F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ( ( byte ) ( 204 ) ) );
     this.btnBack.ForeColor = System.Drawing.Color.Black;
     this.btnBack.Image = global::ATC.Properties.Resources.Back_stell;
     this.btnBack.Location = new System.Drawing.Point ( 26, 242 );
     this.btnBack.Name = "btnBack";
     this.btnBack.Size = new System.Drawing.Size ( 100, 50 );
     this.btnBack.TabIndex = 19;
     this.btnBack.TabStop = false;
     this.btnBack.Tag = "Back";
     this.btnBack.Click += new System.EventHandler ( this.btnBack_Click );
     this.btnBack.MouseEnter += new System.EventHandler ( this.ButtonOver );
     this.btnBack.MouseLeave += new System.EventHandler ( this.ButtonOut );
     //
     // tmrOpenWindow
     //
     this.tmrOpenWindow.Enabled = true;
     this.tmrOpenWindow.Interval = 1;
     this.tmrOpenWindow.Tick += new System.EventHandler ( this.tmrOpenWindow_Tick );
     //
     // tmrCloseWindow
     //
     this.tmrCloseWindow.Interval = 1;
     this.tmrCloseWindow.Tag = "Cancel";
     this.tmrCloseWindow.Tick += new System.EventHandler ( this.tmrCloseWindow_Tick );
     //
     // frmStartGame
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF ( 6F, 13F );
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.Maroon;
     this.BackgroundImage = global::ATC.Properties.Resources.Back;
     this.ClientSize = new System.Drawing.Size ( 747, 319 );
     this.Controls.Add ( this.btnBack );
     this.Controls.Add ( this.btnStart );
     this.Controls.Add ( this.rbtSteadyTraf );
     this.Controls.Add ( this.rbnIncreasingTraf );
     this.Controls.Add ( this.label1 );
     this.Controls.Add ( this.nudTraffic );
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ( ( System.Drawing.Icon ) ( resources.GetObject ( "$this.Icon" ) ) );
     this.Name = "frmStartGame";
     this.Opacity = 0D;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "frmStartGame";
     this.TransparencyKey = System.Drawing.Color.Maroon;
     ( ( System.ComponentModel.ISupportInitialize ) ( this.nudTraffic ) ).EndInit ( );
     ( ( System.ComponentModel.ISupportInitialize ) ( this.btnStart ) ).EndInit ( );
     ( ( System.ComponentModel.ISupportInitialize ) ( this.btnBack ) ).EndInit ( );
     this.ResumeLayout ( false );
     this.PerformLayout ( );
 }
Esempio n. 29
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.radioDSDisabled = new System.Windows.Forms.RadioButton();
     this.textChars = new System.Windows.Forms.TextBox();
     this.btnAttach = new System.Windows.Forms.Button();
     this.radioSendExp = new System.Windows.Forms.RadioButton();
     this.lblDSConnection = new System.Windows.Forms.Label();
     this.textFriendName = new System.Windows.Forms.TextBox();
     this.groupConnectionMode = new System.Windows.Forms.GroupBox();
     this.radioDSEnabled = new System.Windows.Forms.RadioButton();
     this.textFriendComputer = new System.Windows.Forms.TextBox();
     this.lblRemoteQueue = new System.Windows.Forms.Label();
     this.groupSendType = new System.Windows.Forms.GroupBox();
     this.radioSendRec = new System.Windows.Forms.RadioButton();
     this.btnCancel = new System.Windows.Forms.Button();
     this.picture1 = new System.Windows.Forms.PictureBox();
     this.btnConnect = new System.Windows.Forms.Button();
     this.lblRemoteComputer = new System.Windows.Forms.Label();
     this.groupConnectionMode.SuspendLayout();
     this.groupSendType.SuspendLayout();
     this.SuspendLayout();
     //
     // radioDSDisabled
     //
     this.radioDSDisabled.Location = new System.Drawing.Point(8, 56);
     this.radioDSDisabled.Name = "radioDSDisabled";
     this.radioDSDisabled.Size = new System.Drawing.Size(216, 16);
     this.radioDSDisabled.TabIndex = 1;
     this.radioDSDisabled.Text = "Private queue";
     //
     // textChars
     //
     this.textChars.Location = new System.Drawing.Point(16, 272);
     this.textChars.Name = "textChars";
     this.textChars.Size = new System.Drawing.Size(384, 20);
     this.textChars.TabIndex = 11;
     this.textChars.Text = "";
     this.textChars.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.textChars_KeyPress);
     //
     // btnAttach
     //
     this.btnAttach.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.btnAttach.Location = new System.Drawing.Point(312, 304);
     this.btnAttach.Name = "btnAttach";
     this.btnAttach.Size = new System.Drawing.Size(88, 24);
     this.btnAttach.TabIndex = 3;
     this.btnAttach.Text = "Start Sending";
     this.btnAttach.Click += new System.EventHandler(this.btnAttach_Click);
     //
     // radioSendExp
     //
     this.radioSendExp.Checked = true;
     this.radioSendExp.Location = new System.Drawing.Point(16, 24);
     this.radioSendExp.Name = "radioSendExp";
     this.radioSendExp.Size = new System.Drawing.Size(104, 16);
     this.radioSendExp.TabIndex = 0;
     this.radioSendExp.TabStop = true;
     this.radioSendExp.Text = "&Express";
     //
     // lblDSConnection
     //
     this.lblDSConnection.Location = new System.Drawing.Point(16, 384);
     this.lblDSConnection.Name = "lblDSConnection";
     this.lblDSConnection.Size = new System.Drawing.Size(100, 16);
     this.lblDSConnection.TabIndex = 7;
     //
     // textFriendName
     //
     this.textFriendName.Location = new System.Drawing.Point(160, 304);
     this.textFriendName.Name = "textFriendName";
     this.textFriendName.Size = new System.Drawing.Size(144, 20);
     this.textFriendName.TabIndex = 2;
     this.textFriendName.Text = "";
     this.textFriendName.TextChanged += new System.EventHandler(this.textFriendName_TextChanged);
     //
     // groupConnectionMode
     //
     this.groupConnectionMode.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                       this.radioDSDisabled,
                                                                                       this.radioDSEnabled});
     this.groupConnectionMode.Location = new System.Drawing.Point(96, 304);
     this.groupConnectionMode.Name = "groupConnectionMode";
     this.groupConnectionMode.Size = new System.Drawing.Size(232, 96);
     this.groupConnectionMode.TabIndex = 10;
     this.groupConnectionMode.TabStop = false;
     this.groupConnectionMode.Text = "Queue Type";
     //
     // radioDSEnabled
     //
     this.radioDSEnabled.Checked = true;
     this.radioDSEnabled.Location = new System.Drawing.Point(8, 24);
     this.radioDSEnabled.Name = "radioDSEnabled";
     this.radioDSEnabled.Size = new System.Drawing.Size(208, 16);
     this.radioDSEnabled.TabIndex = 0;
     this.radioDSEnabled.TabStop = true;
     this.radioDSEnabled.Text = "Public queue";
     //
     // textFriendComputer
     //
     this.textFriendComputer.Location = new System.Drawing.Point(160, 336);
     this.textFriendComputer.Name = "textFriendComputer";
     this.textFriendComputer.Size = new System.Drawing.Size(144, 20);
     this.textFriendComputer.TabIndex = 6;
     this.textFriendComputer.Text = "";
     this.textFriendComputer.TextChanged += new System.EventHandler(this.textFriendComputer_TextChanged);
     //
     // lblRemoteQueue
     //
     this.lblRemoteQueue.Location = new System.Drawing.Point(16, 304);
     this.lblRemoteQueue.Name = "lblRemoteQueue";
     this.lblRemoteQueue.Size = new System.Drawing.Size(128, 16);
     this.lblRemoteQueue.TabIndex = 1;
     this.lblRemoteQueue.Text = "Send drawing to queue:";
     //
     // groupSendType
     //
     this.groupSendType.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                                 this.radioSendRec,
                                                                                 this.radioSendExp});
     this.groupSendType.Location = new System.Drawing.Point(256, 368);
     this.groupSendType.Name = "groupSendType";
     this.groupSendType.Size = new System.Drawing.Size(136, 72);
     this.groupSendType.TabIndex = 4;
     this.groupSendType.TabStop = false;
     this.groupSendType.Text = "Type of delivery";
     //
     // radioSendRec
     //
     this.radioSendRec.Location = new System.Drawing.Point(16, 48);
     this.radioSendRec.Name = "radioSendRec";
     this.radioSendRec.Size = new System.Drawing.Size(104, 16);
     this.radioSendRec.TabIndex = 0;
     this.radioSendRec.Text = "Recoverable";
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(224, 408);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(104, 32);
     this.btnCancel.TabIndex = 9;
     this.btnCancel.Text = "Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // picture1
     //
     this.picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picture1.Location = new System.Drawing.Point(16, 8);
     this.picture1.Name = "picture1";
     this.picture1.Size = new System.Drawing.Size(383, 257);
     this.picture1.TabIndex = 0;
     this.picture1.TabStop = false;
     this.picture1.Paint += new System.Windows.Forms.PaintEventHandler(this.picture1_Paint);
     this.picture1.MouseUp += new System.Windows.Forms.MouseEventHandler(this.picture1_MouseUp);
     this.picture1.MouseMove += new System.Windows.Forms.MouseEventHandler(this.picture1_MouseMove);
     this.picture1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.picture1_MouseDown);
     //
     // btnConnect
     //
     this.btnConnect.Location = new System.Drawing.Point(96, 408);
     this.btnConnect.Name = "btnConnect";
     this.btnConnect.Size = new System.Drawing.Size(104, 32);
     this.btnConnect.TabIndex = 8;
     this.btnConnect.Text = "OK";
     this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
     //
     // lblRemoteComputer
     //
     this.lblRemoteComputer.Location = new System.Drawing.Point(16, 336);
     this.lblRemoteComputer.Name = "lblRemoteComputer";
     this.lblRemoteComputer.Size = new System.Drawing.Size(144, 24);
     this.lblRemoteComputer.TabIndex = 5;
     this.lblRemoteComputer.Text = "Send drawing to computer:";
     //
     // Form1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize = new System.Drawing.Size(413, 450);
     this.Controls.AddRange(new System.Windows.Forms.Control[] {
                                                                   this.groupConnectionMode,
                                                                   this.textChars,
                                                                   this.btnCancel,
                                                                   this.btnConnect,
                                                                   this.lblDSConnection,
                                                                   this.textFriendComputer,
                                                                   this.groupSendType,
                                                                   this.btnAttach,
                                                                   this.textFriendName,
                                                                   this.lblRemoteQueue,
                                                                   this.picture1,
                                                                   this.lblRemoteComputer});
     this.Name = "Form1";
     this.Text = "Form1";
     this.groupConnectionMode.ResumeLayout(false);
     this.groupSendType.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnApply = new System.Windows.Forms.Button();
     this.trackTolLo = new System.Windows.Forms.TrackBar();
     this.trackTolHi = new System.Windows.Forms.TrackBar();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.trackSoften = new System.Windows.Forms.TrackBar();
     this.label4 = new System.Windows.Forms.Label();
     this.cboForeground = new System.Windows.Forms.ComboBox();
     this.cboBackground = new System.Windows.Forms.ComboBox();
     this.label5 = new System.Windows.Forms.Label();
     this.btnForeground = new System.Windows.Forms.Button();
     this.btnBackground = new System.Windows.Forms.Button();
     this.lblSpread = new System.Windows.Forms.Label();
     this.lstHistory = new System.Windows.Forms.ListBox();
     this.btnSaveAs = new System.Windows.Forms.Button();
     this.chkBlender = new System.Windows.Forms.CheckBox();
     this.button1 = new System.Windows.Forms.Button();
     this.optSoft1 = new System.Windows.Forms.RadioButton();
     this.optSoft2 = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.trackTolLo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackTolHi)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackSoften)).BeginInit();
     this.SuspendLayout();
     //
     // btnApply
     //
     this.btnApply.Location = new System.Drawing.Point(263, 213);
     this.btnApply.Name = "btnApply";
     this.btnApply.Size = new System.Drawing.Size(82, 23);
     this.btnApply.TabIndex = 7;
     this.btnApply.Text = "&Verkställ";
     this.btnApply.UseVisualStyleBackColor = true;
     this.btnApply.Click += new System.EventHandler(this.btnApply_Click);
     //
     // trackTolLo
     //
     this.trackTolLo.LargeChange = 1;
     this.trackTolLo.Location = new System.Drawing.Point(71, 60);
     this.trackTolLo.Maximum = 40;
     this.trackTolLo.Name = "trackTolLo";
     this.trackTolLo.Size = new System.Drawing.Size(274, 45);
     this.trackTolLo.TabIndex = 5;
     this.trackTolLo.TickStyle = System.Windows.Forms.TickStyle.Both;
     this.trackTolLo.Value = 2;
     //
     // trackTolHi
     //
     this.trackTolHi.LargeChange = 1;
     this.trackTolHi.Location = new System.Drawing.Point(71, 111);
     this.trackTolHi.Maximum = 40;
     this.trackTolHi.Name = "trackTolHi";
     this.trackTolHi.Size = new System.Drawing.Size(274, 45);
     this.trackTolHi.TabIndex = 6;
     this.trackTolHi.TickStyle = System.Windows.Forms.TickStyle.Both;
     this.trackTolHi.Value = 18;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(12, 73);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(39, 13);
     this.label1.TabIndex = 8;
     this.label1.Text = "Tol låg";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(12, 124);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 13);
     this.label2.TabIndex = 9;
     this.label2.Text = "Tol hög";
     //
     // trackSoften
     //
     this.trackSoften.LargeChange = 1;
     this.trackSoften.Location = new System.Drawing.Point(71, 162);
     this.trackSoften.Maximum = 40;
     this.trackSoften.Name = "trackSoften";
     this.trackSoften.Size = new System.Drawing.Size(274, 45);
     this.trackSoften.TabIndex = 10;
     this.trackSoften.TickStyle = System.Windows.Forms.TickStyle.Both;
     this.trackSoften.Value = 10;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(12, 9);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(33, 13);
     this.label4.TabIndex = 13;
     this.label4.Text = "Motiv";
     //
     // cboForeground
     //
     this.cboForeground.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboForeground.FormattingEnabled = true;
     this.cboForeground.Location = new System.Drawing.Point(71, 6);
     this.cboForeground.Name = "cboForeground";
     this.cboForeground.Size = new System.Drawing.Size(233, 21);
     this.cboForeground.TabIndex = 14;
     this.cboForeground.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.cbo_Format);
     //
     // cboBackground
     //
     this.cboBackground.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboBackground.FormattingEnabled = true;
     this.cboBackground.Location = new System.Drawing.Point(71, 33);
     this.cboBackground.Name = "cboBackground";
     this.cboBackground.Size = new System.Drawing.Size(233, 21);
     this.cboBackground.TabIndex = 16;
     this.cboBackground.SelectedIndexChanged += new System.EventHandler(this.cboBackground_SelectedIndexChanged);
     this.cboBackground.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.cbo_Format);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(12, 36);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(53, 13);
     this.label5.TabIndex = 15;
     this.label5.Text = "Bakgrund";
     //
     // btnForeground
     //
     this.btnForeground.Location = new System.Drawing.Point(310, 6);
     this.btnForeground.Name = "btnForeground";
     this.btnForeground.Size = new System.Drawing.Size(35, 21);
     this.btnForeground.TabIndex = 17;
     this.btnForeground.Text = "...";
     this.btnForeground.UseVisualStyleBackColor = true;
     this.btnForeground.Click += new System.EventHandler(this.btnForeground_Click);
     //
     // btnBackground
     //
     this.btnBackground.Location = new System.Drawing.Point(310, 33);
     this.btnBackground.Name = "btnBackground";
     this.btnBackground.Size = new System.Drawing.Size(35, 21);
     this.btnBackground.TabIndex = 18;
     this.btnBackground.Text = "...";
     this.btnBackground.UseVisualStyleBackColor = true;
     this.btnBackground.Click += new System.EventHandler(this.btnBackground_Click);
     //
     // lblSpread
     //
     this.lblSpread.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.lblSpread.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblSpread.Location = new System.Drawing.Point(15, 294);
     this.lblSpread.Name = "lblSpread";
     this.lblSpread.Size = new System.Drawing.Size(330, 23);
     this.lblSpread.TabIndex = 20;
     this.lblSpread.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lstHistory
     //
     this.lstHistory.FormattingEnabled = true;
     this.lstHistory.Location = new System.Drawing.Point(15, 213);
     this.lstHistory.Name = "lstHistory";
     this.lstHistory.Size = new System.Drawing.Size(128, 69);
     this.lstHistory.TabIndex = 19;
     this.lstHistory.SelectedIndexChanged += new System.EventHandler(this.lstHistory_SelectedIndexChanged);
     //
     // btnSaveAs
     //
     this.btnSaveAs.Location = new System.Drawing.Point(263, 242);
     this.btnSaveAs.Name = "btnSaveAs";
     this.btnSaveAs.Size = new System.Drawing.Size(82, 23);
     this.btnSaveAs.TabIndex = 21;
     this.btnSaveAs.Text = "&Spara som...";
     this.btnSaveAs.UseVisualStyleBackColor = true;
     this.btnSaveAs.Click += new System.EventHandler(this.btnSaveAs_Click);
     //
     // chkBlender
     //
     this.chkBlender.Appearance = System.Windows.Forms.Appearance.Button;
     this.chkBlender.Location = new System.Drawing.Point(177, 242);
     this.chkBlender.Name = "chkBlender";
     this.chkBlender.Size = new System.Drawing.Size(80, 23);
     this.chkBlender.TabIndex = 22;
     this.chkBlender.Text = "&Blandare";
     this.chkBlender.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.chkBlender.UseVisualStyleBackColor = true;
     this.chkBlender.CheckedChanged += new System.EventHandler(this.chkBlender_CheckedChanged);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(179, 271);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(80, 23);
     this.button1.TabIndex = 23;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Visible = false;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // optSoft1
     //
     this.optSoft1.AutoSize = true;
     this.optSoft1.Location = new System.Drawing.Point(15, 162);
     this.optSoft1.Name = "optSoft1";
     this.optSoft1.Size = new System.Drawing.Size(53, 17);
     this.optSoft1.TabIndex = 24;
     this.optSoft1.Text = "Soft 1";
     this.optSoft1.UseVisualStyleBackColor = true;
     //
     // optSoft2
     //
     this.optSoft2.AutoSize = true;
     this.optSoft2.Checked = true;
     this.optSoft2.Location = new System.Drawing.Point(15, 185);
     this.optSoft2.Name = "optSoft2";
     this.optSoft2.Size = new System.Drawing.Size(53, 17);
     this.optSoft2.TabIndex = 25;
     this.optSoft2.TabStop = true;
     this.optSoft2.Text = "Soft 2";
     this.optSoft2.UseVisualStyleBackColor = true;
     //
     // FTool
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(354, 326);
     this.Controls.Add(this.optSoft2);
     this.Controls.Add(this.optSoft1);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.chkBlender);
     this.Controls.Add(this.btnSaveAs);
     this.Controls.Add(this.lblSpread);
     this.Controls.Add(this.lstHistory);
     this.Controls.Add(this.btnBackground);
     this.Controls.Add(this.btnForeground);
     this.Controls.Add(this.cboBackground);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.cboForeground);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.trackSoften);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.btnApply);
     this.Controls.Add(this.trackTolHi);
     this.Controls.Add(this.trackTolLo);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "FTool";
     this.ShowInTaskbar = false;
     ((System.ComponentModel.ISupportInitialize)(this.trackTolLo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackTolHi)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.trackSoften)).EndInit();
     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.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cmbRandom = new System.Windows.Forms.ComboBox();
     this.rdoGreater = new System.Windows.Forms.RadioButton();
     this.rdoLess = new System.Windows.Forms.RadioButton();
     this.btnReset = new System.Windows.Forms.Button();
     this.btnGenerate = new System.Windows.Forms.Button();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.rdoGreater2 = new System.Windows.Forms.RadioButton();
     this.rdoLess2 = new System.Windows.Forms.RadioButton();
     this.btnReset2 = new System.Windows.Forms.Button();
     this.btnGenerate2 = new System.Windows.Forms.Button();
     this.cmbRandom2 = new System.Windows.Forms.ComboBox();
     this.btnBack = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Lavender;
     this.groupBox1.Controls.Add(this.cmbRandom);
     this.groupBox1.Controls.Add(this.rdoGreater);
     this.groupBox1.Controls.Add(this.rdoLess);
     this.groupBox1.Controls.Add(this.btnReset);
     this.groupBox1.Controls.Add(this.btnGenerate);
     this.groupBox1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(48, 35);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(334, 311);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Quiz03_AAF19";
     //
     // cmbRandom
     //
     this.cmbRandom.FormattingEnabled = true;
     this.cmbRandom.Location = new System.Drawing.Point(17, 47);
     this.cmbRandom.Name = "cmbRandom";
     this.cmbRandom.Size = new System.Drawing.Size(129, 28);
     this.cmbRandom.TabIndex = 1;
     //
     // rdoGreater
     //
     this.rdoGreater.AutoSize = true;
     this.rdoGreater.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdoGreater.Location = new System.Drawing.Point(156, 151);
     this.rdoGreater.Name = "rdoGreater";
     this.rdoGreater.Size = new System.Drawing.Size(145, 23);
     this.rdoGreater.TabIndex = 3;
     this.rdoGreater.TabStop = true;
     this.rdoGreater.Text = "Greater than 500";
     this.rdoGreater.UseVisualStyleBackColor = true;
     //
     // rdoLess
     //
     this.rdoLess.AutoSize = true;
     this.rdoLess.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdoLess.Location = new System.Drawing.Point(156, 113);
     this.rdoLess.Name = "rdoLess";
     this.rdoLess.Size = new System.Drawing.Size(125, 23);
     this.rdoLess.TabIndex = 2;
     this.rdoLess.TabStop = true;
     this.rdoLess.Text = "Less than 500";
     this.rdoLess.UseVisualStyleBackColor = true;
     //
     // btnReset
     //
     this.btnReset.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.btnReset.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReset.Location = new System.Drawing.Point(217, 243);
     this.btnReset.Name = "btnReset";
     this.btnReset.Size = new System.Drawing.Size(97, 41);
     this.btnReset.TabIndex = 1;
     this.btnReset.Text = "Reset";
     this.btnReset.UseVisualStyleBackColor = false;
     this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
     //
     // btnGenerate
     //
     this.btnGenerate.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.btnGenerate.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGenerate.Location = new System.Drawing.Point(177, 33);
     this.btnGenerate.Name = "btnGenerate";
     this.btnGenerate.Size = new System.Drawing.Size(137, 38);
     this.btnGenerate.TabIndex = 0;
     this.btnGenerate.Text = "Generate";
     this.btnGenerate.UseVisualStyleBackColor = false;
     this.btnGenerate.Click += new System.EventHandler(this.btnGenerate_Click);
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Lavender;
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Controls.Add(this.rdoGreater2);
     this.groupBox2.Controls.Add(this.rdoLess2);
     this.groupBox2.Controls.Add(this.btnReset2);
     this.groupBox2.Controls.Add(this.btnGenerate2);
     this.groupBox2.Controls.Add(this.cmbRandom2);
     this.groupBox2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.Location = new System.Drawing.Point(421, 39);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(343, 307);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Quiz03_EAF19";
     //
     // rdoGreater2
     //
     this.rdoGreater2.AutoSize = true;
     this.rdoGreater2.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdoGreater2.Location = new System.Drawing.Point(166, 147);
     this.rdoGreater2.Name = "rdoGreater2";
     this.rdoGreater2.Size = new System.Drawing.Size(136, 23);
     this.rdoGreater2.TabIndex = 4;
     this.rdoGreater2.TabStop = true;
     this.rdoGreater2.Text = "Greater than 50";
     this.rdoGreater2.UseVisualStyleBackColor = true;
     //
     // rdoLess2
     //
     this.rdoLess2.AutoSize = true;
     this.rdoLess2.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdoLess2.Location = new System.Drawing.Point(166, 109);
     this.rdoLess2.Name = "rdoLess2";
     this.rdoLess2.Size = new System.Drawing.Size(116, 23);
     this.rdoLess2.TabIndex = 3;
     this.rdoLess2.TabStop = true;
     this.rdoLess2.Text = "Less than 50";
     this.rdoLess2.UseVisualStyleBackColor = true;
     this.rdoLess2.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // btnReset2
     //
     this.btnReset2.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.btnReset2.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnReset2.Location = new System.Drawing.Point(213, 240);
     this.btnReset2.Name = "btnReset2";
     this.btnReset2.Size = new System.Drawing.Size(100, 40);
     this.btnReset2.TabIndex = 2;
     this.btnReset2.Text = "Reset";
     this.btnReset2.UseVisualStyleBackColor = false;
     this.btnReset2.Click += new System.EventHandler(this.btnReset2_Click);
     //
     // btnGenerate2
     //
     this.btnGenerate2.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.btnGenerate2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnGenerate2.Location = new System.Drawing.Point(180, 29);
     this.btnGenerate2.Name = "btnGenerate2";
     this.btnGenerate2.Size = new System.Drawing.Size(137, 38);
     this.btnGenerate2.TabIndex = 1;
     this.btnGenerate2.Text = "Generate";
     this.btnGenerate2.UseVisualStyleBackColor = false;
     this.btnGenerate2.Click += new System.EventHandler(this.btnGenerate2_Click);
     //
     // cmbRandom2
     //
     this.cmbRandom2.FormattingEnabled = true;
     this.cmbRandom2.Location = new System.Drawing.Point(22, 43);
     this.cmbRandom2.Name = "cmbRandom2";
     this.cmbRandom2.Size = new System.Drawing.Size(133, 28);
     this.cmbRandom2.TabIndex = 0;
     this.cmbRandom2.SelectedIndexChanged += new System.EventHandler(this.cmbRandom2_SelectedIndexChanged);
     //
     // btnBack
     //
     this.btnBack.BackColor = System.Drawing.Color.Goldenrod;
     this.btnBack.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBack.Location = new System.Drawing.Point(649, 371);
     this.btnBack.Name = "btnBack";
     this.btnBack.Size = new System.Drawing.Size(115, 43);
     this.btnBack.TabIndex = 2;
     this.btnBack.Text = "Back";
     this.btnBack.UseVisualStyleBackColor = false;
     this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Times New Roman", 10.2F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(45, 109);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(60, 19);
     this.label1.TabIndex = 5;
     this.label1.Text = "Count:";
     //
     // FrmRandomCombo
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(800, 450);
     this.Controls.Add(this.btnBack);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Name = "FrmRandomCombo";
     this.Text = "FrmRandomCombo";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 32
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Page4Form));
     this.addNumGroupGpb = new System.Windows.Forms.GroupBox();
     this.clearMDB = new System.Windows.Forms.Button();
     this.label3 = new System.Windows.Forms.Label();
     this.zstBtn = new System.Windows.Forms.Button();
     this.label2 = new System.Windows.Forms.Label();
     this.issueTxt = new System.Windows.Forms.TextBox();
     this.numGroupBtn = new System.Windows.Forms.Button();
     this.numGroupTxt = new System.Windows.Forms.TextBox();
     this.liangMaChaGpb = new System.Windows.Forms.GroupBox();
     this.liangMaChaSelectAll = new System.Windows.Forms.Button();
     this.liangMaChaClearBtn = new System.Windows.Forms.Button();
     this.liangMaChaGenerateBtn = new System.Windows.Forms.Button();
     this.lmcCbx_459 = new _3d.CusCheckBox();
     this.lmcCbx_369 = new _3d.CusCheckBox();
     this.lmcCbx_279 = new _3d.CusCheckBox();
     this.lmcCbx_189 = new _3d.CusCheckBox();
     this.lmcCbx_099 = new _3d.CusCheckBox();
     this.label12 = new System.Windows.Forms.Label();
     this.lmcCbx_448 = new _3d.CusCheckBox();
     this.lmcCbx_358 = new _3d.CusCheckBox();
     this.lmcCbx_268 = new _3d.CusCheckBox();
     this.lmcCbx_178 = new _3d.CusCheckBox();
     this.lmcCbx_088 = new _3d.CusCheckBox();
     this.label11 = new System.Windows.Forms.Label();
     this.lmcCbx_347 = new _3d.CusCheckBox();
     this.lmcCbx_257 = new _3d.CusCheckBox();
     this.lmcCbx_167 = new _3d.CusCheckBox();
     this.lmcCbx_077 = new _3d.CusCheckBox();
     this.label10 = new System.Windows.Forms.Label();
     this.lmcCbx_336 = new _3d.CusCheckBox();
     this.lmcCbx_246 = new _3d.CusCheckBox();
     this.lmcCbx_156 = new _3d.CusCheckBox();
     this.label9 = new System.Windows.Forms.Label();
     this.lmcCbx_066 = new _3d.CusCheckBox();
     this.lmcCbx_235 = new _3d.CusCheckBox();
     this.lmcCbx_145 = new _3d.CusCheckBox();
     this.label8 = new System.Windows.Forms.Label();
     this.lmcCbx_055 = new _3d.CusCheckBox();
     this.lmcCbx_224 = new _3d.CusCheckBox();
     this.lmcCbx_134 = new _3d.CusCheckBox();
     this.label7 = new System.Windows.Forms.Label();
     this.lmcCbx_004 = new _3d.CusCheckBox();
     this.lmcCbx_123 = new _3d.CusCheckBox();
     this.lmcCbx_112 = new _3d.CusCheckBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.lmcCbx_033 = new _3d.CusCheckBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lmcCbx_022 = new _3d.CusCheckBox();
     this.lmcCbx_001 = new _3d.CusCheckBox();
     this.liangWeiShuGpb = new System.Windows.Forms.GroupBox();
     this.number2Gpb = new System.Windows.Forms.GroupBox();
     this.radioButton11 = new System.Windows.Forms.RadioButton();
     this.radioButton12 = new System.Windows.Forms.RadioButton();
     this.radioButton13 = new System.Windows.Forms.RadioButton();
     this.radioButton14 = new System.Windows.Forms.RadioButton();
     this.radioButton15 = new System.Windows.Forms.RadioButton();
     this.radioButton16 = new System.Windows.Forms.RadioButton();
     this.radioButton17 = new System.Windows.Forms.RadioButton();
     this.radioButton18 = new System.Windows.Forms.RadioButton();
     this.radioButton19 = new System.Windows.Forms.RadioButton();
     this.radioButton20 = new System.Windows.Forms.RadioButton();
     this.number1Gpb = new System.Windows.Forms.GroupBox();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton3 = new System.Windows.Forms.RadioButton();
     this.radioButton4 = new System.Windows.Forms.RadioButton();
     this.radioButton5 = new System.Windows.Forms.RadioButton();
     this.radioButton6 = new System.Windows.Forms.RadioButton();
     this.radioButton7 = new System.Windows.Forms.RadioButton();
     this.radioButton8 = new System.Windows.Forms.RadioButton();
     this.radioButton9 = new System.Windows.Forms.RadioButton();
     this.radioButton10 = new System.Windows.Forms.RadioButton();
     this.LiangWeiShuClearBtn = new System.Windows.Forms.Button();
     this.liangWeiShuGenerateBtn = new System.Windows.Forms.Button();
     this.groupNum_1 = new System.Windows.Forms.GroupBox();
     this.clear1HaoMaZubtn = new System.Windows.Forms.Button();
     this.checkBox11 = new _3d.CusCheckBox();
     this.checkBox12 = new _3d.CusCheckBox();
     this.checkBox13 = new _3d.CusCheckBox();
     this.checkBox14 = new _3d.CusCheckBox();
     this.checkBox15 = new _3d.CusCheckBox();
     this.checkBox16 = new _3d.CusCheckBox();
     this.checkBox17 = new _3d.CusCheckBox();
     this.checkBox18 = new _3d.CusCheckBox();
     this.checkBox19 = new _3d.CusCheckBox();
     this.checkBox20 = new _3d.CusCheckBox();
     this.oneZu3 = new _3d.CusCheckBox();
     this.oneZu2 = new _3d.CusCheckBox();
     this.oneZu1 = new _3d.CusCheckBox();
     this.oneZu0 = new _3d.CusCheckBox();
     this.oneZuChu = new System.Windows.Forms.Label();
     this.groupNum_2 = new System.Windows.Forms.GroupBox();
     this.clear2HaoMaZubtn = new System.Windows.Forms.Button();
     this.twoZu3 = new _3d.CusCheckBox();
     this.checkBox54 = new _3d.CusCheckBox();
     this.twoZu2 = new _3d.CusCheckBox();
     this.checkBox55 = new _3d.CusCheckBox();
     this.twoZu1 = new _3d.CusCheckBox();
     this.checkBox56 = new _3d.CusCheckBox();
     this.twoZu0 = new _3d.CusCheckBox();
     this.checkBox57 = new _3d.CusCheckBox();
     this.twoZuChu = new System.Windows.Forms.Label();
     this.checkBox58 = new _3d.CusCheckBox();
     this.checkBox59 = new _3d.CusCheckBox();
     this.checkBox60 = new _3d.CusCheckBox();
     this.checkBox61 = new _3d.CusCheckBox();
     this.checkBox62 = new _3d.CusCheckBox();
     this.checkBox63 = new _3d.CusCheckBox();
     this.pingMianShaHaoGpb = new System.Windows.Forms.GroupBox();
     this.clearShaHaoBtn = new System.Windows.Forms.Button();
     this.checkBox6 = new _3d.CusCheckBox();
     this.checkBox10 = new _3d.CusCheckBox();
     this.checkBox7 = new _3d.CusCheckBox();
     this.checkBox8 = new _3d.CusCheckBox();
     this.checkBox9 = new _3d.CusCheckBox();
     this.checkBox5 = new _3d.CusCheckBox();
     this.checkBox4 = new _3d.CusCheckBox();
     this.checkBox3 = new _3d.CusCheckBox();
     this.checkBox2 = new _3d.CusCheckBox();
     this.checkBox1 = new _3d.CusCheckBox();
     this.label1 = new System.Windows.Forms.Label();
     this.quantaiGpb = new System.Windows.Forms.GroupBox();
     this.zuLiu = new _3d.CusCheckBox();
     this.label13 = new System.Windows.Forms.Label();
     this.zuSan = new _3d.CusCheckBox();
     this.haoMaPaiLie = new System.Windows.Forms.GroupBox();
     this.calHaoMaXT = new System.Windows.Forms.Button();
     this.haoMaPaiLieSelectAll = new System.Windows.Forms.Button();
     this.haoMaPaiLieClear = new System.Windows.Forms.Button();
     this.dxxCbx = new _3d.CusCheckBox();
     this.xdxCbx = new _3d.CusCheckBox();
     this.xxdCbx = new _3d.CusCheckBox();
     this.xxxCbx = new _3d.CusCheckBox();
     this.xddCbx = new _3d.CusCheckBox();
     this.dxdCbx = new _3d.CusCheckBox();
     this.ddxCbx = new _3d.CusCheckBox();
     this.dddCbx = new _3d.CusCheckBox();
     this.addNumGroupGpb.SuspendLayout();
     this.liangMaChaGpb.SuspendLayout();
     this.liangWeiShuGpb.SuspendLayout();
     this.number2Gpb.SuspendLayout();
     this.number1Gpb.SuspendLayout();
     this.groupNum_1.SuspendLayout();
     this.groupNum_2.SuspendLayout();
     this.pingMianShaHaoGpb.SuspendLayout();
     this.quantaiGpb.SuspendLayout();
     this.haoMaPaiLie.SuspendLayout();
     this.SuspendLayout();
     //
     // addNumGroupGpb
     //
     this.addNumGroupGpb.Controls.Add(this.clearMDB);
     this.addNumGroupGpb.Controls.Add(this.label3);
     this.addNumGroupGpb.Controls.Add(this.zstBtn);
     this.addNumGroupGpb.Controls.Add(this.label2);
     this.addNumGroupGpb.Controls.Add(this.issueTxt);
     this.addNumGroupGpb.Controls.Add(this.numGroupBtn);
     this.addNumGroupGpb.Controls.Add(this.numGroupTxt);
     this.addNumGroupGpb.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.addNumGroupGpb.Location = new System.Drawing.Point(593, 4);
     this.addNumGroupGpb.Name = "addNumGroupGpb";
     this.addNumGroupGpb.Size = new System.Drawing.Size(298, 124);
     this.addNumGroupGpb.TabIndex = 12;
     this.addNumGroupGpb.TabStop = false;
     this.addNumGroupGpb.Text = "号码历史";
     //
     // clearMDB
     //
     this.clearMDB.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.clearMDB.Location = new System.Drawing.Point(211, 83);
     this.clearMDB.Margin = new System.Windows.Forms.Padding(0);
     this.clearMDB.Name = "clearMDB";
     this.clearMDB.Size = new System.Drawing.Size(52, 26);
     this.clearMDB.TabIndex = 22;
     this.clearMDB.Text = "清";
     this.clearMDB.UseVisualStyleBackColor = true;
     this.clearMDB.Click += new System.EventHandler(this.clearMDB_Click);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(30, 57);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(121, 20);
     this.label3.TabIndex = 16;
     this.label3.Text = "请输入开奖号码:";
     //
     // zstBtn
     //
     this.zstBtn.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.zstBtn.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.zstBtn.ForeColor = System.Drawing.Color.DarkBlue;
     this.zstBtn.Image = ((System.Drawing.Image)(resources.GetObject("zstBtn.Image")));
     this.zstBtn.Location = new System.Drawing.Point(34, 82);
     this.zstBtn.Name = "zstBtn";
     this.zstBtn.Size = new System.Drawing.Size(105, 30);
     this.zstBtn.TabIndex = 21;
     this.zstBtn.Text = "软件走势图";
     this.zstBtn.UseVisualStyleBackColor = true;
     this.zstBtn.Click += new System.EventHandler(this.zstBtn_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(30, 25);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(121, 20);
     this.label2.TabIndex = 15;
     this.label2.Text = "请输入开奖期号:";
     //
     // issueTxt
     //
     this.issueTxt.Location = new System.Drawing.Point(157, 22);
     this.issueTxt.MaxLength = 12;
     this.issueTxt.Name = "issueTxt";
     this.issueTxt.Size = new System.Drawing.Size(106, 26);
     this.issueTxt.TabIndex = 14;
     this.issueTxt.TextChanged += new System.EventHandler(this.issueTxt_TextChanged);
     //
     // numGroupBtn
     //
     this.numGroupBtn.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.numGroupBtn.Location = new System.Drawing.Point(157, 83);
     this.numGroupBtn.Margin = new System.Windows.Forms.Padding(0);
     this.numGroupBtn.Name = "numGroupBtn";
     this.numGroupBtn.Size = new System.Drawing.Size(52, 26);
     this.numGroupBtn.TabIndex = 13;
     this.numGroupBtn.Text = "添加";
     this.numGroupBtn.UseVisualStyleBackColor = true;
     this.numGroupBtn.Click += new System.EventHandler(this.numGroupBtn_Click);
     //
     // numGroupTxt
     //
     this.numGroupTxt.Location = new System.Drawing.Point(157, 54);
     this.numGroupTxt.MaxLength = 3;
     this.numGroupTxt.Name = "numGroupTxt";
     this.numGroupTxt.Size = new System.Drawing.Size(106, 26);
     this.numGroupTxt.TabIndex = 12;
     this.numGroupTxt.TextChanged += new System.EventHandler(this.numGroupTxt_TextChanged);
     //
     // liangMaChaGpb
     //
     this.liangMaChaGpb.Controls.Add(this.liangMaChaSelectAll);
     this.liangMaChaGpb.Controls.Add(this.liangMaChaClearBtn);
     this.liangMaChaGpb.Controls.Add(this.liangMaChaGenerateBtn);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_459);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_369);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_279);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_189);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_099);
     this.liangMaChaGpb.Controls.Add(this.label12);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_448);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_358);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_268);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_178);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_088);
     this.liangMaChaGpb.Controls.Add(this.label11);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_347);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_257);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_167);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_077);
     this.liangMaChaGpb.Controls.Add(this.label10);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_336);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_246);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_156);
     this.liangMaChaGpb.Controls.Add(this.label9);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_066);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_235);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_145);
     this.liangMaChaGpb.Controls.Add(this.label8);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_055);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_224);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_134);
     this.liangMaChaGpb.Controls.Add(this.label7);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_004);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_123);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_112);
     this.liangMaChaGpb.Controls.Add(this.label6);
     this.liangMaChaGpb.Controls.Add(this.label5);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_033);
     this.liangMaChaGpb.Controls.Add(this.label4);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_022);
     this.liangMaChaGpb.Controls.Add(this.lmcCbx_001);
     this.liangMaChaGpb.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.liangMaChaGpb.Location = new System.Drawing.Point(2, 136);
     this.liangMaChaGpb.Name = "liangMaChaGpb";
     this.liangMaChaGpb.Size = new System.Drawing.Size(383, 317);
     this.liangMaChaGpb.TabIndex = 19;
     this.liangMaChaGpb.TabStop = false;
     this.liangMaChaGpb.Text = "两码差(独立计算功能)";
     //
     // liangMaChaSelectAll
     //
     this.liangMaChaSelectAll.Location = new System.Drawing.Point(275, 71);
     this.liangMaChaSelectAll.Name = "liangMaChaSelectAll";
     this.liangMaChaSelectAll.Size = new System.Drawing.Size(89, 40);
     this.liangMaChaSelectAll.TabIndex = 52;
     this.liangMaChaSelectAll.Text = "全选";
     this.liangMaChaSelectAll.UseVisualStyleBackColor = true;
     this.liangMaChaSelectAll.Click += new System.EventHandler(this.liangMaChaSelectAll_Click);
     //
     // liangMaChaClearBtn
     //
     this.liangMaChaClearBtn.Location = new System.Drawing.Point(275, 117);
     this.liangMaChaClearBtn.Name = "liangMaChaClearBtn";
     this.liangMaChaClearBtn.Size = new System.Drawing.Size(89, 40);
     this.liangMaChaClearBtn.TabIndex = 51;
     this.liangMaChaClearBtn.Text = "清";
     this.liangMaChaClearBtn.UseVisualStyleBackColor = true;
     this.liangMaChaClearBtn.Click += new System.EventHandler(this.liangMaChaClearBtn_Click);
     //
     // liangMaChaGenerateBtn
     //
     this.liangMaChaGenerateBtn.Location = new System.Drawing.Point(275, 25);
     this.liangMaChaGenerateBtn.Name = "liangMaChaGenerateBtn";
     this.liangMaChaGenerateBtn.Size = new System.Drawing.Size(89, 40);
     this.liangMaChaGenerateBtn.TabIndex = 50;
     this.liangMaChaGenerateBtn.Text = "计算";
     this.liangMaChaGenerateBtn.UseVisualStyleBackColor = true;
     this.liangMaChaGenerateBtn.Click += new System.EventHandler(this.liangMaChaGenerateBtn_Click);
     //
     // lmcCbx_459
     //
     this.lmcCbx_459.AutoSize = true;
     this.lmcCbx_459.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_459.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_459.Location = new System.Drawing.Point(321, 270);
     this.lmcCbx_459.Name = "lmcCbx_459";
     this.lmcCbx_459.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_459.TabIndex = 49;
     this.lmcCbx_459.Text = "459";
     this.lmcCbx_459.UseVisualStyleBackColor = true;
     //
     // lmcCbx_369
     //
     this.lmcCbx_369.AutoSize = true;
     this.lmcCbx_369.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_369.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_369.Location = new System.Drawing.Point(263, 270);
     this.lmcCbx_369.Name = "lmcCbx_369";
     this.lmcCbx_369.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_369.TabIndex = 48;
     this.lmcCbx_369.Text = "369";
     this.lmcCbx_369.UseVisualStyleBackColor = true;
     //
     // lmcCbx_279
     //
     this.lmcCbx_279.AutoSize = true;
     this.lmcCbx_279.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_279.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_279.Location = new System.Drawing.Point(205, 270);
     this.lmcCbx_279.Name = "lmcCbx_279";
     this.lmcCbx_279.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_279.TabIndex = 47;
     this.lmcCbx_279.Text = "279";
     this.lmcCbx_279.UseVisualStyleBackColor = true;
     //
     // lmcCbx_189
     //
     this.lmcCbx_189.AutoSize = true;
     this.lmcCbx_189.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_189.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_189.Location = new System.Drawing.Point(149, 270);
     this.lmcCbx_189.Name = "lmcCbx_189";
     this.lmcCbx_189.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_189.TabIndex = 46;
     this.lmcCbx_189.Text = "189";
     this.lmcCbx_189.UseVisualStyleBackColor = true;
     //
     // lmcCbx_099
     //
     this.lmcCbx_099.AutoSize = true;
     this.lmcCbx_099.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_099.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_099.Location = new System.Drawing.Point(91, 270);
     this.lmcCbx_099.Name = "lmcCbx_099";
     this.lmcCbx_099.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_099.TabIndex = 45;
     this.lmcCbx_099.Text = "099";
     this.lmcCbx_099.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Location = new System.Drawing.Point(5, 271);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(77, 20);
     this.label12.TabIndex = 44;
     this.label12.Text = "两码差---9";
     //
     // lmcCbx_448
     //
     this.lmcCbx_448.AutoSize = true;
     this.lmcCbx_448.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_448.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_448.Location = new System.Drawing.Point(321, 241);
     this.lmcCbx_448.Name = "lmcCbx_448";
     this.lmcCbx_448.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_448.TabIndex = 43;
     this.lmcCbx_448.Text = "448";
     this.lmcCbx_448.UseVisualStyleBackColor = true;
     //
     // lmcCbx_358
     //
     this.lmcCbx_358.AutoSize = true;
     this.lmcCbx_358.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_358.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_358.Location = new System.Drawing.Point(263, 241);
     this.lmcCbx_358.Name = "lmcCbx_358";
     this.lmcCbx_358.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_358.TabIndex = 42;
     this.lmcCbx_358.Text = "358";
     this.lmcCbx_358.UseVisualStyleBackColor = true;
     //
     // lmcCbx_268
     //
     this.lmcCbx_268.AutoSize = true;
     this.lmcCbx_268.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_268.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_268.Location = new System.Drawing.Point(205, 241);
     this.lmcCbx_268.Name = "lmcCbx_268";
     this.lmcCbx_268.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_268.TabIndex = 41;
     this.lmcCbx_268.Text = "268";
     this.lmcCbx_268.UseVisualStyleBackColor = true;
     //
     // lmcCbx_178
     //
     this.lmcCbx_178.AutoSize = true;
     this.lmcCbx_178.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_178.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_178.Location = new System.Drawing.Point(149, 241);
     this.lmcCbx_178.Name = "lmcCbx_178";
     this.lmcCbx_178.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_178.TabIndex = 40;
     this.lmcCbx_178.Text = "178";
     this.lmcCbx_178.UseVisualStyleBackColor = true;
     //
     // lmcCbx_088
     //
     this.lmcCbx_088.AutoSize = true;
     this.lmcCbx_088.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_088.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_088.Location = new System.Drawing.Point(91, 241);
     this.lmcCbx_088.Name = "lmcCbx_088";
     this.lmcCbx_088.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_088.TabIndex = 39;
     this.lmcCbx_088.Text = "088";
     this.lmcCbx_088.UseVisualStyleBackColor = true;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Location = new System.Drawing.Point(5, 242);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(77, 20);
     this.label11.TabIndex = 38;
     this.label11.Text = "两码差---8";
     //
     // lmcCbx_347
     //
     this.lmcCbx_347.AutoSize = true;
     this.lmcCbx_347.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_347.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_347.Location = new System.Drawing.Point(263, 211);
     this.lmcCbx_347.Name = "lmcCbx_347";
     this.lmcCbx_347.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_347.TabIndex = 37;
     this.lmcCbx_347.Text = "347";
     this.lmcCbx_347.UseVisualStyleBackColor = true;
     //
     // lmcCbx_257
     //
     this.lmcCbx_257.AutoSize = true;
     this.lmcCbx_257.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_257.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_257.Location = new System.Drawing.Point(205, 211);
     this.lmcCbx_257.Name = "lmcCbx_257";
     this.lmcCbx_257.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_257.TabIndex = 36;
     this.lmcCbx_257.Text = "257";
     this.lmcCbx_257.UseVisualStyleBackColor = true;
     //
     // lmcCbx_167
     //
     this.lmcCbx_167.AutoSize = true;
     this.lmcCbx_167.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_167.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_167.Location = new System.Drawing.Point(149, 211);
     this.lmcCbx_167.Name = "lmcCbx_167";
     this.lmcCbx_167.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_167.TabIndex = 35;
     this.lmcCbx_167.Text = "167";
     this.lmcCbx_167.UseVisualStyleBackColor = true;
     //
     // lmcCbx_077
     //
     this.lmcCbx_077.AutoSize = true;
     this.lmcCbx_077.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_077.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_077.Location = new System.Drawing.Point(91, 211);
     this.lmcCbx_077.Name = "lmcCbx_077";
     this.lmcCbx_077.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_077.TabIndex = 34;
     this.lmcCbx_077.Text = "077";
     this.lmcCbx_077.UseVisualStyleBackColor = true;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(5, 212);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(77, 20);
     this.label10.TabIndex = 33;
     this.label10.Text = "两码差---7";
     //
     // lmcCbx_336
     //
     this.lmcCbx_336.AutoSize = true;
     this.lmcCbx_336.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_336.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_336.Location = new System.Drawing.Point(263, 179);
     this.lmcCbx_336.Name = "lmcCbx_336";
     this.lmcCbx_336.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_336.TabIndex = 32;
     this.lmcCbx_336.Text = "336";
     this.lmcCbx_336.UseVisualStyleBackColor = true;
     //
     // lmcCbx_246
     //
     this.lmcCbx_246.AutoSize = true;
     this.lmcCbx_246.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_246.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_246.Location = new System.Drawing.Point(205, 179);
     this.lmcCbx_246.Name = "lmcCbx_246";
     this.lmcCbx_246.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_246.TabIndex = 31;
     this.lmcCbx_246.Text = "246";
     this.lmcCbx_246.UseVisualStyleBackColor = true;
     //
     // lmcCbx_156
     //
     this.lmcCbx_156.AutoSize = true;
     this.lmcCbx_156.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_156.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_156.Location = new System.Drawing.Point(149, 179);
     this.lmcCbx_156.Name = "lmcCbx_156";
     this.lmcCbx_156.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_156.TabIndex = 30;
     this.lmcCbx_156.Text = "156";
     this.lmcCbx_156.UseVisualStyleBackColor = true;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(5, 179);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(77, 20);
     this.label9.TabIndex = 29;
     this.label9.Text = "两码差---6";
     //
     // lmcCbx_066
     //
     this.lmcCbx_066.AutoSize = true;
     this.lmcCbx_066.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_066.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_066.Location = new System.Drawing.Point(91, 179);
     this.lmcCbx_066.Name = "lmcCbx_066";
     this.lmcCbx_066.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_066.TabIndex = 28;
     this.lmcCbx_066.Text = "066";
     this.lmcCbx_066.UseVisualStyleBackColor = true;
     //
     // lmcCbx_235
     //
     this.lmcCbx_235.AutoSize = true;
     this.lmcCbx_235.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_235.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_235.Location = new System.Drawing.Point(205, 149);
     this.lmcCbx_235.Name = "lmcCbx_235";
     this.lmcCbx_235.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_235.TabIndex = 27;
     this.lmcCbx_235.Text = "235";
     this.lmcCbx_235.UseVisualStyleBackColor = true;
     //
     // lmcCbx_145
     //
     this.lmcCbx_145.AutoSize = true;
     this.lmcCbx_145.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_145.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_145.Location = new System.Drawing.Point(149, 149);
     this.lmcCbx_145.Name = "lmcCbx_145";
     this.lmcCbx_145.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_145.TabIndex = 26;
     this.lmcCbx_145.Text = "145";
     this.lmcCbx_145.UseVisualStyleBackColor = true;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(5, 149);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(77, 20);
     this.label8.TabIndex = 25;
     this.label8.Text = "两码差---5";
     //
     // lmcCbx_055
     //
     this.lmcCbx_055.AutoSize = true;
     this.lmcCbx_055.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_055.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_055.Location = new System.Drawing.Point(91, 149);
     this.lmcCbx_055.Name = "lmcCbx_055";
     this.lmcCbx_055.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_055.TabIndex = 24;
     this.lmcCbx_055.Text = "055";
     this.lmcCbx_055.UseVisualStyleBackColor = true;
     //
     // lmcCbx_224
     //
     this.lmcCbx_224.AutoSize = true;
     this.lmcCbx_224.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_224.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_224.Location = new System.Drawing.Point(205, 118);
     this.lmcCbx_224.Name = "lmcCbx_224";
     this.lmcCbx_224.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_224.TabIndex = 23;
     this.lmcCbx_224.Text = "224";
     this.lmcCbx_224.UseVisualStyleBackColor = true;
     //
     // lmcCbx_134
     //
     this.lmcCbx_134.AutoSize = true;
     this.lmcCbx_134.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_134.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_134.Location = new System.Drawing.Point(149, 118);
     this.lmcCbx_134.Name = "lmcCbx_134";
     this.lmcCbx_134.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_134.TabIndex = 22;
     this.lmcCbx_134.Text = "134";
     this.lmcCbx_134.UseVisualStyleBackColor = true;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(5, 118);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(77, 20);
     this.label7.TabIndex = 21;
     this.label7.Text = "两码差---4";
     //
     // lmcCbx_004
     //
     this.lmcCbx_004.AutoSize = true;
     this.lmcCbx_004.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_004.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_004.Location = new System.Drawing.Point(91, 118);
     this.lmcCbx_004.Name = "lmcCbx_004";
     this.lmcCbx_004.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_004.TabIndex = 20;
     this.lmcCbx_004.Text = "004";
     this.lmcCbx_004.UseVisualStyleBackColor = true;
     //
     // lmcCbx_123
     //
     this.lmcCbx_123.AutoSize = true;
     this.lmcCbx_123.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_123.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_123.Location = new System.Drawing.Point(149, 88);
     this.lmcCbx_123.Name = "lmcCbx_123";
     this.lmcCbx_123.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_123.TabIndex = 19;
     this.lmcCbx_123.Text = "123";
     this.lmcCbx_123.UseVisualStyleBackColor = true;
     //
     // lmcCbx_112
     //
     this.lmcCbx_112.AutoSize = true;
     this.lmcCbx_112.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_112.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_112.Location = new System.Drawing.Point(149, 59);
     this.lmcCbx_112.Name = "lmcCbx_112";
     this.lmcCbx_112.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_112.TabIndex = 19;
     this.lmcCbx_112.Text = "112";
     this.lmcCbx_112.UseVisualStyleBackColor = true;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(5, 88);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(77, 20);
     this.label6.TabIndex = 18;
     this.label6.Text = "两码差---3";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(5, 59);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(77, 20);
     this.label5.TabIndex = 18;
     this.label5.Text = "两码差---2";
     //
     // lmcCbx_033
     //
     this.lmcCbx_033.AutoSize = true;
     this.lmcCbx_033.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_033.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_033.Location = new System.Drawing.Point(91, 88);
     this.lmcCbx_033.Name = "lmcCbx_033";
     this.lmcCbx_033.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_033.TabIndex = 10;
     this.lmcCbx_033.Text = "033";
     this.lmcCbx_033.UseVisualStyleBackColor = true;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(5, 30);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 20);
     this.label4.TabIndex = 17;
     this.label4.Text = "两码差---1";
     //
     // lmcCbx_022
     //
     this.lmcCbx_022.AutoSize = true;
     this.lmcCbx_022.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_022.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_022.Location = new System.Drawing.Point(91, 59);
     this.lmcCbx_022.Name = "lmcCbx_022";
     this.lmcCbx_022.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_022.TabIndex = 10;
     this.lmcCbx_022.Text = "022";
     this.lmcCbx_022.UseVisualStyleBackColor = true;
     //
     // lmcCbx_001
     //
     this.lmcCbx_001.AutoSize = true;
     this.lmcCbx_001.checkBgColor = System.Drawing.Color.Empty;
     this.lmcCbx_001.CheckColor = System.Drawing.SystemColors.ControlText;
     this.lmcCbx_001.Location = new System.Drawing.Point(91, 29);
     this.lmcCbx_001.Name = "lmcCbx_001";
     this.lmcCbx_001.Size = new System.Drawing.Size(52, 24);
     this.lmcCbx_001.TabIndex = 1;
     this.lmcCbx_001.Text = "001";
     this.lmcCbx_001.UseVisualStyleBackColor = true;
     //
     // liangWeiShuGpb
     //
     this.liangWeiShuGpb.Controls.Add(this.number2Gpb);
     this.liangWeiShuGpb.Controls.Add(this.number1Gpb);
     this.liangWeiShuGpb.Controls.Add(this.LiangWeiShuClearBtn);
     this.liangWeiShuGpb.Controls.Add(this.liangWeiShuGenerateBtn);
     this.liangWeiShuGpb.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.liangWeiShuGpb.Location = new System.Drawing.Point(2, 4);
     this.liangWeiShuGpb.Name = "liangWeiShuGpb";
     this.liangWeiShuGpb.Size = new System.Drawing.Size(585, 124);
     this.liangWeiShuGpb.TabIndex = 20;
     this.liangWeiShuGpb.TabStop = false;
     this.liangWeiShuGpb.Text = "两位数(独立计算功能)";
     //
     // number2Gpb
     //
     this.number2Gpb.Controls.Add(this.radioButton11);
     this.number2Gpb.Controls.Add(this.radioButton12);
     this.number2Gpb.Controls.Add(this.radioButton13);
     this.number2Gpb.Controls.Add(this.radioButton14);
     this.number2Gpb.Controls.Add(this.radioButton15);
     this.number2Gpb.Controls.Add(this.radioButton16);
     this.number2Gpb.Controls.Add(this.radioButton17);
     this.number2Gpb.Controls.Add(this.radioButton18);
     this.number2Gpb.Controls.Add(this.radioButton19);
     this.number2Gpb.Controls.Add(this.radioButton20);
     this.number2Gpb.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.number2Gpb.Location = new System.Drawing.Point(10, 69);
     this.number2Gpb.Name = "number2Gpb";
     this.number2Gpb.Size = new System.Drawing.Size(441, 50);
     this.number2Gpb.TabIndex = 56;
     this.number2Gpb.TabStop = false;
     this.number2Gpb.Text = "数字二";
     //
     // radioButton11
     //
     this.radioButton11.AutoSize = true;
     this.radioButton11.Location = new System.Drawing.Point(388, 19);
     this.radioButton11.Name = "radioButton11";
     this.radioButton11.Size = new System.Drawing.Size(33, 21);
     this.radioButton11.TabIndex = 9;
     this.radioButton11.TabStop = true;
     this.radioButton11.Text = "9";
     this.radioButton11.UseVisualStyleBackColor = true;
     //
     // radioButton12
     //
     this.radioButton12.AutoSize = true;
     this.radioButton12.Location = new System.Drawing.Point(347, 19);
     this.radioButton12.Name = "radioButton12";
     this.radioButton12.Size = new System.Drawing.Size(33, 21);
     this.radioButton12.TabIndex = 8;
     this.radioButton12.TabStop = true;
     this.radioButton12.Text = "8";
     this.radioButton12.UseVisualStyleBackColor = true;
     //
     // radioButton13
     //
     this.radioButton13.AutoSize = true;
     this.radioButton13.Location = new System.Drawing.Point(306, 19);
     this.radioButton13.Name = "radioButton13";
     this.radioButton13.Size = new System.Drawing.Size(33, 21);
     this.radioButton13.TabIndex = 7;
     this.radioButton13.TabStop = true;
     this.radioButton13.Text = "7";
     this.radioButton13.UseVisualStyleBackColor = true;
     //
     // radioButton14
     //
     this.radioButton14.AutoSize = true;
     this.radioButton14.Location = new System.Drawing.Point(265, 19);
     this.radioButton14.Name = "radioButton14";
     this.radioButton14.Size = new System.Drawing.Size(33, 21);
     this.radioButton14.TabIndex = 6;
     this.radioButton14.TabStop = true;
     this.radioButton14.Text = "6";
     this.radioButton14.UseVisualStyleBackColor = true;
     //
     // radioButton15
     //
     this.radioButton15.AutoSize = true;
     this.radioButton15.Location = new System.Drawing.Point(224, 19);
     this.radioButton15.Name = "radioButton15";
     this.radioButton15.Size = new System.Drawing.Size(33, 21);
     this.radioButton15.TabIndex = 5;
     this.radioButton15.TabStop = true;
     this.radioButton15.Text = "5";
     this.radioButton15.UseVisualStyleBackColor = true;
     //
     // radioButton16
     //
     this.radioButton16.AutoSize = true;
     this.radioButton16.Location = new System.Drawing.Point(183, 19);
     this.radioButton16.Name = "radioButton16";
     this.radioButton16.Size = new System.Drawing.Size(33, 21);
     this.radioButton16.TabIndex = 4;
     this.radioButton16.TabStop = true;
     this.radioButton16.Text = "4";
     this.radioButton16.UseVisualStyleBackColor = true;
     //
     // radioButton17
     //
     this.radioButton17.AutoSize = true;
     this.radioButton17.Location = new System.Drawing.Point(142, 19);
     this.radioButton17.Name = "radioButton17";
     this.radioButton17.Size = new System.Drawing.Size(33, 21);
     this.radioButton17.TabIndex = 3;
     this.radioButton17.TabStop = true;
     this.radioButton17.Text = "3";
     this.radioButton17.UseVisualStyleBackColor = true;
     //
     // radioButton18
     //
     this.radioButton18.AutoSize = true;
     this.radioButton18.Location = new System.Drawing.Point(101, 19);
     this.radioButton18.Name = "radioButton18";
     this.radioButton18.Size = new System.Drawing.Size(33, 21);
     this.radioButton18.TabIndex = 2;
     this.radioButton18.TabStop = true;
     this.radioButton18.Text = "2";
     this.radioButton18.UseVisualStyleBackColor = true;
     //
     // radioButton19
     //
     this.radioButton19.AutoSize = true;
     this.radioButton19.Location = new System.Drawing.Point(60, 19);
     this.radioButton19.Name = "radioButton19";
     this.radioButton19.Size = new System.Drawing.Size(33, 21);
     this.radioButton19.TabIndex = 1;
     this.radioButton19.TabStop = true;
     this.radioButton19.Text = "1";
     this.radioButton19.UseVisualStyleBackColor = true;
     //
     // radioButton20
     //
     this.radioButton20.AutoSize = true;
     this.radioButton20.Location = new System.Drawing.Point(19, 19);
     this.radioButton20.Name = "radioButton20";
     this.radioButton20.Size = new System.Drawing.Size(33, 21);
     this.radioButton20.TabIndex = 0;
     this.radioButton20.TabStop = true;
     this.radioButton20.Text = "0";
     this.radioButton20.UseVisualStyleBackColor = true;
     //
     // number1Gpb
     //
     this.number1Gpb.Controls.Add(this.radioButton1);
     this.number1Gpb.Controls.Add(this.radioButton2);
     this.number1Gpb.Controls.Add(this.radioButton3);
     this.number1Gpb.Controls.Add(this.radioButton4);
     this.number1Gpb.Controls.Add(this.radioButton5);
     this.number1Gpb.Controls.Add(this.radioButton6);
     this.number1Gpb.Controls.Add(this.radioButton7);
     this.number1Gpb.Controls.Add(this.radioButton8);
     this.number1Gpb.Controls.Add(this.radioButton9);
     this.number1Gpb.Controls.Add(this.radioButton10);
     this.number1Gpb.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.number1Gpb.Location = new System.Drawing.Point(10, 19);
     this.number1Gpb.Name = "number1Gpb";
     this.number1Gpb.Size = new System.Drawing.Size(441, 50);
     this.number1Gpb.TabIndex = 55;
     this.number1Gpb.TabStop = false;
     this.number1Gpb.Text = "数字一";
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Location = new System.Drawing.Point(388, 19);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(33, 21);
     this.radioButton1.TabIndex = 9;
     this.radioButton1.TabStop = true;
     this.radioButton1.Text = "9";
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Location = new System.Drawing.Point(347, 19);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(33, 21);
     this.radioButton2.TabIndex = 8;
     this.radioButton2.TabStop = true;
     this.radioButton2.Text = "8";
     this.radioButton2.UseVisualStyleBackColor = true;
     //
     // radioButton3
     //
     this.radioButton3.AutoSize = true;
     this.radioButton3.Location = new System.Drawing.Point(306, 19);
     this.radioButton3.Name = "radioButton3";
     this.radioButton3.Size = new System.Drawing.Size(33, 21);
     this.radioButton3.TabIndex = 7;
     this.radioButton3.TabStop = true;
     this.radioButton3.Text = "7";
     this.radioButton3.UseVisualStyleBackColor = true;
     //
     // radioButton4
     //
     this.radioButton4.AutoSize = true;
     this.radioButton4.Location = new System.Drawing.Point(265, 19);
     this.radioButton4.Name = "radioButton4";
     this.radioButton4.Size = new System.Drawing.Size(33, 21);
     this.radioButton4.TabIndex = 6;
     this.radioButton4.TabStop = true;
     this.radioButton4.Text = "6";
     this.radioButton4.UseVisualStyleBackColor = true;
     //
     // radioButton5
     //
     this.radioButton5.AutoSize = true;
     this.radioButton5.Location = new System.Drawing.Point(224, 19);
     this.radioButton5.Name = "radioButton5";
     this.radioButton5.Size = new System.Drawing.Size(33, 21);
     this.radioButton5.TabIndex = 5;
     this.radioButton5.TabStop = true;
     this.radioButton5.Text = "5";
     this.radioButton5.UseVisualStyleBackColor = true;
     //
     // radioButton6
     //
     this.radioButton6.AutoSize = true;
     this.radioButton6.Location = new System.Drawing.Point(183, 19);
     this.radioButton6.Name = "radioButton6";
     this.radioButton6.Size = new System.Drawing.Size(33, 21);
     this.radioButton6.TabIndex = 4;
     this.radioButton6.TabStop = true;
     this.radioButton6.Text = "4";
     this.radioButton6.UseVisualStyleBackColor = true;
     //
     // radioButton7
     //
     this.radioButton7.AutoSize = true;
     this.radioButton7.Location = new System.Drawing.Point(142, 19);
     this.radioButton7.Name = "radioButton7";
     this.radioButton7.Size = new System.Drawing.Size(33, 21);
     this.radioButton7.TabIndex = 3;
     this.radioButton7.TabStop = true;
     this.radioButton7.Text = "3";
     this.radioButton7.UseVisualStyleBackColor = true;
     //
     // radioButton8
     //
     this.radioButton8.AutoSize = true;
     this.radioButton8.Location = new System.Drawing.Point(101, 19);
     this.radioButton8.Name = "radioButton8";
     this.radioButton8.Size = new System.Drawing.Size(33, 21);
     this.radioButton8.TabIndex = 2;
     this.radioButton8.TabStop = true;
     this.radioButton8.Text = "2";
     this.radioButton8.UseVisualStyleBackColor = true;
     //
     // radioButton9
     //
     this.radioButton9.AutoSize = true;
     this.radioButton9.Location = new System.Drawing.Point(60, 19);
     this.radioButton9.Name = "radioButton9";
     this.radioButton9.Size = new System.Drawing.Size(33, 21);
     this.radioButton9.TabIndex = 1;
     this.radioButton9.TabStop = true;
     this.radioButton9.Text = "1";
     this.radioButton9.UseVisualStyleBackColor = true;
     //
     // radioButton10
     //
     this.radioButton10.AutoSize = true;
     this.radioButton10.Location = new System.Drawing.Point(19, 19);
     this.radioButton10.Name = "radioButton10";
     this.radioButton10.Size = new System.Drawing.Size(33, 21);
     this.radioButton10.TabIndex = 0;
     this.radioButton10.TabStop = true;
     this.radioButton10.Text = "0";
     this.radioButton10.UseVisualStyleBackColor = true;
     //
     // LiangWeiShuClearBtn
     //
     this.LiangWeiShuClearBtn.Location = new System.Drawing.Point(475, 76);
     this.LiangWeiShuClearBtn.Name = "LiangWeiShuClearBtn";
     this.LiangWeiShuClearBtn.Size = new System.Drawing.Size(89, 40);
     this.LiangWeiShuClearBtn.TabIndex = 53;
     this.LiangWeiShuClearBtn.Text = "清";
     this.LiangWeiShuClearBtn.UseVisualStyleBackColor = true;
     this.LiangWeiShuClearBtn.Click += new System.EventHandler(this.LiangWeiShuClearBtn_Click);
     //
     // liangWeiShuGenerateBtn
     //
     this.liangWeiShuGenerateBtn.Location = new System.Drawing.Point(475, 27);
     this.liangWeiShuGenerateBtn.Name = "liangWeiShuGenerateBtn";
     this.liangWeiShuGenerateBtn.Size = new System.Drawing.Size(89, 40);
     this.liangWeiShuGenerateBtn.TabIndex = 52;
     this.liangWeiShuGenerateBtn.Text = "计算";
     this.liangWeiShuGenerateBtn.UseVisualStyleBackColor = true;
     this.liangWeiShuGenerateBtn.Click += new System.EventHandler(this.liangWeiShuGenerateBtn_Click);
     //
     // groupNum_1
     //
     this.groupNum_1.Controls.Add(this.clear1HaoMaZubtn);
     this.groupNum_1.Controls.Add(this.checkBox11);
     this.groupNum_1.Controls.Add(this.checkBox12);
     this.groupNum_1.Controls.Add(this.checkBox13);
     this.groupNum_1.Controls.Add(this.checkBox14);
     this.groupNum_1.Controls.Add(this.checkBox15);
     this.groupNum_1.Controls.Add(this.checkBox16);
     this.groupNum_1.Controls.Add(this.checkBox17);
     this.groupNum_1.Controls.Add(this.checkBox18);
     this.groupNum_1.Controls.Add(this.checkBox19);
     this.groupNum_1.Controls.Add(this.checkBox20);
     this.groupNum_1.Controls.Add(this.oneZu3);
     this.groupNum_1.Controls.Add(this.oneZu2);
     this.groupNum_1.Controls.Add(this.oneZu1);
     this.groupNum_1.Controls.Add(this.oneZu0);
     this.groupNum_1.Controls.Add(this.oneZuChu);
     this.groupNum_1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.groupNum_1.Location = new System.Drawing.Point(391, 137);
     this.groupNum_1.Name = "groupNum_1";
     this.groupNum_1.Size = new System.Drawing.Size(508, 52);
     this.groupNum_1.TabIndex = 21;
     this.groupNum_1.TabStop = false;
     this.groupNum_1.Text = "A组";
     //
     // clear1HaoMaZubtn
     //
     this.clear1HaoMaZubtn.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.clear1HaoMaZubtn.Location = new System.Drawing.Point(435, 1);
     this.clear1HaoMaZubtn.Name = "clear1HaoMaZubtn";
     this.clear1HaoMaZubtn.Size = new System.Drawing.Size(64, 23);
     this.clear1HaoMaZubtn.TabIndex = 55;
     this.clear1HaoMaZubtn.Text = "清";
     this.clear1HaoMaZubtn.UseVisualStyleBackColor = true;
     this.clear1HaoMaZubtn.Click += new System.EventHandler(this.clear1HaoMaZubtn_Click);
     //
     // checkBox11
     //
     this.checkBox11.AutoSize = true;
     this.checkBox11.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox11.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox11.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox11.Location = new System.Drawing.Point(190, 23);
     this.checkBox11.Name = "checkBox11";
     this.checkBox11.Size = new System.Drawing.Size(34, 21);
     this.checkBox11.TabIndex = 10;
     this.checkBox11.Text = "5";
     this.checkBox11.UseVisualStyleBackColor = true;
     //
     // checkBox12
     //
     this.checkBox12.AutoSize = true;
     this.checkBox12.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox12.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox12.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox12.Location = new System.Drawing.Point(334, 23);
     this.checkBox12.Name = "checkBox12";
     this.checkBox12.Size = new System.Drawing.Size(34, 21);
     this.checkBox12.TabIndex = 6;
     this.checkBox12.Text = "9";
     this.checkBox12.UseVisualStyleBackColor = true;
     //
     // checkBox13
     //
     this.checkBox13.AutoSize = true;
     this.checkBox13.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox13.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox13.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox13.Location = new System.Drawing.Point(226, 23);
     this.checkBox13.Name = "checkBox13";
     this.checkBox13.Size = new System.Drawing.Size(34, 21);
     this.checkBox13.TabIndex = 9;
     this.checkBox13.Text = "6";
     this.checkBox13.UseVisualStyleBackColor = true;
     //
     // checkBox14
     //
     this.checkBox14.AutoSize = true;
     this.checkBox14.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox14.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox14.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox14.Location = new System.Drawing.Point(262, 23);
     this.checkBox14.Name = "checkBox14";
     this.checkBox14.Size = new System.Drawing.Size(34, 21);
     this.checkBox14.TabIndex = 8;
     this.checkBox14.Text = "7";
     this.checkBox14.UseVisualStyleBackColor = true;
     //
     // checkBox15
     //
     this.checkBox15.AutoSize = true;
     this.checkBox15.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox15.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox15.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox15.Location = new System.Drawing.Point(298, 23);
     this.checkBox15.Name = "checkBox15";
     this.checkBox15.Size = new System.Drawing.Size(34, 21);
     this.checkBox15.TabIndex = 7;
     this.checkBox15.Text = "8";
     this.checkBox15.UseVisualStyleBackColor = true;
     //
     // checkBox16
     //
     this.checkBox16.AutoSize = true;
     this.checkBox16.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox16.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox16.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox16.Location = new System.Drawing.Point(154, 23);
     this.checkBox16.Name = "checkBox16";
     this.checkBox16.Size = new System.Drawing.Size(34, 21);
     this.checkBox16.TabIndex = 5;
     this.checkBox16.Text = "4";
     this.checkBox16.UseVisualStyleBackColor = true;
     //
     // checkBox17
     //
     this.checkBox17.AutoSize = true;
     this.checkBox17.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox17.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox17.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox17.Location = new System.Drawing.Point(118, 23);
     this.checkBox17.Name = "checkBox17";
     this.checkBox17.Size = new System.Drawing.Size(34, 21);
     this.checkBox17.TabIndex = 4;
     this.checkBox17.Text = "3";
     this.checkBox17.UseVisualStyleBackColor = true;
     //
     // checkBox18
     //
     this.checkBox18.AutoSize = true;
     this.checkBox18.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox18.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox18.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox18.Location = new System.Drawing.Point(82, 23);
     this.checkBox18.Name = "checkBox18";
     this.checkBox18.Size = new System.Drawing.Size(34, 21);
     this.checkBox18.TabIndex = 3;
     this.checkBox18.Text = "2";
     this.checkBox18.UseVisualStyleBackColor = true;
     //
     // checkBox19
     //
     this.checkBox19.AutoSize = true;
     this.checkBox19.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox19.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox19.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox19.Location = new System.Drawing.Point(46, 23);
     this.checkBox19.Name = "checkBox19";
     this.checkBox19.Size = new System.Drawing.Size(34, 21);
     this.checkBox19.TabIndex = 2;
     this.checkBox19.Text = "1";
     this.checkBox19.UseVisualStyleBackColor = true;
     //
     // checkBox20
     //
     this.checkBox20.AutoSize = true;
     this.checkBox20.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox20.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox20.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox20.Location = new System.Drawing.Point(10, 23);
     this.checkBox20.Name = "checkBox20";
     this.checkBox20.Size = new System.Drawing.Size(34, 21);
     this.checkBox20.TabIndex = 1;
     this.checkBox20.Text = "0";
     this.checkBox20.UseVisualStyleBackColor = true;
     //
     // oneZu3
     //
     this.oneZu3.AutoSize = true;
     this.oneZu3.checkBgColor = System.Drawing.Color.Empty;
     this.oneZu3.CheckColor = System.Drawing.SystemColors.ControlText;
     this.oneZu3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.oneZu3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.oneZu3.Location = new System.Drawing.Point(475, 23);
     this.oneZu3.Name = "oneZu3";
     this.oneZu3.Size = new System.Drawing.Size(31, 21);
     this.oneZu3.TabIndex = 23;
     this.oneZu3.Text = "3";
     this.oneZu3.UseVisualStyleBackColor = true;
     //
     // oneZu2
     //
     this.oneZu2.AutoSize = true;
     this.oneZu2.checkBgColor = System.Drawing.Color.Empty;
     this.oneZu2.CheckColor = System.Drawing.SystemColors.ControlText;
     this.oneZu2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.oneZu2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.oneZu2.Location = new System.Drawing.Point(447, 23);
     this.oneZu2.Name = "oneZu2";
     this.oneZu2.Size = new System.Drawing.Size(31, 21);
     this.oneZu2.TabIndex = 22;
     this.oneZu2.Text = "2";
     this.oneZu2.UseVisualStyleBackColor = true;
     //
     // oneZu1
     //
     this.oneZu1.AutoSize = true;
     this.oneZu1.checkBgColor = System.Drawing.Color.Empty;
     this.oneZu1.CheckColor = System.Drawing.SystemColors.ControlText;
     this.oneZu1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.oneZu1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.oneZu1.Location = new System.Drawing.Point(419, 23);
     this.oneZu1.Name = "oneZu1";
     this.oneZu1.Size = new System.Drawing.Size(31, 21);
     this.oneZu1.TabIndex = 21;
     this.oneZu1.Text = "1";
     this.oneZu1.UseVisualStyleBackColor = true;
     //
     // oneZu0
     //
     this.oneZu0.AutoSize = true;
     this.oneZu0.checkBgColor = System.Drawing.Color.Empty;
     this.oneZu0.CheckColor = System.Drawing.SystemColors.ControlText;
     this.oneZu0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.oneZu0.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.oneZu0.Location = new System.Drawing.Point(391, 23);
     this.oneZu0.Name = "oneZu0";
     this.oneZu0.Size = new System.Drawing.Size(31, 21);
     this.oneZu0.TabIndex = 24;
     this.oneZu0.Text = "0";
     this.oneZu0.UseVisualStyleBackColor = true;
     //
     // oneZuChu
     //
     this.oneZuChu.AutoSize = true;
     this.oneZuChu.Location = new System.Drawing.Point(366, 22);
     this.oneZuChu.Name = "oneZuChu";
     this.oneZuChu.Size = new System.Drawing.Size(26, 20);
     this.oneZuChu.TabIndex = 14;
     this.oneZuChu.Text = "出:";
     //
     // groupNum_2
     //
     this.groupNum_2.Controls.Add(this.clear2HaoMaZubtn);
     this.groupNum_2.Controls.Add(this.twoZu3);
     this.groupNum_2.Controls.Add(this.checkBox54);
     this.groupNum_2.Controls.Add(this.twoZu2);
     this.groupNum_2.Controls.Add(this.checkBox55);
     this.groupNum_2.Controls.Add(this.twoZu1);
     this.groupNum_2.Controls.Add(this.checkBox56);
     this.groupNum_2.Controls.Add(this.twoZu0);
     this.groupNum_2.Controls.Add(this.checkBox57);
     this.groupNum_2.Controls.Add(this.twoZuChu);
     this.groupNum_2.Controls.Add(this.checkBox58);
     this.groupNum_2.Controls.Add(this.checkBox59);
     this.groupNum_2.Controls.Add(this.checkBox60);
     this.groupNum_2.Controls.Add(this.checkBox61);
     this.groupNum_2.Controls.Add(this.checkBox62);
     this.groupNum_2.Controls.Add(this.checkBox63);
     this.groupNum_2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.groupNum_2.Location = new System.Drawing.Point(391, 197);
     this.groupNum_2.Name = "groupNum_2";
     this.groupNum_2.Size = new System.Drawing.Size(508, 52);
     this.groupNum_2.TabIndex = 22;
     this.groupNum_2.TabStop = false;
     this.groupNum_2.Text = "B组";
     //
     // clear2HaoMaZubtn
     //
     this.clear2HaoMaZubtn.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.clear2HaoMaZubtn.Location = new System.Drawing.Point(435, -1);
     this.clear2HaoMaZubtn.Name = "clear2HaoMaZubtn";
     this.clear2HaoMaZubtn.Size = new System.Drawing.Size(64, 23);
     this.clear2HaoMaZubtn.TabIndex = 56;
     this.clear2HaoMaZubtn.Text = "清";
     this.clear2HaoMaZubtn.UseVisualStyleBackColor = true;
     this.clear2HaoMaZubtn.Click += new System.EventHandler(this.clear2HaoMaZubtn_Click);
     //
     // twoZu3
     //
     this.twoZu3.AutoSize = true;
     this.twoZu3.checkBgColor = System.Drawing.Color.Empty;
     this.twoZu3.CheckColor = System.Drawing.SystemColors.ControlText;
     this.twoZu3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.twoZu3.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.twoZu3.Location = new System.Drawing.Point(475, 22);
     this.twoZu3.Name = "twoZu3";
     this.twoZu3.Size = new System.Drawing.Size(31, 21);
     this.twoZu3.TabIndex = 28;
     this.twoZu3.Text = "3";
     this.twoZu3.UseVisualStyleBackColor = true;
     //
     // checkBox54
     //
     this.checkBox54.AutoSize = true;
     this.checkBox54.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox54.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox54.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox54.Location = new System.Drawing.Point(190, 23);
     this.checkBox54.Name = "checkBox54";
     this.checkBox54.Size = new System.Drawing.Size(34, 21);
     this.checkBox54.TabIndex = 10;
     this.checkBox54.Text = "5";
     this.checkBox54.UseVisualStyleBackColor = true;
     //
     // twoZu2
     //
     this.twoZu2.AutoSize = true;
     this.twoZu2.checkBgColor = System.Drawing.Color.Empty;
     this.twoZu2.CheckColor = System.Drawing.SystemColors.ControlText;
     this.twoZu2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.twoZu2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.twoZu2.Location = new System.Drawing.Point(447, 22);
     this.twoZu2.Name = "twoZu2";
     this.twoZu2.Size = new System.Drawing.Size(31, 21);
     this.twoZu2.TabIndex = 27;
     this.twoZu2.Text = "2";
     this.twoZu2.UseVisualStyleBackColor = true;
     //
     // checkBox55
     //
     this.checkBox55.AutoSize = true;
     this.checkBox55.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox55.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox55.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox55.Location = new System.Drawing.Point(334, 23);
     this.checkBox55.Name = "checkBox55";
     this.checkBox55.Size = new System.Drawing.Size(34, 21);
     this.checkBox55.TabIndex = 6;
     this.checkBox55.Text = "9";
     this.checkBox55.UseVisualStyleBackColor = true;
     //
     // twoZu1
     //
     this.twoZu1.AutoSize = true;
     this.twoZu1.checkBgColor = System.Drawing.Color.Empty;
     this.twoZu1.CheckColor = System.Drawing.SystemColors.ControlText;
     this.twoZu1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.twoZu1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.twoZu1.Location = new System.Drawing.Point(419, 22);
     this.twoZu1.Name = "twoZu1";
     this.twoZu1.Size = new System.Drawing.Size(31, 21);
     this.twoZu1.TabIndex = 26;
     this.twoZu1.Text = "1";
     this.twoZu1.UseVisualStyleBackColor = true;
     //
     // checkBox56
     //
     this.checkBox56.AutoSize = true;
     this.checkBox56.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox56.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox56.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox56.Location = new System.Drawing.Point(226, 23);
     this.checkBox56.Name = "checkBox56";
     this.checkBox56.Size = new System.Drawing.Size(34, 21);
     this.checkBox56.TabIndex = 9;
     this.checkBox56.Text = "6";
     this.checkBox56.UseVisualStyleBackColor = true;
     //
     // twoZu0
     //
     this.twoZu0.AutoSize = true;
     this.twoZu0.checkBgColor = System.Drawing.Color.Empty;
     this.twoZu0.CheckColor = System.Drawing.SystemColors.ControlText;
     this.twoZu0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.twoZu0.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.twoZu0.Location = new System.Drawing.Point(391, 22);
     this.twoZu0.Name = "twoZu0";
     this.twoZu0.Size = new System.Drawing.Size(31, 21);
     this.twoZu0.TabIndex = 29;
     this.twoZu0.Text = "0";
     this.twoZu0.UseVisualStyleBackColor = true;
     //
     // checkBox57
     //
     this.checkBox57.AutoSize = true;
     this.checkBox57.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox57.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox57.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox57.Location = new System.Drawing.Point(262, 23);
     this.checkBox57.Name = "checkBox57";
     this.checkBox57.Size = new System.Drawing.Size(34, 21);
     this.checkBox57.TabIndex = 8;
     this.checkBox57.Text = "7";
     this.checkBox57.UseVisualStyleBackColor = true;
     //
     // twoZuChu
     //
     this.twoZuChu.AutoSize = true;
     this.twoZuChu.Location = new System.Drawing.Point(366, 21);
     this.twoZuChu.Name = "twoZuChu";
     this.twoZuChu.Size = new System.Drawing.Size(26, 20);
     this.twoZuChu.TabIndex = 25;
     this.twoZuChu.Text = "出:";
     //
     // checkBox58
     //
     this.checkBox58.AutoSize = true;
     this.checkBox58.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox58.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox58.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox58.Location = new System.Drawing.Point(298, 23);
     this.checkBox58.Name = "checkBox58";
     this.checkBox58.Size = new System.Drawing.Size(34, 21);
     this.checkBox58.TabIndex = 7;
     this.checkBox58.Text = "8";
     this.checkBox58.UseVisualStyleBackColor = true;
     //
     // checkBox59
     //
     this.checkBox59.AutoSize = true;
     this.checkBox59.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox59.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox59.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox59.Location = new System.Drawing.Point(154, 23);
     this.checkBox59.Name = "checkBox59";
     this.checkBox59.Size = new System.Drawing.Size(34, 21);
     this.checkBox59.TabIndex = 5;
     this.checkBox59.Text = "4";
     this.checkBox59.UseVisualStyleBackColor = true;
     //
     // checkBox60
     //
     this.checkBox60.AutoSize = true;
     this.checkBox60.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox60.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox60.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox60.Location = new System.Drawing.Point(118, 23);
     this.checkBox60.Name = "checkBox60";
     this.checkBox60.Size = new System.Drawing.Size(34, 21);
     this.checkBox60.TabIndex = 4;
     this.checkBox60.Text = "3";
     this.checkBox60.UseVisualStyleBackColor = true;
     //
     // checkBox61
     //
     this.checkBox61.AutoSize = true;
     this.checkBox61.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox61.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox61.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox61.Location = new System.Drawing.Point(82, 23);
     this.checkBox61.Name = "checkBox61";
     this.checkBox61.Size = new System.Drawing.Size(34, 21);
     this.checkBox61.TabIndex = 3;
     this.checkBox61.Text = "2";
     this.checkBox61.UseVisualStyleBackColor = true;
     //
     // checkBox62
     //
     this.checkBox62.AutoSize = true;
     this.checkBox62.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox62.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox62.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox62.Location = new System.Drawing.Point(46, 23);
     this.checkBox62.Name = "checkBox62";
     this.checkBox62.Size = new System.Drawing.Size(34, 21);
     this.checkBox62.TabIndex = 2;
     this.checkBox62.Text = "1";
     this.checkBox62.UseVisualStyleBackColor = true;
     //
     // checkBox63
     //
     this.checkBox63.AutoSize = true;
     this.checkBox63.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox63.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox63.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox63.Location = new System.Drawing.Point(10, 23);
     this.checkBox63.Name = "checkBox63";
     this.checkBox63.Size = new System.Drawing.Size(34, 21);
     this.checkBox63.TabIndex = 1;
     this.checkBox63.Text = "0";
     this.checkBox63.UseVisualStyleBackColor = true;
     //
     // pingMianShaHaoGpb
     //
     this.pingMianShaHaoGpb.BackColor = System.Drawing.Color.WhiteSmoke;
     this.pingMianShaHaoGpb.Controls.Add(this.clearShaHaoBtn);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox6);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox10);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox7);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox8);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox9);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox5);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox4);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox3);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox2);
     this.pingMianShaHaoGpb.Controls.Add(this.checkBox1);
     this.pingMianShaHaoGpb.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.pingMianShaHaoGpb.Location = new System.Drawing.Point(391, 255);
     this.pingMianShaHaoGpb.Name = "pingMianShaHaoGpb";
     this.pingMianShaHaoGpb.Size = new System.Drawing.Size(375, 52);
     this.pingMianShaHaoGpb.TabIndex = 23;
     this.pingMianShaHaoGpb.TabStop = false;
     this.pingMianShaHaoGpb.Text = "走势图杀号";
     //
     // clearShaHaoBtn
     //
     this.clearShaHaoBtn.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.clearShaHaoBtn.Location = new System.Drawing.Point(304, -1);
     this.clearShaHaoBtn.Name = "clearShaHaoBtn";
     this.clearShaHaoBtn.Size = new System.Drawing.Size(64, 23);
     this.clearShaHaoBtn.TabIndex = 54;
     this.clearShaHaoBtn.Text = "清";
     this.clearShaHaoBtn.UseVisualStyleBackColor = true;
     this.clearShaHaoBtn.Click += new System.EventHandler(this.clearShaHaoBtn_Click);
     //
     // checkBox6
     //
     this.checkBox6.AutoSize = true;
     this.checkBox6.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox6.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox6.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox6.Location = new System.Drawing.Point(190, 22);
     this.checkBox6.Name = "checkBox6";
     this.checkBox6.Size = new System.Drawing.Size(36, 24);
     this.checkBox6.TabIndex = 10;
     this.checkBox6.Text = "5";
     this.checkBox6.UseVisualStyleBackColor = true;
     //
     // checkBox10
     //
     this.checkBox10.AutoSize = true;
     this.checkBox10.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox10.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox10.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox10.Location = new System.Drawing.Point(334, 22);
     this.checkBox10.Name = "checkBox10";
     this.checkBox10.Size = new System.Drawing.Size(36, 24);
     this.checkBox10.TabIndex = 6;
     this.checkBox10.Text = "9";
     this.checkBox10.UseVisualStyleBackColor = true;
     //
     // checkBox7
     //
     this.checkBox7.AutoSize = true;
     this.checkBox7.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox7.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox7.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox7.Location = new System.Drawing.Point(226, 22);
     this.checkBox7.Name = "checkBox7";
     this.checkBox7.Size = new System.Drawing.Size(36, 24);
     this.checkBox7.TabIndex = 9;
     this.checkBox7.Text = "6";
     this.checkBox7.UseVisualStyleBackColor = true;
     //
     // checkBox8
     //
     this.checkBox8.AutoSize = true;
     this.checkBox8.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox8.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox8.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox8.Location = new System.Drawing.Point(262, 22);
     this.checkBox8.Name = "checkBox8";
     this.checkBox8.Size = new System.Drawing.Size(36, 24);
     this.checkBox8.TabIndex = 8;
     this.checkBox8.Text = "7";
     this.checkBox8.UseVisualStyleBackColor = true;
     //
     // checkBox9
     //
     this.checkBox9.AutoSize = true;
     this.checkBox9.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox9.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox9.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox9.Location = new System.Drawing.Point(298, 22);
     this.checkBox9.Name = "checkBox9";
     this.checkBox9.Size = new System.Drawing.Size(36, 24);
     this.checkBox9.TabIndex = 7;
     this.checkBox9.Text = "8";
     this.checkBox9.UseVisualStyleBackColor = true;
     //
     // checkBox5
     //
     this.checkBox5.AutoSize = true;
     this.checkBox5.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox5.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox5.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox5.Location = new System.Drawing.Point(154, 22);
     this.checkBox5.Name = "checkBox5";
     this.checkBox5.Size = new System.Drawing.Size(36, 24);
     this.checkBox5.TabIndex = 5;
     this.checkBox5.Text = "4";
     this.checkBox5.UseVisualStyleBackColor = true;
     //
     // checkBox4
     //
     this.checkBox4.AutoSize = true;
     this.checkBox4.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox4.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox4.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox4.Location = new System.Drawing.Point(118, 22);
     this.checkBox4.Name = "checkBox4";
     this.checkBox4.Size = new System.Drawing.Size(36, 24);
     this.checkBox4.TabIndex = 4;
     this.checkBox4.Text = "3";
     this.checkBox4.UseVisualStyleBackColor = true;
     //
     // checkBox3
     //
     this.checkBox3.AutoSize = true;
     this.checkBox3.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox3.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox3.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox3.Location = new System.Drawing.Point(82, 22);
     this.checkBox3.Name = "checkBox3";
     this.checkBox3.Size = new System.Drawing.Size(36, 24);
     this.checkBox3.TabIndex = 3;
     this.checkBox3.Text = "2";
     this.checkBox3.UseVisualStyleBackColor = true;
     //
     // checkBox2
     //
     this.checkBox2.AutoSize = true;
     this.checkBox2.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox2.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox2.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox2.Location = new System.Drawing.Point(46, 22);
     this.checkBox2.Name = "checkBox2";
     this.checkBox2.Size = new System.Drawing.Size(36, 24);
     this.checkBox2.TabIndex = 2;
     this.checkBox2.Text = "1";
     this.checkBox2.UseVisualStyleBackColor = true;
     //
     // checkBox1
     //
     this.checkBox1.AutoSize = true;
     this.checkBox1.checkBgColor = System.Drawing.Color.Empty;
     this.checkBox1.CheckColor = System.Drawing.SystemColors.ControlText;
     this.checkBox1.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.checkBox1.Location = new System.Drawing.Point(10, 22);
     this.checkBox1.Name = "checkBox1";
     this.checkBox1.Size = new System.Drawing.Size(36, 24);
     this.checkBox1.TabIndex = 1;
     this.checkBox1.Text = "0";
     this.checkBox1.UseVisualStyleBackColor = true;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(64, 22);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(37, 20);
     this.label1.TabIndex = 37;
     this.label1.Text = "组六";
     //
     // quantaiGpb
     //
     this.quantaiGpb.Controls.Add(this.label1);
     this.quantaiGpb.Controls.Add(this.zuLiu);
     this.quantaiGpb.Controls.Add(this.label13);
     this.quantaiGpb.Controls.Add(this.zuSan);
     this.quantaiGpb.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.quantaiGpb.Location = new System.Drawing.Point(772, 255);
     this.quantaiGpb.Name = "quantaiGpb";
     this.quantaiGpb.Size = new System.Drawing.Size(127, 52);
     this.quantaiGpb.TabIndex = 24;
     this.quantaiGpb.TabStop = false;
     this.quantaiGpb.Text = "号码全态";
     //
     // zuLiu
     //
     this.zuLiu.AutoSize = true;
     this.zuLiu.checkBgColor = System.Drawing.Color.Empty;
     this.zuLiu.CheckColor = System.Drawing.SystemColors.ControlText;
     this.zuLiu.Location = new System.Drawing.Point(103, 26);
     this.zuLiu.Name = "zuLiu";
     this.zuLiu.Size = new System.Drawing.Size(15, 14);
     this.zuLiu.TabIndex = 36;
     this.zuLiu.UseVisualStyleBackColor = true;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Location = new System.Drawing.Point(6, 22);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(37, 20);
     this.label13.TabIndex = 35;
     this.label13.Text = "组三";
     //
     // zuSan
     //
     this.zuSan.AutoSize = true;
     this.zuSan.checkBgColor = System.Drawing.Color.Empty;
     this.zuSan.CheckColor = System.Drawing.SystemColors.ControlText;
     this.zuSan.Location = new System.Drawing.Point(45, 26);
     this.zuSan.Name = "zuSan";
     this.zuSan.Size = new System.Drawing.Size(15, 14);
     this.zuSan.TabIndex = 34;
     this.zuSan.UseVisualStyleBackColor = true;
     //
     // haoMaPaiLie
     //
     this.haoMaPaiLie.Controls.Add(this.calHaoMaXT);
     this.haoMaPaiLie.Controls.Add(this.haoMaPaiLieSelectAll);
     this.haoMaPaiLie.Controls.Add(this.haoMaPaiLieClear);
     this.haoMaPaiLie.Controls.Add(this.dxxCbx);
     this.haoMaPaiLie.Controls.Add(this.xdxCbx);
     this.haoMaPaiLie.Controls.Add(this.xxdCbx);
     this.haoMaPaiLie.Controls.Add(this.xxxCbx);
     this.haoMaPaiLie.Controls.Add(this.xddCbx);
     this.haoMaPaiLie.Controls.Add(this.dxdCbx);
     this.haoMaPaiLie.Controls.Add(this.ddxCbx);
     this.haoMaPaiLie.Controls.Add(this.dddCbx);
     this.haoMaPaiLie.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.haoMaPaiLie.Location = new System.Drawing.Point(391, 313);
     this.haoMaPaiLie.Name = "haoMaPaiLie";
     this.haoMaPaiLie.Size = new System.Drawing.Size(508, 140);
     this.haoMaPaiLie.TabIndex = 38;
     this.haoMaPaiLie.TabStop = false;
     this.haoMaPaiLie.Text = "号码排列形态(独立计算功能)";
     //
     // calHaoMaXT
     //
     this.calHaoMaXT.Location = new System.Drawing.Point(308, 45);
     this.calHaoMaXT.Name = "calHaoMaXT";
     this.calHaoMaXT.Size = new System.Drawing.Size(60, 54);
     this.calHaoMaXT.TabIndex = 53;
     this.calHaoMaXT.Text = "计算";
     this.calHaoMaXT.UseVisualStyleBackColor = true;
     this.calHaoMaXT.Click += new System.EventHandler(this.calHaoMaXT_Click);
     //
     // haoMaPaiLieSelectAll
     //
     this.haoMaPaiLieSelectAll.Location = new System.Drawing.Point(374, 45);
     this.haoMaPaiLieSelectAll.Name = "haoMaPaiLieSelectAll";
     this.haoMaPaiLieSelectAll.Size = new System.Drawing.Size(60, 54);
     this.haoMaPaiLieSelectAll.TabIndex = 52;
     this.haoMaPaiLieSelectAll.Text = "全选";
     this.haoMaPaiLieSelectAll.UseVisualStyleBackColor = true;
     this.haoMaPaiLieSelectAll.Click += new System.EventHandler(this.haoMaPaiLieSelectAll_Click);
     //
     // haoMaPaiLieClear
     //
     this.haoMaPaiLieClear.Location = new System.Drawing.Point(440, 45);
     this.haoMaPaiLieClear.Name = "haoMaPaiLieClear";
     this.haoMaPaiLieClear.Size = new System.Drawing.Size(60, 54);
     this.haoMaPaiLieClear.TabIndex = 51;
     this.haoMaPaiLieClear.Text = "清";
     this.haoMaPaiLieClear.UseVisualStyleBackColor = true;
     this.haoMaPaiLieClear.Click += new System.EventHandler(this.haoMaPaiLieClear_Click);
     //
     // dxxCbx
     //
     this.dxxCbx.AutoSize = true;
     this.dxxCbx.checkBgColor = System.Drawing.Color.Empty;
     this.dxxCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.dxxCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dxxCbx.Location = new System.Drawing.Point(236, 75);
     this.dxxCbx.Name = "dxxCbx";
     this.dxxCbx.Size = new System.Drawing.Size(70, 24);
     this.dxxCbx.TabIndex = 47;
     this.dxxCbx.Text = "大小小";
     this.dxxCbx.UseVisualStyleBackColor = true;
     //
     // xdxCbx
     //
     this.xdxCbx.AutoSize = true;
     this.xdxCbx.checkBgColor = System.Drawing.Color.Empty;
     this.xdxCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.xdxCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xdxCbx.Location = new System.Drawing.Point(160, 75);
     this.xdxCbx.Name = "xdxCbx";
     this.xdxCbx.Size = new System.Drawing.Size(70, 24);
     this.xdxCbx.TabIndex = 46;
     this.xdxCbx.Text = "小大小";
     this.xdxCbx.UseVisualStyleBackColor = true;
     //
     // xxdCbx
     //
     this.xxdCbx.AutoSize = true;
     this.xxdCbx.checkBgColor = System.Drawing.Color.Empty;
     this.xxdCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.xxdCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xxdCbx.Location = new System.Drawing.Point(86, 75);
     this.xxdCbx.Name = "xxdCbx";
     this.xxdCbx.Size = new System.Drawing.Size(70, 24);
     this.xxdCbx.TabIndex = 45;
     this.xxdCbx.Text = "小小大";
     this.xxdCbx.UseVisualStyleBackColor = true;
     //
     // xxxCbx
     //
     this.xxxCbx.AutoSize = true;
     this.xxxCbx.checkBgColor = System.Drawing.Color.Empty;
     this.xxxCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.xxxCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xxxCbx.Location = new System.Drawing.Point(11, 75);
     this.xxxCbx.Name = "xxxCbx";
     this.xxxCbx.Size = new System.Drawing.Size(70, 24);
     this.xxxCbx.TabIndex = 44;
     this.xxxCbx.Text = "小小小";
     this.xxxCbx.UseVisualStyleBackColor = true;
     //
     // xddCbx
     //
     this.xddCbx.AutoSize = true;
     this.xddCbx.checkBgColor = System.Drawing.Color.Empty;
     this.xddCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.xddCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.xddCbx.Location = new System.Drawing.Point(236, 45);
     this.xddCbx.Name = "xddCbx";
     this.xddCbx.Size = new System.Drawing.Size(70, 24);
     this.xddCbx.TabIndex = 43;
     this.xddCbx.Text = "小大大";
     this.xddCbx.UseVisualStyleBackColor = true;
     //
     // dxdCbx
     //
     this.dxdCbx.AutoSize = true;
     this.dxdCbx.checkBgColor = System.Drawing.Color.Empty;
     this.dxdCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.dxdCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dxdCbx.Location = new System.Drawing.Point(160, 45);
     this.dxdCbx.Name = "dxdCbx";
     this.dxdCbx.Size = new System.Drawing.Size(70, 24);
     this.dxdCbx.TabIndex = 42;
     this.dxdCbx.Text = "大小大";
     this.dxdCbx.UseVisualStyleBackColor = true;
     //
     // ddxCbx
     //
     this.ddxCbx.AutoSize = true;
     this.ddxCbx.checkBgColor = System.Drawing.Color.Empty;
     this.ddxCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.ddxCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ddxCbx.Location = new System.Drawing.Point(87, 45);
     this.ddxCbx.Name = "ddxCbx";
     this.ddxCbx.Size = new System.Drawing.Size(70, 24);
     this.ddxCbx.TabIndex = 41;
     this.ddxCbx.Text = "大大小";
     this.ddxCbx.UseVisualStyleBackColor = true;
     //
     // dddCbx
     //
     this.dddCbx.AutoSize = true;
     this.dddCbx.checkBgColor = System.Drawing.Color.Empty;
     this.dddCbx.CheckColor = System.Drawing.SystemColors.ControlText;
     this.dddCbx.Font = new System.Drawing.Font("微软雅黑", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dddCbx.Location = new System.Drawing.Point(11, 45);
     this.dddCbx.Name = "dddCbx";
     this.dddCbx.Size = new System.Drawing.Size(70, 24);
     this.dddCbx.TabIndex = 40;
     this.dddCbx.Text = "大大大";
     this.dddCbx.UseVisualStyleBackColor = true;
     //
     // Page4Form
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll = true;
     this.BackColor = System.Drawing.Color.WhiteSmoke;
     this.ClientSize = new System.Drawing.Size(904, 459);
     this.Controls.Add(this.haoMaPaiLie);
     this.Controls.Add(this.quantaiGpb);
     this.Controls.Add(this.pingMianShaHaoGpb);
     this.Controls.Add(this.groupNum_1);
     this.Controls.Add(this.groupNum_2);
     this.Controls.Add(this.liangWeiShuGpb);
     this.Controls.Add(this.liangMaChaGpb);
     this.Controls.Add(this.addNumGroupGpb);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.Name = "Page4Form";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "恩泽天下 - 辅助运算软件";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.addNumGroupGpb.ResumeLayout(false);
     this.addNumGroupGpb.PerformLayout();
     this.liangMaChaGpb.ResumeLayout(false);
     this.liangMaChaGpb.PerformLayout();
     this.liangWeiShuGpb.ResumeLayout(false);
     this.number2Gpb.ResumeLayout(false);
     this.number2Gpb.PerformLayout();
     this.number1Gpb.ResumeLayout(false);
     this.number1Gpb.PerformLayout();
     this.groupNum_1.ResumeLayout(false);
     this.groupNum_1.PerformLayout();
     this.groupNum_2.ResumeLayout(false);
     this.groupNum_2.PerformLayout();
     this.pingMianShaHaoGpb.ResumeLayout(false);
     this.pingMianShaHaoGpb.PerformLayout();
     this.quantaiGpb.ResumeLayout(false);
     this.quantaiGpb.PerformLayout();
     this.haoMaPaiLie.ResumeLayout(false);
     this.haoMaPaiLie.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 33
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UpdateInfoStep));
     this.previousPathTextBox          = new System.Windows.Forms.TextBox();
     this.browseButton                 = new System.Windows.Forms.Button();
     this.openFileDialog               = new System.Windows.Forms.OpenFileDialog();
     this.noUpgradeRadioButton         = new System.Windows.Forms.RadioButton();
     this.feedUpgradeRadioButton       = new System.Windows.Forms.RadioButton();
     this.upgradePathRadioButton       = new System.Windows.Forms.RadioButton();
     this.bottomButtonTableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
     this.bottomButtonTableLayoutPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // previousPathTextBox
     //
     resources.ApplyResources(this.previousPathTextBox, "previousPathTextBox");
     this.previousPathTextBox.AutoCompleteMode   = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
     this.previousPathTextBox.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.FileSystem;
     this.previousPathTextBox.Name        = "previousPathTextBox";
     this.previousPathTextBox.Validated  += new System.EventHandler(this.PreviousPathTextBox_Validated);
     this.previousPathTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.PreviousPathTextBox_Validating);
     //
     // browseButton
     //
     resources.ApplyResources(this.browseButton, "browseButton");
     this.browseButton.MinimumSize = new System.Drawing.Size(73, 23);
     this.browseButton.Name        = "browseButton";
     this.browseButton.Click      += new System.EventHandler(this.BrowseButton_Click);
     //
     // openFileDialog
     //
     resources.ApplyResources(this.openFileDialog, "openFileDialog");
     //
     // noUpgradeRadioButton
     //
     resources.ApplyResources(this.noUpgradeRadioButton, "noUpgradeRadioButton");
     this.noUpgradeRadioButton.MinimumSize             = new System.Drawing.Size(195, 17);
     this.noUpgradeRadioButton.Name                    = "noUpgradeRadioButton";
     this.noUpgradeRadioButton.TabStop                 = true;
     this.noUpgradeRadioButton.UseVisualStyleBackColor = true;
     this.noUpgradeRadioButton.Validated              += new System.EventHandler(this.AnyRadioButton_Validated);
     this.noUpgradeRadioButton.CheckedChanged         += new System.EventHandler(this.NoUpgradeRadioButton_CheckedChanged);
     //
     // feedUpgradeRadioButton
     //
     resources.ApplyResources(this.feedUpgradeRadioButton, "feedUpgradeRadioButton");
     this.feedUpgradeRadioButton.MinimumSize             = new System.Drawing.Size(300, 17);
     this.feedUpgradeRadioButton.Name                    = "feedUpgradeRadioButton";
     this.feedUpgradeRadioButton.TabStop                 = true;
     this.feedUpgradeRadioButton.UseVisualStyleBackColor = true;
     this.feedUpgradeRadioButton.Validated              += new System.EventHandler(this.AnyRadioButton_Validated);
     this.feedUpgradeRadioButton.CheckedChanged         += new System.EventHandler(this.FeedUpgradeRadioButton_CheckedChanged);
     //
     // upgradePathRadioButton
     //
     resources.ApplyResources(this.upgradePathRadioButton, "upgradePathRadioButton");
     this.upgradePathRadioButton.MinimumSize             = new System.Drawing.Size(188, 17);
     this.upgradePathRadioButton.Name                    = "upgradePathRadioButton";
     this.upgradePathRadioButton.TabStop                 = true;
     this.upgradePathRadioButton.UseVisualStyleBackColor = true;
     this.upgradePathRadioButton.Validated              += new System.EventHandler(this.AnyRadioButton_Validated);
     this.upgradePathRadioButton.CheckedChanged         += new System.EventHandler(this.UpgradePathRadioButton_CheckedChanged);
     //
     // bottomButtonTableLayoutPanel
     //
     resources.ApplyResources(this.bottomButtonTableLayoutPanel, "bottomButtonTableLayoutPanel");
     this.bottomButtonTableLayoutPanel.Controls.Add(this.browseButton, 0, 0);
     this.bottomButtonTableLayoutPanel.Name = "bottomButtonTableLayoutPanel";
     //
     // UpdateInfoStep
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor     = System.Drawing.Color.Transparent;
     this.Controls.Add(this.bottomButtonTableLayoutPanel);
     this.Controls.Add(this.upgradePathRadioButton);
     this.Controls.Add(this.feedUpgradeRadioButton);
     this.Controls.Add(this.noUpgradeRadioButton);
     this.Controls.Add(this.previousPathTextBox);
     this.Name = "UpdateInfoStep";
     this.Tag  = "Optionally, you can provide the path to the previous version of the application a" +
                 "nd an upgrade package will be created.";
     this.bottomButtonTableLayoutPanel.ResumeLayout(false);
     this.bottomButtonTableLayoutPanel.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.components = new System.ComponentModel.Container();
     this.buttonZero = new System.Windows.Forms.Button();
     this.buttonDecimal = new System.Windows.Forms.Button();
     this.buttonAddition = new System.Windows.Forms.Button();
     this.buttonPi = new System.Windows.Forms.Button();
     this.buttonEquals = new System.Windows.Forms.Button();
     this.buttonOne = new System.Windows.Forms.Button();
     this.buttonTwo = new System.Windows.Forms.Button();
     this.buttonThree = new System.Windows.Forms.Button();
     this.buttonSubtract = new System.Windows.Forms.Button();
     this.buttonMultiply = new System.Windows.Forms.Button();
     this.buttonFour = new System.Windows.Forms.Button();
     this.buttonFive = new System.Windows.Forms.Button();
     this.buttonSix = new System.Windows.Forms.Button();
     this.buttonAC = new System.Windows.Forms.Button();
     this.textBox = new System.Windows.Forms.TextBox();
     this.buttonDivide = new System.Windows.Forms.Button();
     this.buttonSeven = new System.Windows.Forms.Button();
     this.buttonEight = new System.Windows.Forms.Button();
     this.buttonNone = new System.Windows.Forms.Button();
     this.buttonSquared = new System.Windows.Forms.Button();
     this.buttonCubed = new System.Windows.Forms.Button();
     this.buttonSquareRoot = new System.Windows.Forms.Button();
     this.buttonExponent = new System.Windows.Forms.Button();
     this.buttonPaste = new System.Windows.Forms.Button();
     this.buttonSine = new System.Windows.Forms.Button();
     this.buttonCosine = new System.Windows.Forms.Button();
     this.buttonTangent = new System.Windows.Forms.Button();
     this.buttonRoute = new System.Windows.Forms.Button();
     this.buttonFactor = new System.Windows.Forms.Button();
     this.buttonLog = new System.Windows.Forms.Button();
     this.buttonInX = new System.Windows.Forms.Button();
     this.buttonBackspace = new System.Windows.Forms.Button();
     this.radioDegree = new System.Windows.Forms.RadioButton();
     this.radioRadian = new System.Windows.Forms.RadioButton();
     this.buttonPercent = new System.Windows.Forms.Button();
     this.buttonOperator = new System.Windows.Forms.Button();
     this.buttonInverseCosine = new System.Windows.Forms.Button();
     this.buttonInverseSine = new System.Windows.Forms.Button();
     this.buttonInverseTangent = new System.Windows.Forms.Button();
     this.buttonPermutation = new System.Windows.Forms.Button();
     this.buttonCombination = new System.Windows.Forms.Button();
     this.buttonCopy = new System.Windows.Forms.Button();
     this.groupBoxScientific = new ARCed.Controls.CollapsibleGroupBox();
     this.panelBasic = new System.Windows.Forms.Panel();
     this.checkBoxTopMost = new System.Windows.Forms.CheckBox();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.groupBoxScientific.SuspendLayout();
     this.panelBasic.SuspendLayout();
     this.SuspendLayout();
     //
     // buttonZero
     //
     this.buttonZero.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonZero.Location = new System.Drawing.Point(52, 119);
     this.buttonZero.Name = "buttonZero";
     this.buttonZero.Size = new System.Drawing.Size(40, 23);
     this.buttonZero.TabIndex = 0;
     this.buttonZero.Text = "0";
     this.buttonZero.UseVisualStyleBackColor = true;
     this.buttonZero.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonDecimal
     //
     this.buttonDecimal.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonDecimal.Location = new System.Drawing.Point(98, 119);
     this.buttonDecimal.Name = "buttonDecimal";
     this.buttonDecimal.Size = new System.Drawing.Size(40, 23);
     this.buttonDecimal.TabIndex = 1;
     this.buttonDecimal.Text = ".";
     this.toolTip.SetToolTip(this.buttonDecimal, "Decimal");
     this.buttonDecimal.UseVisualStyleBackColor = true;
     this.buttonDecimal.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonAddition
     //
     this.buttonAddition.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonAddition.Location = new System.Drawing.Point(188, 119);
     this.buttonAddition.Name = "buttonAddition";
     this.buttonAddition.Size = new System.Drawing.Size(40, 23);
     this.buttonAddition.TabIndex = 2;
     this.buttonAddition.Text = "+";
     this.toolTip.SetToolTip(this.buttonAddition, "Addition");
     this.buttonAddition.UseVisualStyleBackColor = true;
     this.buttonAddition.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonPi
     //
     this.buttonPi.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonPi.Location = new System.Drawing.Point(142, 3);
     this.buttonPi.Name = "buttonPi";
     this.buttonPi.Size = new System.Drawing.Size(40, 23);
     this.buttonPi.TabIndex = 3;
     this.buttonPi.Text = "Pi";
     this.toolTip.SetToolTip(this.buttonPi, "Pi");
     this.buttonPi.UseVisualStyleBackColor = true;
     this.buttonPi.Click += new System.EventHandler(this.buttonPi_Click);
     //
     // buttonEquals
     //
     this.buttonEquals.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonEquals.Location = new System.Drawing.Point(142, 119);
     this.buttonEquals.Name = "buttonEquals";
     this.buttonEquals.Size = new System.Drawing.Size(40, 23);
     this.buttonEquals.TabIndex = 4;
     this.buttonEquals.Text = "=";
     this.toolTip.SetToolTip(this.buttonEquals, "Calculate");
     this.buttonEquals.UseVisualStyleBackColor = true;
     this.buttonEquals.Click += new System.EventHandler(this.buttonEquals_Click);
     //
     // buttonOne
     //
     this.buttonOne.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonOne.Location = new System.Drawing.Point(52, 90);
     this.buttonOne.Name = "buttonOne";
     this.buttonOne.Size = new System.Drawing.Size(40, 23);
     this.buttonOne.TabIndex = 5;
     this.buttonOne.Text = "1";
     this.buttonOne.UseVisualStyleBackColor = true;
     this.buttonOne.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonTwo
     //
     this.buttonTwo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonTwo.Location = new System.Drawing.Point(98, 90);
     this.buttonTwo.Name = "buttonTwo";
     this.buttonTwo.Size = new System.Drawing.Size(40, 23);
     this.buttonTwo.TabIndex = 6;
     this.buttonTwo.Text = "2";
     this.buttonTwo.UseVisualStyleBackColor = true;
     this.buttonTwo.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonThree
     //
     this.buttonThree.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonThree.Location = new System.Drawing.Point(142, 90);
     this.buttonThree.Name = "buttonThree";
     this.buttonThree.Size = new System.Drawing.Size(40, 23);
     this.buttonThree.TabIndex = 7;
     this.buttonThree.Text = "3";
     this.buttonThree.UseVisualStyleBackColor = true;
     this.buttonThree.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonSubtract
     //
     this.buttonSubtract.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSubtract.Location = new System.Drawing.Point(188, 90);
     this.buttonSubtract.Name = "buttonSubtract";
     this.buttonSubtract.Size = new System.Drawing.Size(40, 23);
     this.buttonSubtract.TabIndex = 8;
     this.buttonSubtract.Text = "-";
     this.toolTip.SetToolTip(this.buttonSubtract, "Subtraction");
     this.buttonSubtract.UseVisualStyleBackColor = true;
     this.buttonSubtract.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonMultiply
     //
     this.buttonMultiply.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonMultiply.Location = new System.Drawing.Point(188, 61);
     this.buttonMultiply.Name = "buttonMultiply";
     this.buttonMultiply.Size = new System.Drawing.Size(40, 23);
     this.buttonMultiply.TabIndex = 9;
     this.buttonMultiply.Text = "*";
     this.toolTip.SetToolTip(this.buttonMultiply, "Multiplication");
     this.buttonMultiply.UseVisualStyleBackColor = true;
     this.buttonMultiply.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonFour
     //
     this.buttonFour.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonFour.Location = new System.Drawing.Point(52, 61);
     this.buttonFour.Name = "buttonFour";
     this.buttonFour.Size = new System.Drawing.Size(40, 23);
     this.buttonFour.TabIndex = 10;
     this.buttonFour.Text = "4";
     this.buttonFour.UseVisualStyleBackColor = true;
     this.buttonFour.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonFive
     //
     this.buttonFive.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonFive.Location = new System.Drawing.Point(98, 61);
     this.buttonFive.Name = "buttonFive";
     this.buttonFive.Size = new System.Drawing.Size(40, 23);
     this.buttonFive.TabIndex = 11;
     this.buttonFive.Text = "5";
     this.buttonFive.UseVisualStyleBackColor = true;
     this.buttonFive.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonSix
     //
     this.buttonSix.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSix.Location = new System.Drawing.Point(142, 61);
     this.buttonSix.Name = "buttonSix";
     this.buttonSix.Size = new System.Drawing.Size(40, 23);
     this.buttonSix.TabIndex = 12;
     this.buttonSix.Text = "6";
     this.buttonSix.UseVisualStyleBackColor = true;
     this.buttonSix.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonAC
     //
     this.buttonAC.BackColor = System.Drawing.SystemColors.Control;
     this.buttonAC.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.buttonAC.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonAC.Image = global::ARCed.Properties.Resources.Delete;
     this.buttonAC.Location = new System.Drawing.Point(4, 32);
     this.buttonAC.Name = "buttonAC";
     this.buttonAC.Size = new System.Drawing.Size(40, 23);
     this.buttonAC.TabIndex = 13;
     this.toolTip.SetToolTip(this.buttonAC, "Clear all");
     this.buttonAC.UseVisualStyleBackColor = true;
     this.buttonAC.Click += new System.EventHandler(this.buttonClear_Click);
     //
     // textBox
     //
     this.textBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.textBox.BackColor = System.Drawing.SystemColors.Window;
     this.textBox.Font = new System.Drawing.Font("Consolas", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.textBox.ForeColor = System.Drawing.Color.Black;
     this.textBox.Location = new System.Drawing.Point(14, 12);
     this.textBox.MaxLength = 20;
     this.textBox.Name = "textBox";
     this.textBox.ShortcutsEnabled = false;
     this.textBox.Size = new System.Drawing.Size(236, 30);
     this.textBox.TabIndex = 14;
     this.textBox.TabStop = false;
     //
     // buttonDivide
     //
     this.buttonDivide.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonDivide.Location = new System.Drawing.Point(188, 32);
     this.buttonDivide.Name = "buttonDivide";
     this.buttonDivide.Size = new System.Drawing.Size(40, 23);
     this.buttonDivide.TabIndex = 16;
     this.buttonDivide.Text = "/";
     this.toolTip.SetToolTip(this.buttonDivide, "Division");
     this.buttonDivide.UseVisualStyleBackColor = true;
     this.buttonDivide.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonSeven
     //
     this.buttonSeven.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSeven.Location = new System.Drawing.Point(52, 32);
     this.buttonSeven.Name = "buttonSeven";
     this.buttonSeven.Size = new System.Drawing.Size(40, 23);
     this.buttonSeven.TabIndex = 17;
     this.buttonSeven.Text = "7";
     this.buttonSeven.UseVisualStyleBackColor = true;
     this.buttonSeven.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonEight
     //
     this.buttonEight.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonEight.Location = new System.Drawing.Point(98, 32);
     this.buttonEight.Name = "buttonEight";
     this.buttonEight.Size = new System.Drawing.Size(40, 23);
     this.buttonEight.TabIndex = 18;
     this.buttonEight.Text = "8";
     this.buttonEight.UseVisualStyleBackColor = true;
     this.buttonEight.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonNone
     //
     this.buttonNone.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonNone.Location = new System.Drawing.Point(142, 32);
     this.buttonNone.Name = "buttonNone";
     this.buttonNone.Size = new System.Drawing.Size(40, 23);
     this.buttonNone.TabIndex = 19;
     this.buttonNone.Text = "9";
     this.buttonNone.UseVisualStyleBackColor = true;
     this.buttonNone.Click += new System.EventHandler(this.buttonNumber_Click);
     //
     // buttonSquared
     //
     this.buttonSquared.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSquared.Location = new System.Drawing.Point(6, 19);
     this.buttonSquared.Name = "buttonSquared";
     this.buttonSquared.Size = new System.Drawing.Size(40, 23);
     this.buttonSquared.TabIndex = 20;
     this.buttonSquared.Text = "x^2";
     this.toolTip.SetToolTip(this.buttonSquared, "Squared");
     this.buttonSquared.UseVisualStyleBackColor = true;
     this.buttonSquared.Click += new System.EventHandler(this.buttonSquared_Click);
     //
     // buttonCubed
     //
     this.buttonCubed.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonCubed.Location = new System.Drawing.Point(52, 19);
     this.buttonCubed.Name = "buttonCubed";
     this.buttonCubed.Size = new System.Drawing.Size(40, 23);
     this.buttonCubed.TabIndex = 21;
     this.buttonCubed.Text = "x^3";
     this.toolTip.SetToolTip(this.buttonCubed, "Cubed");
     this.buttonCubed.UseVisualStyleBackColor = true;
     this.buttonCubed.Click += new System.EventHandler(this.buttonCubed_Click);
     //
     // buttonSquareRoot
     //
     this.buttonSquareRoot.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSquareRoot.Location = new System.Drawing.Point(98, 3);
     this.buttonSquareRoot.Name = "buttonSquareRoot";
     this.buttonSquareRoot.Size = new System.Drawing.Size(40, 23);
     this.buttonSquareRoot.TabIndex = 22;
     this.buttonSquareRoot.Text = "sqrt";
     this.toolTip.SetToolTip(this.buttonSquareRoot, "Square Root");
     this.buttonSquareRoot.UseVisualStyleBackColor = true;
     this.buttonSquareRoot.Click += new System.EventHandler(this.buttonSquareRoot_Click);
     //
     // buttonExponent
     //
     this.buttonExponent.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonExponent.Location = new System.Drawing.Point(98, 19);
     this.buttonExponent.Name = "buttonExponent";
     this.buttonExponent.Size = new System.Drawing.Size(40, 23);
     this.buttonExponent.TabIndex = 23;
     this.buttonExponent.Text = "x^y";
     this.toolTip.SetToolTip(this.buttonExponent, "Exponent");
     this.buttonExponent.UseVisualStyleBackColor = true;
     this.buttonExponent.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonPaste
     //
     this.buttonPaste.BackColor = System.Drawing.SystemColors.Control;
     this.buttonPaste.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.buttonPaste.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonPaste.Image = global::ARCed.Properties.Resources.Paste;
     this.buttonPaste.Location = new System.Drawing.Point(6, 119);
     this.buttonPaste.Name = "buttonPaste";
     this.buttonPaste.Size = new System.Drawing.Size(40, 23);
     this.buttonPaste.TabIndex = 24;
     this.toolTip.SetToolTip(this.buttonPaste, "Paste number from clipboard");
     this.buttonPaste.UseVisualStyleBackColor = true;
     this.buttonPaste.Click += new System.EventHandler(this.buttonPaste_Click);
     //
     // buttonSine
     //
     this.buttonSine.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonSine.Location = new System.Drawing.Point(6, 48);
     this.buttonSine.Name = "buttonSine";
     this.buttonSine.Size = new System.Drawing.Size(40, 23);
     this.buttonSine.TabIndex = 25;
     this.buttonSine.Text = "sin";
     this.toolTip.SetToolTip(this.buttonSine, "Sine");
     this.buttonSine.UseVisualStyleBackColor = true;
     this.buttonSine.Click += new System.EventHandler(this.buttonSine_Click);
     //
     // buttonCosine
     //
     this.buttonCosine.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonCosine.Location = new System.Drawing.Point(52, 48);
     this.buttonCosine.Name = "buttonCosine";
     this.buttonCosine.Size = new System.Drawing.Size(40, 23);
     this.buttonCosine.TabIndex = 26;
     this.buttonCosine.Text = "cos";
     this.toolTip.SetToolTip(this.buttonCosine, "Cosine");
     this.buttonCosine.UseVisualStyleBackColor = true;
     this.buttonCosine.Click += new System.EventHandler(this.buttonCosine_Click);
     //
     // buttonTangent
     //
     this.buttonTangent.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonTangent.Location = new System.Drawing.Point(98, 48);
     this.buttonTangent.Name = "buttonTangent";
     this.buttonTangent.Size = new System.Drawing.Size(40, 23);
     this.buttonTangent.TabIndex = 27;
     this.buttonTangent.Text = "tan";
     this.toolTip.SetToolTip(this.buttonTangent, "Tangent");
     this.buttonTangent.UseVisualStyleBackColor = true;
     this.buttonTangent.Click += new System.EventHandler(this.buttonTangent_Click);
     //
     // buttonRoute
     //
     this.buttonRoute.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonRoute.Location = new System.Drawing.Point(144, 48);
     this.buttonRoute.Name = "buttonRoute";
     this.buttonRoute.Size = new System.Drawing.Size(40, 23);
     this.buttonRoute.TabIndex = 28;
     this.buttonRoute.Text = "1/x";
     this.toolTip.SetToolTip(this.buttonRoute, "1 divided by");
     this.buttonRoute.UseVisualStyleBackColor = true;
     this.buttonRoute.Click += new System.EventHandler(this.button1DividedBy_Click);
     //
     // buttonFactor
     //
     this.buttonFactor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonFactor.Location = new System.Drawing.Point(190, 48);
     this.buttonFactor.Name = "buttonFactor";
     this.buttonFactor.Size = new System.Drawing.Size(40, 23);
     this.buttonFactor.TabIndex = 29;
     this.buttonFactor.Text = "n!";
     this.toolTip.SetToolTip(this.buttonFactor, "Factorial");
     this.buttonFactor.UseVisualStyleBackColor = true;
     this.buttonFactor.Click += new System.EventHandler(this.buttonFactor_Click);
     //
     // buttonLog
     //
     this.buttonLog.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonLog.Location = new System.Drawing.Point(144, 19);
     this.buttonLog.Name = "buttonLog";
     this.buttonLog.Size = new System.Drawing.Size(40, 23);
     this.buttonLog.TabIndex = 30;
     this.buttonLog.Text = "log x";
     this.toolTip.SetToolTip(this.buttonLog, "Base 10 logarithm");
     this.buttonLog.UseVisualStyleBackColor = true;
     this.buttonLog.Click += new System.EventHandler(this.buttonLog10_Click);
     //
     // buttonInX
     //
     this.buttonInX.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonInX.Location = new System.Drawing.Point(190, 19);
     this.buttonInX.Name = "buttonInX";
     this.buttonInX.Size = new System.Drawing.Size(40, 23);
     this.buttonInX.TabIndex = 31;
     this.buttonInX.Text = "ln x";
     this.toolTip.SetToolTip(this.buttonInX, "Natural logarithm");
     this.buttonInX.UseVisualStyleBackColor = true;
     this.buttonInX.Click += new System.EventHandler(this.buttonNaturalLog_Click);
     //
     // buttonBackspace
     //
     this.buttonBackspace.BackColor = System.Drawing.SystemColors.Control;
     this.buttonBackspace.FlatAppearance.BorderColor = System.Drawing.SystemColors.Control;
     this.buttonBackspace.FlatAppearance.MouseOverBackColor = System.Drawing.Color.Orange;
     this.buttonBackspace.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonBackspace.Location = new System.Drawing.Point(6, 3);
     this.buttonBackspace.Name = "buttonBackspace";
     this.buttonBackspace.Size = new System.Drawing.Size(40, 23);
     this.buttonBackspace.TabIndex = 32;
     this.buttonBackspace.Text = "Back";
     this.toolTip.SetToolTip(this.buttonBackspace, "Backspace");
     this.buttonBackspace.UseVisualStyleBackColor = true;
     this.buttonBackspace.Click += new System.EventHandler(this.buttonBackspace_Click);
     //
     // radioDegree
     //
     this.radioDegree.AutoSize = true;
     this.radioDegree.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioDegree.Location = new System.Drawing.Point(71, 106);
     this.radioDegree.Name = "radioDegree";
     this.radioDegree.Size = new System.Drawing.Size(60, 17);
     this.radioDegree.TabIndex = 33;
     this.radioDegree.TabStop = true;
     this.radioDegree.Text = "Degree";
     this.toolTip.SetToolTip(this.radioDegree, "Display value in degrees");
     this.radioDegree.UseVisualStyleBackColor = true;
     //
     // radioRadian
     //
     this.radioRadian.AutoSize = true;
     this.radioRadian.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radioRadian.Location = new System.Drawing.Point(6, 106);
     this.radioRadian.Name = "radioRadian";
     this.radioRadian.Size = new System.Drawing.Size(59, 17);
     this.radioRadian.TabIndex = 35;
     this.radioRadian.TabStop = true;
     this.radioRadian.Text = "Radian";
     this.toolTip.SetToolTip(this.radioRadian, "Display value in radians");
     this.radioRadian.UseVisualStyleBackColor = true;
     //
     // buttonPercent
     //
     this.buttonPercent.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonPercent.Location = new System.Drawing.Point(188, 3);
     this.buttonPercent.Name = "buttonPercent";
     this.buttonPercent.Size = new System.Drawing.Size(40, 23);
     this.buttonPercent.TabIndex = 37;
     this.buttonPercent.Text = "%";
     this.toolTip.SetToolTip(this.buttonPercent, "Modulo");
     this.buttonPercent.UseVisualStyleBackColor = true;
     this.buttonPercent.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonOperator
     //
     this.buttonOperator.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonOperator.Location = new System.Drawing.Point(50, 3);
     this.buttonOperator.Name = "buttonOperator";
     this.buttonOperator.Size = new System.Drawing.Size(40, 23);
     this.buttonOperator.TabIndex = 38;
     this.buttonOperator.Text = "+/-";
     this.toolTip.SetToolTip(this.buttonOperator, "Operator");
     this.buttonOperator.UseVisualStyleBackColor = true;
     this.buttonOperator.Click += new System.EventHandler(this.buttonOperator_Click);
     //
     // buttonInverseCosine
     //
     this.buttonInverseCosine.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonInverseCosine.Location = new System.Drawing.Point(52, 77);
     this.buttonInverseCosine.Name = "buttonInverseCosine";
     this.buttonInverseCosine.Size = new System.Drawing.Size(40, 23);
     this.buttonInverseCosine.TabIndex = 39;
     this.buttonInverseCosine.Text = "cos-1";
     this.toolTip.SetToolTip(this.buttonInverseCosine, "Inverse cosine");
     this.buttonInverseCosine.UseVisualStyleBackColor = true;
     this.buttonInverseCosine.Click += new System.EventHandler(this.buttonInverseCosine_Click);
     //
     // buttonInverseSine
     //
     this.buttonInverseSine.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonInverseSine.Location = new System.Drawing.Point(6, 77);
     this.buttonInverseSine.Name = "buttonInverseSine";
     this.buttonInverseSine.Size = new System.Drawing.Size(40, 23);
     this.buttonInverseSine.TabIndex = 40;
     this.buttonInverseSine.Text = "sin-1";
     this.toolTip.SetToolTip(this.buttonInverseSine, "Inverse sine");
     this.buttonInverseSine.UseVisualStyleBackColor = true;
     this.buttonInverseSine.Click += new System.EventHandler(this.buttonInverseSine_Click);
     //
     // buttonInverseTangent
     //
     this.buttonInverseTangent.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonInverseTangent.Location = new System.Drawing.Point(98, 77);
     this.buttonInverseTangent.Name = "buttonInverseTangent";
     this.buttonInverseTangent.Size = new System.Drawing.Size(40, 23);
     this.buttonInverseTangent.TabIndex = 41;
     this.buttonInverseTangent.Text = "tan-1";
     this.toolTip.SetToolTip(this.buttonInverseTangent, "Inverse tangent");
     this.buttonInverseTangent.UseVisualStyleBackColor = true;
     this.buttonInverseTangent.Click += new System.EventHandler(this.buttonInverseTangent_Click);
     //
     // buttonPermutation
     //
     this.buttonPermutation.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonPermutation.Location = new System.Drawing.Point(144, 77);
     this.buttonPermutation.Name = "buttonPermutation";
     this.buttonPermutation.Size = new System.Drawing.Size(40, 23);
     this.buttonPermutation.TabIndex = 42;
     this.buttonPermutation.Text = "nPr";
     this.toolTip.SetToolTip(this.buttonPermutation, "Permutation");
     this.buttonPermutation.UseVisualStyleBackColor = true;
     this.buttonPermutation.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonCombination
     //
     this.buttonCombination.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonCombination.Location = new System.Drawing.Point(190, 77);
     this.buttonCombination.Name = "buttonCombination";
     this.buttonCombination.Size = new System.Drawing.Size(40, 23);
     this.buttonCombination.TabIndex = 43;
     this.buttonCombination.Text = "nCr";
     this.toolTip.SetToolTip(this.buttonCombination, "Combination");
     this.buttonCombination.UseVisualStyleBackColor = true;
     this.buttonCombination.Click += new System.EventHandler(this.SetFunction);
     //
     // buttonCopy
     //
     this.buttonCopy.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.buttonCopy.Image = global::ARCed.Properties.Resources.Copy;
     this.buttonCopy.Location = new System.Drawing.Point(6, 90);
     this.buttonCopy.Name = "buttonCopy";
     this.buttonCopy.Size = new System.Drawing.Size(40, 23);
     this.buttonCopy.TabIndex = 45;
     this.toolTip.SetToolTip(this.buttonCopy, "Copy number to clipboard");
     this.buttonCopy.UseVisualStyleBackColor = true;
     this.buttonCopy.Click += new System.EventHandler(this.buttonCopy_Click);
     //
     // groupBoxScientific
     //
     this.groupBoxScientific.Controls.Add(this.buttonFactor);
     this.groupBoxScientific.Controls.Add(this.buttonSquared);
     this.groupBoxScientific.Controls.Add(this.buttonCombination);
     this.groupBoxScientific.Controls.Add(this.radioDegree);
     this.groupBoxScientific.Controls.Add(this.radioRadian);
     this.groupBoxScientific.Controls.Add(this.buttonCubed);
     this.groupBoxScientific.Controls.Add(this.buttonPermutation);
     this.groupBoxScientific.Controls.Add(this.buttonExponent);
     this.groupBoxScientific.Controls.Add(this.buttonInverseTangent);
     this.groupBoxScientific.Controls.Add(this.buttonSine);
     this.groupBoxScientific.Controls.Add(this.buttonInverseSine);
     this.groupBoxScientific.Controls.Add(this.buttonCosine);
     this.groupBoxScientific.Controls.Add(this.buttonInverseCosine);
     this.groupBoxScientific.Controls.Add(this.buttonTangent);
     this.groupBoxScientific.Controls.Add(this.buttonRoute);
     this.groupBoxScientific.Controls.Add(this.buttonLog);
     this.groupBoxScientific.Controls.Add(this.buttonInX);
     this.groupBoxScientific.Location = new System.Drawing.Point(12, 44);
     this.groupBoxScientific.Name = "groupBoxScientific";
     this.groupBoxScientific.Size = new System.Drawing.Size(238, 132);
     this.groupBoxScientific.TabIndex = 46;
     this.groupBoxScientific.TabStop = false;
     this.groupBoxScientific.Text = "Scientific Functions";
     this.groupBoxScientific.CollapseBoxClickedEvent += new ARCed.Controls.CollapsibleGroupBox.CollapseBoxClickedEventHandler(this.groupBoxScientific_CollapseBoxClickedEvent);
     //
     // panelBasic
     //
     this.panelBasic.Controls.Add(this.checkBoxTopMost);
     this.panelBasic.Controls.Add(this.buttonBackspace);
     this.panelBasic.Controls.Add(this.buttonZero);
     this.panelBasic.Controls.Add(this.buttonCopy);
     this.panelBasic.Controls.Add(this.buttonDecimal);
     this.panelBasic.Controls.Add(this.buttonOperator);
     this.panelBasic.Controls.Add(this.buttonAddition);
     this.panelBasic.Controls.Add(this.buttonPercent);
     this.panelBasic.Controls.Add(this.buttonPi);
     this.panelBasic.Controls.Add(this.buttonEquals);
     this.panelBasic.Controls.Add(this.buttonPaste);
     this.panelBasic.Controls.Add(this.buttonOne);
     this.panelBasic.Controls.Add(this.buttonSquareRoot);
     this.panelBasic.Controls.Add(this.buttonTwo);
     this.panelBasic.Controls.Add(this.buttonNone);
     this.panelBasic.Controls.Add(this.buttonThree);
     this.panelBasic.Controls.Add(this.buttonEight);
     this.panelBasic.Controls.Add(this.buttonSubtract);
     this.panelBasic.Controls.Add(this.buttonSeven);
     this.panelBasic.Controls.Add(this.buttonMultiply);
     this.panelBasic.Controls.Add(this.buttonDivide);
     this.panelBasic.Controls.Add(this.buttonFour);
     this.panelBasic.Controls.Add(this.buttonFive);
     this.panelBasic.Controls.Add(this.buttonAC);
     this.panelBasic.Controls.Add(this.buttonSix);
     this.panelBasic.Location = new System.Drawing.Point(14, 182);
     this.panelBasic.Name = "panelBasic";
     this.panelBasic.Size = new System.Drawing.Size(236, 148);
     this.panelBasic.TabIndex = 47;
     //
     // checkBoxTopMost
     //
     this.checkBoxTopMost.Appearance = System.Windows.Forms.Appearance.Button;
     this.checkBoxTopMost.BackgroundImage = global::ARCed.Properties.Resources.Pin;
     this.checkBoxTopMost.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.checkBoxTopMost.Location = new System.Drawing.Point(6, 61);
     this.checkBoxTopMost.Name = "checkBoxTopMost";
     this.checkBoxTopMost.Size = new System.Drawing.Size(40, 23);
     this.checkBoxTopMost.TabIndex = 46;
     this.checkBoxTopMost.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.toolTip.SetToolTip(this.checkBoxTopMost, "Toggle always on top");
     this.checkBoxTopMost.UseVisualStyleBackColor = true;
     //
     // CalculatorForm
     //
     this.AllowEndUserDocking = false;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize = true;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(258, 339);
     this.Controls.Add(this.panelBasic);
     this.Controls.Add(this.groupBoxScientific);
     this.Controls.Add(this.textBox);
     this.DockAreas = ARCed.UI.DockAreas.Float;
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name = "CalculatorForm";
     this.ShowHint = ARCed.UI.DockState.Float;
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Calculator";
     this.groupBoxScientific.ResumeLayout(false);
     this.groupBoxScientific.PerformLayout();
     this.panelBasic.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.PageControl1          = new System.Windows.Forms.TabControl();
     this.pageMerge             = new System.Windows.Forms.TabPage();
     this.MergeControl          = new GKUI.Components.GKMergeControl();
     this.btnAutoSearch         = new System.Windows.Forms.Button();
     this.btnSkip               = new System.Windows.Forms.Button();
     this.ProgressBar1          = new System.Windows.Forms.ProgressBar();
     this.pageMergeOptions      = new System.Windows.Forms.TabPage();
     this.grpMergeOther         = new System.Windows.Forms.GroupBox();
     this.chkBookmarkMerged     = new System.Windows.Forms.CheckBox();
     this.rgMode                = new System.Windows.Forms.GroupBox();
     this.radSources            = new System.Windows.Forms.RadioButton();
     this.radFamilies           = new System.Windows.Forms.RadioButton();
     this.radNotes              = new System.Windows.Forms.RadioButton();
     this.radPersons            = new System.Windows.Forms.RadioButton();
     this.grpSearchPersons      = new System.Windows.Forms.GroupBox();
     this.lblNameAccuracy       = new System.Windows.Forms.Label();
     this.lblYearInaccuracy     = new System.Windows.Forms.Label();
     this.chkIndistinctMatching = new System.Windows.Forms.CheckBox();
     this.edNameAccuracy        = new System.Windows.Forms.NumericUpDown();
     this.edYearInaccuracy      = new System.Windows.Forms.NumericUpDown();
     this.chkBirthYear          = new System.Windows.Forms.CheckBox();
     this.PageControl1.SuspendLayout();
     this.pageMerge.SuspendLayout();
     this.pageMergeOptions.SuspendLayout();
     this.grpMergeOther.SuspendLayout();
     this.rgMode.SuspendLayout();
     this.grpSearchPersons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.edNameAccuracy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.edYearInaccuracy)).BeginInit();
     this.SuspendLayout();
     //
     // PageControl1
     //
     this.PageControl1.Controls.Add(this.pageMerge);
     this.PageControl1.Controls.Add(this.pageMergeOptions);
     this.PageControl1.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.PageControl1.Location      = new System.Drawing.Point(0, 0);
     this.PageControl1.Name          = "PageControl1";
     this.PageControl1.SelectedIndex = 0;
     this.PageControl1.Size          = new System.Drawing.Size(965, 499);
     this.PageControl1.TabIndex      = 0;
     //
     // pageMerge
     //
     this.pageMerge.Controls.Add(this.MergeControl);
     this.pageMerge.Controls.Add(this.btnAutoSearch);
     this.pageMerge.Controls.Add(this.btnSkip);
     this.pageMerge.Controls.Add(this.ProgressBar1);
     this.pageMerge.Location = new System.Drawing.Point(4, 26);
     this.pageMerge.Name     = "pageMerge";
     this.pageMerge.Size     = new System.Drawing.Size(957, 469);
     this.pageMerge.TabIndex = 0;
     this.pageMerge.Text     = "pageMerge";
     //
     // MergeControl
     //
     this.MergeControl.AutoSize  = true;
     this.MergeControl.Base      = null;
     this.MergeControl.Bookmark  = false;
     this.MergeControl.Dock      = System.Windows.Forms.DockStyle.Top;
     this.MergeControl.Font      = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.MergeControl.Location  = new System.Drawing.Point(0, 0);
     this.MergeControl.MergeMode = GKCommon.GEDCOM.GEDCOMRecordType.rtNone;
     this.MergeControl.Name      = "MergeControl";
     this.MergeControl.Size      = new System.Drawing.Size(957, 399);
     this.MergeControl.TabIndex  = 11;
     //
     // btnAutoSearch
     //
     this.btnAutoSearch.Location = new System.Drawing.Point(17, 420);
     this.btnAutoSearch.Name     = "btnAutoSearch";
     this.btnAutoSearch.Size     = new System.Drawing.Size(105, 31);
     this.btnAutoSearch.TabIndex = 0;
     this.btnAutoSearch.Text     = "btnAutoSearch";
     this.btnAutoSearch.Click   += new System.EventHandler(this.btnSearch_Click);
     //
     // btnSkip
     //
     this.btnSkip.Location = new System.Drawing.Point(129, 420);
     this.btnSkip.Name     = "btnSkip";
     this.btnSkip.Size     = new System.Drawing.Size(105, 31);
     this.btnSkip.TabIndex = 9;
     this.btnSkip.Text     = "btnSkip";
     this.btnSkip.Click   += new System.EventHandler(this.btnSkip_Click);
     //
     // ProgressBar1
     //
     this.ProgressBar1.Location = new System.Drawing.Point(242, 420);
     this.ProgressBar1.Name     = "ProgressBar1";
     this.ProgressBar1.Size     = new System.Drawing.Size(700, 31);
     this.ProgressBar1.Step     = 1;
     this.ProgressBar1.TabIndex = 10;
     //
     // pageMergeOptions
     //
     this.pageMergeOptions.Controls.Add(this.grpMergeOther);
     this.pageMergeOptions.Controls.Add(this.rgMode);
     this.pageMergeOptions.Controls.Add(this.grpSearchPersons);
     this.pageMergeOptions.Location = new System.Drawing.Point(4, 26);
     this.pageMergeOptions.Name     = "pageMergeOptions";
     this.pageMergeOptions.Size     = new System.Drawing.Size(960, 471);
     this.pageMergeOptions.TabIndex = 1;
     this.pageMergeOptions.Text     = "pageMergeOptions";
     //
     // grpMergeOther
     //
     this.grpMergeOther.Controls.Add(this.chkBookmarkMerged);
     this.grpMergeOther.Location = new System.Drawing.Point(342, 10);
     this.grpMergeOther.Name     = "grpMergeOther";
     this.grpMergeOther.Size     = new System.Drawing.Size(331, 118);
     this.grpMergeOther.TabIndex = 2;
     this.grpMergeOther.TabStop  = false;
     this.grpMergeOther.Text     = "grpMergeOther";
     //
     // chkBookmarkMerged
     //
     this.chkBookmarkMerged.Location = new System.Drawing.Point(6, 23);
     this.chkBookmarkMerged.Name     = "chkBookmarkMerged";
     this.chkBookmarkMerged.Size     = new System.Drawing.Size(319, 24);
     this.chkBookmarkMerged.TabIndex = 0;
     this.chkBookmarkMerged.Text     = "chkBookmarkMerged";
     this.chkBookmarkMerged.UseVisualStyleBackColor = true;
     this.chkBookmarkMerged.CheckedChanged         += new System.EventHandler(this.chkBookmarkMerged_CheckedChanged);
     //
     // rgMode
     //
     this.rgMode.Controls.Add(this.radSources);
     this.rgMode.Controls.Add(this.radFamilies);
     this.rgMode.Controls.Add(this.radNotes);
     this.rgMode.Controls.Add(this.radPersons);
     this.rgMode.Location = new System.Drawing.Point(11, 10);
     this.rgMode.Name     = "rgMode";
     this.rgMode.Size     = new System.Drawing.Size(315, 118);
     this.rgMode.TabIndex = 0;
     this.rgMode.TabStop  = false;
     this.rgMode.Text     = "rgMode";
     //
     // radSources
     //
     this.radSources.Location = new System.Drawing.Point(22, 87);
     this.radSources.Name     = "radSources";
     this.radSources.Size     = new System.Drawing.Size(269, 20);
     this.radSources.TabIndex = 3;
     this.radSources.Text     = "radSources";
     this.radSources.Click   += new System.EventHandler(this.radMergeMode_Click);
     //
     // radFamilies
     //
     this.radFamilies.Location = new System.Drawing.Point(22, 68);
     this.radFamilies.Name     = "radFamilies";
     this.radFamilies.Size     = new System.Drawing.Size(269, 19);
     this.radFamilies.TabIndex = 2;
     this.radFamilies.Text     = "radFamilies";
     this.radFamilies.Click   += new System.EventHandler(this.radMergeMode_Click);
     //
     // radNotes
     //
     this.radNotes.Location = new System.Drawing.Point(22, 49);
     this.radNotes.Name     = "radNotes";
     this.radNotes.Size     = new System.Drawing.Size(269, 19);
     this.radNotes.TabIndex = 1;
     this.radNotes.Text     = "radNotes";
     this.radNotes.Click   += new System.EventHandler(this.radMergeMode_Click);
     //
     // radPersons
     //
     this.radPersons.Checked  = true;
     this.radPersons.Location = new System.Drawing.Point(22, 29);
     this.radPersons.Name     = "radPersons";
     this.radPersons.Size     = new System.Drawing.Size(269, 20);
     this.radPersons.TabIndex = 0;
     this.radPersons.TabStop  = true;
     this.radPersons.Text     = "radPersons";
     this.radPersons.Click   += new System.EventHandler(this.radMergeMode_Click);
     //
     // grpSearchPersons
     //
     this.grpSearchPersons.Controls.Add(this.lblNameAccuracy);
     this.grpSearchPersons.Controls.Add(this.lblYearInaccuracy);
     this.grpSearchPersons.Controls.Add(this.chkIndistinctMatching);
     this.grpSearchPersons.Controls.Add(this.edNameAccuracy);
     this.grpSearchPersons.Controls.Add(this.edYearInaccuracy);
     this.grpSearchPersons.Controls.Add(this.chkBirthYear);
     this.grpSearchPersons.Location = new System.Drawing.Point(11, 136);
     this.grpSearchPersons.Name     = "grpSearchPersons";
     this.grpSearchPersons.Size     = new System.Drawing.Size(315, 193);
     this.grpSearchPersons.TabIndex = 1;
     this.grpSearchPersons.TabStop  = false;
     this.grpSearchPersons.Text     = "grpSearchPersons";
     //
     // lblNameAccuracy
     //
     this.lblNameAccuracy.Location = new System.Drawing.Point(22, 49);
     this.lblNameAccuracy.Name     = "lblNameAccuracy";
     this.lblNameAccuracy.Size     = new System.Drawing.Size(152, 15);
     this.lblNameAccuracy.TabIndex = 0;
     this.lblNameAccuracy.Text     = "lblNameAccuracy";
     //
     // lblYearInaccuracy
     //
     this.lblYearInaccuracy.Location = new System.Drawing.Point(22, 132);
     this.lblYearInaccuracy.Name     = "lblYearInaccuracy";
     this.lblYearInaccuracy.Size     = new System.Drawing.Size(152, 16);
     this.lblYearInaccuracy.TabIndex = 1;
     this.lblYearInaccuracy.Text     = "lblYearInaccuracy";
     //
     // chkIndistinctMatching
     //
     this.chkIndistinctMatching.Location = new System.Drawing.Point(8, 24);
     this.chkIndistinctMatching.Name     = "chkIndistinctMatching";
     this.chkIndistinctMatching.Size     = new System.Drawing.Size(371, 21);
     this.chkIndistinctMatching.TabIndex = 1;
     this.chkIndistinctMatching.Text     = "chkIndistinctMatching";
     //
     // edNameAccuracy
     //
     this.edNameAccuracy.Location = new System.Drawing.Point(22, 68);
     this.edNameAccuracy.Name     = "edNameAccuracy";
     this.edNameAccuracy.Size     = new System.Drawing.Size(152, 24);
     this.edNameAccuracy.TabIndex = 2;
     this.edNameAccuracy.Value    = new decimal(new int[] {
         90,
         0,
         0,
         0
     });
     //
     // edYearInaccuracy
     //
     this.edYearInaccuracy.Location = new System.Drawing.Point(22, 152);
     this.edYearInaccuracy.Name     = "edYearInaccuracy";
     this.edYearInaccuracy.Size     = new System.Drawing.Size(152, 24);
     this.edYearInaccuracy.TabIndex = 4;
     this.edYearInaccuracy.Value    = new decimal(new int[] {
         3,
         0,
         0,
         0
     });
     //
     // chkBirthYear
     //
     this.chkBirthYear.Location = new System.Drawing.Point(8, 109);
     this.chkBirthYear.Name     = "chkBirthYear";
     this.chkBirthYear.Size     = new System.Drawing.Size(371, 21);
     this.chkBirthYear.TabIndex = 6;
     this.chkBirthYear.Text     = "chkBirthYear";
     //
     // TTRecMergeDlg
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(120F, 120F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Dpi;
     this.Caption             = "TreeToolsWin";
     this.ClientSize          = new System.Drawing.Size(965, 499);
     this.Controls.Add(this.PageControl1);
     this.Font            = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TTRecMergeDlg";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "TreeToolsWin";
     this.PageControl1.ResumeLayout(false);
     this.pageMerge.ResumeLayout(false);
     this.pageMerge.PerformLayout();
     this.pageMergeOptions.ResumeLayout(false);
     this.grpMergeOther.ResumeLayout(false);
     this.rgMode.ResumeLayout(false);
     this.grpSearchPersons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.edNameAccuracy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.edYearInaccuracy)).EndInit();
     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();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn8 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn9 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn10 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn11 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn12 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn13 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.UI.GridViewTextBoxColumn gridViewTextBoxColumn14 = new Telerik.WinControls.UI.GridViewTextBoxColumn();
     Telerik.WinControls.Data.SortDescriptor sortDescriptor2 = new Telerik.WinControls.Data.SortDescriptor();
     this.gridViewTemplate1 = new Telerik.WinControls.UI.GridViewTemplate();
     this.panel_batary_stock = new System.Windows.Forms.Panel();
     this.chk_brandd = new Telerik.WinControls.UI.RadCheckBox();
     this.com_amp = new Telerik.WinControls.UI.RadComboBox();
     this.chk_amp = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_din_battery = new Telerik.WinControls.UI.RadCheckBox();
     this.radGridView5 = new Telerik.WinControls.UI.RadGridView();
     this.txt_search_size = new Telerik.WinControls.UI.RadTextBox();
     this.grdBattry = new Telerik.WinControls.UI.RadGridView();
     this.radButton4 = new Telerik.WinControls.UI.RadButton();
     this.radButton5 = new Telerik.WinControls.UI.RadButton();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.rad_MF = new System.Windows.Forms.RadioButton();
     this.rad_M = new System.Windows.Forms.RadioButton();
     this.com_search_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_type = new Telerik.WinControls.UI.RadCheckBox();
     this.chk_size_batery = new Telerik.WinControls.UI.RadCheckBox();
     this.lblInvoice = new Telerik.WinControls.UI.RadLabel();
     this.aquaTheme2 = new Telerik.WinControls.Themes.AquaTheme();
     this.DesktopAlertQty = new Telerik.WinControls.UI.RadDesktopAlert(this.components);
     this.breezeTheme1 = new Telerik.WinControls.Themes.BreezeTheme();
     this.miscellaneousTheme1 = new Telerik.WinControls.Themes.MiscellaneousTheme();
     this.btnBattrySearch = new Telerik.WinControls.UI.RadButton();
     this.btnTyreSearch = new Telerik.WinControls.UI.RadButton();
     this.btnOtherSearch = new Telerik.WinControls.UI.RadButton();
     this.panel_other_search = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.grdOther = new Telerik.WinControls.UI.RadGridView();
     this.btnRefreshOher = new Telerik.WinControls.UI.RadButton();
     this.btnSearch = new Telerik.WinControls.UI.RadButton();
     this.cmdSearchCat = new Telerik.WinControls.UI.RadComboBox();
     this.radGridView1 = new Telerik.WinControls.UI.RadGridView();
     this.radGridView2 = new Telerik.WinControls.UI.RadGridView();
     this.radButton1 = new Telerik.WinControls.UI.RadButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.check_rear = new Telerik.WinControls.UI.RadCheckBox();
     this.check_front = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel2 = new Telerik.WinControls.UI.RadLabel();
     this.panal_cycle = new Telerik.WinControls.UI.RadPanel();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.radio_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_non_trial = new Telerik.WinControls.UI.RadRadioButton();
     this.radLabel3 = new Telerik.WinControls.UI.RadLabel();
     this.com_brand = new Telerik.WinControls.UI.RadComboBox();
     this.chk_size = new Telerik.WinControls.UI.RadCheckBox();
     this.com_ply_rate = new Telerik.WinControls.UI.RadComboBox();
     this.chk_t_pattern = new Telerik.WinControls.UI.RadCheckBox();
     this.com_t_pattern = new Telerik.WinControls.UI.RadComboBox();
     this.chk_make = new Telerik.WinControls.UI.RadCheckBox();
     this.com_made = new Telerik.WinControls.UI.RadComboBox();
     this.chk_ply_rate = new Telerik.WinControls.UI.RadCheckBox();
     this.radLabel4 = new Telerik.WinControls.UI.RadLabel();
     this.chk_brand = new Telerik.WinControls.UI.RadCheckBox();
     this.grp_tyre_type = new System.Windows.Forms.GroupBox();
     this.radio_canvas = new Telerik.WinControls.UI.RadRadioButton();
     this.radio_radial = new Telerik.WinControls.UI.RadRadioButton();
     this.radPanel2 = new Telerik.WinControls.UI.RadPanel();
     this.radGridView3 = new Telerik.WinControls.UI.RadGridView();
     this.txt_size = new Telerik.WinControls.UI.RadTextBox();
     this.radButton2 = new Telerik.WinControls.UI.RadButton();
     this.chk_cycle_search = new Telerik.WinControls.UI.RadCheckBox();
     this.radThemeManager1 = new Telerik.WinControls.RadThemeManager();
     this.pnlTyre = new System.Windows.Forms.Panel();
     this.btnTubeSearch = new Telerik.WinControls.UI.RadButton();
     this.grdInvoice = new Telerik.WinControls.UI.RadGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
     this.radLabel8 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel9 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel10 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel11 = new Telerik.WinControls.UI.RadLabel();
     this.txtInvoiceNo = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel12 = new Telerik.WinControls.UI.RadLabel();
     this.radLabel13 = new Telerik.WinControls.UI.RadLabel();
     this.txtInvoiceNote = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel14 = new Telerik.WinControls.UI.RadLabel();
     this.txtVehicleNo = new Telerik.WinControls.UI.RadTextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.btnAdd = new Telerik.WinControls.UI.RadButton();
     this.btnPrintInvoice = new Telerik.WinControls.UI.RadButton();
     this.btnClear = new Telerik.WinControls.UI.RadButton();
     this.radPanel1 = new Telerik.WinControls.UI.RadPanel();
     this.txtCustomerName = new Telerik.WinControls.UI.RadTextBox();
     this.grdFillCustomer = new System.Windows.Forms.DataGridView();
     this.com_customer_id = new System.Windows.Forms.ComboBox();
     this.radLabel16 = new Telerik.WinControls.UI.RadLabel();
     this.btnAddPayment = new Telerik.WinControls.UI.RadButton();
     this.txtTotal = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel5 = new Telerik.WinControls.UI.RadLabel();
     this.pnlTube = new System.Windows.Forms.Panel();
     this.label1 = new System.Windows.Forms.Label();
     this.txt_barcode = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.grdTubeSize = new Telerik.WinControls.UI.RadGridView();
     this.txtTubeSize = new System.Windows.Forms.TextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.chk_din_tube = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeBrand = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeMake = new Telerik.WinControls.UI.RadComboBox();
     this.chkTubeSize = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeMake = new Telerik.WinControls.UI.RadCheckBox();
     this.chkTubeType = new Telerik.WinControls.UI.RadCheckBox();
     this.comTubeBrand = new Telerik.WinControls.UI.RadComboBox();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.rad_tube_c = new System.Windows.Forms.RadioButton();
     this.rad_tube_v = new System.Windows.Forms.RadioButton();
     this.radButton3 = new Telerik.WinControls.UI.RadButton();
     this.radButton7 = new Telerik.WinControls.UI.RadButton();
     this.grdTubesearch = new Telerik.WinControls.UI.RadGridView();
     this.dtpInvoiceDate = new System.Windows.Forms.DateTimePicker();
     this.txt_ReceivedBy = new Telerik.WinControls.UI.RadTextBox();
     this.radLabel1 = new Telerik.WinControls.UI.RadLabel();
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).BeginInit();
     this.panel_batary_stock.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).BeginInit();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOtherSearch)).BeginInit();
     this.panel_other_search.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).BeginInit();
     this.panal_cycle.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).BeginInit();
     this.grp_tyre_type.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).BeginInit();
     this.radPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).BeginInit();
     this.pnlTyre.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnTubeSearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNote)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVehicleNo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrintInvoice)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFillCustomer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).BeginInit();
     this.pnlTube.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).BeginInit();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ReceivedBy)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this)).BeginInit();
     this.SuspendLayout();
     //
     // gridViewTemplate1
     //
     this.gridViewTemplate1.EnableAlternatingRowColor = true;
     //
     // panel_batary_stock
     //
     this.panel_batary_stock.BackColor = System.Drawing.Color.Transparent;
     this.panel_batary_stock.Controls.Add(this.chk_brandd);
     this.panel_batary_stock.Controls.Add(this.com_amp);
     this.panel_batary_stock.Controls.Add(this.chk_amp);
     this.panel_batary_stock.Controls.Add(this.chk_din_battery);
     this.panel_batary_stock.Controls.Add(this.radGridView5);
     this.panel_batary_stock.Controls.Add(this.txt_search_size);
     this.panel_batary_stock.Controls.Add(this.grdBattry);
     this.panel_batary_stock.Controls.Add(this.radButton4);
     this.panel_batary_stock.Controls.Add(this.radButton5);
     this.panel_batary_stock.Controls.Add(this.groupBox3);
     this.panel_batary_stock.Controls.Add(this.com_search_brand);
     this.panel_batary_stock.Controls.Add(this.chk_type);
     this.panel_batary_stock.Controls.Add(this.chk_size_batery);
     this.panel_batary_stock.ForeColor = System.Drawing.Color.Black;
     this.panel_batary_stock.Location = new System.Drawing.Point(28, 58);
     this.panel_batary_stock.Name = "panel_batary_stock";
     this.panel_batary_stock.Size = new System.Drawing.Size(1031, 341);
     this.panel_batary_stock.TabIndex = 110;
     this.panel_batary_stock.Click += new System.EventHandler(this.panel_batary_stock_Click);
     //
     // chk_brandd
     //
     this.chk_brandd.BackColor = System.Drawing.Color.Transparent;
     this.chk_brandd.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brandd.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Location = new System.Drawing.Point(4, 10);
     this.chk_brandd.Name = "chk_brandd";
     //
     //
     //
     this.chk_brandd.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brandd.Size = new System.Drawing.Size(55, 21);
     this.chk_brandd.TabIndex = 79;
     this.chk_brandd.Text = "Brand";
     this.chk_brandd.Click += new System.EventHandler(this.chk_brandd_Click_1);
     //
     // com_amp
     //
     this.com_amp.Location = new System.Drawing.Point(64, 50);
     this.com_amp.Name = "com_amp";
     //
     //
     //
     this.com_amp.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_amp.Size = new System.Drawing.Size(136, 20);
     this.com_amp.TabIndex = 78;
     this.com_amp.TabStop = false;
     //
     // chk_amp
     //
     this.chk_amp.BackColor = System.Drawing.Color.Transparent;
     this.chk_amp.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_amp.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Location = new System.Drawing.Point(3, 49);
     this.chk_amp.Name = "chk_amp";
     //
     //
     //
     this.chk_amp.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_amp.Size = new System.Drawing.Size(49, 21);
     this.chk_amp.TabIndex = 77;
     this.chk_amp.Text = "AMP";
     this.chk_amp.Click += new System.EventHandler(this.chk_amp_Click_1);
     //
     // chk_din_battery
     //
     this.chk_din_battery.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_battery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_battery.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Location = new System.Drawing.Point(3, 83);
     this.chk_din_battery.Name = "chk_din_battery";
     //
     //
     //
     this.chk_din_battery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_din_battery.Size = new System.Drawing.Size(44, 21);
     this.chk_din_battery.TabIndex = 65;
     this.chk_din_battery.Text = "DIN";
     this.chk_din_battery.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_din_battery_ToggleStateChanged);
     this.chk_din_battery.Click += new System.EventHandler(this.chk_din_battery_Click);
     //
     // radGridView5
     //
     this.radGridView5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView5.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView5.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView5.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView5.Location = new System.Drawing.Point(302, 33);
     //
     // radGridView5
     //
     this.radGridView5.MasterTemplate.AllowAddNewRow = false;
     this.radGridView5.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView5.MasterTemplate.EnableGrouping = false;
     this.radGridView5.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView5.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView5.Name = "radGridView5";
     this.radGridView5.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ReadOnly = true;
     this.radGridView5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView5.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView5.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView5.ShowGroupPanel = false;
     this.radGridView5.Size = new System.Drawing.Size(136, 72);
     this.radGridView5.TabIndex = 72;
     this.radGridView5.Text = "radGridView5";
     this.radGridView5.SelectionChanged += new System.EventHandler(this.radGridView5_SelectionChanged);
     this.radGridView5.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView5_CellClick);
     //
     // txt_search_size
     //
     this.txt_search_size.Location = new System.Drawing.Point(302, 12);
     this.txt_search_size.Name = "txt_search_size";
     this.txt_search_size.Size = new System.Drawing.Size(136, 20);
     this.txt_search_size.TabIndex = 71;
     this.txt_search_size.TabStop = false;
     this.txt_search_size.Click += new System.EventHandler(this.txt_search_size_Click);
     this.txt_search_size.Enter += new System.EventHandler(this.txt_search_size_Enter);
     //
     // grdBattry
     //
     this.grdBattry.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdBattry.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdBattry.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdBattry.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdBattry.Location = new System.Drawing.Point(3, 111);
     //
     // grdBattry
     //
     this.grdBattry.MasterTemplate.AllowAddNewRow = false;
     this.grdBattry.MasterTemplate.AllowColumnChooser = false;
     this.grdBattry.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdBattry.Name = "grdBattry";
     this.grdBattry.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.ReadOnly = true;
     this.grdBattry.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdBattry.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdBattry.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdBattry.Size = new System.Drawing.Size(1015, 220);
     this.grdBattry.TabIndex = 70;
     this.grdBattry.Text = "grdBattry";
     this.grdBattry.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView4_CellClick);
     //
     // radButton4
     //
     this.radButton4.Location = new System.Drawing.Point(961, 88);
     this.radButton4.Name = "radButton4";
     this.radButton4.Size = new System.Drawing.Size(57, 20);
     this.radButton4.TabIndex = 69;
     this.radButton4.Text = "Refresh";
     this.radButton4.ThemeName = "Breeze";
     this.radButton4.Click += new System.EventHandler(this.radButton4_Click);
     //
     // radButton5
     //
     this.radButton5.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton5.Location = new System.Drawing.Point(553, 58);
     this.radButton5.Name = "radButton5";
     this.radButton5.Size = new System.Drawing.Size(115, 50);
     this.radButton5.TabIndex = 68;
     this.radButton5.Text = "Search";
     this.radButton5.ThemeName = "Breeze";
     this.radButton5.Click += new System.EventHandler(this.radButton5_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.rad_MF);
     this.groupBox3.Controls.Add(this.rad_M);
     this.groupBox3.Location = new System.Drawing.Point(553, 4);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(124, 27);
     this.groupBox3.TabIndex = 67;
     this.groupBox3.TabStop = false;
     //
     // rad_MF
     //
     this.rad_MF.AutoSize = true;
     this.rad_MF.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_MF.ForeColor = System.Drawing.Color.White;
     this.rad_MF.Location = new System.Drawing.Point(63, 8);
     this.rad_MF.Name = "rad_MF";
     this.rad_MF.Size = new System.Drawing.Size(42, 17);
     this.rad_MF.TabIndex = 1;
     this.rad_MF.TabStop = true;
     this.rad_MF.Text = "MF";
     this.rad_MF.UseVisualStyleBackColor = true;
     this.rad_MF.CheckedChanged += new System.EventHandler(this.rad_MF_CheckedChanged);
     //
     // rad_M
     //
     this.rad_M.AutoSize = true;
     this.rad_M.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_M.ForeColor = System.Drawing.Color.White;
     this.rad_M.Location = new System.Drawing.Point(6, 8);
     this.rad_M.Name = "rad_M";
     this.rad_M.Size = new System.Drawing.Size(35, 17);
     this.rad_M.TabIndex = 0;
     this.rad_M.TabStop = true;
     this.rad_M.Text = "M";
     this.rad_M.UseVisualStyleBackColor = true;
     this.rad_M.CheckedChanged += new System.EventHandler(this.rad_M_CheckedChanged);
     //
     // com_search_brand
     //
     this.com_search_brand.Location = new System.Drawing.Point(64, 10);
     this.com_search_brand.Name = "com_search_brand";
     //
     //
     //
     this.com_search_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_search_brand.Size = new System.Drawing.Size(136, 20);
     this.com_search_brand.TabIndex = 65;
     this.com_search_brand.TabStop = false;
     //
     // chk_type
     //
     this.chk_type.BackColor = System.Drawing.Color.Transparent;
     this.chk_type.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_type.ForeColor = System.Drawing.Color.White;
     this.chk_type.Location = new System.Drawing.Point(489, 11);
     this.chk_type.Name = "chk_type";
     //
     //
     //
     this.chk_type.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_type.Size = new System.Drawing.Size(49, 21);
     this.chk_type.TabIndex = 64;
     this.chk_type.Text = "Type";
     this.chk_type.Click += new System.EventHandler(this.chk_type_Click);
     //
     // chk_size_batery
     //
     this.chk_size_batery.BackColor = System.Drawing.Color.Transparent;
     this.chk_size_batery.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size_batery.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Location = new System.Drawing.Point(242, 10);
     this.chk_size_batery.Name = "chk_size_batery";
     //
     //
     //
     this.chk_size_batery.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size_batery.Size = new System.Drawing.Size(44, 21);
     this.chk_size_batery.TabIndex = 62;
     this.chk_size_batery.Text = "Size";
     this.chk_size_batery.Click += new System.EventHandler(this.chk_size_batery_Click);
     //
     // lblInvoice
     //
     this.lblInvoice.BackColor = System.Drawing.Color.Transparent;
     this.lblInvoice.Font = new System.Drawing.Font("Segoe UI", 20F, System.Drawing.FontStyle.Bold);
     this.lblInvoice.ForeColor = System.Drawing.Color.Gold;
     this.lblInvoice.Location = new System.Drawing.Point(28, 12);
     this.lblInvoice.Name = "lblInvoice";
     //
     //
     //
     this.lblInvoice.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.lblInvoice.Size = new System.Drawing.Size(104, 41);
     this.lblInvoice.TabIndex = 68;
     this.lblInvoice.Text = "Invoice";
     this.lblInvoice.Click += new System.EventHandler(this.lblTyreSearch_Click);
     //
     // DesktopAlertQty
     //
     this.DesktopAlertQty.ContentImage = null;
     this.DesktopAlertQty.PlaySound = false;
     this.DesktopAlertQty.SoundToPlay = null;
     this.DesktopAlertQty.ThemeName = null;
     //
     // btnBattrySearch
     //
     this.btnBattrySearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnBattrySearch.Location = new System.Drawing.Point(676, 25);
     this.btnBattrySearch.Name = "btnBattrySearch";
     this.btnBattrySearch.Size = new System.Drawing.Size(120, 28);
     this.btnBattrySearch.TabIndex = 111;
     this.btnBattrySearch.Text = "Batery Search";
     this.btnBattrySearch.Click += new System.EventHandler(this.btnBattrySearch_Click_1);
     //
     // btnTyreSearch
     //
     this.btnTyreSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTyreSearch.Location = new System.Drawing.Point(550, 25);
     this.btnTyreSearch.Name = "btnTyreSearch";
     this.btnTyreSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTyreSearch.TabIndex = 112;
     this.btnTyreSearch.Text = "Tyre Search";
     this.btnTyreSearch.Click += new System.EventHandler(this.btnTyreSearch_Click);
     //
     // btnOtherSearch
     //
     this.btnOtherSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOtherSearch.Location = new System.Drawing.Point(928, 25);
     this.btnOtherSearch.Name = "btnOtherSearch";
     this.btnOtherSearch.Size = new System.Drawing.Size(120, 28);
     this.btnOtherSearch.TabIndex = 113;
     this.btnOtherSearch.Text = "Other Search";
     this.btnOtherSearch.Click += new System.EventHandler(this.radButton7_Click);
     //
     // panel_other_search
     //
     this.panel_other_search.BackColor = System.Drawing.Color.Transparent;
     this.panel_other_search.Controls.Add(this.label11);
     this.panel_other_search.Controls.Add(this.label7);
     this.panel_other_search.Controls.Add(this.grdOther);
     this.panel_other_search.Controls.Add(this.btnRefreshOher);
     this.panel_other_search.Controls.Add(this.btnSearch);
     this.panel_other_search.Controls.Add(this.cmdSearchCat);
     this.panel_other_search.Location = new System.Drawing.Point(28, 58);
     this.panel_other_search.Name = "panel_other_search";
     this.panel_other_search.Size = new System.Drawing.Size(1031, 341);
     this.panel_other_search.TabIndex = 81;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Arial", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.White;
     this.label11.Location = new System.Drawing.Point(0, 18);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(84, 14);
     this.label11.TabIndex = 77;
     this.label11.Text = "Item Catagory";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.White;
     this.label7.Location = new System.Drawing.Point(647, 346);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(0, 13);
     this.label7.TabIndex = 76;
     //
     // grdOther
     //
     this.grdOther.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdOther.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdOther.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdOther.ForeColor = System.Drawing.Color.Black;
     this.grdOther.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdOther.Location = new System.Drawing.Point(3, 81);
     //
     // grdOther
     //
     this.grdOther.MasterTemplate.AllowAddNewRow = false;
     this.grdOther.MasterTemplate.AllowColumnChooser = false;
     this.grdOther.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdOther.Name = "grdOther";
     this.grdOther.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.ReadOnly = true;
     this.grdOther.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdOther.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdOther.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdOther.Size = new System.Drawing.Size(1015, 217);
     this.grdOther.TabIndex = 70;
     this.grdOther.Text = "radGridView1";
     this.grdOther.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdOther_CellClick);
     //
     // btnRefreshOher
     //
     this.btnRefreshOher.Location = new System.Drawing.Point(961, 58);
     this.btnRefreshOher.Name = "btnRefreshOher";
     this.btnRefreshOher.Size = new System.Drawing.Size(57, 20);
     this.btnRefreshOher.TabIndex = 69;
     this.btnRefreshOher.Text = "Refresh";
     this.btnRefreshOher.ThemeName = "Breeze";
     //
     // btnSearch
     //
     this.btnSearch.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSearch.ForeColor = System.Drawing.Color.White;
     this.btnSearch.Location = new System.Drawing.Point(259, 16);
     this.btnSearch.Name = "btnSearch";
     //
     //
     //
     this.btnSearch.RootElement.ForeColor = System.Drawing.Color.White;
     this.btnSearch.Size = new System.Drawing.Size(110, 50);
     this.btnSearch.TabIndex = 68;
     this.btnSearch.Text = "Search";
     this.btnSearch.ThemeName = "Breeze";
     //
     // cmdSearchCat
     //
     this.cmdSearchCat.Location = new System.Drawing.Point(97, 16);
     this.cmdSearchCat.Name = "cmdSearchCat";
     //
     //
     //
     this.cmdSearchCat.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.cmdSearchCat.Size = new System.Drawing.Size(136, 20);
     this.cmdSearchCat.TabIndex = 65;
     this.cmdSearchCat.TabStop = false;
     //
     // radGridView1
     //
     this.radGridView1.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.Location = new System.Drawing.Point(3, 172);
     //
     // radGridView1
     //
     this.radGridView1.MasterTemplate.AllowAddNewRow = false;
     this.radGridView1.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView1.Name = "radGridView1";
     this.radGridView1.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.ReadOnly = true;
     //
     //
     //
     this.radGridView1.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView1.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView1.Size = new System.Drawing.Size(1015, 159);
     this.radGridView1.TabIndex = 56;
     this.radGridView1.Text = "radGridView1";
     this.radGridView1.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView1_CellClick);
     //
     // radGridView2
     //
     this.radGridView2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView2.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView2.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView2.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView2.Location = new System.Drawing.Point(3, 172);
     //
     // radGridView2
     //
     this.radGridView2.MasterTemplate.AllowAddNewRow = false;
     this.radGridView2.MasterTemplate.AllowColumnChooser = false;
     this.radGridView2.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView2.Name = "radGridView2";
     this.radGridView2.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.ReadOnly = true;
     this.radGridView2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView2.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView2.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView2.Size = new System.Drawing.Size(1015, 159);
     this.radGridView2.TabIndex = 57;
     this.radGridView2.Text = "radGridView2";
     this.radGridView2.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView2_CellClick);
     //
     // radButton1
     //
     this.radButton1.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton1.Location = new System.Drawing.Point(678, 119);
     this.radButton1.Name = "radButton1";
     this.radButton1.Size = new System.Drawing.Size(115, 50);
     this.radButton1.TabIndex = 29;
     this.radButton1.Text = "Search";
     this.radButton1.ThemeName = "Breeze";
     this.radButton1.Click += new System.EventHandler(this.radButton1_Click);
     //
     // groupBox1
     //
     this.groupBox1.BackColor = System.Drawing.Color.Transparent;
     this.groupBox1.Controls.Add(this.check_rear);
     this.groupBox1.Controls.Add(this.check_front);
     this.groupBox1.ForeColor = System.Drawing.Color.White;
     this.groupBox1.Location = new System.Drawing.Point(132, 2);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(156, 36);
     this.groupBox1.TabIndex = 54;
     this.groupBox1.TabStop = false;
     //
     // check_rear
     //
     this.check_rear.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_rear.ForeColor = System.Drawing.Color.White;
     this.check_rear.Location = new System.Drawing.Point(82, 12);
     this.check_rear.Name = "check_rear";
     //
     //
     //
     this.check_rear.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_rear.RootElement.StretchHorizontally = true;
     this.check_rear.RootElement.StretchVertically = true;
     this.check_rear.Size = new System.Drawing.Size(45, 19);
     this.check_rear.TabIndex = 65;
     this.check_rear.Text = "Rear";
     //
     // check_front
     //
     this.check_front.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.check_front.ForeColor = System.Drawing.Color.White;
     this.check_front.Location = new System.Drawing.Point(15, 12);
     this.check_front.Name = "check_front";
     //
     //
     //
     this.check_front.RootElement.ForeColor = System.Drawing.Color.White;
     this.check_front.RootElement.StretchHorizontally = true;
     this.check_front.RootElement.StretchVertically = true;
     this.check_front.Size = new System.Drawing.Size(49, 19);
     this.check_front.TabIndex = 64;
     this.check_front.Text = "Front";
     //
     // radLabel2
     //
     this.radLabel2.BackColor = System.Drawing.Color.Transparent;
     this.radLabel2.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radLabel2.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Location = new System.Drawing.Point(40, 15);
     this.radLabel2.Name = "radLabel2";
     //
     //
     //
     this.radLabel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel2.Size = new System.Drawing.Size(71, 21);
     this.radLabel2.TabIndex = 31;
     this.radLabel2.Text = "Front/Rear";
     //
     // panal_cycle
     //
     this.panal_cycle.BackColor = System.Drawing.Color.Transparent;
     this.panal_cycle.Controls.Add(this.groupBox2);
     this.panal_cycle.Controls.Add(this.radLabel3);
     this.panal_cycle.Controls.Add(this.radLabel2);
     this.panal_cycle.Controls.Add(this.groupBox1);
     this.panal_cycle.Location = new System.Drawing.Point(678, 27);
     this.panal_cycle.Name = "panal_cycle";
     //
     //
     //
     this.panal_cycle.RootElement.Opacity = 5D;
     this.panal_cycle.Size = new System.Drawing.Size(340, 84);
     this.panal_cycle.TabIndex = 59;
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.radio_trial);
     this.groupBox2.Controls.Add(this.radio_non_trial);
     this.groupBox2.ForeColor = System.Drawing.Color.White;
     this.groupBox2.Location = new System.Drawing.Point(132, 38);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(156, 36);
     this.groupBox2.TabIndex = 82;
     this.groupBox2.TabStop = false;
     //
     // radio_trial
     //
     this.radio_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_trial.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.radio_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Location = new System.Drawing.Point(16, 12);
     this.radio_trial.Name = "radio_trial";
     //
     //
     //
     this.radio_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_trial.Size = new System.Drawing.Size(61, 18);
     this.radio_trial.TabIndex = 28;
     this.radio_trial.Text = "Trail";
     //
     // radio_non_trial
     //
     this.radio_non_trial.BackColor = System.Drawing.Color.Transparent;
     this.radio_non_trial.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.radio_non_trial.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Location = new System.Drawing.Point(83, 9);
     this.radio_non_trial.Name = "radio_non_trial";
     //
     //
     //
     this.radio_non_trial.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radio_non_trial.Size = new System.Drawing.Size(72, 23);
     this.radio_non_trial.TabIndex = 14;
     this.radio_non_trial.Text = "Nontrail";
     //
     // radLabel3
     //
     this.radLabel3.BackColor = System.Drawing.Color.Transparent;
     this.radLabel3.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel3.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Location = new System.Drawing.Point(40, 48);
     this.radLabel3.Name = "radLabel3";
     //
     //
     //
     this.radLabel3.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.radLabel3.Size = new System.Drawing.Size(85, 21);
     this.radLabel3.TabIndex = 56;
     this.radLabel3.Text = "Trail/Nontrail";
     //
     // com_brand
     //
     this.com_brand.Enabled = false;
     this.com_brand.Location = new System.Drawing.Point(95, 8);
     this.com_brand.Name = "com_brand";
     //
     //
     //
     this.com_brand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_brand.RootElement.StretchVertically = true;
     this.com_brand.Size = new System.Drawing.Size(158, 20);
     this.com_brand.TabIndex = 57;
     this.com_brand.TabStop = false;
     this.com_brand.SelectedIndexChanged += new System.EventHandler(this.com_brand_SelectedIndexChanged);
     //
     // chk_size
     //
     this.chk_size.BackColor = System.Drawing.Color.Transparent;
     this.chk_size.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_size.ForeColor = System.Drawing.Color.White;
     this.chk_size.Location = new System.Drawing.Point(20, 34);
     this.chk_size.Name = "chk_size";
     //
     //
     //
     this.chk_size.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_size.RootElement.StretchHorizontally = true;
     this.chk_size.RootElement.StretchVertically = true;
     this.chk_size.Size = new System.Drawing.Size(44, 21);
     this.chk_size.TabIndex = 19;
     this.chk_size.Text = "Size";
     this.chk_size.Click += new System.EventHandler(this.chk_size_Click);
     //
     // com_ply_rate
     //
     this.com_ply_rate.Location = new System.Drawing.Point(95, 61);
     this.com_ply_rate.Name = "com_ply_rate";
     //
     //
     //
     this.com_ply_rate.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_ply_rate.RootElement.StretchVertically = true;
     this.com_ply_rate.Size = new System.Drawing.Size(158, 20);
     this.com_ply_rate.TabIndex = 58;
     this.com_ply_rate.TabStop = false;
     //
     // chk_t_pattern
     //
     this.chk_t_pattern.BackColor = System.Drawing.Color.Transparent;
     this.chk_t_pattern.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_t_pattern.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.Location = new System.Drawing.Point(292, 8);
     this.chk_t_pattern.Name = "chk_t_pattern";
     //
     //
     //
     this.chk_t_pattern.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_t_pattern.RootElement.StretchHorizontally = true;
     this.chk_t_pattern.RootElement.StretchVertically = true;
     this.chk_t_pattern.Size = new System.Drawing.Size(108, 21);
     this.chk_t_pattern.TabIndex = 26;
     this.chk_t_pattern.Text = "Thread Pattern";
     this.chk_t_pattern.Click += new System.EventHandler(this.chk_t_pattern_Click);
     //
     // com_t_pattern
     //
     this.com_t_pattern.Location = new System.Drawing.Point(414, 7);
     this.com_t_pattern.Name = "com_t_pattern";
     //
     //
     //
     this.com_t_pattern.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_t_pattern.RootElement.StretchVertically = true;
     this.com_t_pattern.Size = new System.Drawing.Size(155, 20);
     this.com_t_pattern.TabIndex = 58;
     this.com_t_pattern.TabStop = false;
     //
     // chk_make
     //
     this.chk_make.BackColor = System.Drawing.Color.Transparent;
     this.chk_make.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_make.ForeColor = System.Drawing.Color.White;
     this.chk_make.Location = new System.Drawing.Point(293, 33);
     this.chk_make.Name = "chk_make";
     //
     //
     //
     this.chk_make.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_make.RootElement.StretchHorizontally = true;
     this.chk_make.RootElement.StretchVertically = true;
     this.chk_make.Size = new System.Drawing.Size(53, 21);
     this.chk_make.TabIndex = 24;
     this.chk_make.Text = "Make";
     this.chk_make.Click += new System.EventHandler(this.chk_make_Click);
     //
     // com_made
     //
     this.com_made.Location = new System.Drawing.Point(414, 33);
     this.com_made.Name = "com_made";
     //
     //
     //
     this.com_made.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.com_made.RootElement.StretchVertically = true;
     this.com_made.Size = new System.Drawing.Size(155, 20);
     this.com_made.TabIndex = 58;
     this.com_made.TabStop = false;
     //
     // chk_ply_rate
     //
     this.chk_ply_rate.BackColor = System.Drawing.Color.Transparent;
     this.chk_ply_rate.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_ply_rate.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.Location = new System.Drawing.Point(20, 61);
     this.chk_ply_rate.Name = "chk_ply_rate";
     //
     //
     //
     this.chk_ply_rate.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_ply_rate.RootElement.StretchHorizontally = true;
     this.chk_ply_rate.RootElement.StretchVertically = true;
     this.chk_ply_rate.Size = new System.Drawing.Size(68, 21);
     this.chk_ply_rate.TabIndex = 22;
     this.chk_ply_rate.Text = "Ply Rate";
     this.chk_ply_rate.Click += new System.EventHandler(this.chk_ply_rate_Click);
     //
     // radLabel4
     //
     this.radLabel4.BackColor = System.Drawing.Color.Transparent;
     this.radLabel4.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel4.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Location = new System.Drawing.Point(293, 67);
     this.radLabel4.Name = "radLabel4";
     //
     //
     //
     this.radLabel4.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel4.Size = new System.Drawing.Size(64, 21);
     this.radLabel4.TabIndex = 61;
     this.radLabel4.Text = "Tyre Type";
     //
     // chk_brand
     //
     this.chk_brand.BackColor = System.Drawing.Color.Transparent;
     this.chk_brand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_brand.ForeColor = System.Drawing.Color.White;
     this.chk_brand.Location = new System.Drawing.Point(21, 7);
     this.chk_brand.Name = "chk_brand";
     //
     //
     //
     this.chk_brand.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_brand.RootElement.StretchHorizontally = true;
     this.chk_brand.RootElement.StretchVertically = true;
     this.chk_brand.Size = new System.Drawing.Size(55, 21);
     this.chk_brand.TabIndex = 20;
     this.chk_brand.Text = "Brand";
     this.chk_brand.Click += new System.EventHandler(this.radCheckBox2_Click);
     //
     // grp_tyre_type
     //
     this.grp_tyre_type.BackColor = System.Drawing.Color.Transparent;
     this.grp_tyre_type.Controls.Add(this.radio_canvas);
     this.grp_tyre_type.Controls.Add(this.radio_radial);
     this.grp_tyre_type.Location = new System.Drawing.Point(413, 58);
     this.grp_tyre_type.Name = "grp_tyre_type";
     this.grp_tyre_type.Size = new System.Drawing.Size(156, 36);
     this.grp_tyre_type.TabIndex = 62;
     this.grp_tyre_type.TabStop = false;
     //
     // radio_canvas
     //
     this.radio_canvas.BackColor = System.Drawing.Color.Transparent;
     this.radio_canvas.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_canvas.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Location = new System.Drawing.Point(77, 0);
     this.radio_canvas.Name = "radio_canvas";
     //
     //
     //
     this.radio_canvas.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_canvas.Size = new System.Drawing.Size(63, 40);
     this.radio_canvas.TabIndex = 14;
     this.radio_canvas.Text = "Canvas";
     //
     // radio_radial
     //
     this.radio_radial.BackColor = System.Drawing.Color.Transparent;
     this.radio_radial.Font = new System.Drawing.Font("Segoe UI", 10F);
     this.radio_radial.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Location = new System.Drawing.Point(10, 10);
     this.radio_radial.Name = "radio_radial";
     //
     //
     //
     this.radio_radial.RootElement.ForeColor = System.Drawing.Color.White;
     this.radio_radial.Size = new System.Drawing.Size(61, 18);
     this.radio_radial.TabIndex = 28;
     this.radio_radial.Text = "Radial";
     //
     // radPanel2
     //
     this.radPanel2.BackColor = System.Drawing.Color.Transparent;
     this.radPanel2.Controls.Add(this.radGridView3);
     this.radPanel2.Controls.Add(this.grp_tyre_type);
     this.radPanel2.Controls.Add(this.txt_size);
     this.radPanel2.Controls.Add(this.chk_brand);
     this.radPanel2.Controls.Add(this.radLabel4);
     this.radPanel2.Controls.Add(this.chk_ply_rate);
     this.radPanel2.Controls.Add(this.com_made);
     this.radPanel2.Controls.Add(this.chk_make);
     this.radPanel2.Controls.Add(this.com_t_pattern);
     this.radPanel2.Controls.Add(this.chk_t_pattern);
     this.radPanel2.Controls.Add(this.com_ply_rate);
     this.radPanel2.Controls.Add(this.chk_size);
     this.radPanel2.Controls.Add(this.com_brand);
     this.radPanel2.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Location = new System.Drawing.Point(3, 20);
     this.radPanel2.Name = "radPanel2";
     //
     //
     //
     this.radPanel2.RootElement.ForeColor = System.Drawing.Color.White;
     this.radPanel2.Size = new System.Drawing.Size(601, 150);
     this.radPanel2.TabIndex = 60;
     this.radPanel2.Click += new System.EventHandler(this.radPanel2_Click);
     //
     // radGridView3
     //
     this.radGridView3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.radGridView3.Cursor = System.Windows.Forms.Cursors.Default;
     this.radGridView3.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.radGridView3.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.radGridView3.Location = new System.Drawing.Point(95, 55);
     //
     // radGridView3
     //
     this.radGridView3.MasterTemplate.AllowAddNewRow = false;
     this.radGridView3.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.radGridView3.MasterTemplate.EnableGrouping = false;
     this.radGridView3.MasterTemplate.ShowColumnHeaders = false;
     this.radGridView3.MasterTemplate.ShowRowHeaderColumn = false;
     this.radGridView3.Name = "radGridView3";
     this.radGridView3.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ReadOnly = true;
     this.radGridView3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.radGridView3.RootElement.ForeColor = System.Drawing.Color.Black;
     this.radGridView3.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.radGridView3.ShowGroupPanel = false;
     this.radGridView3.Size = new System.Drawing.Size(158, 81);
     this.radGridView3.TabIndex = 65;
     this.radGridView3.Text = "radGridView3";
     this.radGridView3.SelectionChanged += new System.EventHandler(this.radGridView3_SelectionChanged);
     this.radGridView3.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.radGridView3_CellClick);
     //
     // txt_size
     //
     this.txt_size.Enabled = false;
     this.txt_size.Location = new System.Drawing.Point(95, 35);
     this.txt_size.Name = "txt_size";
     this.txt_size.Size = new System.Drawing.Size(158, 20);
     this.txt_size.TabIndex = 64;
     this.txt_size.TabStop = false;
     this.txt_size.TextChanged += new System.EventHandler(this.txt_size_TextChanged);
     this.txt_size.Click += new System.EventHandler(this.txt_size_Click);
     this.txt_size.Enter += new System.EventHandler(this.txt_size_Enter);
     //
     // radButton2
     //
     this.radButton2.Location = new System.Drawing.Point(961, 149);
     this.radButton2.Name = "radButton2";
     this.radButton2.Size = new System.Drawing.Size(57, 20);
     this.radButton2.TabIndex = 30;
     this.radButton2.Tag = " ";
     this.radButton2.Text = "Refresh";
     this.radButton2.ThemeName = "Breeze";
     this.radButton2.Click += new System.EventHandler(this.radButton2_Click);
     //
     // chk_cycle_search
     //
     this.chk_cycle_search.BackColor = System.Drawing.Color.Transparent;
     this.chk_cycle_search.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.chk_cycle_search.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Location = new System.Drawing.Point(678, 5);
     this.chk_cycle_search.Name = "chk_cycle_search";
     //
     //
     //
     this.chk_cycle_search.RootElement.ForeColor = System.Drawing.Color.White;
     this.chk_cycle_search.Size = new System.Drawing.Size(85, 18);
     this.chk_cycle_search.TabIndex = 61;
     this.chk_cycle_search.Text = "Motor Cycle";
     this.chk_cycle_search.ToggleStateChanged += new Telerik.WinControls.UI.StateChangedEventHandler(this.chk_cycle_search_ToggleStateChanged);
     this.chk_cycle_search.Click += new System.EventHandler(this.chk_cycle_search_Click);
     //
     // pnlTyre
     //
     this.pnlTyre.BackColor = System.Drawing.Color.Transparent;
     this.pnlTyre.Controls.Add(this.radPanel2);
     this.pnlTyre.Controls.Add(this.chk_cycle_search);
     this.pnlTyre.Controls.Add(this.radButton1);
     this.pnlTyre.Controls.Add(this.panal_cycle);
     this.pnlTyre.Controls.Add(this.radButton2);
     this.pnlTyre.Controls.Add(this.radGridView1);
     this.pnlTyre.Controls.Add(this.radGridView2);
     this.pnlTyre.Location = new System.Drawing.Point(28, 58);
     this.pnlTyre.Name = "pnlTyre";
     this.pnlTyre.Size = new System.Drawing.Size(1031, 341);
     this.pnlTyre.TabIndex = 114;
     this.pnlTyre.Paint += new System.Windows.Forms.PaintEventHandler(this.pnlTyre_Paint);
     //
     // btnTubeSearch
     //
     this.btnTubeSearch.Font = new System.Drawing.Font("Arial", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnTubeSearch.Location = new System.Drawing.Point(802, 25);
     this.btnTubeSearch.Name = "btnTubeSearch";
     this.btnTubeSearch.Size = new System.Drawing.Size(120, 28);
     this.btnTubeSearch.TabIndex = 114;
     this.btnTubeSearch.Text = "Tube Search";
     this.btnTubeSearch.Click += new System.EventHandler(this.radButton6_Click_1);
     //
     // grdInvoice
     //
     this.grdInvoice.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdInvoice.ContextMenuStrip = this.contextMenuStrip1;
     this.grdInvoice.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdInvoice.EnableHotTracking = false;
     this.grdInvoice.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdInvoice.ForeColor = System.Drawing.Color.Black;
     this.grdInvoice.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdInvoice.Location = new System.Drawing.Point(347, 445);
     //
     // grdInvoice
     //
     this.grdInvoice.MasterTemplate.AddNewRowPosition = Telerik.WinControls.UI.SystemRowPosition.Bottom;
     this.grdInvoice.MasterTemplate.AllowAddNewRow = false;
     this.grdInvoice.MasterTemplate.AllowColumnReorder = false;
     this.grdInvoice.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     gridViewTextBoxColumn8.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn8.HeaderText = "Item No";
     gridViewTextBoxColumn8.Name = "itemNo";
     gridViewTextBoxColumn8.ReadOnly = true;
     gridViewTextBoxColumn8.Width = 95;
     gridViewTextBoxColumn9.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn9.HeaderText = "Item Name";
     gridViewTextBoxColumn9.Name = "Item Name";
     gridViewTextBoxColumn9.Width = 176;
     gridViewTextBoxColumn10.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn10.HeaderText = "Quntity";
     gridViewTextBoxColumn10.Name = "Qty";
     gridViewTextBoxColumn10.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn10.Width = 103;
     gridViewTextBoxColumn11.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn11.HeaderText = "Unit Price( Rs )";
     gridViewTextBoxColumn11.Name = "unitPrice";
     gridViewTextBoxColumn11.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn11.Width = 103;
     gridViewTextBoxColumn12.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn12.HeaderText = "Price( Rs )";
     gridViewTextBoxColumn12.Name = "Price";
     gridViewTextBoxColumn12.ReadOnly = true;
     gridViewTextBoxColumn12.TextAlignment = System.Drawing.ContentAlignment.MiddleRight;
     gridViewTextBoxColumn12.Width = 102;
     gridViewTextBoxColumn13.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn13.HeaderText = "Discount( % )";
     gridViewTextBoxColumn13.Name = "Discount";
     gridViewTextBoxColumn13.TextAlignment = System.Drawing.ContentAlignment.MiddleCenter;
     gridViewTextBoxColumn13.Width = 75;
     gridViewTextBoxColumn14.FormatInfo = new System.Globalization.CultureInfo("");
     gridViewTextBoxColumn14.HeaderText = "ItemCat";
     gridViewTextBoxColumn14.Name = "ItemCat";
     gridViewTextBoxColumn14.ReadOnly = true;
     gridViewTextBoxColumn14.Width = 48;
     this.grdInvoice.MasterTemplate.Columns.AddRange(new Telerik.WinControls.UI.GridViewDataColumn[] {
     gridViewTextBoxColumn8,
     gridViewTextBoxColumn9,
     gridViewTextBoxColumn10,
     gridViewTextBoxColumn11,
     gridViewTextBoxColumn12,
     gridViewTextBoxColumn13,
     gridViewTextBoxColumn14});
     this.grdInvoice.MasterTemplate.EnableGrouping = false;
     this.grdInvoice.MasterTemplate.EnableSorting = false;
     this.grdInvoice.MasterTemplate.ShowRowHeaderColumn = false;
     sortDescriptor2.PropertyName = "itemNo";
     this.grdInvoice.MasterTemplate.SortDescriptors.AddRange(new Telerik.WinControls.Data.SortDescriptor[] {
     sortDescriptor2});
     this.grdInvoice.Name = "grdInvoice";
     this.grdInvoice.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdInvoice.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdInvoice.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdInvoice.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdInvoice.ShowGroupPanel = false;
     this.grdInvoice.Size = new System.Drawing.Size(699, 146);
     this.grdInvoice.TabIndex = 73;
     this.grdInvoice.Text = "radGridView4";
     this.grdInvoice.CellEndEdit += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellEndEdit);
     this.grdInvoice.UserDeletedRow += new Telerik.WinControls.UI.GridViewRowEventHandler(this.grdInvoice_UserDeletedRow);
     this.grdInvoice.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellClick);
     this.grdInvoice.CellDoubleClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdInvoice_CellDoubleClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem1});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(150, 26);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(149, 22);
     this.toolStripMenuItem1.Text = "Add New Row";
     this.toolStripMenuItem1.Click += new System.EventHandler(this.toolStripMenuItem1_Click);
     //
     // radLabel8
     //
     this.radLabel8.BackColor = System.Drawing.Color.Transparent;
     this.radLabel8.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel8.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Location = new System.Drawing.Point(347, 406);
     this.radLabel8.Name = "radLabel8";
     //
     //
     //
     this.radLabel8.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel8.Size = new System.Drawing.Size(75, 30);
     this.radLabel8.TabIndex = 82;
     this.radLabel8.Text = "Invoice";
     //
     // radLabel9
     //
     this.radLabel9.BackColor = System.Drawing.Color.Transparent;
     this.radLabel9.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel9.ForeColor = System.Drawing.Color.White;
     this.radLabel9.Location = new System.Drawing.Point(28, 445);
     this.radLabel9.Name = "radLabel9";
     //
     //
     //
     this.radLabel9.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel9.Size = new System.Drawing.Size(103, 21);
     this.radLabel9.TabIndex = 83;
     this.radLabel9.Text = "Customer Name";
     //
     // radLabel10
     //
     this.radLabel10.BackColor = System.Drawing.Color.Transparent;
     this.radLabel10.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel10.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Location = new System.Drawing.Point(28, 406);
     this.radLabel10.Name = "radLabel10";
     //
     //
     //
     this.radLabel10.RootElement.ForeColor = System.Drawing.Color.Gold;
     this.radLabel10.Size = new System.Drawing.Size(164, 30);
     this.radLabel10.TabIndex = 83;
     this.radLabel10.Text = "Search Customer";
     //
     // radLabel11
     //
     this.radLabel11.BackColor = System.Drawing.Color.Transparent;
     this.radLabel11.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel11.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Location = new System.Drawing.Point(28, 498);
     this.radLabel11.Name = "radLabel11";
     //
     //
     //
     this.radLabel11.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel11.Size = new System.Drawing.Size(70, 21);
     this.radLabel11.TabIndex = 98;
     this.radLabel11.Text = "Invoice No";
     //
     // txtInvoiceNo
     //
     this.txtInvoiceNo.Enabled = false;
     this.txtInvoiceNo.Location = new System.Drawing.Point(141, 498);
     this.txtInvoiceNo.Name = "txtInvoiceNo";
     this.txtInvoiceNo.Size = new System.Drawing.Size(192, 20);
     this.txtInvoiceNo.TabIndex = 100;
     this.txtInvoiceNo.TabStop = false;
     //
     // radLabel12
     //
     this.radLabel12.BackColor = System.Drawing.Color.Transparent;
     this.radLabel12.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel12.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Location = new System.Drawing.Point(28, 552);
     this.radLabel12.Name = "radLabel12";
     //
     //
     //
     this.radLabel12.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel12.Size = new System.Drawing.Size(80, 21);
     this.radLabel12.TabIndex = 99;
     this.radLabel12.Text = "Invoice Date";
     //
     // radLabel13
     //
     this.radLabel13.BackColor = System.Drawing.Color.Transparent;
     this.radLabel13.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel13.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Location = new System.Drawing.Point(28, 525);
     this.radLabel13.Name = "radLabel13";
     //
     //
     //
     this.radLabel13.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel13.Size = new System.Drawing.Size(99, 21);
     this.radLabel13.TabIndex = 103;
     this.radLabel13.Text = "Invoice Ref No";
     //
     // txtInvoiceNote
     //
     this.txtInvoiceNote.Location = new System.Drawing.Point(141, 524);
     this.txtInvoiceNote.Multiline = true;
     this.txtInvoiceNote.Name = "txtInvoiceNote";
     //
     //
     //
     this.txtInvoiceNote.RootElement.StretchVertically = true;
     this.txtInvoiceNote.Size = new System.Drawing.Size(192, 21);
     this.txtInvoiceNote.TabIndex = 104;
     this.txtInvoiceNote.TabStop = false;
     //
     // radLabel14
     //
     this.radLabel14.BackColor = System.Drawing.Color.Transparent;
     this.radLabel14.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel14.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Location = new System.Drawing.Point(28, 601);
     this.radLabel14.Name = "radLabel14";
     //
     //
     //
     this.radLabel14.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel14.Size = new System.Drawing.Size(71, 21);
     this.radLabel14.TabIndex = 105;
     this.radLabel14.Text = "Vehicle No";
     //
     // txtVehicleNo
     //
     this.txtVehicleNo.Location = new System.Drawing.Point(141, 603);
     this.txtVehicleNo.Name = "txtVehicleNo";
     this.txtVehicleNo.Size = new System.Drawing.Size(192, 20);
     this.txtVehicleNo.TabIndex = 101;
     this.txtVehicleNo.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Bold);
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(563, 706);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(0, 13);
     this.label4.TabIndex = 106;
     //
     // btnAdd
     //
     this.btnAdd.Font = new System.Drawing.Font("Arial", 9F);
     this.btnAdd.Location = new System.Drawing.Point(601, 601);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(104, 37);
     this.btnAdd.TabIndex = 107;
     this.btnAdd.Text = "Add";
     this.btnAdd.ThemeName = "Breeze";
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // btnPrintInvoice
     //
     this.btnPrintInvoice.Font = new System.Drawing.Font("Arial", 9F);
     this.btnPrintInvoice.Location = new System.Drawing.Point(476, 601);
     this.btnPrintInvoice.Name = "btnPrintInvoice";
     this.btnPrintInvoice.Size = new System.Drawing.Size(104, 37);
     this.btnPrintInvoice.TabIndex = 108;
     this.btnPrintInvoice.Text = "Print Invoice";
     this.btnPrintInvoice.ThemeName = "Breeze";
     this.btnPrintInvoice.Click += new System.EventHandler(this.btnPrintInvoice_Click);
     //
     // btnClear
     //
     this.btnClear.Font = new System.Drawing.Font("Arial", 9F);
     this.btnClear.Location = new System.Drawing.Point(347, 602);
     this.btnClear.Name = "btnClear";
     this.btnClear.Size = new System.Drawing.Size(104, 36);
     this.btnClear.TabIndex = 108;
     this.btnClear.Text = "Clear";
     this.btnClear.ThemeName = "Breeze";
     this.btnClear.Click += new System.EventHandler(this.btnClear_Click);
     //
     // radPanel1
     //
     this.radPanel1.BackColor = System.Drawing.Color.White;
     this.radPanel1.Location = new System.Drawing.Point(28, 402);
     this.radPanel1.Name = "radPanel1";
     this.radPanel1.Size = new System.Drawing.Size(1031, 2);
     this.radPanel1.TabIndex = 115;
     //
     // txtCustomerName
     //
     this.txtCustomerName.Location = new System.Drawing.Point(141, 445);
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Size = new System.Drawing.Size(192, 20);
     this.txtCustomerName.TabIndex = 102;
     this.txtCustomerName.TabStop = false;
     this.txtCustomerName.TextChanged += new System.EventHandler(this.radTextBox1_TextChanged);
     this.txtCustomerName.Click += new System.EventHandler(this.txtCustomerName_Click);
     this.txtCustomerName.Enter += new System.EventHandler(this.txtCustomerName_Enter);
     //
     // grdFillCustomer
     //
     this.grdFillCustomer.AllowUserToAddRows = false;
     this.grdFillCustomer.AllowUserToDeleteRows = false;
     this.grdFillCustomer.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.grdFillCustomer.BackgroundColor = System.Drawing.Color.White;
     this.grdFillCustomer.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.grdFillCustomer.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.None;
     this.grdFillCustomer.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdFillCustomer.ColumnHeadersVisible = false;
     this.grdFillCustomer.Location = new System.Drawing.Point(141, 466);
     this.grdFillCustomer.Name = "grdFillCustomer";
     this.grdFillCustomer.ReadOnly = true;
     this.grdFillCustomer.RowHeadersVisible = false;
     this.grdFillCustomer.Size = new System.Drawing.Size(192, 90);
     this.grdFillCustomer.TabIndex = 118;
     this.grdFillCustomer.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdFillCustomer_CellClick);
     //
     // com_customer_id
     //
     this.com_customer_id.FormattingEnabled = true;
     this.com_customer_id.Location = new System.Drawing.Point(141, 471);
     this.com_customer_id.Name = "com_customer_id";
     this.com_customer_id.Size = new System.Drawing.Size(192, 21);
     this.com_customer_id.TabIndex = 119;
     this.com_customer_id.SelectedIndexChanged += new System.EventHandler(this.com_customer_id_SelectedIndexChanged);
     //
     // radLabel16
     //
     this.radLabel16.BackColor = System.Drawing.Color.Transparent;
     this.radLabel16.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel16.ForeColor = System.Drawing.Color.White;
     this.radLabel16.Location = new System.Drawing.Point(28, 471);
     this.radLabel16.Name = "radLabel16";
     //
     //
     //
     this.radLabel16.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel16.Size = new System.Drawing.Size(85, 21);
     this.radLabel16.TabIndex = 99;
     this.radLabel16.Text = "Customer No";
     //
     // btnAddPayment
     //
     this.btnAddPayment.Location = new System.Drawing.Point(759, 726);
     this.btnAddPayment.Name = "btnAddPayment";
     this.btnAddPayment.Size = new System.Drawing.Size(104, 37);
     this.btnAddPayment.TabIndex = 121;
     this.btnAddPayment.Text = "Add Payment";
     this.btnAddPayment.ThemeName = "Breeze";
     this.btnAddPayment.Click += new System.EventHandler(this.btnAddPayment_Click);
     //
     // txtTotal
     //
     this.txtTotal.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtTotal.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtTotal.Location = new System.Drawing.Point(909, 608);
     this.txtTotal.Name = "txtTotal";
     //
     //
     //
     this.txtTotal.RootElement.ForeColor = System.Drawing.Color.DodgerBlue;
     this.txtTotal.Size = new System.Drawing.Size(137, 27);
     this.txtTotal.TabIndex = 80;
     this.txtTotal.TabStop = false;
     this.txtTotal.Text = "0.00";
     this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // radLabel5
     //
     this.radLabel5.BackColor = System.Drawing.Color.Transparent;
     this.radLabel5.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold);
     this.radLabel5.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Location = new System.Drawing.Point(792, 614);
     this.radLabel5.Name = "radLabel5";
     //
     //
     //
     this.radLabel5.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel5.Size = new System.Drawing.Size(101, 21);
     this.radLabel5.TabIndex = 79;
     this.radLabel5.Text = "Total Price(Rs)";
     //
     // pnlTube
     //
     this.pnlTube.BackColor = System.Drawing.Color.Transparent;
     this.pnlTube.Controls.Add(this.label1);
     this.pnlTube.Controls.Add(this.txt_barcode);
     this.pnlTube.Controls.Add(this.panel2);
     this.pnlTube.Controls.Add(this.radButton3);
     this.pnlTube.Controls.Add(this.radButton7);
     this.pnlTube.Controls.Add(this.grdTubesearch);
     this.pnlTube.Location = new System.Drawing.Point(28, 58);
     this.pnlTube.Name = "pnlTube";
     this.pnlTube.Size = new System.Drawing.Size(1031, 341);
     this.pnlTube.TabIndex = 122;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Lime;
     this.label1.Location = new System.Drawing.Point(0, 13);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(66, 13);
     this.label1.TabIndex = 81;
     this.label1.Text = "BARCODE";
     //
     // txt_barcode
     //
     this.txt_barcode.Location = new System.Drawing.Point(77, 10);
     this.txt_barcode.Name = "txt_barcode";
     this.txt_barcode.Size = new System.Drawing.Size(181, 20);
     this.txt_barcode.TabIndex = 83;
     this.txt_barcode.TextChanged += new System.EventHandler(this.txt_barcode_TextChanged);
     //
     // panel2
     //
     this.panel2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel2.Controls.Add(this.grdTubeSize);
     this.panel2.Controls.Add(this.txtTubeSize);
     this.panel2.Controls.Add(this.groupBox4);
     this.panel2.Controls.Add(this.chkTubeBrand);
     this.panel2.Controls.Add(this.comTubeMake);
     this.panel2.Controls.Add(this.chkTubeSize);
     this.panel2.Controls.Add(this.chkTubeMake);
     this.panel2.Controls.Add(this.chkTubeType);
     this.panel2.Controls.Add(this.comTubeBrand);
     this.panel2.Controls.Add(this.groupBox5);
     this.panel2.Location = new System.Drawing.Point(0, 45);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(858, 121);
     this.panel2.TabIndex = 82;
     this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
     //
     // grdTubeSize
     //
     this.grdTubeSize.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubeSize.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubeSize.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubeSize.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubeSize.Location = new System.Drawing.Point(364, 37);
     //
     // grdTubeSize
     //
     this.grdTubeSize.MasterTemplate.AllowAddNewRow = false;
     this.grdTubeSize.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubeSize.MasterTemplate.EnableGrouping = false;
     this.grdTubeSize.MasterTemplate.ShowColumnHeaders = false;
     this.grdTubeSize.MasterTemplate.ShowRowHeaderColumn = false;
     this.grdTubeSize.Name = "grdTubeSize";
     this.grdTubeSize.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ReadOnly = true;
     this.grdTubeSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubeSize.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubeSize.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubeSize.ShowGroupPanel = false;
     this.grdTubeSize.Size = new System.Drawing.Size(187, 72);
     this.grdTubeSize.TabIndex = 82;
     this.grdTubeSize.Text = "radGridView4";
     this.grdTubeSize.SelectionChanged += new System.EventHandler(this.grdTubeSize_SelectionChanged_1);
     this.grdTubeSize.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubeSize_CellClick_3);
     //
     // txtTubeSize
     //
     this.txtTubeSize.Enabled = false;
     this.txtTubeSize.Location = new System.Drawing.Point(364, 16);
     this.txtTubeSize.Name = "txtTubeSize";
     this.txtTubeSize.Size = new System.Drawing.Size(187, 20);
     this.txtTubeSize.TabIndex = 80;
     this.txtTubeSize.Click += new System.EventHandler(this.txtTubeSize_Click_1);
     this.txtTubeSize.TextChanged += new System.EventHandler(this.txtTubeSize_TextChanged_1);
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.chk_din_tube);
     this.groupBox4.Location = new System.Drawing.Point(744, 88);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(79, 37);
     this.groupBox4.TabIndex = 79;
     this.groupBox4.TabStop = false;
     this.groupBox4.Visible = false;
     //
     // chk_din_tube
     //
     this.chk_din_tube.BackColor = System.Drawing.Color.Transparent;
     this.chk_din_tube.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chk_din_tube.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Location = new System.Drawing.Point(19, 15);
     this.chk_din_tube.Name = "chk_din_tube";
     //
     //
     //
     this.chk_din_tube.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chk_din_tube.Size = new System.Drawing.Size(44, 21);
     this.chk_din_tube.TabIndex = 65;
     this.chk_din_tube.Text = "DIN";
     //
     // chkTubeBrand
     //
     this.chkTubeBrand.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeBrand.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeBrand.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Location = new System.Drawing.Point(15, 15);
     this.chkTubeBrand.Name = "chkTubeBrand";
     //
     //
     //
     this.chkTubeBrand.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeBrand.Size = new System.Drawing.Size(55, 21);
     this.chkTubeBrand.TabIndex = 63;
     this.chkTubeBrand.Text = "Brand";
     this.chkTubeBrand.Click += new System.EventHandler(this.radCheckBox1_Click);
     //
     // comTubeMake
     //
     this.comTubeMake.Enabled = false;
     this.comTubeMake.Location = new System.Drawing.Point(76, 56);
     this.comTubeMake.Name = "comTubeMake";
     //
     //
     //
     this.comTubeMake.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeMake.Size = new System.Drawing.Size(181, 20);
     this.comTubeMake.TabIndex = 78;
     this.comTubeMake.TabStop = false;
     //
     // chkTubeSize
     //
     this.chkTubeSize.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeSize.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeSize.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Location = new System.Drawing.Point(315, 15);
     this.chkTubeSize.Name = "chkTubeSize";
     //
     //
     //
     this.chkTubeSize.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeSize.Size = new System.Drawing.Size(44, 21);
     this.chkTubeSize.TabIndex = 62;
     this.chkTubeSize.Text = "Size";
     this.chkTubeSize.Click += new System.EventHandler(this.radCheckBox2_Click_1);
     //
     // chkTubeMake
     //
     this.chkTubeMake.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeMake.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeMake.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Location = new System.Drawing.Point(15, 55);
     this.chkTubeMake.Name = "chkTubeMake";
     //
     //
     //
     this.chkTubeMake.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeMake.Size = new System.Drawing.Size(53, 21);
     this.chkTubeMake.TabIndex = 77;
     this.chkTubeMake.Text = "Make";
     this.chkTubeMake.Click += new System.EventHandler(this.radCheckBox3_Click);
     //
     // chkTubeType
     //
     this.chkTubeType.BackColor = System.Drawing.Color.Transparent;
     this.chkTubeType.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.chkTubeType.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Location = new System.Drawing.Point(611, 15);
     this.chkTubeType.Name = "chkTubeType";
     //
     //
     //
     this.chkTubeType.RootElement.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.chkTubeType.Size = new System.Drawing.Size(49, 21);
     this.chkTubeType.TabIndex = 64;
     this.chkTubeType.Text = "Type";
     this.chkTubeType.Click += new System.EventHandler(this.radCheckBox4_Click);
     //
     // comTubeBrand
     //
     this.comTubeBrand.Enabled = false;
     this.comTubeBrand.Location = new System.Drawing.Point(76, 16);
     this.comTubeBrand.Name = "comTubeBrand";
     //
     //
     //
     this.comTubeBrand.RootElement.AutoSizeMode = Telerik.WinControls.RadAutoSizeMode.WrapAroundChildren;
     this.comTubeBrand.Size = new System.Drawing.Size(181, 20);
     this.comTubeBrand.TabIndex = 65;
     this.comTubeBrand.TabStop = false;
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.rad_tube_c);
     this.groupBox5.Controls.Add(this.rad_tube_v);
     this.groupBox5.Enabled = false;
     this.groupBox5.Location = new System.Drawing.Point(675, 8);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(148, 27);
     this.groupBox5.TabIndex = 67;
     this.groupBox5.TabStop = false;
     //
     // rad_tube_c
     //
     this.rad_tube_c.AutoSize = true;
     this.rad_tube_c.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_c.ForeColor = System.Drawing.Color.White;
     this.rad_tube_c.Location = new System.Drawing.Point(80, 8);
     this.rad_tube_c.Name = "rad_tube_c";
     this.rad_tube_c.Size = new System.Drawing.Size(56, 17);
     this.rad_tube_c.TabIndex = 1;
     this.rad_tube_c.TabStop = true;
     this.rad_tube_c.Text = "Cycle";
     this.rad_tube_c.UseVisualStyleBackColor = true;
     this.rad_tube_c.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // rad_tube_v
     //
     this.rad_tube_v.AutoSize = true;
     this.rad_tube_v.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rad_tube_v.ForeColor = System.Drawing.Color.White;
     this.rad_tube_v.Location = new System.Drawing.Point(6, 8);
     this.rad_tube_v.Name = "rad_tube_v";
     this.rad_tube_v.Size = new System.Drawing.Size(67, 17);
     this.rad_tube_v.TabIndex = 0;
     this.rad_tube_v.TabStop = true;
     this.rad_tube_v.Text = "Vehicle";
     this.rad_tube_v.UseVisualStyleBackColor = true;
     this.rad_tube_v.CheckedChanged += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radButton3
     //
     this.radButton3.Location = new System.Drawing.Point(961, 152);
     this.radButton3.Name = "radButton3";
     this.radButton3.Size = new System.Drawing.Size(57, 20);
     this.radButton3.TabIndex = 79;
     this.radButton3.Text = "Refresh";
     this.radButton3.ThemeName = "Breeze";
     this.radButton3.Click += new System.EventHandler(this.radButton3_Click_2);
     //
     // radButton7
     //
     this.radButton7.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radButton7.Location = new System.Drawing.Point(913, 35);
     this.radButton7.Name = "radButton7";
     this.radButton7.Size = new System.Drawing.Size(107, 52);
     this.radButton7.TabIndex = 78;
     this.radButton7.Text = "Search";
     this.radButton7.ThemeName = "Breeze";
     this.radButton7.Click += new System.EventHandler(this.radButton7_Click_1);
     //
     // grdTubesearch
     //
     this.grdTubesearch.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(191)))), ((int)(((byte)(219)))), ((int)(((byte)(255)))));
     this.grdTubesearch.Cursor = System.Windows.Forms.Cursors.Default;
     this.grdTubesearch.Font = new System.Drawing.Font("Segoe UI", 8.25F);
     this.grdTubesearch.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.grdTubesearch.Location = new System.Drawing.Point(0, 177);
     //
     // grdTubesearch
     //
     this.grdTubesearch.MasterTemplate.AllowAddNewRow = false;
     this.grdTubesearch.MasterTemplate.AllowColumnChooser = false;
     this.grdTubesearch.MasterTemplate.AutoSizeColumnsMode = Telerik.WinControls.UI.GridViewAutoSizeColumnsMode.Fill;
     this.grdTubesearch.Name = "grdTubesearch";
     this.grdTubesearch.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.ReadOnly = true;
     this.grdTubesearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.grdTubesearch.RootElement.ForeColor = System.Drawing.Color.Black;
     this.grdTubesearch.RootElement.Padding = new System.Windows.Forms.Padding(0, 0, 0, 1);
     this.grdTubesearch.Size = new System.Drawing.Size(1018, 154);
     this.grdTubesearch.TabIndex = 80;
     this.grdTubesearch.Text = "radGridView6";
     this.grdTubesearch.CellClick += new Telerik.WinControls.UI.GridViewCellEventHandler(this.grdTubesearch_CellClick);
     //
     // dtpInvoiceDate
     //
     this.dtpInvoiceDate.Location = new System.Drawing.Point(141, 551);
     this.dtpInvoiceDate.Name = "dtpInvoiceDate";
     this.dtpInvoiceDate.Size = new System.Drawing.Size(192, 20);
     this.dtpInvoiceDate.TabIndex = 123;
     //
     // txt_ReceivedBy
     //
     this.txt_ReceivedBy.Location = new System.Drawing.Point(141, 577);
     this.txt_ReceivedBy.Name = "txt_ReceivedBy";
     this.txt_ReceivedBy.Size = new System.Drawing.Size(192, 20);
     this.txt_ReceivedBy.TabIndex = 124;
     this.txt_ReceivedBy.TabStop = false;
     //
     // radLabel1
     //
     this.radLabel1.BackColor = System.Drawing.Color.Transparent;
     this.radLabel1.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.radLabel1.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Location = new System.Drawing.Point(28, 579);
     this.radLabel1.Name = "radLabel1";
     //
     //
     //
     this.radLabel1.RootElement.ForeColor = System.Drawing.Color.White;
     this.radLabel1.Size = new System.Drawing.Size(77, 21);
     this.radLabel1.TabIndex = 125;
     this.radLabel1.Text = "Received By";
     //
     // Invoice
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(1386, 788);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.txt_ReceivedBy);
     this.Controls.Add(this.radLabel5);
     this.Controls.Add(this.btnOtherSearch);
     this.Controls.Add(this.radLabel1);
     this.Controls.Add(this.btnAddPayment);
     this.Controls.Add(this.grdFillCustomer);
     this.Controls.Add(this.com_customer_id);
     this.Controls.Add(this.radLabel16);
     this.Controls.Add(this.txtCustomerName);
     this.Controls.Add(this.radPanel1);
     this.Controls.Add(this.btnTubeSearch);
     this.Controls.Add(this.btnTyreSearch);
     this.Controls.Add(this.btnBattrySearch);
     this.Controls.Add(this.btnClear);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.btnPrintInvoice);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.txtInvoiceNote);
     this.Controls.Add(this.txtVehicleNo);
     this.Controls.Add(this.radLabel13);
     this.Controls.Add(this.txtInvoiceNo);
     this.Controls.Add(this.radLabel14);
     this.Controls.Add(this.radLabel11);
     this.Controls.Add(this.radLabel12);
     this.Controls.Add(this.radLabel10);
     this.Controls.Add(this.radLabel8);
     this.Controls.Add(this.grdInvoice);
     this.Controls.Add(this.radLabel9);
     this.Controls.Add(this.lblInvoice);
     this.Controls.Add(this.pnlTube);
     this.Controls.Add(this.pnlTyre);
     this.Controls.Add(this.panel_batary_stock);
     this.Controls.Add(this.dtpInvoiceDate);
     this.Controls.Add(this.panel_other_search);
     this.ForeColor = System.Drawing.Color.DimGray;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Location = new System.Drawing.Point(150, 50);
     this.MaximizeBox = false;
     this.Name = "Invoice";
     this.Opacity = 0.95D;
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     //
     //
     //
     this.RootElement.ApplyShapeToControl = true;
     this.RootElement.ForeColor = System.Drawing.Color.DimGray;
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "Advanced Search";
     this.ThemeName = "ControlDefault";
     this.Load += new System.EventHandler(this.AdvancedSearch_Load);
     this.EnabledChanged += new System.EventHandler(this.AdvancedSearch_EnabledChanged);
     this.Click += new System.EventHandler(this.AdvancedSearch_Click);
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseDown);
     this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.AdvancedSearch_MouseMove);
     ((System.ComponentModel.ISupportInitialize)(this.gridViewTemplate1)).EndInit();
     this.panel_batary_stock.ResumeLayout(false);
     this.panel_batary_stock.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brandd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_amp)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_battery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView5)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_search_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdBattry)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton5)).EndInit();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.com_search_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_type)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size_batery)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.lblInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnBattrySearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnTyreSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnOtherSearch)).EndInit();
     this.panel_other_search.ResumeLayout(false);
     this.panel_other_search.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdOther)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnRefreshOher)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cmdSearchCat)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.check_rear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.check_front)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.panal_cycle)).EndInit();
     this.panal_cycle.ResumeLayout(false);
     this.panal_cycle.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_non_trial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_brand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_t_pattern)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_make)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.com_made)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_ply_rate)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_brand)).EndInit();
     this.grp_tyre_type.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radio_canvas)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radio_radial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel2)).EndInit();
     this.radPanel2.ResumeLayout(false);
     this.radPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radGridView3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_size)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chk_cycle_search)).EndInit();
     this.pnlTyre.ResumeLayout(false);
     this.pnlTyre.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.btnTubeSearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdInvoice)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.radLabel8)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel9)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel10)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel11)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel12)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel13)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtInvoiceNote)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel14)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtVehicleNo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAdd)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnPrintInvoice)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnClear)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radPanel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtCustomerName)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdFillCustomer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel16)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.btnAddPayment)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txtTotal)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel5)).EndInit();
     this.pnlTube.ResumeLayout(false);
     this.pnlTube.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubeSize)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chk_din_tube)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeBrand)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeSize)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeMake)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.chkTubeType)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.comTubeBrand)).EndInit();
     this.groupBox5.ResumeLayout(false);
     this.groupBox5.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.radButton3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radButton7)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.grdTubesearch)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.txt_ReceivedBy)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.radLabel1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 37
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.startStopBtn           = new System.Windows.Forms.Button();
     this.exitBtn                = new System.Windows.Forms.Button();
     this.label1                 = new System.Windows.Forms.Label();
     this.label2                 = new System.Windows.Forms.Label();
     this.label3                 = new System.Windows.Forms.Label();
     this.label4                 = new System.Windows.Forms.Label();
     this.label5                 = new System.Windows.Forms.Label();
     this.pTxtBx                 = new System.Windows.Forms.TextBox();
     this.qTxtBx                 = new System.Windows.Forms.TextBox();
     this.phiTxtBx               = new System.Windows.Forms.TextBox();
     this.valueTxtBx             = new System.Windows.Forms.TextBox();
     this.label6                 = new System.Windows.Forms.Label();
     this.label7                 = new System.Windows.Forms.Label();
     this.eTxtBx                 = new System.Windows.Forms.TextBox();
     this.encTxtBx               = new System.Windows.Forms.TextBox();
     this.testTxtBx              = new System.Windows.Forms.TextBox();
     this.label8                 = new System.Windows.Forms.Label();
     this.nTxtBx                 = new System.Windows.Forms.TextBox();
     this.label9                 = new System.Windows.Forms.Label();
     this.dTxtBx                 = new System.Windows.Forms.TextBox();
     this.numPanel               = new System.Windows.Forms.Panel();
     this.textPanel              = new System.Windows.Forms.Panel();
     this.testDataTextBox        = new System.Windows.Forms.TextBox();
     this.label12                = new System.Windows.Forms.Label();
     this.encDataTextBox         = new System.Windows.Forms.TextBox();
     this.label11                = new System.Windows.Forms.Label();
     this.dataTextBox            = new System.Windows.Forms.TextBox();
     this.label10                = new System.Windows.Forms.Label();
     this.numberRadioButton      = new System.Windows.Forms.RadioButton();
     this.textRadioButton        = new System.Windows.Forms.RadioButton();
     this.statusStrip1           = new System.Windows.Forms.StatusStrip();
     this.toolStripStatusLabel1  = new System.Windows.Forms.ToolStripStatusLabel();
     this.panel1                 = new System.Windows.Forms.Panel();
     this.tempRadioButton        = new System.Windows.Forms.RadioButton();
     this.decStrRadioButton      = new System.Windows.Forms.RadioButton();
     this.encStrRadioButton      = new System.Windows.Forms.RadioButton();
     this.decFileRadioButton     = new System.Windows.Forms.RadioButton();
     this.encFileRadioButton     = new System.Windows.Forms.RadioButton();
     this.mkKeyAndEncRadioButton = new System.Windows.Forms.RadioButton();
     this.label13                = new System.Windows.Forms.Label();
     this.timer1                 = new System.Windows.Forms.Timer(this.components);
     this.numPanel.SuspendLayout();
     this.textPanel.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // startStopBtn
     //
     this.startStopBtn.Location = new System.Drawing.Point(12, 420);
     this.startStopBtn.Name     = "startStopBtn";
     this.startStopBtn.Size     = new System.Drawing.Size(75, 23);
     this.startStopBtn.TabIndex = 0;
     this.startStopBtn.Text     = "Start";
     this.startStopBtn.UseVisualStyleBackColor = true;
     this.startStopBtn.Click += new System.EventHandler(this.CalcBtnClick);
     //
     // exitBtn
     //
     this.exitBtn.Location = new System.Drawing.Point(344, 420);
     this.exitBtn.Name     = "exitBtn";
     this.exitBtn.Size     = new System.Drawing.Size(75, 23);
     this.exitBtn.TabIndex = 1;
     this.exitBtn.Text     = "Exit";
     this.exitBtn.UseVisualStyleBackColor = true;
     this.exitBtn.Click += new System.EventHandler(this.ExitBtnClick);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(13, 93);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(31, 23);
     this.label1.TabIndex = 2;
     this.label1.Text     = "P=";
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(13, 120);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(31, 23);
     this.label2.TabIndex = 3;
     this.label2.Text     = "Q=";
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(233, 119);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(30, 23);
     this.label3.TabIndex = 4;
     this.label3.Text     = "Phi=";
     //
     // label4
     //
     this.label4.Location = new System.Drawing.Point(13, 11);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(46, 23);
     this.label4.TabIndex = 5;
     this.label4.Text     = "Value=";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(12, 38);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(100, 23);
     this.label5.TabIndex = 6;
     this.label5.Text     = "Encrypted Value:";
     //
     // pTxtBx
     //
     this.pTxtBx.Location     = new System.Drawing.Point(50, 90);
     this.pTxtBx.Name         = "pTxtBx";
     this.pTxtBx.Size         = new System.Drawing.Size(150, 20);
     this.pTxtBx.TabIndex     = 7;
     this.pTxtBx.TextChanged += new System.EventHandler(this.PTxtBxTextChanged);
     //
     // qTxtBx
     //
     this.qTxtBx.Location     = new System.Drawing.Point(50, 117);
     this.qTxtBx.Name         = "qTxtBx";
     this.qTxtBx.Size         = new System.Drawing.Size(150, 20);
     this.qTxtBx.TabIndex     = 8;
     this.qTxtBx.TextChanged += new System.EventHandler(this.QTxtBxTextChanged);
     //
     // phiTxtBx
     //
     this.phiTxtBx.Location = new System.Drawing.Point(270, 116);
     this.phiTxtBx.Name     = "phiTxtBx";
     this.phiTxtBx.ReadOnly = true;
     this.phiTxtBx.Size     = new System.Drawing.Size(150, 20);
     this.phiTxtBx.TabIndex = 9;
     //
     // valueTxtBx
     //
     this.valueTxtBx.Location     = new System.Drawing.Point(64, 8);
     this.valueTxtBx.Name         = "valueTxtBx";
     this.valueTxtBx.Size         = new System.Drawing.Size(150, 20);
     this.valueTxtBx.TabIndex     = 10;
     this.valueTxtBx.TextChanged += new System.EventHandler(this.ValueTxtBxTextChanged);
     //
     // label6
     //
     this.label6.Location = new System.Drawing.Point(12, 65);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(86, 23);
     this.label6.TabIndex = 11;
     this.label6.Text     = "Test Decryption:";
     //
     // label7
     //
     this.label7.Location = new System.Drawing.Point(13, 152);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(31, 23);
     this.label7.TabIndex = 12;
     this.label7.Text     = "e=";
     //
     // eTxtBx
     //
     this.eTxtBx.Location     = new System.Drawing.Point(50, 149);
     this.eTxtBx.Name         = "eTxtBx";
     this.eTxtBx.Size         = new System.Drawing.Size(150, 20);
     this.eTxtBx.TabIndex     = 13;
     this.eTxtBx.TextChanged += new System.EventHandler(this.ETxtBxTextChanged);
     //
     // encTxtBx
     //
     this.encTxtBx.Location     = new System.Drawing.Point(104, 35);
     this.encTxtBx.Name         = "encTxtBx";
     this.encTxtBx.ReadOnly     = true;
     this.encTxtBx.Size         = new System.Drawing.Size(150, 20);
     this.encTxtBx.TabIndex     = 14;
     this.encTxtBx.TextChanged += new System.EventHandler(this.EncTxtBxTextChanged);
     //
     // testTxtBx
     //
     this.testTxtBx.Location = new System.Drawing.Point(104, 62);
     this.testTxtBx.Name     = "testTxtBx";
     this.testTxtBx.ReadOnly = true;
     this.testTxtBx.Size     = new System.Drawing.Size(150, 20);
     this.testTxtBx.TabIndex = 15;
     //
     // label8
     //
     this.label8.Location = new System.Drawing.Point(233, 93);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(30, 23);
     this.label8.TabIndex = 16;
     this.label8.Text     = "n=";
     //
     // nTxtBx
     //
     this.nTxtBx.Location     = new System.Drawing.Point(269, 90);
     this.nTxtBx.Name         = "nTxtBx";
     this.nTxtBx.ReadOnly     = true;
     this.nTxtBx.Size         = new System.Drawing.Size(151, 20);
     this.nTxtBx.TabIndex     = 17;
     this.nTxtBx.TextChanged += new System.EventHandler(this.NTxtBxTextChanged);
     //
     // label9
     //
     this.label9.Location = new System.Drawing.Point(233, 152);
     this.label9.Name     = "label9";
     this.label9.Size     = new System.Drawing.Size(30, 23);
     this.label9.TabIndex = 18;
     this.label9.Text     = "d=";
     //
     // dTxtBx
     //
     this.dTxtBx.Location     = new System.Drawing.Point(269, 149);
     this.dTxtBx.Name         = "dTxtBx";
     this.dTxtBx.ReadOnly     = true;
     this.dTxtBx.Size         = new System.Drawing.Size(150, 20);
     this.dTxtBx.TabIndex     = 19;
     this.dTxtBx.TextChanged += new System.EventHandler(this.DTxtBxTextChanged);
     //
     // numPanel
     //
     this.numPanel.Controls.Add(this.encTxtBx);
     this.numPanel.Controls.Add(this.label4);
     this.numPanel.Controls.Add(this.label5);
     this.numPanel.Controls.Add(this.valueTxtBx);
     this.numPanel.Controls.Add(this.label6);
     this.numPanel.Controls.Add(this.testTxtBx);
     this.numPanel.Location = new System.Drawing.Point(13, 203);
     this.numPanel.Name     = "numPanel";
     this.numPanel.Size     = new System.Drawing.Size(406, 92);
     this.numPanel.TabIndex = 20;
     //
     // textPanel
     //
     this.textPanel.Controls.Add(this.testDataTextBox);
     this.textPanel.Controls.Add(this.label12);
     this.textPanel.Controls.Add(this.encDataTextBox);
     this.textPanel.Controls.Add(this.label11);
     this.textPanel.Controls.Add(this.dataTextBox);
     this.textPanel.Controls.Add(this.label10);
     this.textPanel.Location = new System.Drawing.Point(13, 322);
     this.textPanel.Name     = "textPanel";
     this.textPanel.Size     = new System.Drawing.Size(406, 92);
     this.textPanel.TabIndex = 21;
     //
     // testDataTextBox
     //
     this.testDataTextBox.Location = new System.Drawing.Point(104, 62);
     this.testDataTextBox.Name     = "testDataTextBox";
     this.testDataTextBox.ReadOnly = true;
     this.testDataTextBox.Size     = new System.Drawing.Size(299, 20);
     this.testDataTextBox.TabIndex = 5;
     //
     // label12
     //
     this.label12.Location = new System.Drawing.Point(12, 65);
     this.label12.Name     = "label12";
     this.label12.Size     = new System.Drawing.Size(100, 23);
     this.label12.TabIndex = 4;
     this.label12.Text     = "Test Decryption:";
     //
     // encDataTextBox
     //
     this.encDataTextBox.Location     = new System.Drawing.Point(104, 35);
     this.encDataTextBox.Name         = "encDataTextBox";
     this.encDataTextBox.ReadOnly     = true;
     this.encDataTextBox.Size         = new System.Drawing.Size(299, 20);
     this.encDataTextBox.TabIndex     = 3;
     this.encDataTextBox.MouseClick  += new System.Windows.Forms.MouseEventHandler(this.EncDataTextBoxMouseClick);
     this.encDataTextBox.TextChanged += new System.EventHandler(this.EncDataTextBoxTextChanged);
     //
     // label11
     //
     this.label11.Location = new System.Drawing.Point(12, 38);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(100, 23);
     this.label11.TabIndex = 2;
     this.label11.Text     = "Encrypted Text:";
     //
     // dataTextBox
     //
     this.dataTextBox.Location     = new System.Drawing.Point(64, 9);
     this.dataTextBox.Name         = "dataTextBox";
     this.dataTextBox.Size         = new System.Drawing.Size(339, 20);
     this.dataTextBox.TabIndex     = 1;
     this.dataTextBox.MouseClick  += new System.Windows.Forms.MouseEventHandler(this.DataTextBoxMouseClick);
     this.dataTextBox.TextChanged += new System.EventHandler(this.DataTextBoxTextChanged);
     //
     // label10
     //
     this.label10.Location = new System.Drawing.Point(13, 12);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(46, 23);
     this.label10.TabIndex = 0;
     this.label10.Text     = "Text=";
     //
     // numberRadioButton
     //
     this.numberRadioButton.Location = new System.Drawing.Point(13, 179);
     this.numberRadioButton.Name     = "numberRadioButton";
     this.numberRadioButton.Size     = new System.Drawing.Size(74, 24);
     this.numberRadioButton.TabIndex = 22;
     this.numberRadioButton.TabStop  = true;
     this.numberRadioButton.Text     = "Number";
     this.numberRadioButton.UseVisualStyleBackColor = true;
     this.numberRadioButton.CheckedChanged         += new System.EventHandler(this.NumberRadioButtonCheckedChanged);
     //
     // textRadioButton
     //
     this.textRadioButton.Location = new System.Drawing.Point(13, 297);
     this.textRadioButton.Name     = "textRadioButton";
     this.textRadioButton.Size     = new System.Drawing.Size(74, 24);
     this.textRadioButton.TabIndex = 23;
     this.textRadioButton.TabStop  = true;
     this.textRadioButton.Text     = "Text";
     this.textRadioButton.UseVisualStyleBackColor = true;
     this.textRadioButton.CheckedChanged         += new System.EventHandler(this.TextRadioButtonCheckedChanged);
     //
     // statusStrip1
     //
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 449);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(433, 22);
     this.statusStrip1.TabIndex = 24;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size = new System.Drawing.Size(118, 17);
     this.toolStripStatusLabel1.Text = "toolStripStatusLabel1";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.tempRadioButton);
     this.panel1.Controls.Add(this.decStrRadioButton);
     this.panel1.Controls.Add(this.encStrRadioButton);
     this.panel1.Controls.Add(this.decFileRadioButton);
     this.panel1.Controls.Add(this.encFileRadioButton);
     this.panel1.Controls.Add(this.mkKeyAndEncRadioButton);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Location = new System.Drawing.Point(12, 3);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(408, 80);
     this.panel1.TabIndex = 25;
     //
     // tempRadioButton
     //
     this.tempRadioButton.Location = new System.Drawing.Point(221, 3);
     this.tempRadioButton.Name     = "tempRadioButton";
     this.tempRadioButton.Size     = new System.Drawing.Size(155, 24);
     this.tempRadioButton.TabIndex = 6;
     this.tempRadioButton.TabStop  = true;
     this.tempRadioButton.Text     = "tempRadioButton";
     this.tempRadioButton.UseVisualStyleBackColor = true;
     //
     // decStrRadioButton
     //
     this.decStrRadioButton.Location = new System.Drawing.Point(221, 50);
     this.decStrRadioButton.Name     = "decStrRadioButton";
     this.decStrRadioButton.Size     = new System.Drawing.Size(155, 24);
     this.decStrRadioButton.TabIndex = 5;
     this.decStrRadioButton.TabStop  = true;
     this.decStrRadioButton.Text     = "String/Value: Decrypt Only";
     this.decStrRadioButton.UseVisualStyleBackColor = true;
     this.decStrRadioButton.CheckedChanged         += new System.EventHandler(this.DecStrRadioButtonCheckedChanged);
     //
     // encStrRadioButton
     //
     this.encStrRadioButton.Location = new System.Drawing.Point(221, 26);
     this.encStrRadioButton.Name     = "encStrRadioButton";
     this.encStrRadioButton.Size     = new System.Drawing.Size(155, 24);
     this.encStrRadioButton.TabIndex = 4;
     this.encStrRadioButton.TabStop  = true;
     this.encStrRadioButton.Text     = "String/Value: Encrypt Only";
     this.encStrRadioButton.UseVisualStyleBackColor = true;
     this.encStrRadioButton.CheckedChanged         += new System.EventHandler(this.EncStrRadioButtonCheckedChanged);
     //
     // decFileRadioButton
     //
     this.decFileRadioButton.Location = new System.Drawing.Point(70, 50);
     this.decFileRadioButton.Name     = "decFileRadioButton";
     this.decFileRadioButton.Size     = new System.Drawing.Size(118, 24);
     this.decFileRadioButton.TabIndex = 3;
     this.decFileRadioButton.TabStop  = true;
     this.decFileRadioButton.Text     = "File: Decrypt Only";
     this.decFileRadioButton.UseVisualStyleBackColor = true;
     this.decFileRadioButton.CheckedChanged         += new System.EventHandler(this.DecFileRadioButtonCheckedChanged);
     //
     // encFileRadioButton
     //
     this.encFileRadioButton.Location = new System.Drawing.Point(70, 26);
     this.encFileRadioButton.Name     = "encFileRadioButton";
     this.encFileRadioButton.Size     = new System.Drawing.Size(109, 24);
     this.encFileRadioButton.TabIndex = 2;
     this.encFileRadioButton.TabStop  = true;
     this.encFileRadioButton.Text     = "File: Encrypt Only";
     this.encFileRadioButton.UseVisualStyleBackColor = true;
     this.encFileRadioButton.CheckedChanged         += new System.EventHandler(this.EncFileRadioButtonCheckedChanged);
     //
     // mkKeyAndEncRadioButton
     //
     this.mkKeyAndEncRadioButton.Location = new System.Drawing.Point(70, 3);
     this.mkKeyAndEncRadioButton.Name     = "mkKeyAndEncRadioButton";
     this.mkKeyAndEncRadioButton.Size     = new System.Drawing.Size(145, 24);
     this.mkKeyAndEncRadioButton.TabIndex = 1;
     this.mkKeyAndEncRadioButton.TabStop  = true;
     this.mkKeyAndEncRadioButton.Text     = "Create Key and Encrypt";
     this.mkKeyAndEncRadioButton.UseVisualStyleBackColor = true;
     this.mkKeyAndEncRadioButton.CheckedChanged         += new System.EventHandler(this.MkKeyAndEncRadioButtonCheckedChanged);
     //
     // label13
     //
     this.label13.Location = new System.Drawing.Point(3, 8);
     this.label13.Name     = "label13";
     this.label13.Size     = new System.Drawing.Size(72, 18);
     this.label13.TabIndex = 0;
     this.label13.Text     = "Work Mode:";
     //
     // timer1
     //
     this.timer1.Interval = 200;
     this.timer1.Tick    += new System.EventHandler(this.Timer1Tick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(433, 471);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.statusStrip1);
     this.Controls.Add(this.textRadioButton);
     this.Controls.Add(this.numberRadioButton);
     this.Controls.Add(this.textPanel);
     this.Controls.Add(this.numPanel);
     this.Controls.Add(this.dTxtBx);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.nTxtBx);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.eTxtBx);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.phiTxtBx);
     this.Controls.Add(this.qTxtBx);
     this.Controls.Add(this.pTxtBx);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.exitBtn);
     this.Controls.Add(this.startStopBtn);
     this.Name         = "MainForm";
     this.Text         = "RSA App";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainFormFormClosing);
     this.numPanel.ResumeLayout(false);
     this.numPanel.PerformLayout();
     this.textPanel.ResumeLayout(false);
     this.textPanel.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GroupShapes));
     this.btnConvert        = new System.Windows.Forms.Button();
     this.label2            = new System.Windows.Forms.Label();
     this.pictureBox4       = new System.Windows.Forms.PictureBox();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.rdbUngroupAll     = new System.Windows.Forms.RadioButton();
     this.rdbGroup          = new System.Windows.Forms.RadioButton();
     this.rdbUngroup        = new System.Windows.Forms.RadioButton();
     this.viewInputTemplate = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnConvert
     //
     this.btnConvert.Location = new System.Drawing.Point(342, 197);
     this.btnConvert.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.btnConvert.Name     = "btnConvert";
     this.btnConvert.Size     = new System.Drawing.Size(158, 40);
     this.btnConvert.TabIndex = 0;
     this.btnConvert.Text     = "Create Document";
     this.btnConvert.UseVisualStyleBackColor = true;
     this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
     this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label2.Location  = new System.Drawing.Point(8, 92);
     this.label2.Margin    = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(494, 85);
     this.label2.TabIndex  = 75;
     this.label2.Text      = "Click the button to create new group shape or ungroup the existing shapes by Esse" +
                             "ntial XlsIO.";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // pictureBox4
     //
     this.pictureBox4.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pictureBox4.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(0, 0);
     this.pictureBox4.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.pictureBox4.Name     = "pictureBox4";
     this.pictureBox4.Size     = new System.Drawing.Size(508, 71);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox4.TabIndex = 74;
     this.pictureBox4.TabStop  = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdbUngroupAll);
     this.groupBox1.Controls.Add(this.rdbGroup);
     this.groupBox1.Controls.Add(this.rdbUngroup);
     this.groupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(10, 188);
     this.groupBox1.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Padding  = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.groupBox1.Size     = new System.Drawing.Size(191, 126);
     this.groupBox1.TabIndex = 76;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Choose";
     //
     // rdbUngroupAll
     //
     this.rdbUngroupAll.AutoSize = true;
     this.rdbUngroupAll.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbUngroupAll.Location = new System.Drawing.Point(34, 93);
     this.rdbUngroupAll.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.rdbUngroupAll.Name     = "rdbUngroupAll";
     this.rdbUngroupAll.Size     = new System.Drawing.Size(121, 24);
     this.rdbUngroupAll.TabIndex = 79;
     this.rdbUngroupAll.Text     = "Ungroup All";
     this.rdbUngroupAll.UseVisualStyleBackColor = true;
     //
     // rdbGroup
     //
     this.rdbGroup.AutoSize = true;
     this.rdbGroup.Checked  = true;
     this.rdbGroup.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbGroup.Location = new System.Drawing.Point(34, 25);
     this.rdbGroup.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.rdbGroup.Name     = "rdbGroup";
     this.rdbGroup.Size     = new System.Drawing.Size(80, 24);
     this.rdbGroup.TabIndex = 1;
     this.rdbGroup.TabStop  = true;
     this.rdbGroup.Text     = "Group";
     this.rdbGroup.UseVisualStyleBackColor = true;
     //
     // rdbUngroup
     //
     this.rdbUngroup.AutoSize = true;
     this.rdbUngroup.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbUngroup.Location = new System.Drawing.Point(34, 59);
     this.rdbUngroup.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.rdbUngroup.Name     = "rdbUngroup";
     this.rdbUngroup.Size     = new System.Drawing.Size(97, 24);
     this.rdbUngroup.TabIndex = 0;
     this.rdbUngroup.Text     = "Ungroup";
     this.rdbUngroup.UseVisualStyleBackColor = true;
     //
     // viewInputTemplate
     //
     this.viewInputTemplate.Location = new System.Drawing.Point(343, 274);
     this.viewInputTemplate.Margin   = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.viewInputTemplate.Name     = "viewInputTemplate";
     this.viewInputTemplate.Size     = new System.Drawing.Size(158, 40);
     this.viewInputTemplate.TabIndex = 77;
     this.viewInputTemplate.Text     = "Input Template";
     this.viewInputTemplate.UseVisualStyleBackColor = true;
     this.viewInputTemplate.Click += new System.EventHandler(this.viewInputTemplate_Click);
     //
     // GroupShapes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(508, 318);
     this.Controls.Add(this.viewInputTemplate);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.pictureBox4);
     this.Controls.Add(this.btnConvert);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin          = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.MaximizeBox     = false;
     this.Name            = "GroupShapes";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Group Shape";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.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.label2 = new System.Windows.Forms.Label();
     this.LyncFellowLabel = new System.Windows.Forms.Label();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label7 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.GlueckkanjaLabel = new System.Windows.Forms.Label();
     this.CloseButtton = new System.Windows.Forms.Button();
     this.OnCallConference = new System.Windows.Forms.RadioButton();
     this.OnDoNotDisturb = new System.Windows.Forms.RadioButton();
     this.DanceOnIncomingCall = new System.Windows.Forms.CheckBox();
     this.label8 = new System.Windows.Forms.Label();
     this.MyOwnWebsiteLabel = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.OnBusy = new System.Windows.Forms.RadioButton();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Calibri", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Gray;
     this.label2.Location = new System.Drawing.Point(27, 63);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(328, 23);
     this.label2.TabIndex = 4;
     this.label2.Text = "Your Personal Lync Status Notifier Gadget";
     //
     // LyncFellowLabel
     //
     this.LyncFellowLabel.AutoSize = true;
     this.LyncFellowLabel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.LyncFellowLabel.Font = new System.Drawing.Font("Calibri", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.LyncFellowLabel.ForeColor = System.Drawing.Color.SteelBlue;
     this.LyncFellowLabel.Location = new System.Drawing.Point(19, 9);
     this.LyncFellowLabel.Name = "LyncFellowLabel";
     this.LyncFellowLabel.Size = new System.Drawing.Size(236, 59);
     this.LyncFellowLabel.TabIndex = 3;
     this.LyncFellowLabel.Text = "LyncFellow";
     this.LyncFellowLabel.Click += new System.EventHandler(this.MyOwnWebsiteLabel_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image = global::LyncFellow.Properties.Resources.LyncFellowSettings;
     this.pictureBox1.Location = new System.Drawing.Point(404, 9);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(500, 500);
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop = false;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Calibri", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(25, 103);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(360, 23);
     this.label3.TabIndex = 7;
     this.label3.Text = "When would you like to see a red LyncFellow?";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Calibri", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(25, 242);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(391, 23);
     this.label4.TabIndex = 34;
     this.label4.Text = "Would you like a moving fellow on incoming calls?";
     //
     // panel1
     //
     this.panel1.Controls.Add(this.label7);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label5);
     this.panel1.Controls.Add(this.GlueckkanjaLabel);
     this.panel1.Controls.Add(this.CloseButtton);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location = new System.Drawing.Point(0, 412);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(744, 63);
     this.panel1.TabIndex = 35;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.ForeColor = System.Drawing.Color.Gray;
     this.label7.Location = new System.Drawing.Point(161, 40);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(399, 14);
     this.label7.TabIndex = 39;
     this.label7.Text = "the Gnome project. The software is provided as is and free to distribute.";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Gray;
     this.label6.Location = new System.Drawing.Point(161, 24);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(429, 14);
     this.label6.TabIndex = 38;
     this.label6.Text = "Parts of the code are based on LyncBuddy by Tommy Clarke. Icons are under GPL from ";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Calibri", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Gray;
     this.label5.Location = new System.Drawing.Point(161, 8);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(440, 14);
     this.label5.TabIndex = 37;
     this.label5.Text = "LyncFellow is an open source project developed by Glück && Kanja Consulting AG.";
     //
     // GlueckkanjaLabel
     //
     this.GlueckkanjaLabel.AutoSize = true;
     this.GlueckkanjaLabel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.GlueckkanjaLabel.Font = new System.Drawing.Font("Calibri", 8.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.GlueckkanjaLabel.ForeColor = System.Drawing.Color.DarkBlue;
     this.GlueckkanjaLabel.Location = new System.Drawing.Point(28, 8);
     this.GlueckkanjaLabel.Name = "GlueckkanjaLabel";
     this.GlueckkanjaLabel.Size = new System.Drawing.Size(90, 14);
     this.GlueckkanjaLabel.TabIndex = 36;
     this.GlueckkanjaLabel.Text = "glueckkanja.com";
     this.GlueckkanjaLabel.Click += new System.EventHandler(this.GlueckkanjaLabel_Click);
     //
     // CloseButtton
     //
     this.CloseButtton.BackColor = System.Drawing.Color.LightGray;
     this.CloseButtton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.CloseButtton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.CloseButtton.Font = new System.Drawing.Font("Calibri", 12F);
     this.CloseButtton.Location = new System.Drawing.Point(644, 15);
     this.CloseButtton.Name = "CloseButtton";
     this.CloseButtton.Size = new System.Drawing.Size(76, 33);
     this.CloseButtton.TabIndex = 7;
     this.CloseButtton.Text = "Close";
     this.CloseButtton.UseVisualStyleBackColor = false;
     this.CloseButtton.Click += new System.EventHandler(this.CloseButtton_Click);
     //
     // OnCallConference
     //
     this.OnCallConference.AutoSize = true;
     this.OnCallConference.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.OnCallConference.Font = new System.Drawing.Font("Calibri", 14F);
     this.OnCallConference.ForeColor = System.Drawing.Color.SteelBlue;
     this.OnCallConference.Location = new System.Drawing.Point(34, 162);
     this.OnCallConference.Name = "OnCallConference";
     this.OnCallConference.Size = new System.Drawing.Size(305, 27);
     this.OnCallConference.TabIndex = 36;
     this.OnCallConference.TabStop = true;
     this.OnCallConference.Text = "also when I\'m in a call or conference";
     //
     // OnDoNotDisturb
     //
     this.OnDoNotDisturb.AutoSize = true;
     this.OnDoNotDisturb.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.OnDoNotDisturb.Font = new System.Drawing.Font("Calibri", 14F);
     this.OnDoNotDisturb.ForeColor = System.Drawing.Color.SteelBlue;
     this.OnDoNotDisturb.Location = new System.Drawing.Point(34, 129);
     this.OnDoNotDisturb.Name = "OnDoNotDisturb";
     this.OnDoNotDisturb.Size = new System.Drawing.Size(331, 27);
     this.OnDoNotDisturb.TabIndex = 37;
     this.OnDoNotDisturb.TabStop = true;
     this.OnDoNotDisturb.Text = "only when my status is \"do not disturb\"";
     //
     // DanceOnIncomingCall
     //
     this.DanceOnIncomingCall.AutoSize = true;
     this.DanceOnIncomingCall.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.DanceOnIncomingCall.Font = new System.Drawing.Font("Calibri", 14F);
     this.DanceOnIncomingCall.ForeColor = System.Drawing.Color.SteelBlue;
     this.DanceOnIncomingCall.Location = new System.Drawing.Point(34, 268);
     this.DanceOnIncomingCall.Name = "DanceOnIncomingCall";
     this.DanceOnIncomingCall.Size = new System.Drawing.Size(146, 27);
     this.DanceOnIncomingCall.TabIndex = 38;
     this.DanceOnIncomingCall.Text = "Yes, let\'s dance.";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Calibri", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(27, 315);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(320, 23);
     this.label8.TabIndex = 39;
     this.label8.Text = "Would you like to know more about me?";
     //
     // MyOwnWebsiteLabel
     //
     this.MyOwnWebsiteLabel.AutoSize = true;
     this.MyOwnWebsiteLabel.Cursor = System.Windows.Forms.Cursors.Hand;
     this.MyOwnWebsiteLabel.Font = new System.Drawing.Font("Calibri", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MyOwnWebsiteLabel.ForeColor = System.Drawing.Color.SteelBlue;
     this.MyOwnWebsiteLabel.Location = new System.Drawing.Point(29, 338);
     this.MyOwnWebsiteLabel.Name = "MyOwnWebsiteLabel";
     this.MyOwnWebsiteLabel.Size = new System.Drawing.Size(383, 23);
     this.MyOwnWebsiteLabel.TabIndex = 41;
     this.MyOwnWebsiteLabel.Text = "My very own website is at lyncfellow.github.com";
     this.MyOwnWebsiteLabel.Click += new System.EventHandler(this.MyOwnWebsiteLabel_Click);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Calibri", 14F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.ForeColor = System.Drawing.Color.Gray;
     this.label11.Location = new System.Drawing.Point(27, 338);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(210, 23);
     this.label11.TabIndex = 43;
     this.label11.Text = "My very own website is at";
     //
     // OnBusy
     //
     this.OnBusy.AutoSize = true;
     this.OnBusy.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.OnBusy.Font = new System.Drawing.Font("Calibri", 14F);
     this.OnBusy.ForeColor = System.Drawing.Color.SteelBlue;
     this.OnBusy.Location = new System.Drawing.Point(34, 195);
     this.OnBusy.Name = "OnBusy";
     this.OnBusy.Size = new System.Drawing.Size(263, 27);
     this.OnBusy.TabIndex = 47;
     this.OnBusy.TabStop = true;
     this.OnBusy.Text = "even when my status is \"busy\"";
     this.OnBusy.UseVisualStyleBackColor = false;
     //
     // SettingsForm
     //
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
     this.BackColor = System.Drawing.Color.White;
     this.ClientSize = new System.Drawing.Size(744, 475);
     this.Controls.Add(this.LyncFellowLabel);
     this.Controls.Add(this.OnBusy);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.MyOwnWebsiteLabel);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.DanceOnIncomingCall);
     this.Controls.Add(this.OnDoNotDisturb);
     this.Controls.Add(this.OnCallConference);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.pictureBox1);
     this.Font = new System.Drawing.Font("Calibri", 8.25F);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "SettingsForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "LyncFellow Settings";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 40
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(WorksheetToHTML));
     this.btnConvert        = new System.Windows.Forms.Button();
     this.label2            = new System.Windows.Forms.Label();
     this.pictureBox4       = new System.Windows.Forms.PictureBox();
     this.groupBox1         = new System.Windows.Forms.GroupBox();
     this.rdbWkSheet        = new System.Windows.Forms.RadioButton();
     this.rdbWkbook         = new System.Windows.Forms.RadioButton();
     this.viewInputTemplate = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // btnConvert
     //
     this.btnConvert.Location = new System.Drawing.Point(192, 177);
     this.btnConvert.Name     = "btnConvert";
     this.btnConvert.Size     = new System.Drawing.Size(90, 26);
     this.btnConvert.TabIndex = 0;
     this.btnConvert.Text     = "Convert";
     this.btnConvert.UseVisualStyleBackColor = true;
     this.btnConvert.Click += new System.EventHandler(this.btnConvert_Click);
     //
     // label2
     //
     this.label2.Font      = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(161)));
     this.label2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.label2.Location  = new System.Drawing.Point(0, 100);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(373, 27);
     this.label2.TabIndex  = 75;
     this.label2.Text      = "Click the button to view an HTML generated by Essential XlsIO.";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // pictureBox4
     //
     this.pictureBox4.Dock     = System.Windows.Forms.DockStyle.Top;
     this.pictureBox4.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(0, 0);
     this.pictureBox4.Name     = "pictureBox4";
     this.pictureBox4.Size     = new System.Drawing.Size(377, 71);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.pictureBox4.TabIndex = 74;
     this.pictureBox4.TabStop  = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdbWkSheet);
     this.groupBox1.Controls.Add(this.rdbWkbook);
     this.groupBox1.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.Location = new System.Drawing.Point(87, 132);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(195, 39);
     this.groupBox1.TabIndex = 76;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Choose";
     //
     // rdbWkSheet
     //
     this.rdbWkSheet.AutoSize = true;
     this.rdbWkSheet.Checked  = true;
     this.rdbWkSheet.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbWkSheet.Location = new System.Drawing.Point(102, 16);
     this.rdbWkSheet.Name     = "rdbWkSheet";
     this.rdbWkSheet.Size     = new System.Drawing.Size(77, 17);
     this.rdbWkSheet.TabIndex = 1;
     this.rdbWkSheet.TabStop  = true;
     this.rdbWkSheet.Text     = "Worksheet";
     this.rdbWkSheet.UseVisualStyleBackColor = true;
     //
     // rdbWkbook
     //
     this.rdbWkbook.AutoSize = true;
     this.rdbWkbook.Font     = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rdbWkbook.Location = new System.Drawing.Point(5, 16);
     this.rdbWkbook.Name     = "rdbWkbook";
     this.rdbWkbook.Size     = new System.Drawing.Size(75, 17);
     this.rdbWkbook.TabIndex = 0;
     this.rdbWkbook.Text     = "Workbook";
     this.rdbWkbook.UseVisualStyleBackColor = true;
     //
     // viewInputTemplate
     //
     this.viewInputTemplate.Location = new System.Drawing.Point(87, 177);
     this.viewInputTemplate.Name     = "viewInputTemplate";
     this.viewInputTemplate.Size     = new System.Drawing.Size(90, 26);
     this.viewInputTemplate.TabIndex = 77;
     this.viewInputTemplate.Text     = "Input Template";
     this.viewInputTemplate.UseVisualStyleBackColor = true;
     this.viewInputTemplate.Click += new System.EventHandler(this.viewInputTemplate_Click);
     //
     // WorksheetToHTML
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(377, 210);
     this.Controls.Add(this.viewInputTemplate);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.pictureBox4);
     this.Controls.Add(this.btnConvert);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.Name            = "WorksheetToHTML";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "WorksheetToHTML";
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmLancamentoCustasProcessos));
     this.rbClientePaga = new System.Windows.Forms.RadioButton();
     this.rbAdvogadoPaga = new System.Windows.Forms.RadioButton();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.dtpVencimento = new System.Windows.Forms.DateTimePicker();
     this.label3 = new System.Windows.Forms.Label();
     this.ttbDescricao = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.ccbPago = new System.Windows.Forms.CheckBox();
     this.grbDados = new System.Windows.Forms.GroupBox();
     this.ttbValorTotal = new System.Windows.Forms.MaskedTextBox();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label8 = new System.Windows.Forms.Label();
     this.ttbDescricaoCusta = new System.Windows.Forms.TextBox();
     this.button2 = new System.Windows.Forms.Button();
     this.label6 = new System.Windows.Forms.Label();
     this.ttbCodigoTipo = new System.Windows.Forms.TextBox();
     this.ttbNumeroProcesso = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.ttbCodigoCusta = new System.Windows.Forms.TextBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.grbPagamento = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.dtpPagamento = new System.Windows.Forms.DateTimePicker();
     this.ttbValorRecebido = new System.Windows.Forms.MaskedTextBox();
     this.button1 = new System.Windows.Forms.Button();
     this.label10 = new System.Windows.Forms.Label();
     this.pnlBotoes = new System.Windows.Forms.Panel();
     this.btnExcluir = new System.Windows.Forms.Button();
     this.btnSair = new System.Windows.Forms.Button();
     this.btnCancelar = new System.Windows.Forms.Button();
     this.btnLocalizar = new System.Windows.Forms.Button();
     this.btnGravar = new System.Windows.Forms.Button();
     this.btnNovo = new System.Windows.Forms.Button();
     this.dgvResultado1 = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grbDados.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.grbPagamento.SuspendLayout();
     this.pnlBotoes.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvResultado1)).BeginInit();
     this.SuspendLayout();
     //
     // rbClientePaga
     //
     this.rbClientePaga.AutoSize = true;
     this.rbClientePaga.Location = new System.Drawing.Point(23, 32);
     this.rbClientePaga.Name = "rbClientePaga";
     this.rbClientePaga.Size = new System.Drawing.Size(101, 17);
     this.rbClientePaga.TabIndex = 43;
     this.rbClientePaga.TabStop = true;
     this.rbClientePaga.Text = "Cliente irá pagar";
     this.rbClientePaga.UseVisualStyleBackColor = true;
     //
     // rbAdvogadoPaga
     //
     this.rbAdvogadoPaga.AutoSize = true;
     this.rbAdvogadoPaga.Location = new System.Drawing.Point(23, 55);
     this.rbAdvogadoPaga.Name = "rbAdvogadoPaga";
     this.rbAdvogadoPaga.Size = new System.Drawing.Size(120, 17);
     this.rbAdvogadoPaga.TabIndex = 45;
     this.rbAdvogadoPaga.TabStop = true;
     this.rbAdvogadoPaga.Text = "Advocacia irá pagar";
     this.rbAdvogadoPaga.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(363, 43);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(112, 13);
     this.label2.TabIndex = 36;
     this.label2.Text = "Número do processo *";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(15, 80);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(114, 13);
     this.label1.TabIndex = 37;
     this.label1.Text = "Valor total a ser pago *";
     //
     // dtpVencimento
     //
     this.dtpVencimento.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpVencimento.Location = new System.Drawing.Point(152, 96);
     this.dtpVencimento.Name = "dtpVencimento";
     this.dtpVencimento.Size = new System.Drawing.Size(124, 20);
     this.dtpVencimento.TabIndex = 40;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(150, 80);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(70, 13);
     this.label3.TabIndex = 41;
     this.label3.Text = "Vencimento *";
     //
     // ttbDescricao
     //
     this.ttbDescricao.Location = new System.Drawing.Point(121, 46);
     this.ttbDescricao.MaxLength = 100;
     this.ttbDescricao.Name = "ttbDescricao";
     this.ttbDescricao.Size = new System.Drawing.Size(204, 20);
     this.ttbDescricao.TabIndex = 34;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(118, 30);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(62, 13);
     this.label4.TabIndex = 36;
     this.label4.Text = "Descrição *";
     this.label4.Click += new System.EventHandler(this.label4_Click);
     //
     // ccbPago
     //
     this.ccbPago.AutoSize = true;
     this.ccbPago.Location = new System.Drawing.Point(23, 78);
     this.ccbPago.Name = "ccbPago";
     this.ccbPago.Size = new System.Drawing.Size(51, 17);
     this.ccbPago.TabIndex = 46;
     this.ccbPago.Text = "Pago";
     this.ccbPago.UseVisualStyleBackColor = true;
     this.ccbPago.CheckedChanged += new System.EventHandler(this.ccbPago_CheckedChanged);
     //
     // grbDados
     //
     this.grbDados.Controls.Add(this.ttbValorTotal);
     this.grbDados.Controls.Add(this.groupBox4);
     this.grbDados.Controls.Add(this.label3);
     this.grbDados.Controls.Add(this.ttbNumeroProcesso);
     this.grbDados.Controls.Add(this.dtpVencimento);
     this.grbDados.Controls.Add(this.label7);
     this.grbDados.Controls.Add(this.ttbCodigoCusta);
     this.grbDados.Controls.Add(this.groupBox2);
     this.grbDados.Controls.Add(this.button1);
     this.grbDados.Controls.Add(this.label4);
     this.grbDados.Controls.Add(this.label2);
     this.grbDados.Controls.Add(this.ttbDescricao);
     this.grbDados.Controls.Add(this.label1);
     this.grbDados.Enabled = false;
     this.grbDados.Location = new System.Drawing.Point(12, 76);
     this.grbDados.Name = "grbDados";
     this.grbDados.Size = new System.Drawing.Size(571, 299);
     this.grbDados.TabIndex = 48;
     this.grbDados.TabStop = false;
     this.grbDados.Text = "Dados da custa";
     //
     // ttbValorTotal
     //
     this.ttbValorTotal.Location = new System.Drawing.Point(18, 96);
     this.ttbValorTotal.Mask = "$0000000.00";
     this.ttbValorTotal.Name = "ttbValorTotal";
     this.ttbValorTotal.Size = new System.Drawing.Size(104, 20);
     this.ttbValorTotal.TabIndex = 52;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label8);
     this.groupBox4.Controls.Add(this.ttbDescricaoCusta);
     this.groupBox4.Controls.Add(this.button2);
     this.groupBox4.Controls.Add(this.label6);
     this.groupBox4.Controls.Add(this.ttbCodigoTipo);
     this.groupBox4.Location = new System.Drawing.Point(18, 148);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(181, 120);
     this.groupBox4.TabIndex = 48;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Tipo do custo *";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(15, 64);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(55, 13);
     this.label8.TabIndex = 54;
     this.label8.Text = "Descrição";
     //
     // ttbDescricaoCusta
     //
     this.ttbDescricaoCusta.Enabled = false;
     this.ttbDescricaoCusta.Location = new System.Drawing.Point(18, 80);
     this.ttbDescricaoCusta.Name = "ttbDescricaoCusta";
     this.ttbDescricaoCusta.Size = new System.Drawing.Size(141, 20);
     this.ttbDescricaoCusta.TabIndex = 53;
     //
     // button2
     //
     this.button2.Image = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
     this.button2.Location = new System.Drawing.Point(100, 27);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(59, 39);
     this.button2.TabIndex = 51;
     this.button2.Text = "Localizar";
     this.button2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(18, 22);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(40, 13);
     this.label6.TabIndex = 52;
     this.label6.Text = "Código";
     //
     // ttbCodigoTipo
     //
     this.ttbCodigoTipo.Enabled = false;
     this.ttbCodigoTipo.Location = new System.Drawing.Point(18, 38);
     this.ttbCodigoTipo.Name = "ttbCodigoTipo";
     this.ttbCodigoTipo.Size = new System.Drawing.Size(74, 20);
     this.ttbCodigoTipo.TabIndex = 52;
     //
     // ttbNumeroProcesso
     //
     this.ttbNumeroProcesso.Enabled = false;
     this.ttbNumeroProcesso.Location = new System.Drawing.Point(366, 59);
     this.ttbNumeroProcesso.Name = "ttbNumeroProcesso";
     this.ttbNumeroProcesso.Size = new System.Drawing.Size(131, 20);
     this.ttbNumeroProcesso.TabIndex = 50;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(15, 30);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 49;
     this.label7.Text = "Código";
     //
     // ttbCodigoCusta
     //
     this.ttbCodigoCusta.Enabled = false;
     this.ttbCodigoCusta.Location = new System.Drawing.Point(18, 46);
     this.ttbCodigoCusta.Name = "ttbCodigoCusta";
     this.ttbCodigoCusta.Size = new System.Drawing.Size(74, 20);
     this.ttbCodigoCusta.TabIndex = 48;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.grbPagamento);
     this.groupBox2.Controls.Add(this.rbClientePaga);
     this.groupBox2.Controls.Add(this.ccbPago);
     this.groupBox2.Controls.Add(this.rbAdvogadoPaga);
     this.groupBox2.Location = new System.Drawing.Point(220, 133);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(342, 152);
     this.groupBox2.TabIndex = 47;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Tipo de pagamento *";
     //
     // grbPagamento
     //
     this.grbPagamento.Controls.Add(this.label5);
     this.grbPagamento.Controls.Add(this.label9);
     this.grbPagamento.Controls.Add(this.dtpPagamento);
     this.grbPagamento.Controls.Add(this.ttbValorRecebido);
     this.grbPagamento.Enabled = false;
     this.grbPagamento.Location = new System.Drawing.Point(171, 22);
     this.grbPagamento.Name = "grbPagamento";
     this.grbPagamento.Size = new System.Drawing.Size(157, 124);
     this.grbPagamento.TabIndex = 53;
     this.grbPagamento.TabStop = false;
     this.grbPagamento.Text = "Pagamento já realizado";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(12, 74);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(102, 13);
     this.label5.TabIndex = 58;
     this.label5.Text = "Data de Pagamento";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(12, 30);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(59, 13);
     this.label9.TabIndex = 53;
     this.label9.Text = "Valor Pago";
     //
     // dtpPagamento
     //
     this.dtpPagamento.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtpPagamento.Location = new System.Drawing.Point(15, 90);
     this.dtpPagamento.Name = "dtpPagamento";
     this.dtpPagamento.Size = new System.Drawing.Size(124, 20);
     this.dtpPagamento.TabIndex = 57;
     //
     // ttbValorRecebido
     //
     this.ttbValorRecebido.Location = new System.Drawing.Point(15, 46);
     this.ttbValorRecebido.Mask = "$0000000.00";
     this.ttbValorRecebido.Name = "ttbValorRecebido";
     this.ttbValorRecebido.Size = new System.Drawing.Size(78, 20);
     this.ttbValorRecebido.TabIndex = 54;
     //
     // button1
     //
     this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
     this.button1.Location = new System.Drawing.Point(503, 43);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(59, 39);
     this.button1.TabIndex = 7;
     this.button1.Text = "Localizar";
     this.button1.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.button1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Location = new System.Drawing.Point(12, 387);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(114, 13);
     this.label10.TabIndex = 54;
     this.label10.Text = "Custas deste processo";
     //
     // pnlBotoes
     //
     this.pnlBotoes.BackColor = System.Drawing.SystemColors.Control;
     this.pnlBotoes.Controls.Add(this.btnExcluir);
     this.pnlBotoes.Controls.Add(this.btnSair);
     this.pnlBotoes.Controls.Add(this.btnCancelar);
     this.pnlBotoes.Controls.Add(this.btnLocalizar);
     this.pnlBotoes.Controls.Add(this.btnGravar);
     this.pnlBotoes.Controls.Add(this.btnNovo);
     this.pnlBotoes.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlBotoes.Location = new System.Drawing.Point(0, 0);
     this.pnlBotoes.Name = "pnlBotoes";
     this.pnlBotoes.Size = new System.Drawing.Size(595, 70);
     this.pnlBotoes.TabIndex = 49;
     //
     // btnExcluir
     //
     this.btnExcluir.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnExcluir.Image = ((System.Drawing.Image)(resources.GetObject("btnExcluir.Image")));
     this.btnExcluir.Location = new System.Drawing.Point(300, 0);
     this.btnExcluir.Name = "btnExcluir";
     this.btnExcluir.Size = new System.Drawing.Size(75, 70);
     this.btnExcluir.TabIndex = 7;
     this.btnExcluir.Text = "Excluir";
     this.btnExcluir.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnExcluir.UseVisualStyleBackColor = true;
     this.btnExcluir.Click += new System.EventHandler(this.btnExcluir_Click);
     //
     // btnSair
     //
     this.btnSair.Dock = System.Windows.Forms.DockStyle.Right;
     this.btnSair.Image = ((System.Drawing.Image)(resources.GetObject("btnSair.Image")));
     this.btnSair.Location = new System.Drawing.Point(520, 0);
     this.btnSair.Name = "btnSair";
     this.btnSair.Size = new System.Drawing.Size(75, 70);
     this.btnSair.TabIndex = 6;
     this.btnSair.Text = "Sair";
     this.btnSair.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSair.UseVisualStyleBackColor = true;
     this.btnSair.Click += new System.EventHandler(this.btnSair_Click);
     //
     // btnCancelar
     //
     this.btnCancelar.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnCancelar.Image = ((System.Drawing.Image)(resources.GetObject("btnCancelar.Image")));
     this.btnCancelar.Location = new System.Drawing.Point(225, 0);
     this.btnCancelar.Name = "btnCancelar";
     this.btnCancelar.Size = new System.Drawing.Size(75, 70);
     this.btnCancelar.TabIndex = 4;
     this.btnCancelar.Text = "Cancelar";
     this.btnCancelar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnCancelar.UseVisualStyleBackColor = true;
     this.btnCancelar.Click += new System.EventHandler(this.btnCancelar_Click);
     //
     // btnLocalizar
     //
     this.btnLocalizar.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnLocalizar.Image = ((System.Drawing.Image)(resources.GetObject("btnLocalizar.Image")));
     this.btnLocalizar.Location = new System.Drawing.Point(150, 0);
     this.btnLocalizar.Name = "btnLocalizar";
     this.btnLocalizar.Size = new System.Drawing.Size(75, 70);
     this.btnLocalizar.TabIndex = 2;
     this.btnLocalizar.Text = "Localizar";
     this.btnLocalizar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnLocalizar.UseVisualStyleBackColor = true;
     this.btnLocalizar.Click += new System.EventHandler(this.btnLocalizar_Click);
     //
     // btnGravar
     //
     this.btnGravar.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnGravar.Image = ((System.Drawing.Image)(resources.GetObject("btnGravar.Image")));
     this.btnGravar.Location = new System.Drawing.Point(75, 0);
     this.btnGravar.Name = "btnGravar";
     this.btnGravar.Size = new System.Drawing.Size(75, 70);
     this.btnGravar.TabIndex = 1;
     this.btnGravar.Text = "Gravar";
     this.btnGravar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnGravar.UseVisualStyleBackColor = true;
     this.btnGravar.Click += new System.EventHandler(this.btnGravar_Click);
     //
     // btnNovo
     //
     this.btnNovo.AutoSize = true;
     this.btnNovo.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnNovo.Image = ((System.Drawing.Image)(resources.GetObject("btnNovo.Image")));
     this.btnNovo.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnNovo.Location = new System.Drawing.Point(0, 0);
     this.btnNovo.Name = "btnNovo";
     this.btnNovo.Size = new System.Drawing.Size(75, 70);
     this.btnNovo.TabIndex = 0;
     this.btnNovo.Text = "Novo";
     this.btnNovo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnNovo.UseVisualStyleBackColor = true;
     this.btnNovo.Click += new System.EventHandler(this.btnNovo_Click);
     //
     // dgvResultado1
     //
     this.dgvResultado1.AllowUserToAddRows = false;
     this.dgvResultado1.AllowUserToDeleteRows = false;
     this.dgvResultado1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvResultado1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1,
     this.Column5,
     this.Column6,
     this.Column2,
     this.Column3});
     this.dgvResultado1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dgvResultado1.Location = new System.Drawing.Point(0, 403);
     this.dgvResultado1.MultiSelect = false;
     this.dgvResultado1.Name = "dgvResultado1";
     this.dgvResultado1.ReadOnly = true;
     this.dgvResultado1.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgvResultado1.Size = new System.Drawing.Size(595, 168);
     this.dgvResultado1.TabIndex = 55;
     //
     // Column1
     //
     this.Column1.DataPropertyName = "cus_codigo";
     this.Column1.HeaderText = "Codigo";
     this.Column1.Name = "Column1";
     this.Column1.ReadOnly = true;
     //
     // Column5
     //
     this.Column5.DataPropertyName = "cus_valor";
     this.Column5.HeaderText = "Valor";
     this.Column5.Name = "Column5";
     this.Column5.ReadOnly = true;
     //
     // Column6
     //
     this.Column6.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Column6.DataPropertyName = "cus_descricao";
     this.Column6.HeaderText = "Descricao";
     this.Column6.Name = "Column6";
     this.Column6.ReadOnly = true;
     this.Column6.Visible = false;
     //
     // Column2
     //
     this.Column2.DataPropertyName = "tic_codigo";
     this.Column2.HeaderText = "Codigo do tipo do custo";
     this.Column2.Name = "Column2";
     this.Column2.ReadOnly = true;
     //
     // Column3
     //
     this.Column3.DataPropertyName = "rece_valorrecebido";
     this.Column3.HeaderText = "Valor pago";
     this.Column3.Name = "Column3";
     this.Column3.ReadOnly = true;
     //
     // frmLancamentoCustasProcessos
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(595, 571);
     this.Controls.Add(this.dgvResultado1);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.pnlBotoes);
     this.Controls.Add(this.grbDados);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmLancamentoCustasProcessos";
     this.Text = " Lançamento de custas de processos ";
     this.grbDados.ResumeLayout(false);
     this.grbDados.PerformLayout();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.grbPagamento.ResumeLayout(false);
     this.grbPagamento.PerformLayout();
     this.pnlBotoes.ResumeLayout(false);
     this.pnlBotoes.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvResultado1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 42
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要修改
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.RadioButton radioButton3;
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.trackComboBox         = new System.Windows.Forms.ComboBox();
     this.gBMidiFile            = new System.Windows.Forms.GroupBox();
     this.panel6                = new System.Windows.Forms.Panel();
     this.btnFileSelect         = new System.Windows.Forms.Button();
     this.pathTextBox           = new System.Windows.Forms.TextBox();
     this.label1                = new System.Windows.Forms.Label();
     this.label2                = new System.Windows.Forms.Label();
     this.groupBox1             = new System.Windows.Forms.GroupBox();
     this.panel3                = new System.Windows.Forms.Panel();
     this.btnTimeSync           = new System.Windows.Forms.Button();
     this.numericUpDown2        = new System.Windows.Forms.NumericUpDown();
     this.label8                = new System.Windows.Forms.Label();
     this.btnSyncReady          = new System.Windows.Forms.Button();
     this.label4                = new System.Windows.Forms.Label();
     this.dtpSyncTime           = new System.Windows.Forms.DateTimePicker();
     this.label3                = new System.Windows.Forms.Label();
     this.midFileDiag           = new System.Windows.Forms.OpenFileDialog();
     this.gBParameterSetting    = new System.Windows.Forms.GroupBox();
     this.panel5                = new System.Windows.Forms.Panel();
     this.nudBpm                = new System.Windows.Forms.NumericUpDown();
     this.radioButton2          = new System.Windows.Forms.RadioButton();
     this.radioButton1          = new System.Windows.Forms.RadioButton();
     this.label5                = new System.Windows.Forms.Label();
     this.label7                = new System.Windows.Forms.Label();
     this.cbMidiKeyboard        = new System.Windows.Forms.ComboBox();
     this.gBKeySetting          = new System.Windows.Forms.GroupBox();
     this.btn37Key              = new System.Windows.Forms.Button();
     this.btn13Key              = new System.Windows.Forms.Button();
     this.panel4                = new System.Windows.Forms.Panel();
     this.btnSwitch             = new System.Windows.Forms.Button();
     this.gBKeyboardSetting     = new System.Windows.Forms.GroupBox();
     this.btnKeyboardConnect    = new System.Windows.Forms.Button();
     this.panel2                = new System.Windows.Forms.Panel();
     this.label9                = new System.Windows.Forms.Label();
     this.lblPlay               = new System.Windows.Forms.Label();
     this.btnAbout              = new System.Windows.Forms.Button();
     this.groupBox2             = new System.Windows.Forms.GroupBox();
     this.tbMidiProcess         = new System.Windows.Forms.TrackBar();
     this.timeLabel             = new System.Windows.Forms.Label();
     this.lblMidiName           = new System.Windows.Forms.Label();
     this.btnStop               = new System.Windows.Forms.Button();
     this.btnPause              = new System.Windows.Forms.Button();
     this.btnPlay               = new System.Windows.Forms.Button();
     this.panel1                = new System.Windows.Forms.Panel();
     this.tlblTime              = new System.Windows.Forms.ToolStripStatusLabel();
     this.statusStrip1          = new System.Windows.Forms.StatusStrip();
     this.timeStripStatus       = new System.Windows.Forms.ToolStripStatusLabel();
     this.toolStripSplitButton1 = new System.Windows.Forms.ToolStripSplitButton();
     this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.playTimer             = new System.Windows.Forms.Timer(this.components);
     this.tipTsukkomi           = new System.Windows.Forms.ToolTip(this.components);
     radioButton3               = new System.Windows.Forms.RadioButton();
     this.gBMidiFile.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).BeginInit();
     this.gBParameterSetting.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudBpm)).BeginInit();
     this.gBKeySetting.SuspendLayout();
     this.gBKeyboardSetting.SuspendLayout();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbMidiProcess)).BeginInit();
     this.statusStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // radioButton3
     //
     radioButton3.AutoSize = true;
     radioButton3.Font     = new System.Drawing.Font("Microsoft YaHei", 12F);
     radioButton3.Location = new System.Drawing.Point(258, 70);
     radioButton3.Name     = "radioButton3";
     radioButton3.Size     = new System.Drawing.Size(69, 25);
     radioButton3.TabIndex = 7;
     radioButton3.Text     = "高8度";
     this.tipTsukkomi.SetToolTip(radioButton3, "点这里是设置音高的");
     radioButton3.UseVisualStyleBackColor = true;
     radioButton3.CheckedChanged         += new System.EventHandler(this.radioButton3_CheckedChanged);
     //
     // trackComboBox
     //
     this.trackComboBox.Font              = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.trackComboBox.ForeColor         = System.Drawing.Color.Gray;
     this.trackComboBox.FormattingEnabled = true;
     this.trackComboBox.Location          = new System.Drawing.Point(93, 66);
     this.trackComboBox.Margin            = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.trackComboBox.Name              = "trackComboBox";
     this.trackComboBox.Size              = new System.Drawing.Size(238, 28);
     this.trackComboBox.TabIndex          = 1;
     this.tipTsukkomi.SetToolTip(this.trackComboBox, "点这里选择音轨");
     this.trackComboBox.SelectedIndexChanged += new System.EventHandler(this.trackComboBox_SelectedIndexChanged);
     this.trackComboBox.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TrackComboBox_KeyDown);
     //
     // gBMidiFile
     //
     this.gBMidiFile.Controls.Add(this.panel6);
     this.gBMidiFile.Controls.Add(this.btnFileSelect);
     this.gBMidiFile.Controls.Add(this.pathTextBox);
     this.gBMidiFile.Controls.Add(this.label1);
     this.gBMidiFile.Controls.Add(this.label2);
     this.gBMidiFile.Controls.Add(this.trackComboBox);
     this.gBMidiFile.Dock      = System.Windows.Forms.DockStyle.Top;
     this.gBMidiFile.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.gBMidiFile.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.gBMidiFile.Location  = new System.Drawing.Point(0, 13);
     this.gBMidiFile.Name      = "gBMidiFile";
     this.gBMidiFile.Size      = new System.Drawing.Size(339, 111);
     this.gBMidiFile.TabIndex  = 3;
     this.gBMidiFile.TabStop   = false;
     this.gBMidiFile.Text      = "Midi乐谱选择";
     //
     // panel6
     //
     this.panel6.Location = new System.Drawing.Point(-1, 99);
     this.panel6.Name     = "panel6";
     this.panel6.Size     = new System.Drawing.Size(1346, 13);
     this.panel6.TabIndex = 19;
     //
     // btnFileSelect
     //
     this.btnFileSelect.BackColor = System.Drawing.Color.White;
     this.btnFileSelect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnFileSelect.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnFileSelect.ForeColor = System.Drawing.Color.Black;
     this.btnFileSelect.Location  = new System.Drawing.Point(286, 31);
     this.btnFileSelect.Name      = "btnFileSelect";
     this.btnFileSelect.Size      = new System.Drawing.Size(45, 26);
     this.btnFileSelect.TabIndex  = 7;
     this.btnFileSelect.Text      = "···";
     this.btnFileSelect.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     this.tipTsukkomi.SetToolTip(this.btnFileSelect, "点这里选择Midi文件或者mml文件");
     this.btnFileSelect.UseVisualStyleBackColor = false;
     this.btnFileSelect.Click += new System.EventHandler(this.selectFileButton_Click);
     //
     // pathTextBox
     //
     this.pathTextBox.Enabled   = false;
     this.pathTextBox.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.pathTextBox.ForeColor = System.Drawing.Color.Gray;
     this.pathTextBox.Location  = new System.Drawing.Point(93, 31);
     this.pathTextBox.Name      = "pathTextBox";
     this.pathTextBox.Size      = new System.Drawing.Size(176, 26);
     this.pathTextBox.TabIndex  = 6;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F);
     this.label1.ForeColor = System.Drawing.Color.Gray;
     this.label1.Location  = new System.Drawing.Point(16, 34);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(65, 20);
     this.label1.TabIndex  = 5;
     this.label1.Text      = "导入文件";
     //
     // label2
     //
     this.label2.AutoSize  = true;
     this.label2.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F);
     this.label2.ForeColor = System.Drawing.Color.Gray;
     this.label2.Location  = new System.Drawing.Point(16, 69);
     this.label2.Name      = "label2";
     this.label2.Size      = new System.Drawing.Size(65, 20);
     this.label2.TabIndex  = 4;
     this.label2.Text      = "选择音轨";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.panel3);
     this.groupBox1.Controls.Add(this.btnTimeSync);
     this.groupBox1.Controls.Add(this.numericUpDown2);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.btnSyncReady);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.dtpSyncTime);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.groupBox1.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold);
     this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.groupBox1.Location  = new System.Drawing.Point(0, 323);
     this.groupBox1.Name      = "groupBox1";
     this.groupBox1.Size      = new System.Drawing.Size(339, 135);
     this.groupBox1.TabIndex  = 4;
     this.groupBox1.TabStop   = false;
     this.groupBox1.Text      = "同步演奏";
     //
     // panel3
     //
     this.panel3.Location = new System.Drawing.Point(0, 123);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(1346, 13);
     this.panel3.TabIndex = 16;
     //
     // btnTimeSync
     //
     this.btnTimeSync.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
     this.btnTimeSync.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnTimeSync.Font      = new System.Drawing.Font("Microsoft YaHei", 10F);
     this.btnTimeSync.ForeColor = System.Drawing.Color.White;
     this.btnTimeSync.Location  = new System.Drawing.Point(250, 51);
     this.btnTimeSync.Name      = "btnTimeSync";
     this.btnTimeSync.Size      = new System.Drawing.Size(81, 29);
     this.btnTimeSync.TabIndex  = 6;
     this.btnTimeSync.Text      = "网络同步";
     this.tipTsukkomi.SetToolTip(this.btnTimeSync, "开启或停止网络同步\r\n点击后\r\n1.接收到合奏停止数据包后自动停止\r\n2.接收到标点数据包后自动停止\r\n3.接收到小队倒计时后数据包后自动开始定时\r\n点一次就行了" +
                                 "!\r\n一次!");
     this.btnTimeSync.UseVisualStyleBackColor = false;
     this.btnTimeSync.Click += new System.EventHandler(this.BtnTimeSync_Click);
     //
     // numericUpDown2
     //
     this.numericUpDown2.Font     = new System.Drawing.Font("Microsoft YaHei", 10.5F);
     this.numericUpDown2.Location = new System.Drawing.Point(93, 90);
     this.numericUpDown2.Maximum  = new decimal(new int[] {
         10000,
         0,
         0,
         0
     });
     this.numericUpDown2.Minimum = new decimal(new int[] {
         10000,
         0,
         0,
         -2147483648
     });
     this.numericUpDown2.Name     = "numericUpDown2";
     this.numericUpDown2.Size     = new System.Drawing.Size(128, 26);
     this.numericUpDown2.TabIndex = 5;
     this.tipTsukkomi.SetToolTip(this.numericUpDown2, "海外党适用\r\n当队员们与服务器延迟过大的时候\r\n用于补正Ping值\r\n设置方法为全员平均Ping值-每个人的Ping值");
     //
     // label8
     //
     this.label8.AutoSize  = true;
     this.label8.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F);
     this.label8.ForeColor = System.Drawing.Color.Gray;
     this.label8.Location  = new System.Drawing.Point(16, 91);
     this.label8.Name      = "label8";
     this.label8.Size      = new System.Drawing.Size(65, 20);
     this.label8.TabIndex  = 4;
     this.label8.Text      = "网络延迟";
     //
     // btnSyncReady
     //
     this.btnSyncReady.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
     this.btnSyncReady.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnSyncReady.Font      = new System.Drawing.Font("Microsoft YaHei", 10F);
     this.btnSyncReady.ForeColor = System.Drawing.Color.White;
     this.btnSyncReady.Location  = new System.Drawing.Point(250, 88);
     this.btnSyncReady.Name      = "btnSyncReady";
     this.btnSyncReady.Size      = new System.Drawing.Size(81, 29);
     this.btnSyncReady.TabIndex  = 3;
     this.btnSyncReady.Text      = "准备好了";
     this.tipTsukkomi.SetToolTip(this.btnSyncReady, "点击后进游戏等待就可以了\r\n点一次就行了嗷!\r\n——————————\r\n我明明写了点一次还有人点好多次说有BUG\r\n你说你是不是傻肥\r\n好了BUG修好了点一百次也" +
                                 "没问题了!");
     this.btnSyncReady.UseVisualStyleBackColor = false;
     this.btnSyncReady.Click     += new System.EventHandler(this.btnSyncReady_Click);
     this.btnSyncReady.MouseDown += new System.Windows.Forms.MouseEventHandler(this.btnSyncReady_MouseClick);
     //
     // label4
     //
     this.label4.AutoSize     = true;
     this.label4.Font         = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label4.ForeColor    = System.Drawing.Color.Gray;
     this.label4.Location     = new System.Drawing.Point(16, 60);
     this.label4.Name         = "label4";
     this.label4.Size         = new System.Drawing.Size(65, 20);
     this.label4.TabIndex     = 2;
     this.label4.Text         = "演奏时间";
     this.label4.Click       += new System.EventHandler(this.label4_Click);
     this.label4.DoubleClick += new System.EventHandler(this.label4_DoubleClick);
     //
     // dtpSyncTime
     //
     this.dtpSyncTime.CalendarFont = new System.Drawing.Font("Microsoft YaHei", 10.5F);
     this.dtpSyncTime.CustomFormat = "HH-mm-ss";
     this.dtpSyncTime.Font         = new System.Drawing.Font("Microsoft YaHei", 10.5F);
     this.dtpSyncTime.Format       = System.Windows.Forms.DateTimePickerFormat.Time;
     this.dtpSyncTime.Location     = new System.Drawing.Point(93, 55);
     this.dtpSyncTime.Name         = "dtpSyncTime";
     this.dtpSyncTime.ShowUpDown   = true;
     this.dtpSyncTime.Size         = new System.Drawing.Size(128, 26);
     this.dtpSyncTime.TabIndex     = 1;
     this.tipTsukkomi.SetToolTip(this.dtpSyncTime, "合奏用\r\n与队友们设定同样的时间后\r\n点击[准备好了],就可以自动合奏\r\n*时间支持复制粘贴*\r\n点一下按Ctrl+C,不用全选!");
     this.dtpSyncTime.KeyDown += new System.Windows.Forms.KeyEventHandler(this.DateTimePicker1_KeyDown);
     //
     // label3
     //
     this.label3.AutoSize  = true;
     this.label3.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label3.ForeColor = System.Drawing.Color.Gray;
     this.label3.Location  = new System.Drawing.Point(14, 30);
     this.label3.Name      = "label3";
     this.label3.Size      = new System.Drawing.Size(233, 20);
     this.label3.TabIndex  = 0;
     this.label3.Text      = "通过定时或网络功能来同步的演奏吧";
     //
     // midFileDiag
     //
     this.midFileDiag.FileName = "此处广告位招租";
     this.midFileDiag.Filter   = "mid文件.mml文件|*.mid;*.mml";
     //
     // gBParameterSetting
     //
     this.gBParameterSetting.Controls.Add(this.panel5);
     this.gBParameterSetting.Controls.Add(radioButton3);
     this.gBParameterSetting.Controls.Add(this.nudBpm);
     this.gBParameterSetting.Controls.Add(this.radioButton2);
     this.gBParameterSetting.Controls.Add(this.radioButton1);
     this.gBParameterSetting.Controls.Add(this.label5);
     this.gBParameterSetting.Controls.Add(this.label7);
     this.gBParameterSetting.Dock      = System.Windows.Forms.DockStyle.Top;
     this.gBParameterSetting.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold);
     this.gBParameterSetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.gBParameterSetting.Location  = new System.Drawing.Point(0, 124);
     this.gBParameterSetting.Name      = "gBParameterSetting";
     this.gBParameterSetting.Size      = new System.Drawing.Size(339, 109);
     this.gBParameterSetting.TabIndex  = 5;
     this.gBParameterSetting.TabStop   = false;
     this.gBParameterSetting.Text      = "播放属性设置";
     //
     // panel5
     //
     this.panel5.Location = new System.Drawing.Point(-8, 98);
     this.panel5.Name     = "panel5";
     this.panel5.Size     = new System.Drawing.Size(1346, 13);
     this.panel5.TabIndex = 18;
     //
     // nudBpm
     //
     this.nudBpm.Font      = new System.Drawing.Font("Microsoft YaHei", 12F);
     this.nudBpm.ForeColor = System.Drawing.Color.Gray;
     this.nudBpm.Location  = new System.Drawing.Point(182, 33);
     this.nudBpm.Maximum   = new decimal(new int[] {
         250,
         0,
         0,
         0
     });
     this.nudBpm.Minimum = new decimal(new int[] {
         40,
         0,
         0,
         0
     });
     this.nudBpm.Name     = "nudBpm";
     this.nudBpm.Size     = new System.Drawing.Size(149, 29);
     this.nudBpm.TabIndex = 9;
     this.tipTsukkomi.SetToolTip(this.nudBpm, "点这里可以设置速度");
     this.nudBpm.Value = new decimal(new int[] {
         80,
         0,
         0,
         0
     });
     this.nudBpm.ValueChanged += new System.EventHandler(this.numericUpDown1_ValueChanged);
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Checked  = true;
     this.radioButton2.Font     = new System.Drawing.Font("Microsoft YaHei", 12F);
     this.radioButton2.Location = new System.Drawing.Point(180, 70);
     this.radioButton2.Name     = "radioButton2";
     this.radioButton2.Size     = new System.Drawing.Size(60, 25);
     this.radioButton2.TabIndex = 6;
     this.radioButton2.TabStop  = true;
     this.radioButton2.Text     = "原始";
     this.tipTsukkomi.SetToolTip(this.radioButton2, "点这里是设置音高的");
     this.radioButton2.UseVisualStyleBackColor = true;
     this.radioButton2.CheckedChanged         += new System.EventHandler(this.radioButton2_CheckedChanged);
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Font     = new System.Drawing.Font("Microsoft YaHei", 12F);
     this.radioButton1.Location = new System.Drawing.Point(93, 70);
     this.radioButton1.Name     = "radioButton1";
     this.radioButton1.Size     = new System.Drawing.Size(69, 25);
     this.radioButton1.TabIndex = 5;
     this.radioButton1.Text     = "低8度";
     this.tipTsukkomi.SetToolTip(this.radioButton1, "点这里是设置音高的");
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.CheckedChanged         += new System.EventHandler(this.radioButton1_CheckedChanged);
     //
     // label5
     //
     this.label5.AutoSize  = true;
     this.label5.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label5.ForeColor = System.Drawing.Color.Gray;
     this.label5.Location  = new System.Drawing.Point(16, 70);
     this.label5.Name      = "label5";
     this.label5.Size      = new System.Drawing.Size(65, 20);
     this.label5.TabIndex  = 1;
     this.label5.Text      = "音高调整";
     this.tipTsukkomi.SetToolTip(this.label5, "点这里是设置音高的");
     //
     // label7
     //
     this.label7.AutoSize  = true;
     this.label7.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label7.ForeColor = System.Drawing.Color.Gray;
     this.label7.Location  = new System.Drawing.Point(16, 36);
     this.label7.Name      = "label7";
     this.label7.Size      = new System.Drawing.Size(161, 20);
     this.label7.TabIndex  = 2;
     this.label7.Text      = "设置BPM,范围40~250";
     //
     // cbMidiKeyboard
     //
     this.cbMidiKeyboard.Font              = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.cbMidiKeyboard.ForeColor         = System.Drawing.Color.Gray;
     this.cbMidiKeyboard.FormattingEnabled = true;
     this.cbMidiKeyboard.Location          = new System.Drawing.Point(93, 35);
     this.cbMidiKeyboard.Margin            = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.cbMidiKeyboard.Name              = "cbMidiKeyboard";
     this.cbMidiKeyboard.Size              = new System.Drawing.Size(154, 28);
     this.cbMidiKeyboard.TabIndex          = 8;
     this.tipTsukkomi.SetToolTip(this.cbMidiKeyboard, "如果你有Midi键盘可以插上在这里连接\r\n没有的就不要凑热闹了!\r\n蓝牙的不行!LaunchPad你自己说你是Midi键盘吗!\r\n樱桃键盘不行!Filco也不行!" +
                                 "\r\nHHKB也不行!带不带RGB都不行!\r\n王总这不是钱的问题!\r\n");
     this.cbMidiKeyboard.SelectedIndexChanged += new System.EventHandler(this.cbMidiKeyboard_SelectedIndexChanged);
     //
     // gBKeySetting
     //
     this.gBKeySetting.Controls.Add(this.btn37Key);
     this.gBKeySetting.Controls.Add(this.btn13Key);
     this.gBKeySetting.Controls.Add(this.panel4);
     this.gBKeySetting.Controls.Add(this.btnSwitch);
     this.gBKeySetting.Dock      = System.Windows.Forms.DockStyle.Top;
     this.gBKeySetting.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold);
     this.gBKeySetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.gBKeySetting.Location  = new System.Drawing.Point(0, 233);
     this.gBKeySetting.Name      = "gBKeySetting";
     this.gBKeySetting.Size      = new System.Drawing.Size(339, 90);
     this.gBKeySetting.TabIndex  = 10;
     this.gBKeySetting.TabStop   = false;
     this.gBKeySetting.Text      = "游戏键位设置";
     //
     // btn37Key
     //
     this.btn37Key.BackColor = System.Drawing.Color.Silver;
     this.btn37Key.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn37Key.Font      = new System.Drawing.Font("Microsoft YaHei", 11.5F);
     this.btn37Key.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.btn37Key.Location  = new System.Drawing.Point(238, 34);
     this.btn37Key.Name      = "btn37Key";
     this.btn37Key.Size      = new System.Drawing.Size(93, 36);
     this.btn37Key.TabIndex  = 18;
     this.btn37Key.Text      = "37键布局";
     this.tipTsukkomi.SetToolTip(this.btn37Key, "是开启全音阶的布局啦");
     this.btn37Key.UseVisualStyleBackColor = false;
     this.btn37Key.Click += new System.EventHandler(this.btn37key_Click);
     //
     // btn13Key
     //
     this.btn13Key.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
     this.btn13Key.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn13Key.Font      = new System.Drawing.Font("Microsoft YaHei", 11.5F);
     this.btn13Key.ForeColor = System.Drawing.Color.WhiteSmoke;
     this.btn13Key.Location  = new System.Drawing.Point(20, 34);
     this.btn13Key.Name      = "btn13Key";
     this.btn13Key.Size      = new System.Drawing.Size(93, 36);
     this.btn13Key.TabIndex  = 17;
     this.btn13Key.Text      = "13键布局";
     this.tipTsukkomi.SetToolTip(this.btn13Key, "就是默认的那个键位布局啦");
     this.btn13Key.UseVisualStyleBackColor = false;
     this.btn13Key.Click += new System.EventHandler(this.keyForm13Button_Click);
     //
     // panel4
     //
     this.panel4.Location = new System.Drawing.Point(0, 80);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(1346, 13);
     this.panel4.TabIndex = 17;
     //
     // btnSwitch
     //
     this.btnSwitch.BackColor             = System.Drawing.Color.Transparent;
     this.btnSwitch.BackgroundImage       = global::Daigassou.Properties.Resources.a0;
     this.btnSwitch.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom;
     this.btnSwitch.FlatStyle             = System.Windows.Forms.FlatStyle.Flat;
     this.btnSwitch.Font      = new System.Drawing.Font("Microsoft YaHei", 10F);
     this.btnSwitch.ForeColor = System.Drawing.Color.White;
     this.btnSwitch.Location  = new System.Drawing.Point(128, 34);
     this.btnSwitch.Name      = "btnSwitch";
     this.btnSwitch.Size      = new System.Drawing.Size(95, 36);
     this.btnSwitch.TabIndex  = 6;
     this.tipTsukkomi.SetToolTip(this.btnSwitch, "点一下可以切换8键和22键\r\n我当然是建议用22键啦!");
     this.btnSwitch.UseVisualStyleBackColor = false;
     this.btnSwitch.Click += new System.EventHandler(this.btnSwitch_Click);
     //
     // gBKeyboardSetting
     //
     this.gBKeyboardSetting.Controls.Add(this.btnKeyboardConnect);
     this.gBKeyboardSetting.Controls.Add(this.panel2);
     this.gBKeyboardSetting.Controls.Add(this.label9);
     this.gBKeyboardSetting.Controls.Add(this.cbMidiKeyboard);
     this.gBKeyboardSetting.Dock      = System.Windows.Forms.DockStyle.Top;
     this.gBKeyboardSetting.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold);
     this.gBKeyboardSetting.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.gBKeyboardSetting.Location  = new System.Drawing.Point(0, 458);
     this.gBKeyboardSetting.Name      = "gBKeyboardSetting";
     this.gBKeyboardSetting.Size      = new System.Drawing.Size(339, 79);
     this.gBKeyboardSetting.TabIndex  = 11;
     this.gBKeyboardSetting.TabStop   = false;
     this.gBKeyboardSetting.Text      = "Midi键盘选择";
     //
     // btnKeyboardConnect
     //
     this.btnKeyboardConnect.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(110)))), ((int)(((byte)(128)))));
     this.btnKeyboardConnect.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnKeyboardConnect.Font      = new System.Drawing.Font("Microsoft YaHei", 10F);
     this.btnKeyboardConnect.ForeColor = System.Drawing.Color.White;
     this.btnKeyboardConnect.Location  = new System.Drawing.Point(250, 35);
     this.btnKeyboardConnect.Name      = "btnKeyboardConnect";
     this.btnKeyboardConnect.Size      = new System.Drawing.Size(81, 30);
     this.btnKeyboardConnect.TabIndex  = 17;
     this.btnKeyboardConnect.Text      = "开始连接";
     this.tipTsukkomi.SetToolTip(this.btnKeyboardConnect, "如果你有Midi键盘或其他Midi设备可以插上在这里连接\r\n没有的就不要凑热闹了!\r\n蓝牙的不行!LaunchPad你自己说你是Midi键盘吗!\r\n樱桃键盘不行!" +
                                 "Filco也不行!\r\nHHKB也不行!带不带RGB都不行!\r\n王总这不是钱的问题!\r\n\r\n");
     this.btnKeyboardConnect.UseVisualStyleBackColor = false;
     this.btnKeyboardConnect.Click += new System.EventHandler(this.btnKeyboardConnect_Click);
     //
     // panel2
     //
     this.panel2.Location = new System.Drawing.Point(0, 72);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(1346, 13);
     this.panel2.TabIndex = 15;
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.label9.ForeColor = System.Drawing.Color.Gray;
     this.label9.Location  = new System.Drawing.Point(16, 38);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(65, 20);
     this.label9.TabIndex  = 0;
     this.label9.Text      = "键盘选择";
     //
     // lblPlay
     //
     this.lblPlay.BackColor = System.Drawing.Color.Transparent;
     this.lblPlay.Font      = new System.Drawing.Font("Microsoft YaHei", 10F);
     this.lblPlay.Location  = new System.Drawing.Point(239, 42);
     this.lblPlay.Name      = "lblPlay";
     this.lblPlay.Size      = new System.Drawing.Size(100, 22);
     this.lblPlay.TabIndex  = 25;
     this.lblPlay.Text      = "试听停止";
     this.lblPlay.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblPlay.Visible   = false;
     //
     // btnAbout
     //
     this.btnAbout.BackColor = System.Drawing.Color.Transparent;
     this.btnAbout.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.btnAbout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAbout.Font      = new System.Drawing.Font("Microsoft YaHei", 10.5F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.btnAbout.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.btnAbout.Location  = new System.Drawing.Point(0, 657);
     this.btnAbout.Name      = "btnAbout";
     this.btnAbout.Size      = new System.Drawing.Size(339, 30);
     this.btnAbout.TabIndex  = 13;
     this.btnAbout.Text      = "关于大合奏";
     this.btnAbout.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.tipTsukkomi.SetToolTip(this.btnAbout, "求你了点我一下看看吧!\r\n两只猫娘可爱死了!");
     this.btnAbout.UseVisualStyleBackColor = false;
     this.btnAbout.Click += new System.EventHandler(this.button1_Click);
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.lblMidiName);
     this.groupBox2.Controls.Add(this.timeLabel);
     this.groupBox2.Controls.Add(this.btnStop);
     this.groupBox2.Controls.Add(this.btnPause);
     this.groupBox2.Controls.Add(this.btnPlay);
     this.groupBox2.Controls.Add(this.tbMidiProcess);
     this.groupBox2.Controls.Add(this.lblPlay);
     this.groupBox2.Dock      = System.Windows.Forms.DockStyle.Top;
     this.groupBox2.Font      = new System.Drawing.Font("Microsoft YaHei", 12F, System.Drawing.FontStyle.Bold);
     this.groupBox2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(243)))), ((int)(((byte)(75)))), ((int)(((byte)(107)))));
     this.groupBox2.Location  = new System.Drawing.Point(0, 537);
     this.groupBox2.Name      = "groupBox2";
     this.groupBox2.Size      = new System.Drawing.Size(339, 120);
     this.groupBox2.TabIndex  = 12;
     this.groupBox2.TabStop   = false;
     this.groupBox2.Text      = "Midi轨道试听";
     //
     // tbMidiProcess
     //
     this.tbMidiProcess.BackColor = System.Drawing.Color.White;
     this.tbMidiProcess.Location  = new System.Drawing.Point(9, 75);
     this.tbMidiProcess.Maximum   = 100;
     this.tbMidiProcess.Name      = "tbMidiProcess";
     this.tbMidiProcess.Size      = new System.Drawing.Size(260, 45);
     this.tbMidiProcess.TabIndex  = 28;
     this.tbMidiProcess.TickStyle = System.Windows.Forms.TickStyle.None;
     this.tipTsukkomi.SetToolTip(this.tbMidiProcess, "我给你讲哦这个东西叫进度条的说\r\n只要用力拖就可以改变试听的位置嗷!");
     this.tbMidiProcess.Visible = false;
     this.tbMidiProcess.Scroll += new System.EventHandler(this.tbMidiProcess_Scroll);
     //
     // timeLabel
     //
     this.timeLabel.AutoSize  = true;
     this.timeLabel.Font      = new System.Drawing.Font("Microsoft YaHei", 9.5F);
     this.timeLabel.ForeColor = System.Drawing.Color.Gray;
     this.timeLabel.Location  = new System.Drawing.Point(275, 75);
     this.timeLabel.Name      = "timeLabel";
     this.timeLabel.Size      = new System.Drawing.Size(29, 19);
     this.timeLabel.TabIndex  = 27;
     this.timeLabel.Text      = "     ";
     //
     // lblMidiName
     //
     this.lblMidiName.BackColor = System.Drawing.Color.Transparent;
     this.lblMidiName.Font      = new System.Drawing.Font("Microsoft YaHei", 11F, System.Drawing.FontStyle.Bold);
     this.lblMidiName.ForeColor = System.Drawing.Color.Gray;
     this.lblMidiName.Location  = new System.Drawing.Point(6, 93);
     this.lblMidiName.Name      = "lblMidiName";
     this.lblMidiName.Size      = new System.Drawing.Size(333, 22);
     this.lblMidiName.TabIndex  = 26;
     this.lblMidiName.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // btnStop
     //
     this.btnStop.BackColor             = System.Drawing.Color.Transparent;
     this.btnStop.BackgroundImage       = global::Daigassou.Properties.Resources.c_stop;
     this.btnStop.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnStop.FlatStyle             = System.Windows.Forms.FlatStyle.Flat;
     this.btnStop.ForeColor             = System.Drawing.Color.Transparent;
     this.btnStop.Location = new System.Drawing.Point(68, 33);
     this.btnStop.Name     = "btnStop";
     this.btnStop.Size     = new System.Drawing.Size(40, 40);
     this.btnStop.TabIndex = 24;
     this.btnStop.UseVisualStyleBackColor = false;
     this.btnStop.Click += new System.EventHandler(this.btnStop_Click);
     //
     // btnPause
     //
     this.btnPause.BackgroundImage       = global::Daigassou.Properties.Resources.c_pause;
     this.btnPause.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnPause.FlatStyle             = System.Windows.Forms.FlatStyle.Flat;
     this.btnPause.ForeColor             = System.Drawing.Color.Transparent;
     this.btnPause.Location = new System.Drawing.Point(238, 32);
     this.btnPause.Name     = "btnPause";
     this.btnPause.Size     = new System.Drawing.Size(40, 40);
     this.btnPause.TabIndex = 23;
     this.btnPause.UseVisualStyleBackColor = true;
     this.btnPause.Click += new System.EventHandler(this.btnPause_Click);
     //
     // btnPlay
     //
     this.btnPlay.AutoSize              = true;
     this.btnPlay.BackColor             = System.Drawing.Color.White;
     this.btnPlay.BackgroundImage       = global::Daigassou.Properties.Resources.c_play;
     this.btnPlay.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnPlay.FlatStyle             = System.Windows.Forms.FlatStyle.Flat;
     this.btnPlay.ForeColor             = System.Drawing.Color.White;
     this.btnPlay.Location              = new System.Drawing.Point(153, 33);
     this.btnPlay.Name     = "btnPlay";
     this.btnPlay.Size     = new System.Drawing.Size(40, 40);
     this.btnPlay.TabIndex = 22;
     this.tipTsukkomi.SetToolTip(this.btnPlay, "这是西瓜视频的Logo\r\n真的不是试听的播放键");
     this.btnPlay.UseVisualStyleBackColor = false;
     this.btnPlay.Click += new System.EventHandler(this.btnPlay_Click);
     //
     // panel1
     //
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(339, 13);
     this.panel1.TabIndex = 14;
     //
     // tlblTime
     //
     this.tlblTime.BackColor = System.Drawing.Color.Transparent;
     this.tlblTime.Font      = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tlblTime.ForeColor = System.Drawing.Color.Gray;
     this.tlblTime.Name      = "tlblTime";
     this.tlblTime.Size      = new System.Drawing.Size(68, 21);
     this.tlblTime.Text      = "时钟未同步";
     //
     // statusStrip1
     //
     this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tlblTime,
         this.timeStripStatus,
         this.toolStripSplitButton1,
         this.toolStripStatusLabel1
     });
     this.statusStrip1.Location = new System.Drawing.Point(0, 687);
     this.statusStrip1.Name     = "statusStrip1";
     this.statusStrip1.Size     = new System.Drawing.Size(339, 26);
     this.statusStrip1.TabIndex = 18;
     this.statusStrip1.Text     = "statusStrip1";
     //
     // timeStripStatus
     //
     this.timeStripStatus.BackColor   = System.Drawing.Color.Transparent;
     this.timeStripStatus.Name        = "timeStripStatus";
     this.timeStripStatus.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.timeStripStatus.Size        = new System.Drawing.Size(49, 21);
     this.timeStripStatus.Text        = "20:00:00";
     //
     // toolStripSplitButton1
     //
     this.toolStripSplitButton1.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripSplitButton1.Image                 = global::Daigassou.Properties.Resources.s2;
     this.toolStripSplitButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripSplitButton1.Name         = "toolStripSplitButton1";
     this.toolStripSplitButton1.Size         = new System.Drawing.Size(36, 24);
     this.toolStripSplitButton1.Text         = "toolStripSplitButton1";
     this.toolStripSplitButton1.ButtonClick += new System.EventHandler(this.ToolStripSplitButton1_ButtonClick);
     //
     // toolStripStatusLabel1
     //
     this.toolStripStatusLabel1.AutoSize              = false;
     this.toolStripStatusLabel1.BackColor             = System.Drawing.Color.Transparent;
     this.toolStripStatusLabel1.Image                 = global::Daigassou.Properties.Resources.icons8_advertisement_page_90;
     this.toolStripStatusLabel1.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.toolStripStatusLabel1.Name        = "toolStripStatusLabel1";
     this.toolStripStatusLabel1.Size        = new System.Drawing.Size(24, 21);
     this.toolStripStatusLabel1.ToolTipText = "内测版的悬浮窗功能\r\n不是内测用户不要点";
     this.toolStripStatusLabel1.Click      += new System.EventHandler(this.toolStripStatusLabel1_Click);
     //
     // playTimer
     //
     this.playTimer.Enabled = true;
     this.playTimer.Tick   += new System.EventHandler(this.PlayTimer_Tick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 17F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(339, 713);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.btnAbout);
     this.Controls.Add(this.gBKeyboardSetting);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.gBKeySetting);
     this.Controls.Add(this.gBParameterSetting);
     this.Controls.Add(this.gBMidiFile);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.statusStrip1);
     this.Font            = new System.Drawing.Font("Microsoft YaHei", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin          = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.MaximizeBox     = false;
     this.Name            = "MainForm";
     this.Text            = "大合奏!";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.Form1_FormClosing);
     this.Load           += new System.EventHandler(this.MainForm_Load);
     this.gBMidiFile.ResumeLayout(false);
     this.gBMidiFile.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown2)).EndInit();
     this.gBParameterSetting.ResumeLayout(false);
     this.gBParameterSetting.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.nudBpm)).EndInit();
     this.gBKeySetting.ResumeLayout(false);
     this.gBKeyboardSetting.ResumeLayout(false);
     this.gBKeyboardSetting.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.tbMidiProcess)).EndInit();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.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()
 {
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[] {
     "身分證號"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("畢業班級");
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("座號");
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("學號");
     System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[] {
     "姓名"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem("戶籍電話");
     System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem("聯絡電話");
     System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem("行動電話");
     System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem("其它電話1");
     System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem("其它電話2");
     System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem("其它電話3");
     System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem("監護人電話");
     System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem("父親電話");
     System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem("母親電話");
     System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[] {
     "填報學年度"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[] {
     "畢業生目前動向"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[] {
     "是否需要教育部協助"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[] {
     "備註"}, -1, System.Drawing.Color.Red, System.Drawing.Color.Empty, null);
     this.chkSelectAll = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.btnExport = new DevComponents.DotNetBar.ButtonX();
     this.btnExit = new DevComponents.DotNetBar.ButtonX();
     this.FieldContainer = new System.Windows.Forms.ListView();
     this.lblExplanation = new DevComponents.DotNetBar.LabelX();
     this.circularProgress = new DevComponents.DotNetBar.Controls.CircularProgress();
     this.nudSchoolYear = new System.Windows.Forms.NumericUpDown();
     this.lblSchoolYear = new DevComponents.DotNetBar.LabelX();
     this.radioAllStudentInOneFile = new System.Windows.Forms.RadioButton();
     this.radioOneClassInOneFile = new System.Windows.Forms.RadioButton();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).BeginInit();
     this.SuspendLayout();
     //
     // chkSelectAll
     //
     this.chkSelectAll.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.chkSelectAll.AutoSize = true;
     this.chkSelectAll.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.chkSelectAll.BackgroundStyle.Class = "";
     this.chkSelectAll.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkSelectAll.Checked = true;
     this.chkSelectAll.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkSelectAll.CheckValue = "Y";
     this.chkSelectAll.Location = new System.Drawing.Point(136, 15);
     this.chkSelectAll.Name = "chkSelectAll";
     this.chkSelectAll.Size = new System.Drawing.Size(54, 21);
     this.chkSelectAll.TabIndex = 3;
     this.chkSelectAll.Text = "全選";
     this.chkSelectAll.CheckedChanged += new System.EventHandler(this.chkSelectAll_CheckedChanged);
     //
     // btnExport
     //
     this.btnExport.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExport.AutoSize = true;
     this.btnExport.BackColor = System.Drawing.Color.Transparent;
     this.btnExport.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExport.Location = new System.Drawing.Point(298, 356);
     this.btnExport.Name = "btnExport";
     this.btnExport.Size = new System.Drawing.Size(75, 25);
     this.btnExport.TabIndex = 4;
     this.btnExport.Text = "匯出";
     this.btnExport.Click += new System.EventHandler(this.btnExport_Click);
     //
     // btnExit
     //
     this.btnExit.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.btnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnExit.AutoSize = true;
     this.btnExit.BackColor = System.Drawing.Color.Transparent;
     this.btnExit.ColorTable = DevComponents.DotNetBar.eButtonColor.OrangeWithBackground;
     this.btnExit.Location = new System.Drawing.Point(383, 356);
     this.btnExit.Name = "btnExit";
     this.btnExit.Size = new System.Drawing.Size(75, 25);
     this.btnExit.TabIndex = 5;
     this.btnExit.Text = "關閉";
     this.btnExit.Click += new System.EventHandler(this.btnExit_Click);
     //
     // FieldContainer
     //
     this.FieldContainer.CheckBoxes = true;
     this.FieldContainer.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.None;
     this.FieldContainer.HideSelection = false;
     listViewItem1.Checked = true;
     listViewItem1.StateImageIndex = 1;
     listViewItem2.StateImageIndex = 0;
     listViewItem3.StateImageIndex = 0;
     listViewItem4.StateImageIndex = 0;
     listViewItem5.Checked = true;
     listViewItem5.StateImageIndex = 1;
     listViewItem6.StateImageIndex = 0;
     listViewItem7.StateImageIndex = 0;
     listViewItem8.StateImageIndex = 0;
     listViewItem9.StateImageIndex = 0;
     listViewItem10.StateImageIndex = 0;
     listViewItem11.StateImageIndex = 0;
     listViewItem12.StateImageIndex = 0;
     listViewItem13.StateImageIndex = 0;
     listViewItem14.StateImageIndex = 0;
     listViewItem15.Checked = true;
     listViewItem15.StateImageIndex = 1;
     listViewItem16.Checked = true;
     listViewItem16.StateImageIndex = 1;
     listViewItem17.Checked = true;
     listViewItem17.StateImageIndex = 1;
     listViewItem18.Checked = true;
     listViewItem18.StateImageIndex = 1;
     this.FieldContainer.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4,
     listViewItem5,
     listViewItem6,
     listViewItem7,
     listViewItem8,
     listViewItem9,
     listViewItem10,
     listViewItem11,
     listViewItem12,
     listViewItem13,
     listViewItem14,
     listViewItem15,
     listViewItem16,
     listViewItem17,
     listViewItem18});
     this.FieldContainer.Location = new System.Drawing.Point(34, 51);
     this.FieldContainer.Name = "FieldContainer";
     this.FieldContainer.Size = new System.Drawing.Size(424, 260);
     this.FieldContainer.TabIndex = 19;
     this.FieldContainer.UseCompatibleStateImageBehavior = false;
     this.FieldContainer.View = System.Windows.Forms.View.List;
     this.FieldContainer.ItemChecked += new System.Windows.Forms.ItemCheckedEventHandler(this.FieldContainer_ItemChecked);
     //
     // lblExplanation
     //
     this.lblExplanation.AutoSize = true;
     this.lblExplanation.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblExplanation.BackgroundStyle.Class = "";
     this.lblExplanation.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblExplanation.Location = new System.Drawing.Point(34, 15);
     this.lblExplanation.Name = "lblExplanation";
     this.lblExplanation.Size = new System.Drawing.Size(101, 21);
     this.lblExplanation.TabIndex = 20;
     this.lblExplanation.Text = "請選擇匯出欄位";
     //
     // circularProgress
     //
     this.circularProgress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.circularProgress.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.circularProgress.BackgroundStyle.Class = "";
     this.circularProgress.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.circularProgress.Location = new System.Drawing.Point(249, 358);
     this.circularProgress.Name = "circularProgress";
     this.circularProgress.Size = new System.Drawing.Size(43, 23);
     this.circularProgress.Style = DevComponents.DotNetBar.eDotNetBarStyle.OfficeXP;
     this.circularProgress.TabIndex = 33;
     this.circularProgress.Visible = false;
     //
     // nudSchoolYear
     //
     this.nudSchoolYear.Location = new System.Drawing.Point(334, 13);
     this.nudSchoolYear.Maximum = new decimal(new int[] {
     999,
     0,
     0,
     0});
     this.nudSchoolYear.Name = "nudSchoolYear";
     this.nudSchoolYear.Size = new System.Drawing.Size(66, 25);
     this.nudSchoolYear.TabIndex = 35;
     this.nudSchoolYear.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lblSchoolYear
     //
     this.lblSchoolYear.AutoSize = true;
     this.lblSchoolYear.BackColor = System.Drawing.Color.Transparent;
     //
     //
     //
     this.lblSchoolYear.BackgroundStyle.Class = "";
     this.lblSchoolYear.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.lblSchoolYear.Location = new System.Drawing.Point(254, 16);
     this.lblSchoolYear.Name = "lblSchoolYear";
     this.lblSchoolYear.Size = new System.Drawing.Size(74, 21);
     this.lblSchoolYear.TabIndex = 34;
     this.lblSchoolYear.Text = "填報學年度";
     //
     // radioAllStudentInOneFile
     //
     this.radioAllStudentInOneFile.AutoSize = true;
     this.radioAllStudentInOneFile.BackColor = System.Drawing.Color.Transparent;
     this.radioAllStudentInOneFile.Location = new System.Drawing.Point(138, 323);
     this.radioAllStudentInOneFile.Name = "radioAllStudentInOneFile";
     this.radioAllStudentInOneFile.Size = new System.Drawing.Size(130, 21);
     this.radioAllStudentInOneFile.TabIndex = 1;
     this.radioAllStudentInOneFile.Tag = "2";
     this.radioAllStudentInOneFile.Text = "所有學生一個檔案";
     this.radioAllStudentInOneFile.UseVisualStyleBackColor = false;
     this.radioAllStudentInOneFile.Click += new System.EventHandler(this.radioAllStudentInOneFile_Click);
     //
     // radioOneClassInOneFile
     //
     this.radioOneClassInOneFile.AutoSize = true;
     this.radioOneClassInOneFile.BackColor = System.Drawing.Color.Transparent;
     this.radioOneClassInOneFile.Location = new System.Drawing.Point(283, 323);
     this.radioOneClassInOneFile.Name = "radioOneClassInOneFile";
     this.radioOneClassInOneFile.Size = new System.Drawing.Size(130, 21);
     this.radioOneClassInOneFile.TabIndex = 0;
     this.radioOneClassInOneFile.Tag = "1";
     this.radioOneClassInOneFile.Text = "一個班級一個檔案";
     this.radioOneClassInOneFile.UseVisualStyleBackColor = false;
     this.radioOneClassInOneFile.Click += new System.EventHandler(this.radioOneClassInOneFile_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Location = new System.Drawing.Point(34, 325);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(86, 17);
     this.label1.TabIndex = 36;
     this.label1.Text = "儲存檔案方式";
     //
     // Vagrant_Export
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CaptionAntiAlias = false;
     this.ClientSize = new System.Drawing.Size(492, 393);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.radioAllStudentInOneFile);
     this.Controls.Add(this.radioOneClassInOneFile);
     this.Controls.Add(this.nudSchoolYear);
     this.Controls.Add(this.lblSchoolYear);
     this.Controls.Add(this.circularProgress);
     this.Controls.Add(this.lblExplanation);
     this.Controls.Add(this.FieldContainer);
     this.Controls.Add(this.btnExport);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.chkSelectAll);
     this.DoubleBuffered = true;
     this.Name = "Vagrant_Export";
     this.Text = "";
     this.TitleText = "匯出資料至 Excel";
     ((System.ComponentModel.ISupportInitialize)(this.nudSchoolYear)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 44
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.textBox1     = new System.Windows.Forms.TextBox();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.textBox2     = new System.Windows.Forms.TextBox();
     this.button1      = new System.Windows.Forms.Button();
     this.button2      = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // textBox1
     //
     this.textBox1.Location  = new System.Drawing.Point(13, 25);
     this.textBox1.Multiline = true;
     this.textBox1.Name      = "textBox1";
     this.textBox1.Size      = new System.Drawing.Size(279, 128);
     this.textBox1.TabIndex  = 0;
     this.textBox1.Text      = "{name:\'demo\',email:\'[email protected]\'}";
     //
     // radioButton1
     //
     this.radioButton1.Checked  = true;
     this.radioButton1.Location = new System.Drawing.Point(298, 21);
     this.radioButton1.Name     = "radioButton1";
     this.radioButton1.Size     = new System.Drawing.Size(73, 24);
     this.radioButton1.TabIndex = 1;
     this.radioButton1.TabStop  = true;
     this.radioButton1.Text     = "Encode";
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // radioButton2
     //
     this.radioButton2.Location = new System.Drawing.Point(299, 51);
     this.radioButton2.Name     = "radioButton2";
     this.radioButton2.Size     = new System.Drawing.Size(72, 24);
     this.radioButton2.TabIndex = 2;
     this.radioButton2.Text     = "Decode";
     this.radioButton2.UseVisualStyleBackColor = true;
     //
     // textBox2
     //
     this.textBox2.Location  = new System.Drawing.Point(13, 159);
     this.textBox2.Multiline = true;
     this.textBox2.Name      = "textBox2";
     this.textBox2.Size      = new System.Drawing.Size(279, 128);
     this.textBox2.TabIndex  = 3;
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(298, 81);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 49);
     this.button1.TabIndex = 4;
     this.button1.Text     = "Run";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(298, 136);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 49);
     this.button2.TabIndex = 5;
     this.button2.Text     = "Copy Clipboard";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(383, 296);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.radioButton2);
     this.Controls.Add(this.radioButton1);
     this.Controls.Add(this.textBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.Name            = "MainForm";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Demo Message Builder 2021";
     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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_CancelacionesCobranzas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     this.GroupBox1 = new System.Windows.Forms.GroupBox();
     this.label4 = new System.Windows.Forms.Label();
     this.txtCuentaname = new System.Windows.Forms.TextBox();
     this.GroupBox6 = new System.Windows.Forms.GroupBox();
     this.rbAnalisis2 = new System.Windows.Forms.RadioButton();
     this.rbAnalisis1 = new System.Windows.Forms.RadioButton();
     this.Label3 = new System.Windows.Forms.Label();
     this.txtGlosa = new System.Windows.Forms.TextBox();
     this.btnSeleccionarproveedores = new System.Windows.Forms.Button();
     this.GroupBox10 = new System.Windows.Forms.GroupBox();
     this.rbMultiplesdetalles = new System.Windows.Forms.RadioButton();
     this.rbDetalle = new System.Windows.Forms.RadioButton();
     this.chkCuenta = new System.Windows.Forms.CheckBox();
     this.txtCtactename = new System.Windows.Forms.TextBox();
     this.txtCuenta = new System.Windows.Forms.TextBox();
     this.btnGenerarPendientes = new System.Windows.Forms.Button();
     this.txtRuc = new System.Windows.Forms.TextBox();
     this.TabCancelaciones = new System.Windows.Forms.TabControl();
     this.TabPage1 = new System.Windows.Forms.TabPage();
     this.cboModalidad = new System.Windows.Forms.ComboBox();
     this.label21 = new System.Windows.Forms.Label();
     this.txtcuentaid = new System.Windows.Forms.TextBox();
     this.cboFefectivo = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.cboBanco = new System.Windows.Forms.ComboBox();
     this.cboFpago = new System.Windows.Forms.ComboBox();
     this.examinar = new System.Windows.Forms.DataGridView();
     this.selecciona = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pedidoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.num_op = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipoper = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fechvenc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.saldo1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.saldo2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.monedap = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pagosoles = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pagodolares = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.asiento = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipcamb = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glosa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.porcdetraccion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.original1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.original2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fEmision = new System.Windows.Forms.DateTimePicker();
     this.txtTipCamb = new System.Windows.Forms.TextBox();
     this.txtnomdetalle = new System.Windows.Forms.TextBox();
     this.btnPagoauto = new System.Windows.Forms.Button();
     this.cboMoneda = new System.Windows.Forms.ComboBox();
     this.txtmontoapagar = new System.Windows.Forms.TextBox();
     this.GroupBox5 = new System.Windows.Forms.GroupBox();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label7 = new System.Windows.Forms.Label();
     this.lbldolaresseleccionado = new System.Windows.Forms.Label();
     this.lblsolesseleccionado = new System.Windows.Forms.Label();
     this.txtNumpago = new System.Windows.Forms.TextBox();
     this.Label1 = new System.Windows.Forms.Label();
     this.txtconcepto = new System.Windows.Forms.TextBox();
     this.txtDsubdiario = new System.Windows.Forms.TextBox();
     this.Label18 = new System.Windows.Forms.Label();
     this.txtCodsubdiario = new System.Windows.Forms.TextBox();
     this.GroupBox21 = new System.Windows.Forms.GroupBox();
     this.rbSoles = new System.Windows.Forms.RadioButton();
     this.rbDolares = new System.Windows.Forms.RadioButton();
     this.Label15 = new System.Windows.Forms.Label();
     this.Label10 = new System.Windows.Forms.Label();
     this.Label5 = new System.Windows.Forms.Label();
     this.txtglosacampo = new System.Windows.Forms.TextBox();
     this.GroupBox4 = new System.Windows.Forms.GroupBox();
     this.btnVervoucher = new System.Windows.Forms.Button();
     this.btnGeneravoucher = new System.Windows.Forms.Button();
     this.btnSalir = new System.Windows.Forms.Button();
     this.GroupBox3 = new System.Windows.Forms.GroupBox();
     this.Label12 = new System.Windows.Forms.Label();
     this.Label11 = new System.Windows.Forms.Label();
     this.lbTotalD = new System.Windows.Forms.Label();
     this.lbTotalS = new System.Windows.Forms.Label();
     this.GroupBox2 = new System.Windows.Forms.GroupBox();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label14 = new System.Windows.Forms.Label();
     this.lbltotregistros = new System.Windows.Forms.Label();
     this.Label13 = new System.Windows.Forms.Label();
     this.lbltotalpagodolares = new System.Windows.Forms.Label();
     this.lbltotalpagosoles = new System.Windows.Forms.Label();
     this.Label8 = new System.Windows.Forms.Label();
     this.txtSiglasubdiario = new System.Windows.Forms.TextBox();
     this.TabPage2 = new System.Windows.Forms.TabPage();
     this.grbsoles = new System.Windows.Forms.GroupBox();
     this.Label20 = new System.Windows.Forms.Label();
     this.txttotalhaberdolares = new System.Windows.Forms.TextBox();
     this.txttotaldebedolares = new System.Windows.Forms.TextBox();
     this.Label17 = new System.Windows.Forms.Label();
     this.txttotalhabersoles = new System.Windows.Forms.TextBox();
     this.Label19 = new System.Windows.Forms.Label();
     this.Label22 = new System.Windows.Forms.Label();
     this.txttotaldebesoles = new System.Windows.Forms.TextBox();
     this.txtdescripcampo = new System.Windows.Forms.TextBox();
     this.gridgastos = new System.Windows.Forms.DataGridView();
     this.asientoitems = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Gasto_cuentaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_cuentaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_debehaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ImporteCambio = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_cencosid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_tipdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gasto_fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.btnaddfila = new System.Windows.Forms.Button();
     this.btndelfila = new System.Windows.Forms.Button();
     this.lblregseleccionado = new System.Windows.Forms.Label();
     this.GroupBox1.SuspendLayout();
     this.GroupBox6.SuspendLayout();
     this.GroupBox10.SuspendLayout();
     this.TabCancelaciones.SuspendLayout();
     this.TabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.examinar)).BeginInit();
     this.GroupBox5.SuspendLayout();
     this.GroupBox21.SuspendLayout();
     this.GroupBox4.SuspendLayout();
     this.GroupBox3.SuspendLayout();
     this.GroupBox2.SuspendLayout();
     this.TabPage2.SuspendLayout();
     this.grbsoles.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridgastos)).BeginInit();
     this.SuspendLayout();
     //
     // GroupBox1
     //
     this.GroupBox1.Controls.Add(this.label4);
     this.GroupBox1.Controls.Add(this.txtCuentaname);
     this.GroupBox1.Controls.Add(this.GroupBox6);
     this.GroupBox1.Controls.Add(this.Label3);
     this.GroupBox1.Controls.Add(this.txtGlosa);
     this.GroupBox1.Controls.Add(this.btnSeleccionarproveedores);
     this.GroupBox1.Controls.Add(this.GroupBox10);
     this.GroupBox1.Controls.Add(this.chkCuenta);
     this.GroupBox1.Controls.Add(this.txtCtactename);
     this.GroupBox1.Controls.Add(this.txtCuenta);
     this.GroupBox1.Controls.Add(this.btnGenerarPendientes);
     this.GroupBox1.Controls.Add(this.txtRuc);
     this.GroupBox1.Location = new System.Drawing.Point(5, 2);
     this.GroupBox1.Name = "GroupBox1";
     this.GroupBox1.Size = new System.Drawing.Size(1032, 80);
     this.GroupBox1.TabIndex = 0;
     this.GroupBox1.TabStop = false;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label4.Location = new System.Drawing.Point(162, 16);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(48, 13);
     this.label4.TabIndex = 1;
     this.label4.Text = "Ruc-Cód";
     //
     // txtCuentaname
     //
     this.txtCuentaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCuentaname.Location = new System.Drawing.Point(300, 33);
     this.txtCuentaname.MaxLength = 60;
     this.txtCuentaname.Name = "txtCuentaname";
     this.txtCuentaname.Size = new System.Drawing.Size(400, 21);
     this.txtCuentaname.TabIndex = 6;
     //
     // GroupBox6
     //
     this.GroupBox6.Controls.Add(this.rbAnalisis2);
     this.GroupBox6.Controls.Add(this.rbAnalisis1);
     this.GroupBox6.Location = new System.Drawing.Point(860, 9);
     this.GroupBox6.Name = "GroupBox6";
     this.GroupBox6.Size = new System.Drawing.Size(162, 64);
     this.GroupBox6.TabIndex = 11;
     this.GroupBox6.TabStop = false;
     this.GroupBox6.Text = "| Análisis |";
     //
     // rbAnalisis2
     //
     this.rbAnalisis2.AutoSize = true;
     this.rbAnalisis2.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbAnalisis2.Location = new System.Drawing.Point(7, 39);
     this.rbAnalisis2.Name = "rbAnalisis2";
     this.rbAnalisis2.Size = new System.Drawing.Size(146, 17);
     this.rbAnalisis2.TabIndex = 1;
     this.rbAnalisis2.Text = "Con Pedido / Op/C.Costo";
     this.rbAnalisis2.UseVisualStyleBackColor = true;
     this.rbAnalisis2.CheckedChanged += new System.EventHandler(this.rbAnalisis2_CheckedChanged);
     //
     // rbAnalisis1
     //
     this.rbAnalisis1.AutoSize = true;
     this.rbAnalisis1.Checked = true;
     this.rbAnalisis1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbAnalisis1.Location = new System.Drawing.Point(7, 17);
     this.rbAnalisis1.Name = "rbAnalisis1";
     this.rbAnalisis1.Size = new System.Drawing.Size(135, 17);
     this.rbAnalisis1.TabIndex = 0;
     this.rbAnalisis1.TabStop = true;
     this.rbAnalisis1.Text = "Sin Pedido/Op/C.Costo";
     this.rbAnalisis1.UseVisualStyleBackColor = true;
     this.rbAnalisis1.CheckedChanged += new System.EventHandler(this.rbAnalisis1_CheckedChanged);
     //
     // Label3
     //
     this.Label3.AutoSize = true;
     this.Label3.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label3.Location = new System.Drawing.Point(177, 58);
     this.Label3.Name = "Label3";
     this.Label3.Size = new System.Drawing.Size(33, 13);
     this.Label3.TabIndex = 7;
     this.Label3.Text = "Glosa";
     //
     // txtGlosa
     //
     this.txtGlosa.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtGlosa.Location = new System.Drawing.Point(217, 54);
     this.txtGlosa.MaxLength = 60;
     this.txtGlosa.Name = "txtGlosa";
     this.txtGlosa.Size = new System.Drawing.Size(483, 21);
     this.txtGlosa.TabIndex = 8;
     //
     // btnSeleccionarproveedores
     //
     this.btnSeleccionarproveedores.Image = ((System.Drawing.Image)(resources.GetObject("btnSeleccionarproveedores.Image")));
     this.btnSeleccionarproveedores.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSeleccionarproveedores.Location = new System.Drawing.Point(716, 13);
     this.btnSeleccionarproveedores.Name = "btnSeleccionarproveedores";
     this.btnSeleccionarproveedores.Size = new System.Drawing.Size(120, 27);
     this.btnSeleccionarproveedores.TabIndex = 9;
     this.btnSeleccionarproveedores.Text = "Seleccionar Rucs";
     this.btnSeleccionarproveedores.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSeleccionarproveedores.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnSeleccionarproveedores.UseVisualStyleBackColor = true;
     this.btnSeleccionarproveedores.Click += new System.EventHandler(this.btnSeleccionarproveedores_Click);
     //
     // GroupBox10
     //
     this.GroupBox10.Controls.Add(this.rbMultiplesdetalles);
     this.GroupBox10.Controls.Add(this.rbDetalle);
     this.GroupBox10.Location = new System.Drawing.Point(8, 9);
     this.GroupBox10.Name = "GroupBox10";
     this.GroupBox10.Size = new System.Drawing.Size(131, 64);
     this.GroupBox10.TabIndex = 0;
     this.GroupBox10.TabStop = false;
     this.GroupBox10.Text = "| Seleccionar |";
     //
     // rbMultiplesdetalles
     //
     this.rbMultiplesdetalles.AutoSize = true;
     this.rbMultiplesdetalles.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbMultiplesdetalles.Location = new System.Drawing.Point(9, 38);
     this.rbMultiplesdetalles.Name = "rbMultiplesdetalles";
     this.rbMultiplesdetalles.Size = new System.Drawing.Size(115, 17);
     this.rbMultiplesdetalles.TabIndex = 1;
     this.rbMultiplesdetalles.Text = "Múltiples Rucs-Cod";
     this.rbMultiplesdetalles.UseVisualStyleBackColor = true;
     this.rbMultiplesdetalles.CheckedChanged += new System.EventHandler(this.rbMultiplesdetalles_CheckedChanged);
     //
     // rbDetalle
     //
     this.rbDetalle.AutoSize = true;
     this.rbDetalle.Checked = true;
     this.rbDetalle.ForeColor = System.Drawing.Color.RoyalBlue;
     this.rbDetalle.Location = new System.Drawing.Point(9, 17);
     this.rbDetalle.Name = "rbDetalle";
     this.rbDetalle.Size = new System.Drawing.Size(66, 17);
     this.rbDetalle.TabIndex = 0;
     this.rbDetalle.TabStop = true;
     this.rbDetalle.Text = "Ruc-Cód";
     this.rbDetalle.UseVisualStyleBackColor = true;
     this.rbDetalle.CheckedChanged += new System.EventHandler(this.rbDetalle_CheckedChanged);
     //
     // chkCuenta
     //
     this.chkCuenta.AutoSize = true;
     this.chkCuenta.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.chkCuenta.ForeColor = System.Drawing.Color.RoyalBlue;
     this.chkCuenta.Location = new System.Drawing.Point(149, 35);
     this.chkCuenta.Name = "chkCuenta";
     this.chkCuenta.Size = new System.Drawing.Size(61, 17);
     this.chkCuenta.TabIndex = 4;
     this.chkCuenta.Text = "Cuenta";
     this.chkCuenta.UseVisualStyleBackColor = true;
     this.chkCuenta.CheckedChanged += new System.EventHandler(this.chkCuenta_CheckedChanged);
     //
     // txtCtactename
     //
     this.txtCtactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCtactename.Location = new System.Drawing.Point(300, 12);
     this.txtCtactename.MaxLength = 60;
     this.txtCtactename.Name = "txtCtactename";
     this.txtCtactename.Size = new System.Drawing.Size(400, 21);
     this.txtCtactename.TabIndex = 3;
     //
     // txtCuenta
     //
     this.txtCuenta.Location = new System.Drawing.Point(217, 33);
     this.txtCuenta.MaxLength = 10;
     this.txtCuenta.Name = "txtCuenta";
     this.txtCuenta.Size = new System.Drawing.Size(80, 21);
     this.txtCuenta.TabIndex = 5;
     this.txtCuenta.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCuenta_KeyDown);
     //
     // btnGenerarPendientes
     //
     this.btnGenerarPendientes.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGenerarPendientes.Location = new System.Drawing.Point(716, 47);
     this.btnGenerarPendientes.Name = "btnGenerarPendientes";
     this.btnGenerarPendientes.Size = new System.Drawing.Size(120, 24);
     this.btnGenerarPendientes.TabIndex = 10;
     this.btnGenerarPendientes.Text = "Generar Pendientes";
     this.btnGenerarPendientes.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGenerarPendientes.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGenerarPendientes.UseVisualStyleBackColor = true;
     this.btnGenerarPendientes.Click += new System.EventHandler(this.btnGenerarPendientes_Click);
     //
     // txtRuc
     //
     this.txtRuc.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtRuc.Location = new System.Drawing.Point(217, 12);
     this.txtRuc.MaxLength = 11;
     this.txtRuc.Name = "txtRuc";
     this.txtRuc.Size = new System.Drawing.Size(80, 21);
     this.txtRuc.TabIndex = 2;
     this.txtRuc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtRuc_KeyDown);
     //
     // TabCancelaciones
     //
     this.TabCancelaciones.Controls.Add(this.TabPage1);
     this.TabCancelaciones.Controls.Add(this.TabPage2);
     this.TabCancelaciones.Location = new System.Drawing.Point(5, 90);
     this.TabCancelaciones.Name = "TabCancelaciones";
     this.TabCancelaciones.SelectedIndex = 0;
     this.TabCancelaciones.Size = new System.Drawing.Size(1032, 447);
     this.TabCancelaciones.TabIndex = 1;
     this.TabCancelaciones.SelectedIndexChanged += new System.EventHandler(this.TabCancelaciones_SelectedIndexChanged);
     //
     // TabPage1
     //
     this.TabPage1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.TabPage1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.TabPage1.Controls.Add(this.cboModalidad);
     this.TabPage1.Controls.Add(this.label21);
     this.TabPage1.Controls.Add(this.txtcuentaid);
     this.TabPage1.Controls.Add(this.cboFefectivo);
     this.TabPage1.Controls.Add(this.label9);
     this.TabPage1.Controls.Add(this.cboBanco);
     this.TabPage1.Controls.Add(this.cboFpago);
     this.TabPage1.Controls.Add(this.examinar);
     this.TabPage1.Controls.Add(this.fEmision);
     this.TabPage1.Controls.Add(this.txtTipCamb);
     this.TabPage1.Controls.Add(this.txtnomdetalle);
     this.TabPage1.Controls.Add(this.btnPagoauto);
     this.TabPage1.Controls.Add(this.cboMoneda);
     this.TabPage1.Controls.Add(this.txtmontoapagar);
     this.TabPage1.Controls.Add(this.GroupBox5);
     this.TabPage1.Controls.Add(this.txtNumpago);
     this.TabPage1.Controls.Add(this.Label1);
     this.TabPage1.Controls.Add(this.txtconcepto);
     this.TabPage1.Controls.Add(this.txtDsubdiario);
     this.TabPage1.Controls.Add(this.Label18);
     this.TabPage1.Controls.Add(this.txtCodsubdiario);
     this.TabPage1.Controls.Add(this.GroupBox21);
     this.TabPage1.Controls.Add(this.Label15);
     this.TabPage1.Controls.Add(this.Label10);
     this.TabPage1.Controls.Add(this.Label5);
     this.TabPage1.Controls.Add(this.txtglosacampo);
     this.TabPage1.Controls.Add(this.GroupBox4);
     this.TabPage1.Controls.Add(this.GroupBox3);
     this.TabPage1.Controls.Add(this.GroupBox2);
     this.TabPage1.Controls.Add(this.Label8);
     this.TabPage1.Controls.Add(this.txtSiglasubdiario);
     this.TabPage1.Location = new System.Drawing.Point(4, 22);
     this.TabPage1.Name = "TabPage1";
     this.TabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage1.Size = new System.Drawing.Size(1024, 421);
     this.TabPage1.TabIndex = 0;
     this.TabPage1.Text = "Selecciona Documentos";
     //
     // cboModalidad
     //
     this.cboModalidad.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboModalidad.DropDownWidth = 240;
     this.cboModalidad.FormattingEnabled = true;
     this.cboModalidad.Items.AddRange(new object[] {
     "1  Sin Detracción/Retetención",
     "2  Detracción a Depositar %",
     "3  A Pagar Menos Detracción %",
     "4  Retención % IGV",
     "5  A Cobrar Menos Detracción/Retención %"});
     this.cboModalidad.Location = new System.Drawing.Point(61, 40);
     this.cboModalidad.Name = "cboModalidad";
     this.cboModalidad.Size = new System.Drawing.Size(190, 21);
     this.cboModalidad.TabIndex = 54;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label21.Location = new System.Drawing.Point(3, 44);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(55, 13);
     this.label21.TabIndex = 53;
     this.label21.Text = "Modalidad";
     //
     // txtcuentaid
     //
     this.txtcuentaid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtcuentaid.Location = new System.Drawing.Point(367, 17);
     this.txtcuentaid.MaxLength = 10;
     this.txtcuentaid.Name = "txtcuentaid";
     this.txtcuentaid.Size = new System.Drawing.Size(71, 21);
     this.txtcuentaid.TabIndex = 52;
     //
     // cboFefectivo
     //
     this.cboFefectivo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFefectivo.DropDownWidth = 360;
     this.cboFefectivo.FormattingEnabled = true;
     this.cboFefectivo.Location = new System.Drawing.Point(714, 40);
     this.cboFefectivo.Name = "cboFefectivo";
     this.cboFefectivo.Size = new System.Drawing.Size(300, 21);
     this.cboFefectivo.TabIndex = 51;
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.ForeColor = System.Drawing.Color.RoyalBlue;
     this.label9.Location = new System.Drawing.Point(655, 44);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(56, 13);
     this.label9.TabIndex = 50;
     this.label9.Text = "F.Efectivo";
     //
     // cboBanco
     //
     this.cboBanco.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboBanco.DropDownWidth = 240;
     this.cboBanco.FormattingEnabled = true;
     this.cboBanco.Location = new System.Drawing.Point(293, 40);
     this.cboBanco.Name = "cboBanco";
     this.cboBanco.Size = new System.Drawing.Size(220, 21);
     this.cboBanco.TabIndex = 13;
     //
     // cboFpago
     //
     this.cboFpago.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboFpago.DropDownWidth = 360;
     this.cboFpago.FormattingEnabled = true;
     this.cboFpago.Location = new System.Drawing.Point(607, 17);
     this.cboFpago.Name = "cboFpago";
     this.cboFpago.Size = new System.Drawing.Size(320, 21);
     this.cboFpago.TabIndex = 9;
     //
     // examinar
     //
     this.examinar.AllowUserToAddRows = false;
     this.examinar.AllowUserToResizeRows = false;
     this.examinar.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.examinar.CellBorderStyle = System.Windows.Forms.DataGridViewCellBorderStyle.Sunken;
     this.examinar.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.examinar.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.examinar.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.examinar.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.selecciona,
     this.ctactename,
     this.debehaber,
     this.pedidoid,
     this.num_op,
     this.cuentaname,
     this.tipoper,
     this.cuentaid,
     this.tipdoc,
     this.serdoc,
     this.numdoc,
     this.fechdoc,
     this.fechvenc,
     this.moneda,
     this.saldo1,
     this.saldo2,
     this.monedap,
     this.pagosoles,
     this.pagodolares,
     this.asiento,
     this.tipcamb,
     this.glosa,
     this.porcdetraccion,
     this.original1,
     this.original2});
     this.examinar.Location = new System.Drawing.Point(6, 67);
     this.examinar.Name = "examinar";
     this.examinar.RowHeadersVisible = false;
     this.examinar.RowTemplate.Height = 20;
     this.examinar.Size = new System.Drawing.Size(1009, 252);
     this.examinar.TabIndex = 16;
     this.examinar.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.examinar_CellBeginEdit);
     this.examinar.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.examinar_CellContentClick);
     this.examinar.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.examinar_CellValueChanged);
     this.examinar.RowPrePaint += new System.Windows.Forms.DataGridViewRowPrePaintEventHandler(this.examinar_RowPrePaint);
     this.examinar.SelectionChanged += new System.EventHandler(this.examinar_SelectionChanged);
     this.examinar.KeyDown += new System.Windows.Forms.KeyEventHandler(this.examinar_KeyDown);
     //
     // selecciona
     //
     this.selecciona.DataPropertyName = "selecciona";
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.NullValue = false;
     this.selecciona.DefaultCellStyle = dataGridViewCellStyle2;
     this.selecciona.HeaderText = "X";
     this.selecciona.Name = "selecciona";
     this.selecciona.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.selecciona.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.selecciona.ToolTipText = "\"Click - Check\"  para Seleccionar";
     this.selecciona.Width = 30;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Cta.Cte. Nombre";
     this.ctactename.Name = "ctactename";
     this.ctactename.Visible = false;
     //
     // debehaber
     //
     this.debehaber.DataPropertyName = "debehaber";
     this.debehaber.HeaderText = "DebeHaber";
     this.debehaber.Name = "debehaber";
     this.debehaber.Visible = false;
     //
     // pedidoid
     //
     this.pedidoid.DataPropertyName = "pedidoid";
     this.pedidoid.HeaderText = "Pedido";
     this.pedidoid.Name = "pedidoid";
     this.pedidoid.Visible = false;
     this.pedidoid.Width = 70;
     //
     // num_op
     //
     this.num_op.DataPropertyName = "num_op";
     this.num_op.HeaderText = "OP";
     this.num_op.Name = "num_op";
     this.num_op.Visible = false;
     this.num_op.Width = 70;
     //
     // cuentaname
     //
     this.cuentaname.DataPropertyName = "cuentaname";
     this.cuentaname.HeaderText = "Nombre Cuenta";
     this.cuentaname.Name = "cuentaname";
     this.cuentaname.Visible = false;
     //
     // tipoper
     //
     this.tipoper.DataPropertyName = "tipoper";
     this.tipoper.HeaderText = "P";
     this.tipoper.Name = "tipoper";
     this.tipoper.Width = 22;
     //
     // cuentaid
     //
     this.cuentaid.DataPropertyName = "cuentaid";
     this.cuentaid.HeaderText = "Cuenta";
     this.cuentaid.Name = "cuentaid";
     this.cuentaid.ReadOnly = true;
     this.cuentaid.Width = 68;
     //
     // tipdoc
     //
     this.tipdoc.DataPropertyName = "tipdoc";
     this.tipdoc.HeaderText = "TD";
     this.tipdoc.Name = "tipdoc";
     this.tipdoc.ReadOnly = true;
     this.tipdoc.Width = 26;
     //
     // serdoc
     //
     this.serdoc.DataPropertyName = "serdoc";
     this.serdoc.HeaderText = "Serie";
     this.serdoc.Name = "serdoc";
     this.serdoc.Width = 34;
     //
     // numdoc
     //
     this.numdoc.DataPropertyName = "numdoc";
     this.numdoc.HeaderText = "Número";
     this.numdoc.Name = "numdoc";
     this.numdoc.Width = 70;
     //
     // fechdoc
     //
     this.fechdoc.DataPropertyName = "fechdoc";
     this.fechdoc.HeaderText = "F.Emisión";
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.ReadOnly = true;
     this.fechdoc.Width = 70;
     //
     // fechvenc
     //
     this.fechvenc.DataPropertyName = "fechvenc";
     this.fechvenc.HeaderText = "F.Venc.";
     this.fechvenc.Name = "fechvenc";
     this.fechvenc.Width = 70;
     //
     // moneda
     //
     this.moneda.DataPropertyName = "moneda";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle3.Format = "N2";
     dataGridViewCellStyle3.NullValue = "0";
     this.moneda.DefaultCellStyle = dataGridViewCellStyle3;
     this.moneda.HeaderText = "M";
     this.moneda.Name = "moneda";
     this.moneda.ReadOnly = true;
     this.moneda.Width = 20;
     //
     // saldo1
     //
     this.saldo1.DataPropertyName = "saldo1";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "N2";
     dataGridViewCellStyle4.NullValue = "0";
     this.saldo1.DefaultCellStyle = dataGridViewCellStyle4;
     this.saldo1.HeaderText = "Saldo S/.";
     this.saldo1.Name = "saldo1";
     this.saldo1.ReadOnly = true;
     this.saldo1.Width = 90;
     //
     // saldo2
     //
     this.saldo2.DataPropertyName = "saldo2";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = "0";
     this.saldo2.DefaultCellStyle = dataGridViewCellStyle5;
     this.saldo2.HeaderText = "Saldo US$";
     this.saldo2.Name = "saldo2";
     this.saldo2.ReadOnly = true;
     this.saldo2.Width = 90;
     //
     // monedap
     //
     this.monedap.DataPropertyName = "monedap";
     this.monedap.HeaderText = "MP";
     this.monedap.Name = "monedap";
     this.monedap.Width = 22;
     //
     // pagosoles
     //
     this.pagosoles.DataPropertyName = "pagosoles";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N2";
     dataGridViewCellStyle6.NullValue = "0";
     this.pagosoles.DefaultCellStyle = dataGridViewCellStyle6;
     this.pagosoles.HeaderText = "Pago Soles";
     this.pagosoles.Name = "pagosoles";
     this.pagosoles.Width = 90;
     //
     // pagodolares
     //
     this.pagodolares.DataPropertyName = "pagodolares";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = "0";
     this.pagodolares.DefaultCellStyle = dataGridViewCellStyle7;
     this.pagodolares.HeaderText = "Pago Dólares";
     this.pagodolares.Name = "pagodolares";
     this.pagodolares.Width = 90;
     //
     // asiento
     //
     this.asiento.DataPropertyName = "asiento";
     this.asiento.HeaderText = "Voucher";
     this.asiento.Name = "asiento";
     this.asiento.Width = 130;
     //
     // tipcamb
     //
     this.tipcamb.DataPropertyName = "tipcamb";
     dataGridViewCellStyle8.NullValue = "0";
     this.tipcamb.DefaultCellStyle = dataGridViewCellStyle8;
     this.tipcamb.HeaderText = "T.C.";
     this.tipcamb.Name = "tipcamb";
     this.tipcamb.Width = 54;
     //
     // glosa
     //
     this.glosa.DataPropertyName = "glosa";
     this.glosa.HeaderText = "Glosa";
     this.glosa.Name = "glosa";
     this.glosa.Visible = false;
     this.glosa.Width = 250;
     //
     // porcdetraccion
     //
     this.porcdetraccion.DataPropertyName = "porcdetraccion";
     this.porcdetraccion.HeaderText = "% Detracción";
     this.porcdetraccion.Name = "porcdetraccion";
     this.porcdetraccion.Visible = false;
     //
     // original1
     //
     this.original1.DataPropertyName = "original1";
     this.original1.HeaderText = "Original S/.";
     this.original1.Name = "original1";
     this.original1.Visible = false;
     //
     // original2
     //
     this.original2.DataPropertyName = "original2";
     this.original2.HeaderText = "Original US$";
     this.original2.Name = "original2";
     this.original2.Visible = false;
     //
     // fEmision
     //
     this.fEmision.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fEmision.Location = new System.Drawing.Point(447, 17);
     this.fEmision.Name = "fEmision";
     this.fEmision.Size = new System.Drawing.Size(87, 21);
     this.fEmision.TabIndex = 5;
     this.fEmision.ValueChanged += new System.EventHandler(this.fEmision_ValueChanged);
     //
     // txtTipCamb
     //
     this.txtTipCamb.Enabled = false;
     this.txtTipCamb.Location = new System.Drawing.Point(538, 17);
     this.txtTipCamb.Name = "txtTipCamb";
     this.txtTipCamb.Size = new System.Drawing.Size(60, 21);
     this.txtTipCamb.TabIndex = 7;
     this.txtTipCamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtnomdetalle
     //
     this.txtnomdetalle.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtnomdetalle.Enabled = false;
     this.txtnomdetalle.Location = new System.Drawing.Point(6, 322);
     this.txtnomdetalle.MaxLength = 11;
     this.txtnomdetalle.Name = "txtnomdetalle";
     this.txtnomdetalle.Size = new System.Drawing.Size(366, 21);
     this.txtnomdetalle.TabIndex = 49;
     //
     // btnPagoauto
     //
     this.btnPagoauto.Location = new System.Drawing.Point(633, 388);
     this.btnPagoauto.Name = "btnPagoauto";
     this.btnPagoauto.Size = new System.Drawing.Size(96, 24);
     this.btnPagoauto.TabIndex = 12;
     this.btnPagoauto.Text = "Cancelar";
     this.btnPagoauto.UseVisualStyleBackColor = true;
     this.btnPagoauto.Visible = false;
     this.btnPagoauto.Click += new System.EventHandler(this.btnPagoauto_Click);
     //
     // cboMoneda
     //
     this.cboMoneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboMoneda.FormattingEnabled = true;
     this.cboMoneda.Location = new System.Drawing.Point(682, 362);
     this.cboMoneda.Name = "cboMoneda";
     this.cboMoneda.Size = new System.Drawing.Size(90, 21);
     this.cboMoneda.TabIndex = 11;
     this.cboMoneda.Visible = false;
     //
     // txtmontoapagar
     //
     this.txtmontoapagar.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtmontoapagar.Location = new System.Drawing.Point(605, 363);
     this.txtmontoapagar.MaxLength = 11;
     this.txtmontoapagar.Name = "txtmontoapagar";
     this.txtmontoapagar.Size = new System.Drawing.Size(74, 21);
     this.txtmontoapagar.TabIndex = 10;
     this.txtmontoapagar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtmontoapagar.Visible = false;
     //
     // GroupBox5
     //
     this.GroupBox5.BackColor = System.Drawing.Color.PaleGoldenrod;
     this.GroupBox5.Controls.Add(this.Label6);
     this.GroupBox5.Controls.Add(this.Label7);
     this.GroupBox5.Controls.Add(this.lbldolaresseleccionado);
     this.GroupBox5.Controls.Add(this.lblsolesseleccionado);
     this.GroupBox5.Location = new System.Drawing.Point(184, 352);
     this.GroupBox5.Name = "GroupBox5";
     this.GroupBox5.Size = new System.Drawing.Size(176, 60);
     this.GroupBox5.TabIndex = 5;
     this.GroupBox5.TabStop = false;
     this.GroupBox5.Text = "Total Seleccionado";
     //
     // Label6
     //
     this.Label6.AutoSize = true;
     this.Label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location = new System.Drawing.Point(90, 18);
     this.Label6.Name = "Label6";
     this.Label6.Size = new System.Drawing.Size(64, 13);
     this.Label6.TabIndex = 2;
     this.Label6.Text = "Total US$";
     //
     // Label7
     //
     this.Label7.AutoSize = true;
     this.Label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location = new System.Drawing.Point(10, 18);
     this.Label7.Name = "Label7";
     this.Label7.Size = new System.Drawing.Size(58, 13);
     this.Label7.TabIndex = 0;
     this.Label7.Text = "Total S/.";
     //
     // lbldolaresseleccionado
     //
     this.lbldolaresseleccionado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbldolaresseleccionado.Location = new System.Drawing.Point(89, 33);
     this.lbldolaresseleccionado.Name = "lbldolaresseleccionado";
     this.lbldolaresseleccionado.Size = new System.Drawing.Size(83, 20);
     this.lbldolaresseleccionado.TabIndex = 3;
     this.lbldolaresseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lblsolesseleccionado
     //
     this.lblsolesseleccionado.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblsolesseleccionado.Location = new System.Drawing.Point(4, 33);
     this.lblsolesseleccionado.Name = "lblsolesseleccionado";
     this.lblsolesseleccionado.Size = new System.Drawing.Size(83, 20);
     this.lblsolesseleccionado.TabIndex = 1;
     this.lblsolesseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // txtNumpago
     //
     this.txtNumpago.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtNumpago.Location = new System.Drawing.Point(929, 17);
     this.txtNumpago.MaxLength = 10;
     this.txtNumpago.Name = "txtNumpago";
     this.txtNumpago.Size = new System.Drawing.Size(85, 21);
     this.txtNumpago.TabIndex = 11;
     //
     // Label1
     //
     this.Label1.AutoSize = true;
     this.Label1.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label1.Location = new System.Drawing.Point(927, 3);
     this.Label1.Name = "Label1";
     this.Label1.Size = new System.Drawing.Size(71, 13);
     this.Label1.TabIndex = 10;
     this.Label1.Text = "Nº Ch/. - Op.";
     //
     // txtconcepto
     //
     this.txtconcepto.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtconcepto.Enabled = false;
     this.txtconcepto.Location = new System.Drawing.Point(373, 322);
     this.txtconcepto.MaxLength = 11;
     this.txtconcepto.Name = "txtconcepto";
     this.txtconcepto.Size = new System.Drawing.Size(354, 21);
     this.txtconcepto.TabIndex = 48;
     //
     // txtDsubdiario
     //
     this.txtDsubdiario.Enabled = false;
     this.txtDsubdiario.Location = new System.Drawing.Point(50, 17);
     this.txtDsubdiario.Name = "txtDsubdiario";
     this.txtDsubdiario.Size = new System.Drawing.Size(315, 21);
     this.txtDsubdiario.TabIndex = 2;
     //
     // Label18
     //
     this.Label18.AutoSize = true;
     this.Label18.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label18.Location = new System.Drawing.Point(4, 3);
     this.Label18.Name = "Label18";
     this.Label18.Size = new System.Drawing.Size(56, 13);
     this.Label18.TabIndex = 0;
     this.Label18.Text = "Sub-Diario";
     //
     // txtCodsubdiario
     //
     this.txtCodsubdiario.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtCodsubdiario.Location = new System.Drawing.Point(7, 17);
     this.txtCodsubdiario.MaxLength = 4;
     this.txtCodsubdiario.Name = "txtCodsubdiario";
     this.txtCodsubdiario.Size = new System.Drawing.Size(41, 21);
     this.txtCodsubdiario.TabIndex = 1;
     this.txtCodsubdiario.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCodsubdiario_KeyDown);
     //
     // GroupBox21
     //
     this.GroupBox21.Controls.Add(this.rbSoles);
     this.GroupBox21.Controls.Add(this.rbDolares);
     this.GroupBox21.Location = new System.Drawing.Point(525, 36);
     this.GroupBox21.Name = "GroupBox21";
     this.GroupBox21.Size = new System.Drawing.Size(129, 28);
     this.GroupBox21.TabIndex = 15;
     this.GroupBox21.TabStop = false;
     //
     // rbSoles
     //
     this.rbSoles.AutoSize = true;
     this.rbSoles.Checked = true;
     this.rbSoles.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rbSoles.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(213)))));
     this.rbSoles.Location = new System.Drawing.Point(7, 8);
     this.rbSoles.Name = "rbSoles";
     this.rbSoles.Size = new System.Drawing.Size(50, 17);
     this.rbSoles.TabIndex = 0;
     this.rbSoles.TabStop = true;
     this.rbSoles.Text = "Soles";
     this.rbSoles.UseVisualStyleBackColor = true;
     //
     // rbDolares
     //
     this.rbDolares.AutoSize = true;
     this.rbDolares.Cursor = System.Windows.Forms.Cursors.Hand;
     this.rbDolares.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(70)))), ((int)(((byte)(213)))));
     this.rbDolares.Location = new System.Drawing.Point(63, 8);
     this.rbDolares.Name = "rbDolares";
     this.rbDolares.Size = new System.Drawing.Size(61, 17);
     this.rbDolares.TabIndex = 1;
     this.rbDolares.Text = "Dólares";
     this.rbDolares.UseVisualStyleBackColor = true;
     //
     // Label15
     //
     this.Label15.AutoSize = true;
     this.Label15.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label15.Location = new System.Drawing.Point(605, 3);
     this.Label15.Name = "Label15";
     this.Label15.Size = new System.Drawing.Size(79, 13);
     this.Label15.TabIndex = 8;
     this.Label15.Text = "Forma de pago";
     //
     // Label10
     //
     this.Label10.AutoSize = true;
     this.Label10.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label10.Location = new System.Drawing.Point(564, 3);
     this.Label10.Name = "Label10";
     this.Label10.Size = new System.Drawing.Size(28, 13);
     this.Label10.TabIndex = 6;
     this.Label10.Text = "T.C.";
     //
     // Label5
     //
     this.Label5.AutoSize = true;
     this.Label5.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label5.Location = new System.Drawing.Point(445, 3);
     this.Label5.Name = "Label5";
     this.Label5.Size = new System.Drawing.Size(52, 13);
     this.Label5.TabIndex = 4;
     this.Label5.Text = "F.Emisión";
     //
     // txtglosacampo
     //
     this.txtglosacampo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtglosacampo.Enabled = false;
     this.txtglosacampo.Location = new System.Drawing.Point(728, 322);
     this.txtglosacampo.MaxLength = 11;
     this.txtglosacampo.Name = "txtglosacampo";
     this.txtglosacampo.Size = new System.Drawing.Size(286, 21);
     this.txtglosacampo.TabIndex = 37;
     //
     // GroupBox4
     //
     this.GroupBox4.Controls.Add(this.btnVervoucher);
     this.GroupBox4.Controls.Add(this.btnGeneravoucher);
     this.GroupBox4.Controls.Add(this.btnSalir);
     this.GroupBox4.Location = new System.Drawing.Point(783, 343);
     this.GroupBox4.Name = "GroupBox4";
     this.GroupBox4.Size = new System.Drawing.Size(231, 72);
     this.GroupBox4.TabIndex = 13;
     this.GroupBox4.TabStop = false;
     //
     // btnVervoucher
     //
     this.btnVervoucher.Image = ((System.Drawing.Image)(resources.GetObject("btnVervoucher.Image")));
     this.btnVervoucher.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnVervoucher.Location = new System.Drawing.Point(6, 40);
     this.btnVervoucher.Name = "btnVervoucher";
     this.btnVervoucher.Size = new System.Drawing.Size(143, 26);
     this.btnVervoucher.TabIndex = 2;
     this.btnVervoucher.Text = "Ver Voucher Generado";
     this.btnVervoucher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnVervoucher.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnVervoucher.UseVisualStyleBackColor = true;
     this.btnVervoucher.Click += new System.EventHandler(this.btnVervoucher_Click);
     //
     // btnGeneravoucher
     //
     this.btnGeneravoucher.Image = global::BapFormulariosNet.Properties.Resources.Acepta16;
     this.btnGeneravoucher.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnGeneravoucher.Location = new System.Drawing.Point(7, 12);
     this.btnGeneravoucher.Name = "btnGeneravoucher";
     this.btnGeneravoucher.Size = new System.Drawing.Size(143, 26);
     this.btnGeneravoucher.TabIndex = 0;
     this.btnGeneravoucher.Text = "Generar Voucher";
     this.btnGeneravoucher.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnGeneravoucher.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     this.btnGeneravoucher.UseVisualStyleBackColor = true;
     this.btnGeneravoucher.Click += new System.EventHandler(this.btnGeneravoucher_Click);
     //
     // btnSalir
     //
     this.btnSalir.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnSalir.Image = global::BapFormulariosNet.Properties.Resources.Cancela16;
     this.btnSalir.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnSalir.Location = new System.Drawing.Point(155, 12);
     this.btnSalir.Name = "btnSalir";
     this.btnSalir.Size = new System.Drawing.Size(69, 25);
     this.btnSalir.TabIndex = 1;
     this.btnSalir.Text = "&Salir  ";
     this.btnSalir.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnSalir.UseVisualStyleBackColor = true;
     this.btnSalir.Click += new System.EventHandler(this.btnSalir_Click);
     //
     // GroupBox3
     //
     this.GroupBox3.BackColor = System.Drawing.Color.PaleGreen;
     this.GroupBox3.Controls.Add(this.Label12);
     this.GroupBox3.Controls.Add(this.Label11);
     this.GroupBox3.Controls.Add(this.lbTotalD);
     this.GroupBox3.Controls.Add(this.lbTotalS);
     this.GroupBox3.Location = new System.Drawing.Point(6, 352);
     this.GroupBox3.Name = "GroupBox3";
     this.GroupBox3.Size = new System.Drawing.Size(178, 60);
     this.GroupBox3.TabIndex = 4;
     this.GroupBox3.TabStop = false;
     this.GroupBox3.Text = "Total Deuda";
     //
     // Label12
     //
     this.Label12.AutoSize = true;
     this.Label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label12.Location = new System.Drawing.Point(90, 18);
     this.Label12.Name = "Label12";
     this.Label12.Size = new System.Drawing.Size(64, 13);
     this.Label12.TabIndex = 2;
     this.Label12.Text = "Total US$";
     //
     // Label11
     //
     this.Label11.AutoSize = true;
     this.Label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label11.Location = new System.Drawing.Point(10, 18);
     this.Label11.Name = "Label11";
     this.Label11.Size = new System.Drawing.Size(58, 13);
     this.Label11.TabIndex = 0;
     this.Label11.Text = "Total S/.";
     //
     // lbTotalD
     //
     this.lbTotalD.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbTotalD.Location = new System.Drawing.Point(90, 33);
     this.lbTotalD.Name = "lbTotalD";
     this.lbTotalD.Size = new System.Drawing.Size(84, 20);
     this.lbTotalD.TabIndex = 3;
     this.lbTotalD.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lbTotalS
     //
     this.lbTotalS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbTotalS.Location = new System.Drawing.Point(4, 33);
     this.lbTotalS.Name = "lbTotalS";
     this.lbTotalS.Size = new System.Drawing.Size(84, 20);
     this.lbTotalS.TabIndex = 1;
     this.lbTotalS.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // GroupBox2
     //
     this.GroupBox2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.GroupBox2.Controls.Add(this.Label2);
     this.GroupBox2.Controls.Add(this.Label14);
     this.GroupBox2.Controls.Add(this.lbltotregistros);
     this.GroupBox2.Controls.Add(this.Label13);
     this.GroupBox2.Controls.Add(this.lbltotalpagodolares);
     this.GroupBox2.Controls.Add(this.lbltotalpagosoles);
     this.GroupBox2.Location = new System.Drawing.Point(360, 352);
     this.GroupBox2.Name = "GroupBox2";
     this.GroupBox2.Size = new System.Drawing.Size(240, 60);
     this.GroupBox2.TabIndex = 6;
     this.GroupBox2.TabStop = false;
     this.GroupBox2.Text = "Total a Cancelar";
     //
     // Label2
     //
     this.Label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location = new System.Drawing.Point(178, 18);
     this.Label2.Name = "Label2";
     this.Label2.Size = new System.Drawing.Size(60, 13);
     this.Label2.TabIndex = 4;
     this.Label2.Text = "Registros";
     //
     // Label14
     //
     this.Label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label14.Location = new System.Drawing.Point(95, 18);
     this.Label14.Name = "Label14";
     this.Label14.Size = new System.Drawing.Size(82, 13);
     this.Label14.TabIndex = 2;
     this.Label14.Text = "Total US$";
     //
     // lbltotregistros
     //
     this.lbltotregistros.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotregistros.Location = new System.Drawing.Point(183, 33);
     this.lbltotregistros.Name = "lbltotregistros";
     this.lbltotregistros.Size = new System.Drawing.Size(53, 20);
     this.lbltotregistros.TabIndex = 3;
     this.lbltotregistros.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // Label13
     //
     this.Label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label13.Location = new System.Drawing.Point(6, 18);
     this.Label13.Name = "Label13";
     this.Label13.Size = new System.Drawing.Size(82, 13);
     this.Label13.TabIndex = 0;
     this.Label13.Text = "Total S/.";
     this.Label13.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // lbltotalpagodolares
     //
     this.lbltotalpagodolares.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalpagodolares.Location = new System.Drawing.Point(93, 33);
     this.lbltotalpagodolares.Name = "lbltotalpagodolares";
     this.lbltotalpagodolares.Size = new System.Drawing.Size(88, 20);
     this.lbltotalpagodolares.TabIndex = 3;
     this.lbltotalpagodolares.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // lbltotalpagosoles
     //
     this.lbltotalpagosoles.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lbltotalpagosoles.Location = new System.Drawing.Point(3, 33);
     this.lbltotalpagosoles.Name = "lbltotalpagosoles";
     this.lbltotalpagosoles.Size = new System.Drawing.Size(88, 20);
     this.lbltotalpagosoles.TabIndex = 1;
     this.lbltotalpagosoles.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // Label8
     //
     this.Label8.AutoSize = true;
     this.Label8.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label8.Location = new System.Drawing.Point(254, 44);
     this.Label8.Name = "Label8";
     this.Label8.Size = new System.Drawing.Size(36, 13);
     this.Label8.TabIndex = 12;
     this.Label8.Text = "Banco";
     //
     // txtSiglasubdiario
     //
     this.txtSiglasubdiario.Location = new System.Drawing.Point(323, 17);
     this.txtSiglasubdiario.MaxLength = 3;
     this.txtSiglasubdiario.Name = "txtSiglasubdiario";
     this.txtSiglasubdiario.Size = new System.Drawing.Size(41, 21);
     this.txtSiglasubdiario.TabIndex = 3;
     //
     // TabPage2
     //
     this.TabPage2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.TabPage2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.TabPage2.Controls.Add(this.grbsoles);
     this.TabPage2.Controls.Add(this.txtdescripcampo);
     this.TabPage2.Controls.Add(this.gridgastos);
     this.TabPage2.Controls.Add(this.btnaddfila);
     this.TabPage2.Controls.Add(this.btndelfila);
     this.TabPage2.Location = new System.Drawing.Point(4, 22);
     this.TabPage2.Name = "TabPage2";
     this.TabPage2.Padding = new System.Windows.Forms.Padding(3);
     this.TabPage2.Size = new System.Drawing.Size(1024, 421);
     this.TabPage2.TabIndex = 1;
     this.TabPage2.Text = "Gastos Adicionales";
     //
     // grbsoles
     //
     this.grbsoles.Controls.Add(this.Label20);
     this.grbsoles.Controls.Add(this.txttotalhaberdolares);
     this.grbsoles.Controls.Add(this.txttotaldebedolares);
     this.grbsoles.Controls.Add(this.Label17);
     this.grbsoles.Controls.Add(this.txttotalhabersoles);
     this.grbsoles.Controls.Add(this.Label19);
     this.grbsoles.Controls.Add(this.Label22);
     this.grbsoles.Controls.Add(this.txttotaldebesoles);
     this.grbsoles.Location = new System.Drawing.Point(723, 296);
     this.grbsoles.Margin = new System.Windows.Forms.Padding(0);
     this.grbsoles.Name = "grbsoles";
     this.grbsoles.Size = new System.Drawing.Size(278, 79);
     this.grbsoles.TabIndex = 28;
     this.grbsoles.TabStop = false;
     //
     // Label20
     //
     this.Label20.AutoSize = true;
     this.Label20.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label20.Location = new System.Drawing.Point(188, 9);
     this.Label20.Name = "Label20";
     this.Label20.Size = new System.Drawing.Size(43, 13);
     this.Label20.TabIndex = 10;
     this.Label20.Text = "Dólares";
     //
     // txttotalhaberdolares
     //
     this.txttotalhaberdolares.Enabled = false;
     this.txttotalhaberdolares.Location = new System.Drawing.Point(162, 46);
     this.txttotalhaberdolares.Name = "txttotalhaberdolares";
     this.txttotalhaberdolares.Size = new System.Drawing.Size(102, 21);
     this.txttotalhaberdolares.TabIndex = 8;
     this.txttotalhaberdolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txttotaldebedolares
     //
     this.txttotaldebedolares.Enabled = false;
     this.txttotaldebedolares.Location = new System.Drawing.Point(162, 24);
     this.txttotaldebedolares.Name = "txttotaldebedolares";
     this.txttotaldebedolares.Size = new System.Drawing.Size(102, 21);
     this.txttotaldebedolares.TabIndex = 7;
     this.txttotaldebedolares.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label17
     //
     this.Label17.AutoSize = true;
     this.Label17.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label17.Location = new System.Drawing.Point(5, 50);
     this.Label17.Name = "Label17";
     this.Label17.Size = new System.Drawing.Size(40, 13);
     this.Label17.TabIndex = 4;
     this.Label17.Text = "HABER";
     //
     // txttotalhabersoles
     //
     this.txttotalhabersoles.Enabled = false;
     this.txttotalhabersoles.Location = new System.Drawing.Point(53, 46);
     this.txttotalhabersoles.Name = "txttotalhabersoles";
     this.txttotalhabersoles.Size = new System.Drawing.Size(102, 21);
     this.txttotalhabersoles.TabIndex = 3;
     this.txttotalhabersoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // Label19
     //
     this.Label19.AutoSize = true;
     this.Label19.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label19.Location = new System.Drawing.Point(13, 28);
     this.Label19.Name = "Label19";
     this.Label19.Size = new System.Drawing.Size(32, 13);
     this.Label19.TabIndex = 2;
     this.Label19.Text = "DEBE";
     //
     // Label22
     //
     this.Label22.AutoSize = true;
     this.Label22.ForeColor = System.Drawing.Color.RoyalBlue;
     this.Label22.Location = new System.Drawing.Point(64, 9);
     this.Label22.Name = "Label22";
     this.Label22.Size = new System.Drawing.Size(32, 13);
     this.Label22.TabIndex = 0;
     this.Label22.Text = "Soles";
     //
     // txttotaldebesoles
     //
     this.txttotaldebesoles.Enabled = false;
     this.txttotaldebesoles.Location = new System.Drawing.Point(53, 24);
     this.txttotaldebesoles.Name = "txttotaldebesoles";
     this.txttotaldebesoles.Size = new System.Drawing.Size(102, 21);
     this.txttotaldebesoles.TabIndex = 1;
     this.txttotaldebesoles.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtdescripcampo
     //
     this.txtdescripcampo.BackColor = System.Drawing.Color.White;
     this.txtdescripcampo.Enabled = false;
     this.txtdescripcampo.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.txtdescripcampo.Location = new System.Drawing.Point(219, 308);
     this.txtdescripcampo.Name = "txtdescripcampo";
     this.txtdescripcampo.Size = new System.Drawing.Size(473, 21);
     this.txtdescripcampo.TabIndex = 27;
     //
     // gridgastos
     //
     this.gridgastos.AllowUserToAddRows = false;
     this.gridgastos.AllowUserToDeleteRows = false;
     this.gridgastos.AllowUserToResizeColumns = false;
     this.gridgastos.AllowUserToResizeRows = false;
     this.gridgastos.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.gridgastos.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken;
     this.gridgastos.ColumnHeadersHeight = 24;
     this.gridgastos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.asientoitems,
     this.Gasto_cuentaid,
     this.gasto_cuentaname,
     this.gasto_debehaber,
     this.gasto_moneda,
     this.Importe,
     this.ImporteCambio,
     this.gasto_cencosid,
     this.gasto_tipdoc,
     this.gasto_serdoc,
     this.gasto_numdoc,
     this.gasto_fechdoc});
     this.gridgastos.Location = new System.Drawing.Point(9, 20);
     this.gridgastos.MultiSelect = false;
     this.gridgastos.Name = "gridgastos";
     this.gridgastos.RowHeadersWidth = 10;
     dataGridViewCellStyle12.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridgastos.RowsDefaultCellStyle = dataGridViewCellStyle12;
     this.gridgastos.RowTemplate.Height = 20;
     this.gridgastos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridgastos.Size = new System.Drawing.Size(1004, 273);
     this.gridgastos.TabIndex = 24;
     this.gridgastos.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.gridgastos_CellBeginEdit);
     this.gridgastos.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgastos_CellEndEdit);
     this.gridgastos.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgastos_CellValueChanged);
     this.gridgastos.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.gridgastos_EditingControlShowing);
     this.gridgastos.SelectionChanged += new System.EventHandler(this.gridgastos_SelectionChanged);
     this.gridgastos.KeyDown += new System.Windows.Forms.KeyEventHandler(this.gridgastos_KeyDown);
     //
     // asientoitems
     //
     this.asientoitems.DataPropertyName = "asientoitems";
     this.asientoitems.HeaderText = "Asiento Items";
     this.asientoitems.Name = "asientoitems";
     this.asientoitems.Visible = false;
     //
     // Gasto_cuentaid
     //
     this.Gasto_cuentaid.DataPropertyName = "cuentaid";
     this.Gasto_cuentaid.HeaderText = "Cuenta";
     this.Gasto_cuentaid.Name = "Gasto_cuentaid";
     this.Gasto_cuentaid.Width = 70;
     //
     // gasto_cuentaname
     //
     this.gasto_cuentaname.DataPropertyName = "cuentaname";
     this.gasto_cuentaname.HeaderText = "Descripción";
     this.gasto_cuentaname.Name = "gasto_cuentaname";
     this.gasto_cuentaname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_cuentaname.Width = 350;
     //
     // gasto_debehaber
     //
     this.gasto_debehaber.DataPropertyName = "debehaber";
     dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.gasto_debehaber.DefaultCellStyle = dataGridViewCellStyle9;
     this.gasto_debehaber.HeaderText = "D/H";
     this.gasto_debehaber.MaxInputLength = 1;
     this.gasto_debehaber.Name = "gasto_debehaber";
     this.gasto_debehaber.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_debehaber.Width = 35;
     //
     // gasto_moneda
     //
     this.gasto_moneda.DataPropertyName = "moneda";
     this.gasto_moneda.HeaderText = "MP";
     this.gasto_moneda.Name = "gasto_moneda";
     this.gasto_moneda.Width = 28;
     //
     // Importe
     //
     this.Importe.DataPropertyName = "Importe";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle10.Format = "N2";
     dataGridViewCellStyle10.NullValue = "0";
     this.Importe.DefaultCellStyle = dataGridViewCellStyle10;
     this.Importe.HeaderText = "Importe";
     this.Importe.Name = "Importe";
     this.Importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Importe.Width = 73;
     //
     // ImporteCambio
     //
     this.ImporteCambio.DataPropertyName = "ImporteCambio";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle11.Format = "N2";
     dataGridViewCellStyle11.NullValue = "0";
     this.ImporteCambio.DefaultCellStyle = dataGridViewCellStyle11;
     this.ImporteCambio.HeaderText = "Cambio";
     this.ImporteCambio.Name = "ImporteCambio";
     this.ImporteCambio.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.ImporteCambio.Width = 73;
     //
     // gasto_cencosid
     //
     this.gasto_cencosid.DataPropertyName = "cencosid";
     this.gasto_cencosid.HeaderText = "C.Costo";
     this.gasto_cencosid.Name = "gasto_cencosid";
     this.gasto_cencosid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.gasto_cencosid.Width = 60;
     //
     // gasto_tipdoc
     //
     this.gasto_tipdoc.DataPropertyName = "tipdoc";
     this.gasto_tipdoc.HeaderText = "TD";
     this.gasto_tipdoc.Name = "gasto_tipdoc";
     this.gasto_tipdoc.Width = 30;
     //
     // gasto_serdoc
     //
     this.gasto_serdoc.DataPropertyName = "serdoc";
     this.gasto_serdoc.HeaderText = "Serie";
     this.gasto_serdoc.Name = "gasto_serdoc";
     this.gasto_serdoc.Width = 40;
     //
     // gasto_numdoc
     //
     this.gasto_numdoc.DataPropertyName = "numdoc";
     this.gasto_numdoc.HeaderText = "Número";
     this.gasto_numdoc.Name = "gasto_numdoc";
     this.gasto_numdoc.Width = 80;
     //
     // gasto_fechdoc
     //
     this.gasto_fechdoc.DataPropertyName = "fechdoc";
     this.gasto_fechdoc.HeaderText = "Fecha(dd/mm/aaaa)";
     this.gasto_fechdoc.Name = "gasto_fechdoc";
     this.gasto_fechdoc.Width = 110;
     //
     // btnaddfila
     //
     //this.btnaddfila.Image = global::BapFormulariosNet.Properties.Resources.btnAdd;
     this.btnaddfila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnaddfila.Location = new System.Drawing.Point(10, 305);
     this.btnaddfila.Name = "btnaddfila";
     this.btnaddfila.Size = new System.Drawing.Size(94, 32);
     this.btnaddfila.TabIndex = 25;
     this.btnaddfila.Text = "&Nueva Fila";
     this.btnaddfila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btnaddfila.UseVisualStyleBackColor = true;
     this.btnaddfila.Click += new System.EventHandler(this.btnaddfila_Click);
     //
     // btndelfila
     //
     //this.btndelfila.Image = global::BapFormulariosNet.Properties.Resources.btnDel;
     this.btndelfila.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btndelfila.Location = new System.Drawing.Point(115, 305);
     this.btndelfila.Name = "btndelfila";
     this.btndelfila.Size = new System.Drawing.Size(94, 32);
     this.btndelfila.TabIndex = 26;
     this.btndelfila.Text = "&Eliminar Fila";
     this.btndelfila.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btndelfila.UseVisualStyleBackColor = true;
     this.btndelfila.Click += new System.EventHandler(this.btndelfila_Click);
     //
     // lblregseleccionado
     //
     this.lblregseleccionado.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(192)))), ((int)(((byte)(128)))));
     this.lblregseleccionado.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.lblregseleccionado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblregseleccionado.Location = new System.Drawing.Point(80, 539);
     this.lblregseleccionado.Name = "lblregseleccionado";
     this.lblregseleccionado.Size = new System.Drawing.Size(228, 13);
     this.lblregseleccionado.TabIndex = 3;
     this.lblregseleccionado.Text = "REGISTROS SELECCIONADOS";
     this.lblregseleccionado.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.lblregseleccionado.Visible = false;
     //
     // Frm_CancelacionesCobranzas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Options.UseBackColor = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1042, 543);
     this.Controls.Add(this.lblregseleccionado);
     this.Controls.Add(this.GroupBox1);
     this.Controls.Add(this.TabCancelaciones);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_CancelacionesCobranzas";
     this.Text = "Tesoreria - Cobranzas y Pagos";
     this.Activated += new System.EventHandler(this.Frm_CancelacionesCobranzas_Activated);
     this.Load += new System.EventHandler(this.Frm_CancelacionesCobranzas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_CancelacionesCobranzas_KeyDown);
     this.GroupBox1.ResumeLayout(false);
     this.GroupBox1.PerformLayout();
     this.GroupBox6.ResumeLayout(false);
     this.GroupBox6.PerformLayout();
     this.GroupBox10.ResumeLayout(false);
     this.GroupBox10.PerformLayout();
     this.TabCancelaciones.ResumeLayout(false);
     this.TabPage1.ResumeLayout(false);
     this.TabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.examinar)).EndInit();
     this.GroupBox5.ResumeLayout(false);
     this.GroupBox5.PerformLayout();
     this.GroupBox21.ResumeLayout(false);
     this.GroupBox21.PerformLayout();
     this.GroupBox4.ResumeLayout(false);
     this.GroupBox3.ResumeLayout(false);
     this.GroupBox3.PerformLayout();
     this.GroupBox2.ResumeLayout(false);
     this.TabPage2.ResumeLayout(false);
     this.TabPage2.PerformLayout();
     this.grbsoles.ResumeLayout(false);
     this.grbsoles.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridgastos)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 46
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.groupBox1            = new System.Windows.Forms.GroupBox();
     this.num2TextBox          = new System.Windows.Forms.TextBox();
     this.num1TextBox          = new System.Windows.Forms.TextBox();
     this.num2label            = new System.Windows.Forms.Label();
     this.num1label            = new System.Windows.Forms.Label();
     this.groupBox2            = new System.Windows.Forms.GroupBox();
     this.DivideradioButton4   = new System.Windows.Forms.RadioButton();
     this.SubtractradioButton3 = new System.Windows.Forms.RadioButton();
     this.MultiplyradioButton2 = new System.Windows.Forms.RadioButton();
     this.AddradioButton1      = new System.Windows.Forms.RadioButton();
     this.groupBox3            = new System.Windows.Forms.GroupBox();
     this.resultTextBox        = new System.Windows.Forms.TextBox();
     this.ComputeButton        = new System.Windows.Forms.Button();
     this.ClearButton          = new System.Windows.Forms.Button();
     this.ExitButton           = new System.Windows.Forms.Button();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.num2TextBox);
     this.groupBox1.Controls.Add(this.num1TextBox);
     this.groupBox1.Controls.Add(this.num2label);
     this.groupBox1.Controls.Add(this.num1label);
     this.groupBox1.Location = new System.Drawing.Point(17, 16);
     this.groupBox1.Margin   = new System.Windows.Forms.Padding(4);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Padding  = new System.Windows.Forms.Padding(4);
     this.groupBox1.Size     = new System.Drawing.Size(345, 110);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop  = false;
     this.groupBox1.Text     = "Data Input";
     //
     // num2TextBox
     //
     this.num2TextBox.Location = new System.Drawing.Point(169, 69);
     this.num2TextBox.Margin   = new System.Windows.Forms.Padding(4);
     this.num2TextBox.Name     = "num2TextBox";
     this.num2TextBox.Size     = new System.Drawing.Size(137, 22);
     this.num2TextBox.TabIndex = 3;
     //
     // num1TextBox
     //
     this.num1TextBox.Location = new System.Drawing.Point(169, 39);
     this.num1TextBox.Margin   = new System.Windows.Forms.Padding(4);
     this.num1TextBox.Name     = "num1TextBox";
     this.num1TextBox.Size     = new System.Drawing.Size(137, 22);
     this.num1TextBox.TabIndex = 2;
     //
     // num2label
     //
     this.num2label.Location = new System.Drawing.Point(9, 69);
     this.num2label.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.num2label.Name     = "num2label";
     this.num2label.Size     = new System.Drawing.Size(133, 28);
     this.num2label.TabIndex = 1;
     this.num2label.Text     = "Enter a Number:";
     //
     // num1label
     //
     this.num1label.Location = new System.Drawing.Point(9, 36);
     this.num1label.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.num1label.Name     = "num1label";
     this.num1label.Size     = new System.Drawing.Size(133, 28);
     this.num1label.TabIndex = 0;
     this.num1label.Text     = "Enter a Number:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.DivideradioButton4);
     this.groupBox2.Controls.Add(this.SubtractradioButton3);
     this.groupBox2.Controls.Add(this.MultiplyradioButton2);
     this.groupBox2.Controls.Add(this.AddradioButton1);
     this.groupBox2.Location = new System.Drawing.Point(17, 134);
     this.groupBox2.Margin   = new System.Windows.Forms.Padding(4);
     this.groupBox2.Name     = "groupBox2";
     this.groupBox2.Padding  = new System.Windows.Forms.Padding(4);
     this.groupBox2.Size     = new System.Drawing.Size(345, 101);
     this.groupBox2.TabIndex = 1;
     this.groupBox2.TabStop  = false;
     this.groupBox2.Text     = "Actions";
     //
     // DivideradioButton4
     //
     this.DivideradioButton4.Location = new System.Drawing.Point(184, 62);
     this.DivideradioButton4.Margin   = new System.Windows.Forms.Padding(4);
     this.DivideradioButton4.Name     = "DivideradioButton4";
     this.DivideradioButton4.Size     = new System.Drawing.Size(139, 30);
     this.DivideradioButton4.TabIndex = 3;
     this.DivideradioButton4.TabStop  = true;
     this.DivideradioButton4.Text     = "Divide";
     this.DivideradioButton4.UseVisualStyleBackColor = true;
     //
     // SubtractradioButton3
     //
     this.SubtractradioButton3.Location = new System.Drawing.Point(9, 62);
     this.SubtractradioButton3.Margin   = new System.Windows.Forms.Padding(4);
     this.SubtractradioButton3.Name     = "SubtractradioButton3";
     this.SubtractradioButton3.Size     = new System.Drawing.Size(139, 30);
     this.SubtractradioButton3.TabIndex = 2;
     this.SubtractradioButton3.TabStop  = true;
     this.SubtractradioButton3.Text     = "Subtract";
     this.SubtractradioButton3.UseVisualStyleBackColor = true;
     //
     // MultiplyradioButton2
     //
     this.MultiplyradioButton2.Location = new System.Drawing.Point(184, 23);
     this.MultiplyradioButton2.Margin   = new System.Windows.Forms.Padding(4);
     this.MultiplyradioButton2.Name     = "MultiplyradioButton2";
     this.MultiplyradioButton2.Size     = new System.Drawing.Size(139, 30);
     this.MultiplyradioButton2.TabIndex = 1;
     this.MultiplyradioButton2.TabStop  = true;
     this.MultiplyradioButton2.Text     = "Multiply";
     this.MultiplyradioButton2.UseVisualStyleBackColor = true;
     //
     // AddradioButton1
     //
     this.AddradioButton1.Location = new System.Drawing.Point(9, 25);
     this.AddradioButton1.Margin   = new System.Windows.Forms.Padding(4);
     this.AddradioButton1.Name     = "AddradioButton1";
     this.AddradioButton1.Size     = new System.Drawing.Size(139, 30);
     this.AddradioButton1.TabIndex = 0;
     this.AddradioButton1.TabStop  = true;
     this.AddradioButton1.Text     = "Add";
     this.AddradioButton1.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.resultTextBox);
     this.groupBox3.Location = new System.Drawing.Point(17, 244);
     this.groupBox3.Margin   = new System.Windows.Forms.Padding(4);
     this.groupBox3.Name     = "groupBox3";
     this.groupBox3.Padding  = new System.Windows.Forms.Padding(4);
     this.groupBox3.Size     = new System.Drawing.Size(345, 58);
     this.groupBox3.TabIndex = 2;
     this.groupBox3.TabStop  = false;
     this.groupBox3.Text     = "Result";
     //
     // resultTextBox
     //
     this.resultTextBox.Location = new System.Drawing.Point(9, 25);
     this.resultTextBox.Margin   = new System.Windows.Forms.Padding(4);
     this.resultTextBox.Name     = "resultTextBox";
     this.resultTextBox.Size     = new System.Drawing.Size(327, 22);
     this.resultTextBox.TabIndex = 0;
     //
     // ComputeButton
     //
     this.ComputeButton.Location = new System.Drawing.Point(17, 321);
     this.ComputeButton.Margin   = new System.Windows.Forms.Padding(4);
     this.ComputeButton.Name     = "ComputeButton";
     this.ComputeButton.Size     = new System.Drawing.Size(100, 28);
     this.ComputeButton.TabIndex = 4;
     this.ComputeButton.Text     = "Compute";
     this.ComputeButton.UseVisualStyleBackColor = true;
     this.ComputeButton.Click += new System.EventHandler(this.ComputeButtonClick);
     //
     // ClearButton
     //
     this.ClearButton.Location = new System.Drawing.Point(141, 321);
     this.ClearButton.Margin   = new System.Windows.Forms.Padding(4);
     this.ClearButton.Name     = "ClearButton";
     this.ClearButton.Size     = new System.Drawing.Size(100, 28);
     this.ClearButton.TabIndex = 5;
     this.ClearButton.Text     = "Clear";
     this.ClearButton.UseVisualStyleBackColor = true;
     this.ClearButton.Click += new System.EventHandler(this.ClearButtonClick);
     //
     // ExitButton
     //
     this.ExitButton.Location = new System.Drawing.Point(263, 321);
     this.ExitButton.Margin   = new System.Windows.Forms.Padding(4);
     this.ExitButton.Name     = "ExitButton";
     this.ExitButton.Size     = new System.Drawing.Size(100, 28);
     this.ExitButton.TabIndex = 6;
     this.ExitButton.Text     = "Exit";
     this.ExitButton.UseVisualStyleBackColor = true;
     this.ExitButton.Click += new System.EventHandler(this.ExitButtonClick);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(379, 376);
     this.Controls.Add(this.ExitButton);
     this.Controls.Add(this.ClearButton);
     this.Controls.Add(this.ComputeButton);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name   = "MainForm";
     this.Text   = "Let\'s Do Math";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     this.dgvData = new System.Windows.Forms.DataGridView();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btnRowAdd = new System.Windows.Forms.Button();
     this.btnColumnAdd = new System.Windows.Forms.Button();
     this.btnDataFileLoad = new System.Windows.Forms.Button();
     this.grpDataType = new System.Windows.Forms.GroupBox();
     this.radDataTypeOrd = new System.Windows.Forms.RadioButton();
     this.radDataTypeInt = new System.Windows.Forms.RadioButton();
     this.radDataTypeFre = new System.Windows.Forms.RadioButton();
     this.btnRun = new System.Windows.Forms.Button();
     this.groupBox5 = new System.Windows.Forms.GroupBox();
     this.dgvStatMeasure = new System.Windows.Forms.DataGridView();
     this.colStatMeasure = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colOrder = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.colUse = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.smiDeleteSelCol = new System.Windows.Forms.ToolStripMenuItem();
     this.smiDeleteSelRow = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.cmsDataCells = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.smiRenameHeader = new System.Windows.Forms.ToolStripMenuItem();
     this.txtRenameHeader = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.smiRenameColumn = new System.Windows.Forms.ToolStripMenuItem();
     this.smiRenameRow = new System.Windows.Forms.ToolStripMenuItem();
     this.smiRenameTopLeftCell = new System.Windows.Forms.ToolStripMenuItem();
     this.menInputAndSelection = new System.Windows.Forms.MenuStrip();
     this.fileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.openToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.helpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.viewHelpToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator4 = new System.Windows.Forms.ToolStripSeparator();
     this.aboutStatisticalAnalyzerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.grpDataType.SuspendLayout();
     this.groupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).BeginInit();
     this.cmsDataCells.SuspendLayout();
     this.menInputAndSelection.SuspendLayout();
     this.SuspendLayout();
     //
     // dgvData
     //
     this.dgvData.AllowUserToResizeColumns = false;
     this.dgvData.AllowUserToResizeRows = false;
     this.dgvData.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
     this.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvData.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Column1});
     this.dgvData.Location = new System.Drawing.Point(0, 90);
     this.dgvData.Name = "dgvData";
     this.dgvData.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
     this.dgvData.Size = new System.Drawing.Size(596, 365);
     this.dgvData.TabIndex = 0;
     this.dgvData.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvData_CellEndEdit);
     this.dgvData.CellMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseClick);
     this.dgvData.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvData_CellMouseUp);
     this.dgvData.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler(this.dgvData_ColumnAdded);
     this.dgvData.ColumnHeaderMouseClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseClick);
     this.dgvData.ColumnHeaderMouseDoubleClick += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dataGridView1_ColumnHeaderMouseDoubleClick);
     this.dgvData.DefaultValuesNeeded += new System.Windows.Forms.DataGridViewRowEventHandler(this.dgvData_DefaultValuesNeeded);
     //
     // Column1
     //
     this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.AllCells;
     this.Column1.HeaderText = "Column1";
     this.Column1.Name = "Column1";
     this.Column1.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Column1.Width = 54;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btnRowAdd);
     this.groupBox1.Controls.Add(this.btnColumnAdd);
     this.groupBox1.Controls.Add(this.btnDataFileLoad);
     this.groupBox1.Controls.Add(this.dgvData);
     this.groupBox1.Location = new System.Drawing.Point(12, 26);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(596, 461);
     this.groupBox1.TabIndex = 1;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Input and Select Data";
     //
     // btnRowAdd
     //
     this.btnRowAdd.Location = new System.Drawing.Point(91, 67);
     this.btnRowAdd.Name = "btnRowAdd";
     this.btnRowAdd.Size = new System.Drawing.Size(79, 21);
     this.btnRowAdd.TabIndex = 9;
     this.btnRowAdd.Text = "Add Ro&w";
     this.btnRowAdd.UseVisualStyleBackColor = true;
     this.btnRowAdd.Click += new System.EventHandler(this.btnRowAdd_Click);
     //
     // btnColumnAdd
     //
     this.btnColumnAdd.Location = new System.Drawing.Point(6, 67);
     this.btnColumnAdd.Name = "btnColumnAdd";
     this.btnColumnAdd.Size = new System.Drawing.Size(79, 21);
     this.btnColumnAdd.TabIndex = 2;
     this.btnColumnAdd.Text = "Add &Column";
     this.btnColumnAdd.UseVisualStyleBackColor = true;
     this.btnColumnAdd.Click += new System.EventHandler(this.btnColumnAdd_Click);
     //
     // btnDataFileLoad
     //
     this.btnDataFileLoad.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnDataFileLoad.Location = new System.Drawing.Point(6, 19);
     this.btnDataFileLoad.Name = "btnDataFileLoad";
     this.btnDataFileLoad.Size = new System.Drawing.Size(115, 32);
     this.btnDataFileLoad.TabIndex = 1;
     this.btnDataFileLoad.Text = "&Load Data File";
     this.btnDataFileLoad.UseVisualStyleBackColor = true;
     this.btnDataFileLoad.Click += new System.EventHandler(this.btnDataFileLoad_Click);
     //
     // grpDataType
     //
     this.grpDataType.Controls.Add(this.radDataTypeOrd);
     this.grpDataType.Controls.Add(this.radDataTypeInt);
     this.grpDataType.Controls.Add(this.radDataTypeFre);
     this.grpDataType.Location = new System.Drawing.Point(521, 26);
     this.grpDataType.Name = "grpDataType";
     this.grpDataType.Size = new System.Drawing.Size(87, 88);
     this.grpDataType.TabIndex = 2;
     this.grpDataType.TabStop = false;
     this.grpDataType.Text = "Data Type";
     //
     // radDataTypeOrd
     //
     this.radDataTypeOrd.AutoSize = true;
     this.radDataTypeOrd.Location = new System.Drawing.Point(6, 67);
     this.radDataTypeOrd.Name = "radDataTypeOrd";
     this.radDataTypeOrd.Size = new System.Drawing.Size(58, 17);
     this.radDataTypeOrd.TabIndex = 2;
     this.radDataTypeOrd.TabStop = true;
     this.radDataTypeOrd.Text = "Or&dinal";
     this.radDataTypeOrd.UseVisualStyleBackColor = true;
     this.radDataTypeOrd.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // radDataTypeInt
     //
     this.radDataTypeInt.AutoSize = true;
     this.radDataTypeInt.Location = new System.Drawing.Point(6, 43);
     this.radDataTypeInt.Name = "radDataTypeInt";
     this.radDataTypeInt.Size = new System.Drawing.Size(60, 17);
     this.radDataTypeInt.TabIndex = 1;
     this.radDataTypeInt.TabStop = true;
     this.radDataTypeInt.Text = "&Interval";
     this.radDataTypeInt.UseVisualStyleBackColor = true;
     this.radDataTypeInt.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // radDataTypeFre
     //
     this.radDataTypeFre.AutoSize = true;
     this.radDataTypeFre.Location = new System.Drawing.Point(6, 19);
     this.radDataTypeFre.Name = "radDataTypeFre";
     this.radDataTypeFre.Size = new System.Drawing.Size(75, 17);
     this.radDataTypeFre.TabIndex = 0;
     this.radDataTypeFre.TabStop = true;
     this.radDataTypeFre.Text = "F&requency";
     this.radDataTypeFre.UseVisualStyleBackColor = true;
     this.radDataTypeFre.CheckedChanged += new System.EventHandler(this.grpDataType_CheckedChanged);
     //
     // btnRun
     //
     this.btnRun.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnRun.Location = new System.Drawing.Point(633, 446);
     this.btnRun.Name = "btnRun";
     this.btnRun.Size = new System.Drawing.Size(312, 35);
     this.btnRun.TabIndex = 1;
     this.btnRun.Text = "R&un";
     this.btnRun.UseVisualStyleBackColor = true;
     this.btnRun.Click += new System.EventHandler(this.btnRun_Click);
     //
     // groupBox5
     //
     this.groupBox5.Controls.Add(this.dgvStatMeasure);
     this.groupBox5.Location = new System.Drawing.Point(633, 26);
     this.groupBox5.Name = "groupBox5";
     this.groupBox5.Size = new System.Drawing.Size(312, 410);
     this.groupBox5.TabIndex = 13;
     this.groupBox5.TabStop = false;
     this.groupBox5.Text = "Select Statistical Measure(s)";
     //
     // dgvStatMeasure
     //
     this.dgvStatMeasure.AllowUserToAddRows = false;
     this.dgvStatMeasure.AllowUserToResizeColumns = false;
     this.dgvStatMeasure.AllowUserToResizeRows = false;
     this.dgvStatMeasure.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgvStatMeasure.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colStatMeasure,
     this.colOrder,
     this.colUse});
     dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.ControlLight;
     dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.ControlText;
     dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.dgvStatMeasure.DefaultCellStyle = dataGridViewCellStyle2;
     this.dgvStatMeasure.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
     this.dgvStatMeasure.Location = new System.Drawing.Point(0, 19);
     this.dgvStatMeasure.Name = "dgvStatMeasure";
     this.dgvStatMeasure.RowHeadersVisible = false;
     this.dgvStatMeasure.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing;
     this.dgvStatMeasure.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.dgvStatMeasure.Size = new System.Drawing.Size(312, 391);
     this.dgvStatMeasure.TabIndex = 15;
     this.dgvStatMeasure.CellMouseUp += new System.Windows.Forms.DataGridViewCellMouseEventHandler(this.dgvStatMeasure_CellMouseUp);
     this.dgvStatMeasure.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvStatMeasure_CellValueChanged);
     //
     // colStatMeasure
     //
     this.colStatMeasure.HeaderText = "Statistical Measure";
     this.colStatMeasure.Name = "colStatMeasure";
     this.colStatMeasure.ReadOnly = true;
     this.colStatMeasure.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colStatMeasure.Width = 172;
     //
     // colOrder
     //
     this.colOrder.HeaderText = "Series Order";
     this.colOrder.Name = "colOrder";
     this.colOrder.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colOrder.Width = 90;
     //
     // colUse
     //
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.NullValue = false;
     dataGridViewCellStyle1.Padding = new System.Windows.Forms.Padding(0, 0, 25, 0);
     this.colUse.DefaultCellStyle = dataGridViewCellStyle1;
     this.colUse.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.colUse.HeaderText = "Use";
     this.colUse.Name = "colUse";
     this.colUse.Resizable = System.Windows.Forms.DataGridViewTriState.False;
     this.colUse.Width = 47;
     //
     // smiDeleteSelCol
     //
     this.smiDeleteSelCol.Name = "smiDeleteSelCol";
     this.smiDeleteSelCol.Size = new System.Drawing.Size(180, 22);
     this.smiDeleteSelCol.Text = "Delete Selected Columns";
     this.smiDeleteSelCol.Click += new System.EventHandler(this.smiDeleteSelCol_Click);
     //
     // smiDeleteSelRow
     //
     this.smiDeleteSelRow.Name = "smiDeleteSelRow";
     this.smiDeleteSelRow.Size = new System.Drawing.Size(180, 22);
     this.smiDeleteSelRow.Text = "Delete Selected Rows";
     this.smiDeleteSelRow.Click += new System.EventHandler(this.smiDeleteSelRow_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(177, 6);
     //
     // cmsDataCells
     //
     this.cmsDataCells.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.smiDeleteSelCol,
     this.smiDeleteSelRow,
     this.toolStripSeparator1,
     this.smiRenameHeader});
     this.cmsDataCells.Name = "contextMenuStrip1";
     this.cmsDataCells.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.cmsDataCells.ShowImageMargin = false;
     this.cmsDataCells.Size = new System.Drawing.Size(181, 76);
     this.cmsDataCells.Opening += new System.ComponentModel.CancelEventHandler(this.cmsDataCells_Opening);
     //
     // smiRenameHeader
     //
     this.smiRenameHeader.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.txtRenameHeader,
     this.toolStripSeparator2,
     this.smiRenameColumn,
     this.smiRenameRow,
     this.smiRenameTopLeftCell});
     this.smiRenameHeader.Name = "smiRenameHeader";
     this.smiRenameHeader.Size = new System.Drawing.Size(180, 22);
     this.smiRenameHeader.Text = "Rename Header";
     //
     // txtRenameHeader
     //
     this.txtRenameHeader.Name = "txtRenameHeader";
     this.txtRenameHeader.Size = new System.Drawing.Size(150, 23);
     this.txtRenameHeader.ToolTipText = "Type new name here";
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(220, 6);
     //
     // smiRenameColumn
     //
     this.smiRenameColumn.Name = "smiRenameColumn";
     this.smiRenameColumn.Size = new System.Drawing.Size(223, 22);
     this.smiRenameColumn.Text = "Rename Selected Column(s)";
     this.smiRenameColumn.Click += new System.EventHandler(this.smiRenameColumn_Click);
     //
     // smiRenameRow
     //
     this.smiRenameRow.Name = "smiRenameRow";
     this.smiRenameRow.Size = new System.Drawing.Size(223, 22);
     this.smiRenameRow.Text = "Rename Selected Row(s)";
     this.smiRenameRow.Click += new System.EventHandler(this.smiRenameRow_Click);
     //
     // smiRenameTopLeftCell
     //
     this.smiRenameTopLeftCell.Name = "smiRenameTopLeftCell";
     this.smiRenameTopLeftCell.Size = new System.Drawing.Size(223, 22);
     this.smiRenameTopLeftCell.Text = "Rename Top-left Cell";
     this.smiRenameTopLeftCell.Click += new System.EventHandler(this.smiRenameTopLeftCell_Click);
     //
     // menInputAndSelection
     //
     this.menInputAndSelection.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.fileToolStripMenuItem,
     this.helpToolStripMenuItem});
     this.menInputAndSelection.Location = new System.Drawing.Point(0, 0);
     this.menInputAndSelection.Name = "menInputAndSelection";
     this.menInputAndSelection.Size = new System.Drawing.Size(963, 24);
     this.menInputAndSelection.TabIndex = 14;
     this.menInputAndSelection.Text = "menuStrip1";
     //
     // fileToolStripMenuItem
     //
     this.fileToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.openToolStripMenuItem,
     this.toolStripSeparator3,
     this.exitToolStripMenuItem});
     this.fileToolStripMenuItem.Name = "fileToolStripMenuItem";
     this.fileToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.F)));
     this.fileToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.fileToolStripMenuItem.Text = "&File";
     //
     // openToolStripMenuItem
     //
     this.openToolStripMenuItem.Name = "openToolStripMenuItem";
     this.openToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.O)));
     this.openToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.openToolStripMenuItem.Text = "&Open...";
     this.openToolStripMenuItem.Click += new System.EventHandler(this.openToolStripMenuItem_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(152, 6);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(155, 22);
     this.exitToolStripMenuItem.Text = "E&xit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // helpToolStripMenuItem
     //
     this.helpToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.viewHelpToolStripMenuItem,
     this.toolStripSeparator4,
     this.aboutStatisticalAnalyzerToolStripMenuItem});
     this.helpToolStripMenuItem.Name = "helpToolStripMenuItem";
     this.helpToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Alt | System.Windows.Forms.Keys.H)));
     this.helpToolStripMenuItem.Size = new System.Drawing.Size(44, 20);
     this.helpToolStripMenuItem.Text = "&Help";
     //
     // viewHelpToolStripMenuItem
     //
     this.viewHelpToolStripMenuItem.Name = "viewHelpToolStripMenuItem";
     this.viewHelpToolStripMenuItem.ShortcutKeys = System.Windows.Forms.Keys.F1;
     this.viewHelpToolStripMenuItem.Size = new System.Drawing.Size(217, 22);
     this.viewHelpToolStripMenuItem.Text = "&View Help...";
     this.viewHelpToolStripMenuItem.Click += new System.EventHandler(this.viewHelpToolStripMenuItem_Click);
     //
     // toolStripSeparator4
     //
     this.toolStripSeparator4.Name = "toolStripSeparator4";
     this.toolStripSeparator4.Size = new System.Drawing.Size(214, 6);
     //
     // aboutStatisticalAnalyzerToolStripMenuItem
     //
     this.aboutStatisticalAnalyzerToolStripMenuItem.Name = "aboutStatisticalAnalyzerToolStripMenuItem";
     this.aboutStatisticalAnalyzerToolStripMenuItem.Size = new System.Drawing.Size(217, 22);
     this.aboutStatisticalAnalyzerToolStripMenuItem.Text = "&About Statistical Analyzer...";
     this.aboutStatisticalAnalyzerToolStripMenuItem.Click += new System.EventHandler(this.aboutStatisticalAnalyzerToolStripMenuItem_Click);
     //
     // InputAndSelectionForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(963, 489);
     this.Controls.Add(this.menInputAndSelection);
     this.Controls.Add(this.grpDataType);
     this.Controls.Add(this.btnRun);
     this.Controls.Add(this.groupBox5);
     this.Controls.Add(this.groupBox1);
     this.Cursor = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MainMenuStrip = this.menInputAndSelection;
     this.MaximizeBox = false;
     this.Name = "InputAndSelectionForm";
     this.Text = "Statistical Analyzer";
     this.Load += new System.EventHandler(this.InputAndSelectionForm_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgvData)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.grpDataType.ResumeLayout(false);
     this.grpDataType.PerformLayout();
     this.groupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgvStatMeasure)).EndInit();
     this.cmsDataCells.ResumeLayout(false);
     this.menInputAndSelection.ResumeLayout(false);
     this.menInputAndSelection.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 48
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AddLap));
     this.btnRecord     = new System.Windows.Forms.Button();
     this.btnCancel     = new System.Windows.Forms.Button();
     this.txtInput      = new System.Windows.Forms.TextBox();
     this.lbl           = new System.Windows.Forms.Label();
     this.rEndingNow    = new System.Windows.Forms.RadioButton();
     this.rEndingAt     = new System.Windows.Forms.RadioButton();
     this.rStartingAt   = new System.Windows.Forms.RadioButton();
     this.rStartingNow  = new System.Windows.Forms.RadioButton();
     this.dtEndPicker   = new System.Windows.Forms.DateTimePicker();
     this.dtStartPicker = new System.Windows.Forms.DateTimePicker();
     this.lblDuration   = new System.Windows.Forms.Label();
     this.label1        = new System.Windows.Forms.Label();
     this.cboTask       = new System.Windows.Forms.ComboBox();
     this.SuspendLayout();
     //
     // btnRecord
     //
     this.btnRecord.Location = new System.Drawing.Point(64, 264);
     this.btnRecord.Name     = "btnRecord";
     this.btnRecord.Size     = new System.Drawing.Size(96, 32);
     this.btnRecord.TabIndex = 0;
     this.btnRecord.Text     = "Record";
     this.btnRecord.Click   += new System.EventHandler(this.btnRecord_Click);
     //
     // btnCancel
     //
     this.btnCancel.Location = new System.Drawing.Point(192, 264);
     this.btnCancel.Name     = "btnCancel";
     this.btnCancel.Size     = new System.Drawing.Size(96, 32);
     this.btnCancel.TabIndex = 1;
     this.btnCancel.Text     = "Cancel";
     this.btnCancel.Click   += new System.EventHandler(this.btnCancel_Click);
     //
     // txtInput
     //
     this.txtInput.Location     = new System.Drawing.Point(174, 54);
     this.txtInput.Name         = "txtInput";
     this.txtInput.Size         = new System.Drawing.Size(136, 21);
     this.txtInput.TabIndex     = 2;
     this.txtInput.TextChanged += new System.EventHandler(this.txtInput_TextChanged);
     //
     // lbl
     //
     this.lbl.AutoSize = true;
     this.lbl.Location = new System.Drawing.Point(30, 62);
     this.lbl.Name     = "lbl";
     this.lbl.Size     = new System.Drawing.Size(115, 13);
     this.lbl.TabIndex = 3;
     this.lbl.Text     = "Enter the duration:";
     //
     // rEndingNow
     //
     this.rEndingNow.Checked         = true;
     this.rEndingNow.Location        = new System.Drawing.Point(62, 118);
     this.rEndingNow.Name            = "rEndingNow";
     this.rEndingNow.Size            = new System.Drawing.Size(120, 32);
     this.rEndingNow.TabIndex        = 4;
     this.rEndingNow.TabStop         = true;
     this.rEndingNow.Text            = "Ending Now";
     this.rEndingNow.CheckedChanged += new System.EventHandler(this.RadioButtonChanged);
     //
     // rEndingAt
     //
     this.rEndingAt.Location        = new System.Drawing.Point(62, 150);
     this.rEndingAt.Name            = "rEndingAt";
     this.rEndingAt.Size            = new System.Drawing.Size(120, 32);
     this.rEndingAt.TabIndex        = 5;
     this.rEndingAt.Text            = "Ending:";
     this.rEndingAt.CheckedChanged += new System.EventHandler(this.RadioButtonChanged);
     //
     // rStartingAt
     //
     this.rStartingAt.Location        = new System.Drawing.Point(62, 214);
     this.rStartingAt.Name            = "rStartingAt";
     this.rStartingAt.Size            = new System.Drawing.Size(120, 32);
     this.rStartingAt.TabIndex        = 6;
     this.rStartingAt.Text            = "Starting at:";
     this.rStartingAt.CheckedChanged += new System.EventHandler(this.RadioButtonChanged);
     //
     // rStartingNow
     //
     this.rStartingNow.Location        = new System.Drawing.Point(62, 182);
     this.rStartingNow.Name            = "rStartingNow";
     this.rStartingNow.Size            = new System.Drawing.Size(120, 32);
     this.rStartingNow.TabIndex        = 7;
     this.rStartingNow.Text            = "Starting Now";
     this.rStartingNow.CheckedChanged += new System.EventHandler(this.RadioButtonChanged);
     //
     // dtEndPicker
     //
     this.dtEndPicker.CustomFormat = "ddMMMMMyyyy   HH:mm:ss";
     this.dtEndPicker.Enabled      = false;
     this.dtEndPicker.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtEndPicker.Location     = new System.Drawing.Point(174, 150);
     this.dtEndPicker.Name         = "dtEndPicker";
     this.dtEndPicker.Size         = new System.Drawing.Size(208, 21);
     this.dtEndPicker.TabIndex     = 8;
     this.dtEndPicker.Value        = new System.DateTime(2005, 8, 23, 14, 57, 0, 0);
     //
     // dtStartPicker
     //
     this.dtStartPicker.CustomFormat = "ddMMMMMyyyy   HH:mm:ss";
     this.dtStartPicker.Enabled      = false;
     this.dtStartPicker.Format       = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dtStartPicker.Location     = new System.Drawing.Point(174, 222);
     this.dtStartPicker.Name         = "dtStartPicker";
     this.dtStartPicker.Size         = new System.Drawing.Size(208, 21);
     this.dtStartPicker.TabIndex     = 9;
     //
     // lblDuration
     //
     this.lblDuration.Location = new System.Drawing.Point(174, 86);
     this.lblDuration.Name     = "lblDuration";
     this.lblDuration.Size     = new System.Drawing.Size(224, 24);
     this.lblDuration.TabIndex = 10;
     this.lblDuration.Text     = "...";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(30, 25);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(102, 13);
     this.label1.TabIndex = 3;
     this.label1.Text     = "Task Description";
     //
     // cboTask
     //
     this.cboTask.FormattingEnabled = true;
     this.cboTask.Location          = new System.Drawing.Point(174, 22);
     this.cboTask.Name     = "cboTask";
     this.cboTask.Size     = new System.Drawing.Size(208, 21);
     this.cboTask.TabIndex = 11;
     //
     // AddLap
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
     this.ClientSize        = new System.Drawing.Size(432, 326);
     this.Controls.Add(this.cboTask);
     this.Controls.Add(this.lblDuration);
     this.Controls.Add(this.dtStartPicker);
     this.Controls.Add(this.dtEndPicker);
     this.Controls.Add(this.rStartingNow);
     this.Controls.Add(this.rStartingAt);
     this.Controls.Add(this.rEndingAt);
     this.Controls.Add(this.rEndingNow);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.lbl);
     this.Controls.Add(this.txtInput);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnRecord);
     this.Font = new System.Drawing.Font("Verdana", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "AddLap";
     this.Text = "Add Lap";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Filmes));
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.label18 = new System.Windows.Forms.Label();
     this.Genero = new System.Windows.Forms.GroupBox();
     this.label16 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label12 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.comboBox1 = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.tb_Quantidade = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.button2 = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.button1 = new System.Windows.Forms.Button();
     this.tb_titulo = new System.Windows.Forms.TextBox();
     this.tb_anoprod = new System.Windows.Forms.TextBox();
     this.tb_subtitulo = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.tb_duracao = new System.Windows.Forms.TextBox();
     this.tb_produtora = new System.Windows.Forms.TextBox();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStripButton1 = new System.Windows.Forms.ToolStripButton();
     this.tabPage4 = new System.Windows.Forms.TabPage();
     this.Voltar = new System.Windows.Forms.ToolStrip();
     this.Retornar = new System.Windows.Forms.ToolStripButton();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rb_genero = new System.Windows.Forms.RadioButton();
     this.rb_nome = new System.Windows.Forms.RadioButton();
     this.Bt_Pesquisar = new System.Windows.Forms.Button();
     this.tb_VerPesquisa = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.tbCodAltEx = new System.Windows.Forms.TextBox();
     this.dgFilmes = new System.Windows.Forms.DataGridView();
     this.button3 = new System.Windows.Forms.Button();
     this.button4 = new System.Windows.Forms.Button();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.Genero.SuspendLayout();
     this.toolStrip1.SuspendLayout();
     this.tabPage4.SuspendLayout();
     this.Voltar.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFilmes)).BeginInit();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Controls.Add(this.tabPage4);
     this.tabControl1.Location = new System.Drawing.Point(0, 2);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(634, 460);
     this.tabControl1.TabIndex = 5;
     //
     // tabPage1
     //
     this.tabPage1.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage1.BackgroundImage")));
     this.tabPage1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage1.Controls.Add(this.groupBox3);
     this.tabPage1.Controls.Add(this.toolStrip1);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(626, 434);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Cadastrar Filme";
     //
     // groupBox3
     //
     this.groupBox3.BackColor = System.Drawing.Color.Transparent;
     this.groupBox3.Controls.Add(this.label18);
     this.groupBox3.Controls.Add(this.Genero);
     this.groupBox3.Controls.Add(this.comboBox1);
     this.groupBox3.Controls.Add(this.label1);
     this.groupBox3.Controls.Add(this.tb_Quantidade);
     this.groupBox3.Controls.Add(this.label2);
     this.groupBox3.Controls.Add(this.label13);
     this.groupBox3.Controls.Add(this.label3);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.button2);
     this.groupBox3.Controls.Add(this.label5);
     this.groupBox3.Controls.Add(this.button1);
     this.groupBox3.Controls.Add(this.tb_titulo);
     this.groupBox3.Controls.Add(this.tb_anoprod);
     this.groupBox3.Controls.Add(this.tb_subtitulo);
     this.groupBox3.Controls.Add(this.label7);
     this.groupBox3.Controls.Add(this.tb_duracao);
     this.groupBox3.Controls.Add(this.tb_produtora);
     this.groupBox3.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox3.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox3.Location = new System.Drawing.Point(22, 6);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(583, 390);
     this.groupBox3.TabIndex = 19;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Cadastrar Novo Filme";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Verdana", 7F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.SystemColors.Control;
     this.label18.Location = new System.Drawing.Point(396, 19);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(150, 12);
     this.label18.TabIndex = 52;
     this.label18.Text = "( * ) Campos Obrigatórios";
     //
     // Genero
     //
     this.Genero.Controls.Add(this.label16);
     this.Genero.Controls.Add(this.label15);
     this.Genero.Controls.Add(this.label14);
     this.Genero.Controls.Add(this.label12);
     this.Genero.Controls.Add(this.label11);
     this.Genero.Controls.Add(this.label10);
     this.Genero.Controls.Add(this.label9);
     this.Genero.Controls.Add(this.label8);
     this.Genero.Controls.Add(this.label17);
     this.Genero.Enabled = false;
     this.Genero.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))));
     this.Genero.ForeColor = System.Drawing.SystemColors.Control;
     this.Genero.Location = new System.Drawing.Point(41, 322);
     this.Genero.Name = "Genero";
     this.Genero.Size = new System.Drawing.Size(490, 61);
     this.Genero.TabIndex = 38;
     this.Genero.TabStop = false;
     this.Genero.Text = "Genero";
     //
     // label16
     //
     this.label16.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label16.AutoSize = true;
     this.label16.Enabled = false;
     this.label16.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label16.Location = new System.Drawing.Point(411, 17);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(65, 13);
     this.label16.TabIndex = 8;
     this.label16.Text = "O - Outros";
     //
     // label15
     //
     this.label15.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label15.AutoSize = true;
     this.label15.Enabled = false;
     this.label15.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label15.Location = new System.Drawing.Point(305, 39);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(107, 13);
     this.label15.TabIndex = 7;
     this.label15.Text = "M - Documentário";
     //
     // label14
     //
     this.label14.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label14.AutoSize = true;
     this.label14.Enabled = false;
     this.label14.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label14.Location = new System.Drawing.Point(97, 37);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(61, 13);
     this.label14.TabIndex = 6;
     this.label14.Text = "T - Terror";
     //
     // label12
     //
     this.label12.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label12.AutoSize = true;
     this.label12.Enabled = false;
     this.label12.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label12.Location = new System.Drawing.Point(6, 38);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(64, 13);
     this.label12.TabIndex = 5;
     this.label12.Text = "F - Ficção";
     //
     // label11
     //
     this.label11.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label11.AutoSize = true;
     this.label11.Enabled = false;
     this.label11.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label11.Location = new System.Drawing.Point(305, 17);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(64, 13);
     this.label11.TabIndex = 4;
     this.label11.Text = "D - Drama";
     //
     // label10
     //
     this.label10.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label10.AutoSize = true;
     this.label10.Enabled = false;
     this.label10.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label10.Location = new System.Drawing.Point(190, 37);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(81, 13);
     this.label10.TabIndex = 3;
     this.label10.Text = "R - Romance";
     //
     // label9
     //
     this.label9.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label9.AutoSize = true;
     this.label9.Enabled = false;
     this.label9.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label9.Location = new System.Drawing.Point(190, 16);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(75, 13);
     this.label9.TabIndex = 2;
     this.label9.Text = "C - Comédia";
     //
     // label8
     //
     this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label8.AutoSize = true;
     this.label8.Enabled = false;
     this.label8.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label8.Location = new System.Drawing.Point(96, 16);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(78, 13);
     this.label8.TabIndex = 1;
     this.label8.Text = "V - Aventura";
     //
     // label17
     //
     this.label17.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label17.AutoSize = true;
     this.label17.Enabled = false;
     this.label17.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label17.Location = new System.Drawing.Point(6, 16);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(63, 13);
     this.label17.TabIndex = 0;
     this.label17.Text = "A - ação  ";
     //
     // comboBox1
     //
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
     "A",
     "V",
     "C",
     "D",
     "R",
     "F",
     "T",
     "M",
     "O"});
     this.comboBox1.Location = new System.Drawing.Point(153, 138);
     this.comboBox1.Name = "comboBox1";
     this.comboBox1.Size = new System.Drawing.Size(57, 24);
     this.comboBox1.TabIndex = 19;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(62, 49);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(61, 16);
     this.label1.TabIndex = 0;
     this.label1.Text = "Título *";
     //
     // tb_Quantidade
     //
     this.tb_Quantidade.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_Quantidade.Location = new System.Drawing.Point(153, 239);
     this.tb_Quantidade.Name = "tb_Quantidade";
     this.tb_Quantidade.Size = new System.Drawing.Size(123, 23);
     this.tb_Quantidade.TabIndex = 18;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(62, 194);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(93, 16);
     this.label2.TabIndex = 1;
     this.label2.Text = "Produtora *";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(62, 242);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(92, 16);
     this.label13.TabIndex = 17;
     this.label13.Text = "Quantidade";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(62, 95);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(73, 16);
     this.label3.TabIndex = 2;
     this.label3.Text = "Subtítulo";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(62, 141);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(77, 16);
     this.label4.TabIndex = 3;
     this.label4.Text = "Genero  *";
     //
     // button2
     //
     this.button2.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button2.Location = new System.Drawing.Point(388, 235);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(107, 31);
     this.button2.TabIndex = 15;
     this.button2.Text = "&Cadastrar Filme";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(305, 198);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(73, 16);
     this.label5.TabIndex = 4;
     this.label5.Text = "Duração:";
     //
     // button1
     //
     this.button1.ForeColor = System.Drawing.SystemColors.ControlText;
     this.button1.Location = new System.Drawing.Point(388, 272);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(107, 31);
     this.button1.TabIndex = 14;
     this.button1.Text = "&Cancelar";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // tb_titulo
     //
     this.tb_titulo.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_titulo.Location = new System.Drawing.Point(153, 46);
     this.tb_titulo.Name = "tb_titulo";
     this.tb_titulo.Size = new System.Drawing.Size(342, 23);
     this.tb_titulo.TabIndex = 6;
     //
     // tb_anoprod
     //
     this.tb_anoprod.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_anoprod.Location = new System.Drawing.Point(384, 136);
     this.tb_anoprod.Name = "tb_anoprod";
     this.tb_anoprod.Size = new System.Drawing.Size(111, 23);
     this.tb_anoprod.TabIndex = 13;
     //
     // tb_subtitulo
     //
     this.tb_subtitulo.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_subtitulo.Location = new System.Drawing.Point(153, 95);
     this.tb_subtitulo.Name = "tb_subtitulo";
     this.tb_subtitulo.Size = new System.Drawing.Size(342, 23);
     this.tb_subtitulo.TabIndex = 7;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(243, 143);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(143, 16);
     this.label7.TabIndex = 12;
     this.label7.Text = "Ano de Produção *";
     //
     // tb_duracao
     //
     this.tb_duracao.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_duracao.Location = new System.Drawing.Point(384, 195);
     this.tb_duracao.Name = "tb_duracao";
     this.tb_duracao.Size = new System.Drawing.Size(111, 23);
     this.tb_duracao.TabIndex = 8;
     //
     // tb_produtora
     //
     this.tb_produtora.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_produtora.Location = new System.Drawing.Point(153, 194);
     this.tb_produtora.Name = "tb_produtora";
     this.tb_produtora.Size = new System.Drawing.Size(123, 23);
     this.tb_produtora.TabIndex = 9;
     //
     // toolStrip1
     //
     this.toolStrip1.BackColor = System.Drawing.Color.Transparent;
     this.toolStrip1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.toolStrip1.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripButton1});
     this.toolStrip1.Location = new System.Drawing.Point(3, 392);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(620, 39);
     this.toolStrip1.TabIndex = 49;
     this.toolStrip1.Text = "toolStrip1";
     //
     // toolStripButton1
     //
     this.toolStripButton1.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.toolStripButton1.ForeColor = System.Drawing.SystemColors.Control;
     this.toolStripButton1.Image = ((System.Drawing.Image)(resources.GetObject("toolStripButton1.Image")));
     this.toolStripButton1.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButton1.Name = "toolStripButton1";
     this.toolStripButton1.Size = new System.Drawing.Size(112, 36);
     this.toolStripButton1.Text = "Retornar";
     this.toolStripButton1.Click += new System.EventHandler(this.toolStripButton1_Click);
     //
     // tabPage4
     //
     this.tabPage4.BackColor = System.Drawing.SystemColors.Control;
     this.tabPage4.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("tabPage4.BackgroundImage")));
     this.tabPage4.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.tabPage4.Controls.Add(this.Voltar);
     this.tabPage4.Controls.Add(this.groupBox2);
     this.tabPage4.Controls.Add(this.label6);
     this.tabPage4.Controls.Add(this.tbCodAltEx);
     this.tabPage4.Controls.Add(this.dgFilmes);
     this.tabPage4.Controls.Add(this.button3);
     this.tabPage4.Controls.Add(this.button4);
     this.tabPage4.Location = new System.Drawing.Point(4, 22);
     this.tabPage4.Name = "tabPage4";
     this.tabPage4.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage4.Size = new System.Drawing.Size(626, 434);
     this.tabPage4.TabIndex = 3;
     this.tabPage4.Text = "Alterar ou Excluir Filme";
     this.tabPage4.Enter += new System.EventHandler(this.tabPage4_Enter);
     //
     // Voltar
     //
     this.Voltar.BackColor = System.Drawing.Color.Transparent;
     this.Voltar.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.Voltar.ImageScalingSize = new System.Drawing.Size(32, 32);
     this.Voltar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.Retornar});
     this.Voltar.Location = new System.Drawing.Point(3, 392);
     this.Voltar.Name = "Voltar";
     this.Voltar.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.Voltar.Size = new System.Drawing.Size(620, 39);
     this.Voltar.TabIndex = 48;
     this.Voltar.Text = "toolStrip1";
     //
     // Retornar
     //
     this.Retornar.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Retornar.ForeColor = System.Drawing.SystemColors.Control;
     this.Retornar.Image = ((System.Drawing.Image)(resources.GetObject("Retornar.Image")));
     this.Retornar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.Retornar.Name = "Retornar";
     this.Retornar.Size = new System.Drawing.Size(112, 36);
     this.Retornar.Text = "Retornar";
     this.Retornar.Click += new System.EventHandler(this.Retornar_Click);
     //
     // groupBox2
     //
     this.groupBox2.BackColor = System.Drawing.Color.Transparent;
     this.groupBox2.Controls.Add(this.groupBox1);
     this.groupBox2.Controls.Add(this.Bt_Pesquisar);
     this.groupBox2.Controls.Add(this.tb_VerPesquisa);
     this.groupBox2.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox2.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox2.Location = new System.Drawing.Point(8, 6);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(615, 86);
     this.groupBox2.TabIndex = 38;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Pesquisa De filme";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rb_genero);
     this.groupBox1.Controls.Add(this.rb_nome);
     this.groupBox1.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.groupBox1.ForeColor = System.Drawing.SystemColors.Control;
     this.groupBox1.Location = new System.Drawing.Point(458, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(154, 68);
     this.groupBox1.TabIndex = 37;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Tipo De Pesquisa";
     //
     // rb_genero
     //
     this.rb_genero.AutoSize = true;
     this.rb_genero.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rb_genero.Location = new System.Drawing.Point(20, 48);
     this.rb_genero.Name = "rb_genero";
     this.rb_genero.Size = new System.Drawing.Size(106, 20);
     this.rb_genero.TabIndex = 34;
     this.rb_genero.Text = "Por Genero";
     this.rb_genero.UseVisualStyleBackColor = true;
     //
     // rb_nome
     //
     this.rb_nome.AutoSize = true;
     this.rb_nome.Checked = true;
     this.rb_nome.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.rb_nome.Location = new System.Drawing.Point(20, 22);
     this.rb_nome.Name = "rb_nome";
     this.rb_nome.Size = new System.Drawing.Size(96, 20);
     this.rb_nome.TabIndex = 32;
     this.rb_nome.TabStop = true;
     this.rb_nome.Text = "Por Nome";
     this.rb_nome.UseVisualStyleBackColor = true;
     //
     // Bt_Pesquisar
     //
     this.Bt_Pesquisar.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Bt_Pesquisar.ForeColor = System.Drawing.SystemColors.ControlText;
     this.Bt_Pesquisar.Location = new System.Drawing.Point(324, 35);
     this.Bt_Pesquisar.Name = "Bt_Pesquisar";
     this.Bt_Pesquisar.Size = new System.Drawing.Size(95, 26);
     this.Bt_Pesquisar.TabIndex = 31;
     this.Bt_Pesquisar.Text = "Pesquisar";
     this.Bt_Pesquisar.UseVisualStyleBackColor = true;
     this.Bt_Pesquisar.Click += new System.EventHandler(this.Bt_Pesquisar_Click);
     //
     // tb_VerPesquisa
     //
     this.tb_VerPesquisa.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tb_VerPesquisa.Location = new System.Drawing.Point(6, 38);
     this.tb_VerPesquisa.Name = "tb_VerPesquisa";
     this.tb_VerPesquisa.Size = new System.Drawing.Size(248, 23);
     this.tb_VerPesquisa.TabIndex = 33;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.SystemColors.Control;
     this.label6.Location = new System.Drawing.Point(6, 105);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(184, 16);
     this.label6.TabIndex = 36;
     this.label6.Text = "Digite o Código do filme:";
     //
     // tbCodAltEx
     //
     this.tbCodAltEx.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tbCodAltEx.Location = new System.Drawing.Point(14, 124);
     this.tbCodAltEx.Name = "tbCodAltEx";
     this.tbCodAltEx.Size = new System.Drawing.Size(248, 23);
     this.tbCodAltEx.TabIndex = 35;
     //
     // dgFilmes
     //
     this.dgFilmes.AllowUserToAddRows = false;
     this.dgFilmes.AllowUserToDeleteRows = false;
     this.dgFilmes.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.dgFilmes.BackgroundColor = System.Drawing.SystemColors.ButtonFace;
     this.dgFilmes.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgFilmes.GridColor = System.Drawing.SystemColors.ControlText;
     this.dgFilmes.Location = new System.Drawing.Point(6, 156);
     this.dgFilmes.Name = "dgFilmes";
     this.dgFilmes.ReadOnly = true;
     this.dgFilmes.Size = new System.Drawing.Size(614, 230);
     this.dgFilmes.TabIndex = 30;
     //
     // button3
     //
     this.button3.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button3.Location = new System.Drawing.Point(332, 124);
     this.button3.Name = "button3";
     this.button3.Size = new System.Drawing.Size(95, 26);
     this.button3.TabIndex = 29;
     this.button3.Text = "&Alterar";
     this.button3.UseVisualStyleBackColor = true;
     this.button3.Click += new System.EventHandler(this.button3_Click);
     //
     // button4
     //
     this.button4.Font = new System.Drawing.Font("Verdana", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.button4.Location = new System.Drawing.Point(466, 124);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(95, 26);
     this.button4.TabIndex = 28;
     this.button4.Text = "&Excluir";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // Filmes
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(634, 462);
     this.Controls.Add(this.tabControl1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
     this.IsMdiContainer = true;
     this.Name = "Filmes";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Filmes";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Filmes_FormClosing);
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.tabPage1.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.Genero.ResumeLayout(false);
     this.Genero.PerformLayout();
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.tabPage4.ResumeLayout(false);
     this.tabPage4.PerformLayout();
     this.Voltar.ResumeLayout(false);
     this.Voltar.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgFilmes)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 50
0
		private void InitializeComponent()
		{
            this.cboShapePattern = new System.Windows.Forms.ComboBox();
            this.cboHue = new System.Windows.Forms.ComboBox();
            this.chkShapePattern = new System.Windows.Forms.CheckBox();
            this.chkColor = new System.Windows.Forms.CheckBox();
            this.radComponents = new System.Windows.Forms.RadioButton();
            this.lblHue = new System.Windows.Forms.Label();
            this.lblPrimaryColor = new System.Windows.Forms.Label();
            this.radCombination = new System.Windows.Forms.RadioButton();
            this.cboPrimaryColor = new System.Windows.Forms.ComboBox();
            this.cboSatValue = new System.Windows.Forms.ComboBox();
            this.lblSatValue = new System.Windows.Forms.Label();
            this.lblSecondaryColor = new System.Windows.Forms.Label();
            this.cboSecondaryColor = new System.Windows.Forms.ComboBox();
            this.chkSize = new System.Windows.Forms.CheckBox();
            this.chkRotation = new System.Windows.Forms.CheckBox();
            this.butRotation = new System.Windows.Forms.Button();
            this.cboSize1 = new System.Windows.Forms.ComboBox();
            this.SuspendLayout();
            // 
            // cboShapePattern
            // 
            this.cboShapePattern.Location = new System.Drawing.Point(224, 11);
            this.cboShapePattern.Name = "cboShapePattern";
            this.cboShapePattern.Size = new System.Drawing.Size(121, 21);
            this.cboShapePattern.TabIndex = 24;
            this.cboShapePattern.SelectedIndexChanged += new System.EventHandler(this.cboShapePattern_SelectedIndexChanged);
            // 
            // cboHue
            // 
            this.cboHue.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboHue.Enabled = false;
            this.cboHue.Location = new System.Drawing.Point(224, 48);
            this.cboHue.Name = "cboHue";
            this.cboHue.Size = new System.Drawing.Size(192, 21);
            this.cboHue.TabIndex = 5;
            this.cboHue.EnabledChanged += new System.EventHandler(this.cboHue_EnabledChanged);
            this.cboHue.SelectedIndexChanged += new System.EventHandler(this.cboHue_SelectedIndexChanged);
            // 
            // chkShapePattern
            // 
            this.chkShapePattern.Location = new System.Drawing.Point(8, 8);
            this.chkShapePattern.Name = "chkShapePattern";
            this.chkShapePattern.Size = new System.Drawing.Size(152, 24);
            this.chkShapePattern.TabIndex = 6;
            this.chkShapePattern.Text = "Shape/Pattern";
            this.chkShapePattern.CheckedChanged += new System.EventHandler(this.chkShapePattern_CheckedChanged);
            // 
            // chkColor
            // 
            this.chkColor.Location = new System.Drawing.Point(8, 32);
            this.chkColor.Name = "chkColor";
            this.chkColor.Size = new System.Drawing.Size(152, 24);
            this.chkColor.TabIndex = 7;
            this.chkColor.Text = "Color";
            this.chkColor.CheckedChanged += new System.EventHandler(this.chkColor_CheckedChanged);
            // 
            // radComponents
            // 
            this.radComponents.Enabled = false;
            this.radComponents.Location = new System.Drawing.Point(24, 56);
            this.radComponents.Name = "radComponents";
            this.radComponents.Size = new System.Drawing.Size(128, 24);
            this.radComponents.TabIndex = 8;
            this.radComponents.Text = "Color Components";
            this.radComponents.CheckedChanged += new System.EventHandler(this.radComponents_CheckedChanged);
            this.radComponents.EnabledChanged += new System.EventHandler(this.radComponents_EnabledChanged);
            // 
            // lblHue
            // 
            this.lblHue.Enabled = false;
            this.lblHue.Location = new System.Drawing.Point(136, 48);
            this.lblHue.Name = "lblHue";
            this.lblHue.Size = new System.Drawing.Size(88, 24);
            this.lblHue.TabIndex = 9;
            this.lblHue.Text = "Hue";
            // 
            // lblPrimaryColor
            // 
            this.lblPrimaryColor.Enabled = false;
            this.lblPrimaryColor.Location = new System.Drawing.Point(136, 104);
            this.lblPrimaryColor.Name = "lblPrimaryColor";
            this.lblPrimaryColor.Size = new System.Drawing.Size(88, 24);
            this.lblPrimaryColor.TabIndex = 12;
            this.lblPrimaryColor.Text = "Color 1";
            // 
            // radCombination
            // 
            this.radCombination.Enabled = false;
            this.radCombination.Location = new System.Drawing.Point(24, 112);
            this.radCombination.Name = "radCombination";
            this.radCombination.Size = new System.Drawing.Size(128, 24);
            this.radCombination.TabIndex = 11;
            this.radCombination.Text = "Color Combination";
            this.radCombination.CheckedChanged += new System.EventHandler(this.radCombination_CheckedChanged);
            this.radCombination.EnabledChanged += new System.EventHandler(this.radCombination_EnabledChanged);
            // 
            // cboPrimaryColor
            // 
            this.cboPrimaryColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboPrimaryColor.Enabled = false;
            this.cboPrimaryColor.Location = new System.Drawing.Point(224, 104);
            this.cboPrimaryColor.Name = "cboPrimaryColor";
            this.cboPrimaryColor.Size = new System.Drawing.Size(192, 21);
            this.cboPrimaryColor.TabIndex = 10;
            this.cboPrimaryColor.EnabledChanged += new System.EventHandler(this.cboPrimaryColor_EnabledChanged);
            this.cboPrimaryColor.SelectedIndexChanged += new System.EventHandler(this.cboPrimaryColor_SelectedIndexChanged);
            // 
            // cboSatValue
            // 
            this.cboSatValue.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSatValue.Enabled = false;
            this.cboSatValue.Location = new System.Drawing.Point(224, 72);
            this.cboSatValue.Name = "cboSatValue";
            this.cboSatValue.Size = new System.Drawing.Size(192, 21);
            this.cboSatValue.TabIndex = 13;
            this.cboSatValue.EnabledChanged += new System.EventHandler(this.cboSatValue_EnabledChanged);
            this.cboSatValue.SelectedIndexChanged += new System.EventHandler(this.cboSatValue_selectedIndexChanged);
            // 
            // lblSatValue
            // 
            this.lblSatValue.Enabled = false;
            this.lblSatValue.Location = new System.Drawing.Point(136, 72);
            this.lblSatValue.Name = "lblSatValue";
            this.lblSatValue.Size = new System.Drawing.Size(88, 24);
            this.lblSatValue.TabIndex = 14;
            this.lblSatValue.Text = "Saturation/Value";
            // 
            // lblSecondaryColor
            // 
            this.lblSecondaryColor.Enabled = false;
            this.lblSecondaryColor.Location = new System.Drawing.Point(136, 128);
            this.lblSecondaryColor.Name = "lblSecondaryColor";
            this.lblSecondaryColor.Size = new System.Drawing.Size(88, 24);
            this.lblSecondaryColor.TabIndex = 16;
            this.lblSecondaryColor.Text = "Color 2";
            // 
            // cboSecondaryColor
            // 
            this.cboSecondaryColor.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSecondaryColor.Enabled = false;
            this.cboSecondaryColor.Location = new System.Drawing.Point(224, 128);
            this.cboSecondaryColor.Name = "cboSecondaryColor";
            this.cboSecondaryColor.Size = new System.Drawing.Size(192, 21);
            this.cboSecondaryColor.TabIndex = 15;
            this.cboSecondaryColor.EnabledChanged += new System.EventHandler(this.cboSecondaryColor_EnabledChanged);
            this.cboSecondaryColor.SelectedIndexChanged += new System.EventHandler(this.cboSecondaryColor_SelectedIndexChanged);
            // 
            // chkSize
            // 
            this.chkSize.Location = new System.Drawing.Point(8, 160);
            this.chkSize.Name = "chkSize";
            this.chkSize.Size = new System.Drawing.Size(152, 24);
            this.chkSize.TabIndex = 18;
            this.chkSize.Text = "Size";
            this.chkSize.CheckedChanged += new System.EventHandler(this.chkSize_CheckedChanged);
            // 
            // chkRotation
            // 
            this.chkRotation.Location = new System.Drawing.Point(8, 192);
            this.chkRotation.Name = "chkRotation";
            this.chkRotation.Size = new System.Drawing.Size(152, 24);
            this.chkRotation.TabIndex = 19;
            this.chkRotation.Text = "Rotation";
            this.chkRotation.CheckedChanged += new System.EventHandler(this.chkRotation_CheckedChanged);
            // 
            // butRotation
            // 
            this.butRotation.Enabled = false;
            this.butRotation.Location = new System.Drawing.Point(224, 192);
            this.butRotation.Name = "butRotation";
            this.butRotation.Size = new System.Drawing.Size(192, 24);
            this.butRotation.TabIndex = 21;
            this.butRotation.Text = "Properties";
            this.butRotation.Click += new System.EventHandler(this.butRotation_Click);
            // 
            // cboSize1
            // 
            this.cboSize1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cboSize1.Enabled = false;
            this.cboSize1.Location = new System.Drawing.Point(224, 160);
            this.cboSize1.Name = "cboSize1";
            this.cboSize1.Size = new System.Drawing.Size(192, 21);
            this.cboSize1.TabIndex = 23;
            this.cboSize1.SelectedIndexChanged += new System.EventHandler(this.cboSize1_selectedindexchanged);
            // 
            // PropPageForm
            // 
            this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
            this.ClientSize = new System.Drawing.Size(424, 285);
            this.Controls.Add(this.cboSize1);
            this.Controls.Add(this.butRotation);
            this.Controls.Add(this.chkRotation);
            this.Controls.Add(this.chkSize);
            this.Controls.Add(this.lblSecondaryColor);
            this.Controls.Add(this.cboSecondaryColor);
            this.Controls.Add(this.lblSatValue);
            this.Controls.Add(this.cboSatValue);
            this.Controls.Add(this.lblPrimaryColor);
            this.Controls.Add(this.radCombination);
            this.Controls.Add(this.cboPrimaryColor);
            this.Controls.Add(this.lblHue);
            this.Controls.Add(this.radComponents);
            this.Controls.Add(this.chkColor);
            this.Controls.Add(this.chkShapePattern);
            this.Controls.Add(this.cboHue);
            this.Controls.Add(this.cboShapePattern);
            this.Name = "PropPageForm";
            this.Text = "ColorPropPageForm";
            this.Load += new System.EventHandler(this.PropPageForm_Load);
            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()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRelatorioMalaDireta));
     this.dataGridView1 = new System.Windows.Forms.DataGridView();
     this.Nome = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.a = new System.Windows.Forms.GroupBox();
     this.radioButton5 = new System.Windows.Forms.RadioButton();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.pnlBotoes = new System.Windows.Forms.Panel();
     this.btnSair = new System.Windows.Forms.Button();
     this.btnConsultar = new System.Windows.Forms.Button();
     this.btnGerar = new System.Windows.Forms.Button();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.button2 = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
     this.a.SuspendLayout();
     this.pnlBotoes.SuspendLayout();
     this.SuspendLayout();
     //
     // dataGridView1
     //
     this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Nome,
     this.Column1,
     this.Column3,
     this.Column2});
     this.dataGridView1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.dataGridView1.Location = new System.Drawing.Point(0, 211);
     this.dataGridView1.Name = "dataGridView1";
     this.dataGridView1.Size = new System.Drawing.Size(449, 179);
     this.dataGridView1.TabIndex = 30;
     //
     // Nome
     //
     this.Nome.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Nome.HeaderText = "Nome";
     this.Nome.Name = "Nome";
     //
     // Column1
     //
     this.Column1.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Column1.HeaderText = "CPF";
     this.Column1.Name = "Column1";
     //
     // Column3
     //
     this.Column3.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Column3.HeaderText = "RG";
     this.Column3.Name = "Column3";
     //
     // Column2
     //
     this.Column2.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
     this.Column2.HeaderText = "Endereço";
     this.Column2.Name = "Column2";
     //
     // a
     //
     this.a.Controls.Add(this.button2);
     this.a.Controls.Add(this.radioButton2);
     this.a.Controls.Add(this.radioButton5);
     this.a.Controls.Add(this.radioButton1);
     this.a.Location = new System.Drawing.Point(15, 84);
     this.a.Name = "a";
     this.a.Size = new System.Drawing.Size(422, 121);
     this.a.TabIndex = 31;
     this.a.TabStop = false;
     this.a.Text = "Filtros";
     //
     // radioButton5
     //
     this.radioButton5.AutoSize = true;
     this.radioButton5.Location = new System.Drawing.Point(28, 29);
     this.radioButton5.Name = "radioButton5";
     this.radioButton5.Size = new System.Drawing.Size(150, 17);
     this.radioButton5.TabIndex = 13;
     this.radioButton5.Text = "Clientes com pastas ativas";
     this.radioButton5.UseVisualStyleBackColor = true;
     //
     // radioButton1
     //
     this.radioButton1.AutoSize = true;
     this.radioButton1.Checked = true;
     this.radioButton1.Location = new System.Drawing.Point(28, 52);
     this.radioButton1.Name = "radioButton1";
     this.radioButton1.Size = new System.Drawing.Size(68, 17);
     this.radioButton1.TabIndex = 14;
     this.radioButton1.TabStop = true;
     this.radioButton1.Text = "Sem filtro";
     this.radioButton1.UseVisualStyleBackColor = true;
     //
     // pnlBotoes
     //
     this.pnlBotoes.BackColor = System.Drawing.SystemColors.Control;
     this.pnlBotoes.Controls.Add(this.btnSair);
     this.pnlBotoes.Controls.Add(this.btnConsultar);
     this.pnlBotoes.Controls.Add(this.btnGerar);
     this.pnlBotoes.Dock = System.Windows.Forms.DockStyle.Top;
     this.pnlBotoes.Location = new System.Drawing.Point(0, 0);
     this.pnlBotoes.Name = "pnlBotoes";
     this.pnlBotoes.Size = new System.Drawing.Size(449, 70);
     this.pnlBotoes.TabIndex = 37;
     //
     // btnSair
     //
     this.btnSair.Dock = System.Windows.Forms.DockStyle.Right;
     this.btnSair.Image = ((System.Drawing.Image)(resources.GetObject("btnSair.Image")));
     this.btnSair.Location = new System.Drawing.Point(374, 0);
     this.btnSair.Name = "btnSair";
     this.btnSair.Size = new System.Drawing.Size(75, 70);
     this.btnSair.TabIndex = 6;
     this.btnSair.Text = "Sair";
     this.btnSair.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnSair.UseVisualStyleBackColor = true;
     //
     // btnConsultar
     //
     this.btnConsultar.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnConsultar.Image = ((System.Drawing.Image)(resources.GetObject("btnConsultar.Image")));
     this.btnConsultar.Location = new System.Drawing.Point(75, 0);
     this.btnConsultar.Name = "btnConsultar";
     this.btnConsultar.Size = new System.Drawing.Size(75, 70);
     this.btnConsultar.TabIndex = 2;
     this.btnConsultar.Text = "Consultar";
     this.btnConsultar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnConsultar.UseVisualStyleBackColor = true;
     //
     // btnGerar
     //
     this.btnGerar.AutoSize = true;
     this.btnGerar.Dock = System.Windows.Forms.DockStyle.Left;
     this.btnGerar.Image = ((System.Drawing.Image)(resources.GetObject("btnGerar.Image")));
     this.btnGerar.ImageAlign = System.Drawing.ContentAlignment.TopCenter;
     this.btnGerar.Location = new System.Drawing.Point(0, 0);
     this.btnGerar.Name = "btnGerar";
     this.btnGerar.Size = new System.Drawing.Size(75, 70);
     this.btnGerar.TabIndex = 0;
     this.btnGerar.Text = "Gerar";
     this.btnGerar.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.btnGerar.UseVisualStyleBackColor = true;
     //
     // radioButton2
     //
     this.radioButton2.AutoSize = true;
     this.radioButton2.Location = new System.Drawing.Point(28, 75);
     this.radioButton2.Name = "radioButton2";
     this.radioButton2.Size = new System.Drawing.Size(141, 17);
     this.radioButton2.TabIndex = 15;
     this.radioButton2.Text = "Selecionar manualmente";
     this.radioButton2.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Image = ((System.Drawing.Image)(resources.GetObject("button2.Image")));
     this.button2.Location = new System.Drawing.Point(199, 65);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(59, 39);
     this.button2.TabIndex = 41;
     this.button2.Text = "Localizar";
     this.button2.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.button2.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.button2.UseVisualStyleBackColor = true;
     //
     // frmRelatorioMalaDireta
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(449, 390);
     this.Controls.Add(this.pnlBotoes);
     this.Controls.Add(this.a);
     this.Controls.Add(this.dataGridView1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "frmRelatorioMalaDireta";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Relatório de mala direta";
     ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
     this.a.ResumeLayout(false);
     this.a.PerformLayout();
     this.pnlBotoes.ResumeLayout(false);
     this.pnlBotoes.PerformLayout();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormAllBooks));
     this.listBox1         = new System.Windows.Forms.ListBox();
     this.label1           = new System.Windows.Forms.Label();
     this.buttonCansel     = new System.Windows.Forms.Button();
     this.buttonOk         = new System.Windows.Forms.Button();
     this.buttonDelete     = new System.Windows.Forms.Button();
     this.buttonRead       = new System.Windows.Forms.Button();
     this.checkBoxAllBooks = new System.Windows.Forms.CheckBox();
     this.radioButtonShift = new System.Windows.Forms.RadioButton();
     this.radioButtonCtrl  = new System.Windows.Forms.RadioButton();
     this.SuspendLayout();
     //
     // listBox1
     //
     this.listBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                   | System.Windows.Forms.AnchorStyles.Left)
                                                                  | System.Windows.Forms.AnchorStyles.Right)));
     this.listBox1.FormattingEnabled   = true;
     this.listBox1.HorizontalScrollbar = true;
     this.listBox1.ItemHeight          = 20;
     this.listBox1.Location            = new System.Drawing.Point(3, 51);
     this.listBox1.Margin                = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.listBox1.Name                  = "listBox1";
     this.listBox1.SelectionMode         = System.Windows.Forms.SelectionMode.MultiSimple;
     this.listBox1.Size                  = new System.Drawing.Size(840, 464);
     this.listBox1.TabIndex              = 0;
     this.listBox1.SelectedIndexChanged += new System.EventHandler(this.ListBox1SelectedIndexChanged);
     this.listBox1.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.ListBox1KeyDown);
     this.listBox1.KeyUp                += new System.Windows.Forms.KeyEventHandler(this.ListBox1KeyUp);
     this.listBox1.MouseDoubleClick     += new System.Windows.Forms.MouseEventHandler(this.ListBox1MouseDoubleClick);
     this.listBox1.MouseDown            += new System.Windows.Forms.MouseEventHandler(this.ListBox1MouseDown);
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(3, 21);
     this.label1.Margin   = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(320, 25);
     this.label1.TabIndex = 1;
     this.label1.Text     = "Все книги:";
     //
     // buttonCansel
     //
     this.buttonCansel.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCansel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCansel.Location                = new System.Drawing.Point(573, 522);
     this.buttonCansel.Margin                  = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.buttonCansel.Name                    = "buttonCansel";
     this.buttonCansel.Size                    = new System.Drawing.Size(130, 35);
     this.buttonCansel.TabIndex                = 2;
     this.buttonCansel.Text                    = "Отменить";
     this.buttonCansel.UseVisualStyleBackColor = true;
     //
     // buttonOk
     //
     this.buttonOk.Anchor                  = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOk.DialogResult            = System.Windows.Forms.DialogResult.OK;
     this.buttonOk.Location                = new System.Drawing.Point(712, 524);
     this.buttonOk.Margin                  = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.buttonOk.Name                    = "buttonOk";
     this.buttonOk.Size                    = new System.Drawing.Size(132, 35);
     this.buttonOk.TabIndex                = 3;
     this.buttonOk.Text                    = "Добавить";
     this.buttonOk.UseVisualStyleBackColor = true;
     //
     // buttonDelete
     //
     this.buttonDelete.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.buttonDelete.Location = new System.Drawing.Point(3, 522);
     this.buttonDelete.Name     = "buttonDelete";
     this.buttonDelete.Size     = new System.Drawing.Size(117, 35);
     this.buttonDelete.TabIndex = 4;
     this.buttonDelete.Text     = "Удалить";
     this.buttonDelete.UseVisualStyleBackColor = true;
     this.buttonDelete.Visible = false;
     this.buttonDelete.Click  += new System.EventHandler(this.ButtonDeleteClick);
     //
     // buttonRead
     //
     this.buttonRead.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRead.Location = new System.Drawing.Point(731, 524);
     this.buttonRead.Name     = "buttonRead";
     this.buttonRead.Size     = new System.Drawing.Size(113, 33);
     this.buttonRead.TabIndex = 5;
     this.buttonRead.Text     = "Читать";
     this.buttonRead.UseVisualStyleBackColor = true;
     this.buttonRead.Visible = false;
     this.buttonRead.Click  += new System.EventHandler(this.ButtonReadClick);
     //
     // checkBoxAllBooks
     //
     this.checkBoxAllBooks.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.checkBoxAllBooks.Location = new System.Drawing.Point(701, 21);
     this.checkBoxAllBooks.Name     = "checkBoxAllBooks";
     this.checkBoxAllBooks.Size     = new System.Drawing.Size(139, 24);
     this.checkBoxAllBooks.TabIndex = 6;
     this.checkBoxAllBooks.Text     = "Выделить всё";
     this.checkBoxAllBooks.UseVisualStyleBackColor = true;
     this.checkBoxAllBooks.CheckedChanged         += new System.EventHandler(this.CheckBoxAllBooksCheckedChanged);
     //
     // radioButtonShift
     //
     this.radioButtonShift.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radioButtonShift.Location = new System.Drawing.Point(552, 19);
     this.radioButtonShift.Name     = "radioButtonShift";
     this.radioButtonShift.Size     = new System.Drawing.Size(56, 24);
     this.radioButtonShift.TabIndex = 7;
     this.radioButtonShift.Text     = "Shift";
     this.radioButtonShift.UseVisualStyleBackColor = true;
     this.radioButtonShift.CheckedChanged         += new System.EventHandler(this.RadioButtonShiftCheckedChanged);
     //
     // radioButtonCtrl
     //
     this.radioButtonCtrl.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.radioButtonCtrl.Location = new System.Drawing.Point(487, 19);
     this.radioButtonCtrl.Name     = "radioButtonCtrl";
     this.radioButtonCtrl.Size     = new System.Drawing.Size(59, 24);
     this.radioButtonCtrl.TabIndex = 8;
     this.radioButtonCtrl.Text     = "Ctrl";
     this.radioButtonCtrl.UseVisualStyleBackColor = true;
     this.radioButtonCtrl.CheckedChanged         += new System.EventHandler(this.RadioButtonCtrlCheckedChanged);
     //
     // FormAllBooks
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(852, 577);
     this.Controls.Add(this.radioButtonCtrl);
     this.Controls.Add(this.radioButtonShift);
     this.Controls.Add(this.checkBoxAllBooks);
     this.Controls.Add(this.buttonRead);
     this.Controls.Add(this.buttonDelete);
     this.Controls.Add(this.buttonOk);
     this.Controls.Add(this.buttonCansel);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.listBox1);
     this.Font          = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Margin        = new System.Windows.Forms.Padding(4, 5, 4, 5);
     this.Name          = "FormAllBooks";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Все книги";
     this.Load         += new System.EventHandler(this.FormAllBooksLoad);
     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.dgv_reject = new System.Windows.Forms.DataGridView();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.doneToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.editToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.rd_all = new System.Windows.Forms.RadioButton();
     this.rd_da_hach_toan = new System.Windows.Forms.RadioButton();
     this.rd_chua_hach_toan = new System.Windows.Forms.RadioButton();
     this.btn_search = new System.Windows.Forms.Button();
     this.btn_clear = new System.Windows.Forms.Button();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label4 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.tb_sender = new System.Windows.Forms.TextBox();
     this.tb_bank_send = new System.Windows.Forms.TextBox();
     this.tb_reciever = new System.Windows.Forms.TextBox();
     this.dp_from_date = new System.Windows.Forms.DateTimePicker();
     this.dp_to_date = new System.Windows.Forms.DateTimePicker();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.tb_note_show = new System.Windows.Forms.RichTextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.tb_err_mess = new System.Windows.Forms.RichTextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.tb_note_edit = new System.Windows.Forms.RichTextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.btn_close = new System.Windows.Forms.Button();
     ((System.ComponentModel.ISupportInitialize)(this.dgv_reject)).BeginInit();
     this.contextMenuStrip1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // dgv_reject
     //
     this.dgv_reject.AllowUserToAddRows = false;
     this.dgv_reject.AllowUserToDeleteRows = false;
     this.dgv_reject.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv_reject.ContextMenuStrip = this.contextMenuStrip1;
     this.dgv_reject.Location = new System.Drawing.Point(12, 152);
     this.dgv_reject.Name = "dgv_reject";
     this.dgv_reject.Size = new System.Drawing.Size(824, 273);
     this.dgv_reject.TabIndex = 0;
     this.dgv_reject.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_reject_CellClick);
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.doneToolStripMenuItem,
     this.editToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(153, 70);
     //
     // doneToolStripMenuItem
     //
     this.doneToolStripMenuItem.Name = "doneToolStripMenuItem";
     this.doneToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.doneToolStripMenuItem.Text = "Done";
     this.doneToolStripMenuItem.Click += new System.EventHandler(this.doneToolStripMenuItem_Click);
     //
     // editToolStripMenuItem
     //
     this.editToolStripMenuItem.Name = "editToolStripMenuItem";
     this.editToolStripMenuItem.Size = new System.Drawing.Size(152, 22);
     this.editToolStripMenuItem.Text = "Edit Note";
     this.editToolStripMenuItem.Click += new System.EventHandler(this.editToolStripMenuItem_Click);
     //
     // rd_all
     //
     this.rd_all.AutoSize = true;
     this.rd_all.Location = new System.Drawing.Point(22, 31);
     this.rd_all.Name = "rd_all";
     this.rd_all.Size = new System.Drawing.Size(44, 17);
     this.rd_all.TabIndex = 1;
     this.rd_all.TabStop = true;
     this.rd_all.Text = "ALL";
     this.rd_all.UseVisualStyleBackColor = true;
     //
     // rd_da_hach_toan
     //
     this.rd_da_hach_toan.AutoSize = true;
     this.rd_da_hach_toan.Location = new System.Drawing.Point(22, 99);
     this.rd_da_hach_toan.Name = "rd_da_hach_toan";
     this.rd_da_hach_toan.Size = new System.Drawing.Size(90, 17);
     this.rd_da_hach_toan.TabIndex = 2;
     this.rd_da_hach_toan.TabStop = true;
     this.rd_da_hach_toan.Text = "Đã hạch toán";
     this.rd_da_hach_toan.UseVisualStyleBackColor = true;
     //
     // rd_chua_hach_toan
     //
     this.rd_chua_hach_toan.AutoSize = true;
     this.rd_chua_hach_toan.Location = new System.Drawing.Point(22, 64);
     this.rd_chua_hach_toan.Name = "rd_chua_hach_toan";
     this.rd_chua_hach_toan.Size = new System.Drawing.Size(101, 17);
     this.rd_chua_hach_toan.TabIndex = 3;
     this.rd_chua_hach_toan.TabStop = true;
     this.rd_chua_hach_toan.Text = "Chưa hạch toán";
     this.rd_chua_hach_toan.UseVisualStyleBackColor = true;
     //
     // btn_search
     //
     this.btn_search.Location = new System.Drawing.Point(271, 431);
     this.btn_search.Name = "btn_search";
     this.btn_search.Size = new System.Drawing.Size(75, 23);
     this.btn_search.TabIndex = 4;
     this.btn_search.Text = "Search";
     this.btn_search.UseVisualStyleBackColor = true;
     this.btn_search.Click += new System.EventHandler(this.btn_search_Click);
     //
     // btn_clear
     //
     this.btn_clear.Location = new System.Drawing.Point(362, 431);
     this.btn_clear.Name = "btn_clear";
     this.btn_clear.Size = new System.Drawing.Size(75, 23);
     this.btn_clear.TabIndex = 5;
     this.btn_clear.Text = "Clear";
     this.btn_clear.UseVisualStyleBackColor = true;
     this.btn_clear.Click += new System.EventHandler(this.btn_close_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(155, 31);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(75, 13);
     this.label1.TabIndex = 6;
     this.label1.Text = "Tên người gửi:";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(155, 104);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(101, 13);
     this.label2.TabIndex = 7;
     this.label2.Text = "Ngân hàng chuyển:";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(441, 16);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(49, 13);
     this.label3.TabIndex = 8;
     this.label3.Text = "Từ ngày:";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(441, 49);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(56, 13);
     this.label4.TabIndex = 9;
     this.label4.Text = "Đến ngày:";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Location = new System.Drawing.Point(155, 69);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(85, 13);
     this.label5.TabIndex = 10;
     this.label5.Text = "Tên người nhận:";
     //
     // tb_sender
     //
     this.tb_sender.Location = new System.Drawing.Point(259, 28);
     this.tb_sender.Name = "tb_sender";
     this.tb_sender.Size = new System.Drawing.Size(162, 20);
     this.tb_sender.TabIndex = 11;
     //
     // tb_bank_send
     //
     this.tb_bank_send.Location = new System.Drawing.Point(259, 97);
     this.tb_bank_send.Name = "tb_bank_send";
     this.tb_bank_send.Size = new System.Drawing.Size(162, 20);
     this.tb_bank_send.TabIndex = 12;
     //
     // tb_reciever
     //
     this.tb_reciever.Location = new System.Drawing.Point(259, 62);
     this.tb_reciever.Name = "tb_reciever";
     this.tb_reciever.Size = new System.Drawing.Size(162, 20);
     this.tb_reciever.TabIndex = 13;
     //
     // dp_from_date
     //
     this.dp_from_date.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dp_from_date.Location = new System.Drawing.Point(503, 14);
     this.dp_from_date.Name = "dp_from_date";
     this.dp_from_date.Size = new System.Drawing.Size(107, 20);
     this.dp_from_date.TabIndex = 14;
     //
     // dp_to_date
     //
     this.dp_to_date.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dp_to_date.Location = new System.Drawing.Point(503, 44);
     this.dp_to_date.Name = "dp_to_date";
     this.dp_to_date.Size = new System.Drawing.Size(107, 20);
     this.dp_to_date.TabIndex = 15;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.tb_note_show);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.tb_err_mess);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.Controls.Add(this.tb_note_edit);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.rd_all);
     this.groupBox1.Controls.Add(this.dp_to_date);
     this.groupBox1.Controls.Add(this.rd_da_hach_toan);
     this.groupBox1.Controls.Add(this.dp_from_date);
     this.groupBox1.Controls.Add(this.rd_chua_hach_toan);
     this.groupBox1.Controls.Add(this.tb_reciever);
     this.groupBox1.Controls.Add(this.tb_bank_send);
     this.groupBox1.Controls.Add(this.tb_sender);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Location = new System.Drawing.Point(12, 4);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(824, 142);
     this.groupBox1.TabIndex = 16;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Search Options";
     //
     // tb_note_show
     //
     this.tb_note_show.Enabled = false;
     this.tb_note_show.Location = new System.Drawing.Point(444, 89);
     this.tb_note_show.Name = "tb_note_show";
     this.tb_note_show.Size = new System.Drawing.Size(171, 47);
     this.tb_note_show.TabIndex = 21;
     this.tb_note_show.Text = "";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(441, 71);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(126, 13);
     this.label8.TabIndex = 20;
     this.label8.Text = "Accounting Note: (Show)";
     //
     // tb_err_mess
     //
     this.tb_err_mess.Enabled = false;
     this.tb_err_mess.Location = new System.Drawing.Point(642, 25);
     this.tb_err_mess.Name = "tb_err_mess";
     this.tb_err_mess.Size = new System.Drawing.Size(171, 47);
     this.tb_err_mess.TabIndex = 19;
     this.tb_err_mess.Text = "";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(639, 11);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(69, 13);
     this.label7.TabIndex = 18;
     this.label7.Text = "Err Message:";
     //
     // tb_note_edit
     //
     this.tb_note_edit.Location = new System.Drawing.Point(642, 89);
     this.tb_note_edit.Name = "tb_note_edit";
     this.tb_note_edit.Size = new System.Drawing.Size(171, 47);
     this.tb_note_edit.TabIndex = 17;
     this.tb_note_edit.Text = "";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(639, 71);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(117, 13);
     this.label6.TabIndex = 16;
     this.label6.Text = "Accounting Note: (Edit)";
     //
     // btn_close
     //
     this.btn_close.Location = new System.Drawing.Point(456, 431);
     this.btn_close.Name = "btn_close";
     this.btn_close.Size = new System.Drawing.Size(75, 23);
     this.btn_close.TabIndex = 19;
     this.btn_close.Text = "Close";
     this.btn_close.UseVisualStyleBackColor = true;
     this.btn_close.Click += new System.EventHandler(this.btn_close_Click_1);
     //
     // Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject
     //
     this.AcceptButton = this.btn_search;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(850, 464);
     this.Controls.Add(this.btn_close);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.dgv_reject);
     this.Controls.Add(this.btn_search);
     this.Controls.Add(this.btn_clear);
     this.Name = "Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject";
     this.Text = "Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject";
     this.Load += new System.EventHandler(this.Frm_Balance_pre_cre_transfer_IBPS_Authorize_Reject_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgv_reject)).EndInit();
     this.contextMenuStrip1.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.ResumeLayout(false);
 }
Esempio n. 54
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1        = new System.Windows.Forms.Label();
     this.var1          = new System.Windows.Forms.LinkLabel();
     this.operation_box = new System.Windows.Forms.ComboBox();
     this.label2        = new System.Windows.Forms.Label();
     this.radio_value   = new System.Windows.Forms.RadioButton();
     this.radio_var     = new System.Windows.Forms.RadioButton();
     this.value_box     = new System.Windows.Forms.TextBox();
     this.var2          = new System.Windows.Forms.LinkLabel();
     this.button_cancel = new System.Windows.Forms.Button();
     this.button_ok     = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(75, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Set variable";
     //
     // var1
     //
     this.var1.Location     = new System.Drawing.Point(96, 9);
     this.var1.Name         = "var1";
     this.var1.Size         = new System.Drawing.Size(176, 23);
     this.var1.TabIndex     = 1;
     this.var1.TabStop      = true;
     this.var1.Text         = "linkLabel1";
     this.var1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Var1LinkClicked);
     //
     // operation_box
     //
     this.operation_box.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.operation_box.FormattingEnabled = true;
     this.operation_box.Location          = new System.Drawing.Point(96, 35);
     this.operation_box.Name     = "operation_box";
     this.operation_box.Size     = new System.Drawing.Size(176, 21);
     this.operation_box.TabIndex = 2;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 38);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(75, 24);
     this.label2.TabIndex = 3;
     this.label2.Text     = "with operation";
     //
     // radio_value
     //
     this.radio_value.Location = new System.Drawing.Point(12, 65);
     this.radio_value.Name     = "radio_value";
     this.radio_value.Size     = new System.Drawing.Size(104, 24);
     this.radio_value.TabIndex = 4;
     this.radio_value.TabStop  = true;
     this.radio_value.Text     = "Value";
     this.radio_value.UseVisualStyleBackColor = true;
     this.radio_value.CheckedChanged         += new System.EventHandler(this.Radio_valueCheckedChanged);
     //
     // radio_var
     //
     this.radio_var.Location = new System.Drawing.Point(12, 95);
     this.radio_var.Name     = "radio_var";
     this.radio_var.Size     = new System.Drawing.Size(104, 24);
     this.radio_var.TabIndex = 5;
     this.radio_var.TabStop  = true;
     this.radio_var.Text     = "Variable";
     this.radio_var.UseVisualStyleBackColor = true;
     //
     // value_box
     //
     this.value_box.Location = new System.Drawing.Point(96, 68);
     this.value_box.Name     = "value_box";
     this.value_box.Size     = new System.Drawing.Size(176, 20);
     this.value_box.TabIndex = 6;
     //
     // var2
     //
     this.var2.Enabled      = false;
     this.var2.Location     = new System.Drawing.Point(96, 101);
     this.var2.Name         = "var2";
     this.var2.Size         = new System.Drawing.Size(176, 23);
     this.var2.TabIndex     = 7;
     this.var2.TabStop      = true;
     this.var2.Text         = "linkLabel1";
     this.var2.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.Var2LinkClicked);
     //
     // button_cancel
     //
     this.button_cancel.DialogResult            = System.Windows.Forms.DialogResult.Cancel;
     this.button_cancel.Location                = new System.Drawing.Point(197, 127);
     this.button_cancel.Name                    = "button_cancel";
     this.button_cancel.Size                    = new System.Drawing.Size(75, 23);
     this.button_cancel.TabIndex                = 8;
     this.button_cancel.Text                    = "Cancel";
     this.button_cancel.UseVisualStyleBackColor = true;
     //
     // button_ok
     //
     this.button_ok.Location = new System.Drawing.Point(116, 127);
     this.button_ok.Name     = "button_ok";
     this.button_ok.Size     = new System.Drawing.Size(75, 23);
     this.button_ok.TabIndex = 9;
     this.button_ok.Text     = "OK";
     this.button_ok.UseVisualStyleBackColor = true;
     this.button_ok.Click += new System.EventHandler(this.Button_okClick);
     //
     // VarSetVarForm
     //
     this.AcceptButton        = this.button_ok;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton        = this.button_cancel;
     this.ClientSize          = new System.Drawing.Size(284, 161);
     this.ControlBox          = false;
     this.Controls.Add(this.button_ok);
     this.Controls.Add(this.button_cancel);
     this.Controls.Add(this.var2);
     this.Controls.Add(this.value_box);
     this.Controls.Add(this.radio_var);
     this.Controls.Add(this.radio_value);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.operation_box);
     this.Controls.Add(this.var1);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name            = "VarSetVarForm";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Variable Setup";
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Esempio n. 55
0
 /// <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();
     Infragistics.Win.UltraWinGrid.UltraGridBand ultraGridBand1 = new Infragistics.Win.UltraWinGrid.UltraGridBand("Table1", -1);
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn1 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CARDNO");
     Infragistics.Win.Appearance appearance53 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn2 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("ұ��", -1, null, 0, Infragistics.Win.UltraWinGrid.SortIndicator.Ascending, false);
     Infragistics.Win.Appearance appearance54 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn3 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_SMELTDATE");
     Infragistics.Win.Appearance appearance55 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn4 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STOVENO");
     Infragistics.Win.Appearance appearance56 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn5 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_STEELTYPE");
     Infragistics.Win.Appearance appearance57 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn6 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_SPE");
     Infragistics.Win.Appearance appearance58 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn7 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��ѧ�ɷ֣�%��");
     Infragistics.Win.Appearance appearance59 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn8 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_C");
     Infragistics.Win.Appearance appearance60 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn9 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SI");
     Infragistics.Win.Appearance appearance61 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn10 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MN");
     Infragistics.Win.Appearance appearance62 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn11 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_S");
     Infragistics.Win.Appearance appearance63 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn12 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_P");
     Infragistics.Win.Appearance appearance64 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn13 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_NI");
     Infragistics.Win.Appearance appearance67 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn14 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CR");
     Infragistics.Win.Appearance appearance68 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn15 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CU");
     Infragistics.Win.Appearance appearance69 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn16 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_V");
     Infragistics.Win.Appearance appearance72 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn17 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_MO");
     Infragistics.Win.Appearance appearance73 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn18 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CEQ");
     Infragistics.Win.Appearance appearance74 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn19 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TOTALCOUNT");
     Infragistics.Win.Appearance appearance75 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn20 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("�ϸ�Ʒ");
     Infragistics.Win.Appearance appearance76 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn21 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_CHECKCOUNT");
     Infragistics.Win.Appearance appearance77 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn22 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_JJ_WEIGHT");
     Infragistics.Win.Appearance appearance78 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn23 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_MEMO");
     Infragistics.Win.Appearance appearance79 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn24 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_JUDGER");
     Infragistics.Win.Appearance appearance80 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn25 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GP_JUDGEDATE");
     Infragistics.Win.Appearance appearance81 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn26 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance82 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn27 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance83 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn28 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GPYS_NUMBER");
     Infragistics.Win.Appearance appearance84 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn29 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DJH");
     Infragistics.Win.Appearance appearance85 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn30 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_GPYS_RECEIVEDATE");
     Infragistics.Win.Appearance appearance86 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn31 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GPYS_RECEIVER");
     Infragistics.Win.Appearance appearance87 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn32 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("��������");
     Infragistics.Win.Appearance appearance88 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn33 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_BATCHNO");
     Infragistics.Win.Appearance appearance89 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn34 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZC_ENTERNUMBER");
     Infragistics.Win.Appearance appearance90 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn35 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZC_ENTERDATETIME");
     Infragistics.Win.Appearance appearance91 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn36 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_OPERATOR");
     Infragistics.Win.Appearance appearance92 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn37 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZC_MEMO");
     Infragistics.Win.Appearance appearance93 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn38 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("����");
     Infragistics.Win.Appearance appearance94 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn39 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_SPEC");
     Infragistics.Win.Appearance appearance95 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn40 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LENGTH");
     Infragistics.Win.Appearance appearance96 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn41 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FD_ZZ_DATE");
     Infragistics.Win.Appearance appearance97 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn42 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_OPERATOR");
     Infragistics.Win.Appearance appearance98 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn43 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_NUM");
     Infragistics.Win.Appearance appearance99 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn44 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_ZZ_WASTNUM");
     Infragistics.Win.Appearance appearance100 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn45 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_ZZ_MEMO");
     Infragistics.Win.Appearance appearance101 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn46 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_FREEZED");
     Infragistics.Win.Appearance appearance102 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn47 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_CHECKED");
     Infragistics.Win.Appearance appearance103 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn48 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("CHECKED");
     Infragistics.Win.Appearance appearance104 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn49 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_LL_WEIGHT");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn50 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_GP_FLOW");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn51 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_BEGINED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn52 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_DISCHARGE_END");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn53 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FS_UNQUALIFIED");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn54 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_AS");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn55 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_TI");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn56 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_SB");
     Infragistics.Win.UltraWinGrid.UltraGridColumn ultraGridColumn57 = new Infragistics.Win.UltraWinGrid.UltraGridColumn("FN_GP_ALS");
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings1 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Count, null, "FS_GP_STOVENO", 3, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FS_GP_STOVENO", 3, true);
     Infragistics.Win.Appearance appearance105 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings2 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GP_TOTALCOUNT", 18, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GP_TOTALCOUNT", 18, true);
     Infragistics.Win.Appearance appearance106 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings3 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_JJ_WEIGHT", 21, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_JJ_WEIGHT", 21, true);
     Infragistics.Win.Appearance appearance107 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinGrid.SummarySettings summarySettings4 = new Infragistics.Win.UltraWinGrid.SummarySettings("", Infragistics.Win.UltraWinGrid.SummaryType.Sum, null, "FN_GPYS_NUMBER", 27, true, "Table1", 0, Infragistics.Win.UltraWinGrid.SummaryPosition.UseSummaryPositionColumn, "FN_GPYS_NUMBER", 27, true);
     Infragistics.Win.Appearance appearance108 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance168 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance169 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance170 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance171 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance172 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance173 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar1 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool2 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool9 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool20 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool15 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��A");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool16 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��B");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool17 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��C");
     Infragistics.Win.UltraWinToolbars.UltraToolbar ultraToolbar2 = new Infragistics.Win.UltraWinToolbars.UltraToolbar("UltraToolbar2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool19 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool18 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool8 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool11 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������2");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool13 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool3 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool10 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool2 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool1 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool7 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��¯����");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool8 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ȡ������");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool11 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool22 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��ʼ");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool23 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool44 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Query");
     Infragistics.Win.Appearance appearance65 = new Infragistics.Win.Appearance();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(BoardBandFlowCard));
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool24 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ұ��¯��");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool45 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Save");
     Infragistics.Win.Appearance appearance66 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool4 = new Infragistics.Win.UltraWinToolbars.ButtonTool("Cancel");
     Infragistics.Win.Appearance appearance124 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool1 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("����ʱ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool3 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��A");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool4 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��B");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool5 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("ѡ��C");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool10 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("���Ʊ��");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool6 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������1");
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool7 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������2");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool5 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��¯����");
     Infragistics.Win.Appearance appearance70 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool6 = new Infragistics.Win.UltraWinToolbars.ButtonTool("ȡ������");
     Infragistics.Win.Appearance appearance71 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool9 = new Infragistics.Win.UltraWinToolbars.ButtonTool("����");
     Infragistics.Win.Appearance appearance177 = new Infragistics.Win.Appearance();
     Infragistics.Win.UltraWinToolbars.ControlContainerTool controlContainerTool12 = new Infragistics.Win.UltraWinToolbars.ControlContainerTool("������3");
     Infragistics.Win.UltraWinToolbars.ButtonTool buttonTool12 = new Infragistics.Win.UltraWinToolbars.ButtonTool("��������");
     Infragistics.Win.Appearance appearance119 = new Infragistics.Win.Appearance();
     Infragistics.Win.Appearance appearance120 = new Infragistics.Win.Appearance();
     this.FrmBase_Fill_Panel = new System.Windows.Forms.Panel();
     this.cbx_Other3 = new System.Windows.Forms.CheckBox();
     this.cbx_Other2 = new System.Windows.Forms.CheckBox();
     this.cbx_Other1 = new System.Windows.Forms.CheckBox();
     this.tbQueryBatchNo = new System.Windows.Forms.TextBox();
     this.rbtnC = new System.Windows.Forms.RadioButton();
     this.rbtnB = new System.Windows.Forms.RadioButton();
     this.rbtnA = new System.Windows.Forms.RadioButton();
     this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
     this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
     this.tbQueryStoveNo = new System.Windows.Forms.TextBox();
     this.cbxDateTime = new System.Windows.Forms.CheckBox();
     this.ultraPanel2 = new Infragistics.Win.Misc.UltraPanel();
     this.ultraGroupBox2 = new Infragistics.Win.Misc.UltraGroupBox();
     this.lbl_InFurnance = new System.Windows.Forms.Label();
     this.lbl_Mark = new System.Windows.Forms.Label();
     this.ultraGrid1 = new Infragistics.Win.UltraWinGrid.UltraGrid();
     this.dataSet1 = new System.Data.DataSet();
     this.dataTable1 = new System.Data.DataTable();
     this.dataColumn1 = new System.Data.DataColumn();
     this.dataColumn2 = new System.Data.DataColumn();
     this.dataColumn3 = new System.Data.DataColumn();
     this.dataColumn4 = new System.Data.DataColumn();
     this.dataColumn5 = new System.Data.DataColumn();
     this.dataColumn6 = new System.Data.DataColumn();
     this.dataColumn7 = new System.Data.DataColumn();
     this.dataColumn8 = new System.Data.DataColumn();
     this.dataColumn9 = new System.Data.DataColumn();
     this.dataColumn10 = new System.Data.DataColumn();
     this.dataColumn11 = new System.Data.DataColumn();
     this.dataColumn12 = new System.Data.DataColumn();
     this.dataColumn13 = new System.Data.DataColumn();
     this.dataColumn14 = new System.Data.DataColumn();
     this.dataColumn15 = new System.Data.DataColumn();
     this.dataColumn16 = new System.Data.DataColumn();
     this.dataColumn17 = new System.Data.DataColumn();
     this.dataColumn19 = new System.Data.DataColumn();
     this.dataColumn20 = new System.Data.DataColumn();
     this.dataColumn21 = new System.Data.DataColumn();
     this.dataColumn22 = new System.Data.DataColumn();
     this.dataColumn23 = new System.Data.DataColumn();
     this.dataColumn24 = new System.Data.DataColumn();
     this.dataColumn25 = new System.Data.DataColumn();
     this.dataColumn26 = new System.Data.DataColumn();
     this.dataColumn27 = new System.Data.DataColumn();
     this.dataColumn18 = new System.Data.DataColumn();
     this.dataColumn28 = new System.Data.DataColumn();
     this.dataColumn29 = new System.Data.DataColumn();
     this.dataColumn30 = new System.Data.DataColumn();
     this.dataColumn31 = new System.Data.DataColumn();
     this.dataColumn32 = new System.Data.DataColumn();
     this.dataColumn33 = new System.Data.DataColumn();
     this.dataColumn34 = new System.Data.DataColumn();
     this.dataColumn35 = new System.Data.DataColumn();
     this.dataColumn36 = new System.Data.DataColumn();
     this.dataColumn37 = new System.Data.DataColumn();
     this.dataColumn38 = new System.Data.DataColumn();
     this.dataColumn39 = new System.Data.DataColumn();
     this.dataColumn40 = new System.Data.DataColumn();
     this.dataColumn41 = new System.Data.DataColumn();
     this.dataColumn42 = new System.Data.DataColumn();
     this.dataColumn43 = new System.Data.DataColumn();
     this.dataColumn44 = new System.Data.DataColumn();
     this.dataColumn45 = new System.Data.DataColumn();
     this.dataColumn46 = new System.Data.DataColumn();
     this.dataColumn47 = new System.Data.DataColumn();
     this.dataColumn48 = new System.Data.DataColumn();
     this.dataColumn49 = new System.Data.DataColumn();
     this.dataColumn50 = new System.Data.DataColumn();
     this.dataColumn51 = new System.Data.DataColumn();
     this.dataColumn52 = new System.Data.DataColumn();
     this.dataColumn53 = new System.Data.DataColumn();
     this.dataColumn54 = new System.Data.DataColumn();
     this.dataColumn55 = new System.Data.DataColumn();
     this.dataColumn56 = new System.Data.DataColumn();
     this.dataColumn57 = new System.Data.DataColumn();
     this.cbx_Filter = new System.Windows.Forms.CheckBox();
     this.ultraExpandableGroupBox1 = new Infragistics.Win.Misc.UltraExpandableGroupBox();
     this.ultraExpandableGroupBoxPanel2 = new Infragistics.Win.Misc.UltraExpandableGroupBoxPanel();
     this.ucBilletFlowCard1 = new YGJZJL.BoardBand.ucBilletFlowCard();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.ultraToolbarsManager1 = new Infragistics.Win.UltraWinToolbars.UltraToolbarsManager(this.components);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom = new Infragistics.Win.UltraWinToolbars.UltraToolbarsDockArea();
     this.FrmBase_Fill_Panel.SuspendLayout();
     this.ultraPanel2.ClientArea.SuspendLayout();
     this.ultraPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).BeginInit();
     this.ultraGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).BeginInit();
     this.ultraExpandableGroupBox1.SuspendLayout();
     this.ultraExpandableGroupBoxPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).BeginInit();
     this.SuspendLayout();
     //
     // FrmBase_Fill_Panel
     //
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other3);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other2);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbx_Other1);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryBatchNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnC);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnB);
     this.FrmBase_Fill_Panel.Controls.Add(this.rbtnA);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker1);
     this.FrmBase_Fill_Panel.Controls.Add(this.dateTimePicker2);
     this.FrmBase_Fill_Panel.Controls.Add(this.tbQueryStoveNo);
     this.FrmBase_Fill_Panel.Controls.Add(this.cbxDateTime);
     this.FrmBase_Fill_Panel.Controls.Add(this.ultraPanel2);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top);
     this.FrmBase_Fill_Panel.Controls.Add(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom);
     this.FrmBase_Fill_Panel.Cursor = System.Windows.Forms.Cursors.Default;
     this.coreBind.SetDatabasecommand(this.FrmBase_Fill_Panel, null);
     this.FrmBase_Fill_Panel.Dock = System.Windows.Forms.DockStyle.Fill;
     this.FrmBase_Fill_Panel.Location = new System.Drawing.Point(0, 0);
     this.FrmBase_Fill_Panel.Margin = new System.Windows.Forms.Padding(4);
     this.FrmBase_Fill_Panel.Name = "FrmBase_Fill_Panel";
     this.FrmBase_Fill_Panel.Size = new System.Drawing.Size(1353, 745);
     this.FrmBase_Fill_Panel.TabIndex = 0;
     this.coreBind.SetVerification(this.FrmBase_Fill_Panel, null);
     //
     // cbx_Other3
     //
     this.cbx_Other3.AutoSize = true;
     this.cbx_Other3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other3, null);
     this.cbx_Other3.Location = new System.Drawing.Point(657, 39);
     this.cbx_Other3.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other3.Name = "cbx_Other3";
     this.cbx_Other3.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other3.TabIndex = 0;
     this.cbx_Other3.Text = "���ֿ�";
     this.cbx_Other3.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other3, null);
     this.cbx_Other3.CheckedChanged += new System.EventHandler(this.cbx_Other3_CheckedChanged);
     //
     // cbx_Other2
     //
     this.cbx_Other2.AutoSize = true;
     this.cbx_Other2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other2, null);
     this.cbx_Other2.Location = new System.Drawing.Point(577, 39);
     this.cbx_Other2.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other2.Name = "cbx_Other2";
     this.cbx_Other2.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other2.TabIndex = 0;
     this.cbx_Other2.Text = "�Ͳ���";
     this.cbx_Other2.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other2, null);
     this.cbx_Other2.CheckedChanged += new System.EventHandler(this.cbx_Other2_CheckedChanged);
     //
     // cbx_Other1
     //
     this.cbx_Other1.AutoSize = true;
     this.cbx_Other1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.cbx_Other1, null);
     this.cbx_Other1.Location = new System.Drawing.Point(497, 39);
     this.cbx_Other1.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Other1.Name = "cbx_Other1";
     this.cbx_Other1.Size = new System.Drawing.Size(74, 19);
     this.cbx_Other1.TabIndex = 0;
     this.cbx_Other1.Text = "�����";
     this.cbx_Other1.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Other1, null);
     this.cbx_Other1.CheckedChanged += new System.EventHandler(this.cbx_Other1_CheckedChanged);
     //
     // tbQueryBatchNo
     //
     this.tbQueryBatchNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryBatchNo, null);
     this.tbQueryBatchNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryBatchNo.Location = new System.Drawing.Point(113, 35);
     this.tbQueryBatchNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryBatchNo.Name = "tbQueryBatchNo";
     this.tbQueryBatchNo.Size = new System.Drawing.Size(89, 25);
     this.tbQueryBatchNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryBatchNo, null);
     //
     // rbtnC
     //
     this.rbtnC.AutoSize = true;
     this.rbtnC.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtnC, null);
     this.rbtnC.Location = new System.Drawing.Point(680, 5);
     this.rbtnC.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnC.Name = "rbtnC";
     this.rbtnC.Size = new System.Drawing.Size(58, 19);
     this.rbtnC.TabIndex = 0;
     this.rbtnC.Text = "ȫ��";
     this.rbtnC.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnC, null);
     //
     // rbtnB
     //
     this.rbtnB.AutoSize = true;
     this.rbtnB.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.coreBind.SetDatabasecommand(this.rbtnB, null);
     this.rbtnB.Location = new System.Drawing.Point(601, 5);
     this.rbtnB.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnB.Name = "rbtnB";
     this.rbtnB.Size = new System.Drawing.Size(73, 19);
     this.rbtnB.TabIndex = 0;
     this.rbtnB.Text = "������";
     this.rbtnB.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnB, null);
     //
     // rbtnA
     //
     this.rbtnA.AutoSize = true;
     this.rbtnA.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
     this.rbtnA.Checked = true;
     this.coreBind.SetDatabasecommand(this.rbtnA, null);
     this.rbtnA.Location = new System.Drawing.Point(523, 5);
     this.rbtnA.Margin = new System.Windows.Forms.Padding(4);
     this.rbtnA.Name = "rbtnA";
     this.rbtnA.Size = new System.Drawing.Size(73, 19);
     this.rbtnA.TabIndex = 0;
     this.rbtnA.TabStop = true;
     this.rbtnA.Text = "���";
     this.rbtnA.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.rbtnA, null);
     //
     // dateTimePicker1
     //
     this.dateTimePicker1.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker1, null);
     this.dateTimePicker1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker1.Location = new System.Drawing.Point(113, 2);
     this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker1.Name = "dateTimePicker1";
     this.dateTimePicker1.Size = new System.Drawing.Size(127, 25);
     this.dateTimePicker1.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker1, null);
     //
     // dateTimePicker2
     //
     this.dateTimePicker2.CalendarFont = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.CustomFormat = "yyyy-MM-dd HH:mm";
     this.coreBind.SetDatabasecommand(this.dateTimePicker2, null);
     this.dateTimePicker2.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
     this.dateTimePicker2.Location = new System.Drawing.Point(329, 2);
     this.dateTimePicker2.Margin = new System.Windows.Forms.Padding(4);
     this.dateTimePicker2.Name = "dateTimePicker2";
     this.dateTimePicker2.Size = new System.Drawing.Size(136, 25);
     this.dateTimePicker2.TabIndex = 0;
     this.coreBind.SetVerification(this.dateTimePicker2, null);
     //
     // tbQueryStoveNo
     //
     this.tbQueryStoveNo.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.coreBind.SetDatabasecommand(this.tbQueryStoveNo, null);
     this.tbQueryStoveNo.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.tbQueryStoveNo.Location = new System.Drawing.Point(345, 35);
     this.tbQueryStoveNo.Margin = new System.Windows.Forms.Padding(4);
     this.tbQueryStoveNo.Name = "tbQueryStoveNo";
     this.tbQueryStoveNo.Size = new System.Drawing.Size(95, 25);
     this.tbQueryStoveNo.TabIndex = 0;
     this.coreBind.SetVerification(this.tbQueryStoveNo, null);
     //
     // cbxDateTime
     //
     this.cbxDateTime.AutoSize = true;
     this.cbxDateTime.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(192)))), ((int)(((byte)(255)))));
     this.cbxDateTime.Checked = true;
     this.cbxDateTime.CheckState = System.Windows.Forms.CheckState.Checked;
     this.coreBind.SetDatabasecommand(this.cbxDateTime, null);
     this.cbxDateTime.Location = new System.Drawing.Point(15, 6);
     this.cbxDateTime.Margin = new System.Windows.Forms.Padding(4);
     this.cbxDateTime.Name = "cbxDateTime";
     this.cbxDateTime.Size = new System.Drawing.Size(18, 17);
     this.cbxDateTime.TabIndex = 0;
     this.cbxDateTime.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbxDateTime, null);
     this.cbxDateTime.CheckedChanged += new System.EventHandler(this.cbxDateTime_CheckedChanged);
     //
     // ultraPanel2
     //
     //
     // ultraPanel2.ClientArea
     //
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraGroupBox2);
     this.ultraPanel2.ClientArea.Controls.Add(this.ultraExpandableGroupBox1);
     this.coreBind.SetDatabasecommand(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetVerification(this.ultraPanel2.ClientArea, null);
     this.coreBind.SetDatabasecommand(this.ultraPanel2, null);
     this.ultraPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraPanel2.Location = new System.Drawing.Point(0, 61);
     this.ultraPanel2.Margin = new System.Windows.Forms.Padding(1);
     this.ultraPanel2.Name = "ultraPanel2";
     this.ultraPanel2.Size = new System.Drawing.Size(1353, 684);
     this.ultraPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraPanel2, null);
     //
     // ultraGroupBox2
     //
     this.ultraGroupBox2.Controls.Add(this.lbl_InFurnance);
     this.ultraGroupBox2.Controls.Add(this.lbl_Mark);
     this.ultraGroupBox2.Controls.Add(this.ultraGrid1);
     this.ultraGroupBox2.Controls.Add(this.cbx_Filter);
     this.coreBind.SetDatabasecommand(this.ultraGroupBox2, null);
     this.ultraGroupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGroupBox2.HeaderBorderStyle = Infragistics.Win.UIElementBorderStyle.Rounded1Etched;
     this.ultraGroupBox2.Location = new System.Drawing.Point(0, 0);
     this.ultraGroupBox2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGroupBox2.Name = "ultraGroupBox2";
     this.ultraGroupBox2.Size = new System.Drawing.Size(1353, 356);
     this.ultraGroupBox2.TabIndex = 0;
     this.ultraGroupBox2.Text = "��������������";
     this.coreBind.SetVerification(this.ultraGroupBox2, null);
     this.ultraGroupBox2.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // lbl_InFurnance
     //
     this.lbl_InFurnance.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_InFurnance, null);
     this.lbl_InFurnance.ForeColor = System.Drawing.Color.Red;
     this.lbl_InFurnance.Location = new System.Drawing.Point(744, 5);
     this.lbl_InFurnance.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbl_InFurnance.Name = "lbl_InFurnance";
     this.lbl_InFurnance.Size = new System.Drawing.Size(171, 18);
     this.lbl_InFurnance.TabIndex = 0;
     this.lbl_InFurnance.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_InFurnance, null);
     this.lbl_InFurnance.Visible = false;
     //
     // lbl_Mark
     //
     this.lbl_Mark.BackColor = System.Drawing.Color.PowderBlue;
     this.coreBind.SetDatabasecommand(this.lbl_Mark, null);
     this.lbl_Mark.ForeColor = System.Drawing.Color.Blue;
     this.lbl_Mark.Location = new System.Drawing.Point(931, 5);
     this.lbl_Mark.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
     this.lbl_Mark.Name = "lbl_Mark";
     this.lbl_Mark.Size = new System.Drawing.Size(171, 18);
     this.lbl_Mark.TabIndex = 0;
     this.lbl_Mark.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.coreBind.SetVerification(this.lbl_Mark, null);
     //
     // ultraGrid1
     //
     this.coreBind.SetDatabasecommand(this.ultraGrid1, null);
     this.ultraGrid1.DataMember = "Table1";
     this.ultraGrid1.DataSource = this.dataSet1;
     ultraGridColumn1.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance53.TextVAlignAsString = "Middle";
     ultraGridColumn1.CellAppearance = appearance53;
     ultraGridColumn1.Header.Caption = "������������";
     ultraGridColumn1.Header.VisiblePosition = 0;
     ultraGridColumn1.RowLayoutColumnInfo.OriginX = 43;
     ultraGridColumn1.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn1.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(92, 0);
     ultraGridColumn1.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn1.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn1.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn2.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance54.TextVAlignAsString = "Middle";
     ultraGridColumn2.CellAppearance = appearance54;
     ultraGridColumn2.Header.VisiblePosition = 1;
     ultraGridColumn2.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn2.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn2.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn2.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(1086, 0);
     ultraGridColumn2.RowLayoutColumnInfo.SpanX = 23;
     ultraGridColumn2.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn3.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance55.TextVAlignAsString = "Middle";
     ultraGridColumn3.CellAppearance = appearance55;
     ultraGridColumn3.Header.Caption = "ұ������";
     ultraGridColumn3.Header.VisiblePosition = 3;
     ultraGridColumn3.RowLayoutColumnInfo.OriginX = 12;
     ultraGridColumn3.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn3.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn3.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn3.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn3.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn4.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance56.TextVAlignAsString = "Middle";
     ultraGridColumn4.CellAppearance = appearance56;
     ultraGridColumn4.Header.Caption = "¯��";
     ultraGridColumn4.Header.VisiblePosition = 2;
     ultraGridColumn4.RowLayoutColumnInfo.OriginX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn4.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn4.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn4.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn4.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn5.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance57.TextVAlignAsString = "Middle";
     ultraGridColumn5.CellAppearance = appearance57;
     ultraGridColumn5.Header.Caption = "�ƺ�";
     ultraGridColumn5.Header.VisiblePosition = 4;
     ultraGridColumn5.RowLayoutColumnInfo.OriginX = 6;
     ultraGridColumn5.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn5.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn5.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn5.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn5.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn6.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance58.TextVAlignAsString = "Middle";
     ultraGridColumn6.CellAppearance = appearance58;
     ultraGridColumn6.Header.Caption = "���";
     ultraGridColumn6.Header.VisiblePosition = 35;
     ultraGridColumn6.RowLayoutColumnInfo.OriginX = 7;
     ultraGridColumn6.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn6.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn6.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn6.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn6.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn7.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance59.TextVAlignAsString = "Middle";
     ultraGridColumn7.CellAppearance = appearance59;
     ultraGridColumn7.Header.VisiblePosition = 7;
     ultraGridColumn7.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn7.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn7.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn7.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(440, 0);
     ultraGridColumn7.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn7.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn8.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance60.TextVAlignAsString = "Middle";
     ultraGridColumn8.CellAppearance = appearance60;
     ultraGridColumn8.Header.Caption = "C";
     ultraGridColumn8.Header.VisiblePosition = 14;
     ultraGridColumn8.RowLayoutColumnInfo.OriginX = 13;
     ultraGridColumn8.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn8.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn8.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn8.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn8.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn9.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance61.TextVAlignAsString = "Middle";
     ultraGridColumn9.CellAppearance = appearance61;
     ultraGridColumn9.Header.Caption = "Si";
     ultraGridColumn9.Header.VisiblePosition = 15;
     ultraGridColumn9.RowLayoutColumnInfo.OriginX = 14;
     ultraGridColumn9.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn9.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn9.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn9.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn9.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn10.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance62.TextVAlignAsString = "Middle";
     ultraGridColumn10.CellAppearance = appearance62;
     ultraGridColumn10.Header.Caption = "Mn";
     ultraGridColumn10.Header.VisiblePosition = 16;
     ultraGridColumn10.RowLayoutColumnInfo.OriginX = 15;
     ultraGridColumn10.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn10.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn10.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn10.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn10.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn11.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance63.TextVAlignAsString = "Middle";
     ultraGridColumn11.CellAppearance = appearance63;
     ultraGridColumn11.Header.Caption = "S";
     ultraGridColumn11.Header.VisiblePosition = 17;
     ultraGridColumn11.RowLayoutColumnInfo.OriginX = 16;
     ultraGridColumn11.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn11.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn11.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn11.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn11.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn12.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance64.TextVAlignAsString = "Middle";
     ultraGridColumn12.CellAppearance = appearance64;
     ultraGridColumn12.Header.Caption = "P";
     ultraGridColumn12.Header.VisiblePosition = 18;
     ultraGridColumn12.RowLayoutColumnInfo.OriginX = 17;
     ultraGridColumn12.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn12.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn12.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn12.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn12.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn13.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance67.TextVAlignAsString = "Middle";
     ultraGridColumn13.CellAppearance = appearance67;
     ultraGridColumn13.Header.Caption = "Ni";
     ultraGridColumn13.Header.VisiblePosition = 19;
     ultraGridColumn13.Hidden = true;
     ultraGridColumn13.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn13.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn13.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn13.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn13.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn13.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn14.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance68.TextVAlignAsString = "Middle";
     ultraGridColumn14.CellAppearance = appearance68;
     ultraGridColumn14.Header.Caption = "Cr";
     ultraGridColumn14.Header.VisiblePosition = 21;
     ultraGridColumn14.Hidden = true;
     ultraGridColumn14.RowLayoutColumnInfo.OriginX = 19;
     ultraGridColumn14.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn14.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn14.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn14.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn14.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn15.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance69.TextVAlignAsString = "Middle";
     ultraGridColumn15.CellAppearance = appearance69;
     ultraGridColumn15.Header.Caption = "Cu";
     ultraGridColumn15.Header.VisiblePosition = 22;
     ultraGridColumn15.Hidden = true;
     ultraGridColumn15.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn15.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn15.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn15.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn15.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn15.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn16.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance72.TextVAlignAsString = "Middle";
     ultraGridColumn16.CellAppearance = appearance72;
     ultraGridColumn16.Header.Caption = "V";
     ultraGridColumn16.Header.VisiblePosition = 23;
     ultraGridColumn16.Hidden = true;
     ultraGridColumn16.RowLayoutColumnInfo.OriginX = 21;
     ultraGridColumn16.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn16.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn16.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn16.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn16.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn17.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance73.TextVAlignAsString = "Middle";
     ultraGridColumn17.CellAppearance = appearance73;
     ultraGridColumn17.Header.Caption = "Mo";
     ultraGridColumn17.Header.VisiblePosition = 24;
     ultraGridColumn17.Hidden = true;
     ultraGridColumn17.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn17.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn17.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn17.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn17.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn17.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn18.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance74.TextVAlignAsString = "Middle";
     ultraGridColumn18.CellAppearance = appearance74;
     ultraGridColumn18.Header.Caption = "Ceq";
     ultraGridColumn18.Header.VisiblePosition = 25;
     ultraGridColumn18.Hidden = true;
     ultraGridColumn18.RowLayoutColumnInfo.OriginX = 23;
     ultraGridColumn18.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn18.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn18.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 20);
     ultraGridColumn18.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn18.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn19.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance75.TextVAlignAsString = "Middle";
     ultraGridColumn19.CellAppearance = appearance75;
     ultraGridColumn19.Header.Caption = "������";
     ultraGridColumn19.Header.VisiblePosition = 6;
     ultraGridColumn19.RowLayoutColumnInfo.OriginX = 8;
     ultraGridColumn19.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn19.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(55, 0);
     ultraGridColumn19.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn19.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn19.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn20.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance76.TextVAlignAsString = "Middle";
     ultraGridColumn20.CellAppearance = appearance76;
     ultraGridColumn20.Header.VisiblePosition = 20;
     ultraGridColumn20.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn20.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn20.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn20.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn20.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn21.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance77.TextVAlignAsString = "Middle";
     ultraGridColumn21.CellAppearance = appearance77;
     ultraGridColumn21.Header.Caption = "��";
     ultraGridColumn21.Header.VisiblePosition = 32;
     ultraGridColumn21.RowLayoutColumnInfo.OriginX = 9;
     ultraGridColumn21.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn21.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn21.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn21.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn21.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn22.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance78.TextVAlignAsString = "Middle";
     ultraGridColumn22.CellAppearance = appearance78;
     ultraGridColumn22.Header.Caption = "ʵ��";
     ultraGridColumn22.Header.VisiblePosition = 8;
     ultraGridColumn22.RowLayoutColumnInfo.OriginX = 10;
     ultraGridColumn22.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn22.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn22.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn22.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn22.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn23.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance79.TextVAlignAsString = "Middle";
     ultraGridColumn23.CellAppearance = appearance79;
     ultraGridColumn23.Header.Caption = "��ע";
     ultraGridColumn23.Header.VisiblePosition = 27;
     ultraGridColumn23.RowLayoutColumnInfo.OriginX = 28;
     ultraGridColumn23.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn23.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn23.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn23.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn23.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn24.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance80.TextVAlignAsString = "Middle";
     ultraGridColumn24.CellAppearance = appearance80;
     ultraGridColumn24.Header.Caption = "�ж�Ա";
     ultraGridColumn24.Header.VisiblePosition = 29;
     ultraGridColumn24.RowLayoutColumnInfo.OriginX = 26;
     ultraGridColumn24.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn24.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn24.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn24.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn24.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn25.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance81.TextVAlignAsString = "Middle";
     ultraGridColumn25.CellAppearance = appearance81;
     ultraGridColumn25.Header.Caption = "�ж�ʱ��";
     ultraGridColumn25.Header.VisiblePosition = 30;
     ultraGridColumn25.RowLayoutColumnInfo.OriginX = 27;
     ultraGridColumn25.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn25.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn25.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn25.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn25.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn26.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance82.TextVAlignAsString = "Middle";
     ultraGridColumn26.CellAppearance = appearance82;
     ultraGridColumn26.Header.VisiblePosition = 26;
     ultraGridColumn26.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn26.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn26.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn26.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(957, 0);
     ultraGridColumn26.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn26.RowLayoutColumnInfo.SpanX = 13;
     ultraGridColumn26.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn27.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance83.TextVAlignAsString = "Middle";
     ultraGridColumn27.CellAppearance = appearance83;
     ultraGridColumn27.Header.VisiblePosition = 28;
     ultraGridColumn27.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn27.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn27.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn27.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn27.RowLayoutColumnInfo.SpanX = 5;
     ultraGridColumn27.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn28.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance84.TextVAlignAsString = "Middle";
     ultraGridColumn28.CellAppearance = appearance84;
     ultraGridColumn28.Header.Caption = "����";
     ultraGridColumn28.Header.VisiblePosition = 9;
     ultraGridColumn28.RowLayoutColumnInfo.OriginX = 30;
     ultraGridColumn28.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn28.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn28.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn28.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn28.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn29.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance85.TextVAlignAsString = "Middle";
     ultraGridColumn29.CellAppearance = appearance85;
     ultraGridColumn29.Header.Caption = "���ܺ�";
     ultraGridColumn29.Header.VisiblePosition = 10;
     ultraGridColumn29.RowLayoutColumnInfo.OriginX = 31;
     ultraGridColumn29.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn29.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(80, 0);
     ultraGridColumn29.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn29.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn29.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn30.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance86.TextVAlignAsString = "Middle";
     ultraGridColumn30.CellAppearance = appearance86;
     ultraGridColumn30.Header.Caption = "����ʱ��";
     ultraGridColumn30.Header.VisiblePosition = 12;
     ultraGridColumn30.RowLayoutColumnInfo.OriginX = 32;
     ultraGridColumn30.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn30.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn30.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn30.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn30.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn31.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance87.TextVAlignAsString = "Middle";
     ultraGridColumn31.CellAppearance = appearance87;
     ultraGridColumn31.Header.Caption = "������";
     ultraGridColumn31.Header.VisiblePosition = 31;
     ultraGridColumn31.RowLayoutColumnInfo.OriginX = 33;
     ultraGridColumn31.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn31.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn31.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn31.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn31.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn32.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance88.TextVAlignAsString = "Middle";
     ultraGridColumn32.CellAppearance = appearance88;
     ultraGridColumn32.Header.VisiblePosition = 33;
     ultraGridColumn32.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn32.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn32.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn32.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn32.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn32.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn33.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance89.TextVAlignAsString = "Middle";
     ultraGridColumn33.CellAppearance = appearance89;
     ultraGridColumn33.Header.Caption = "���Ʊ��";
     ultraGridColumn33.Header.VisiblePosition = 34;
     ultraGridColumn33.MergedCellEvaluationType = Infragistics.Win.UltraWinGrid.MergedCellEvaluationType.MergeSameValue;
     ultraGridColumn33.MergedCellStyle = Infragistics.Win.UltraWinGrid.MergedCellStyle.Always;
     ultraGridColumn33.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn33.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn33.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn33.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn33.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn33.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn34.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance90.TextVAlignAsString = "Middle";
     ultraGridColumn34.CellAppearance = appearance90;
     ultraGridColumn34.Header.Caption = "��¯";
     ultraGridColumn34.Header.VisiblePosition = 36;
     ultraGridColumn34.RowLayoutColumnInfo.OriginX = 3;
     ultraGridColumn34.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn34.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn34.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn34.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn34.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn35.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance91.TextVAlignAsString = "Middle";
     ultraGridColumn35.CellAppearance = appearance91;
     ultraGridColumn35.Header.Caption = "��¯ʱ��";
     ultraGridColumn35.Header.VisiblePosition = 37;
     ultraGridColumn35.RowLayoutColumnInfo.OriginX = 34;
     ultraGridColumn35.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn35.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn35.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn35.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn35.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn36.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance92.TextVAlignAsString = "Middle";
     ultraGridColumn36.CellAppearance = appearance92;
     ultraGridColumn36.Header.Caption = "������";
     ultraGridColumn36.Header.VisiblePosition = 38;
     ultraGridColumn36.RowLayoutColumnInfo.OriginX = 35;
     ultraGridColumn36.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn36.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn36.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn36.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn36.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn37.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance93.TextVAlignAsString = "Middle";
     ultraGridColumn37.CellAppearance = appearance93;
     ultraGridColumn37.Header.Caption = "��ע";
     ultraGridColumn37.Header.VisiblePosition = 39;
     ultraGridColumn37.RowLayoutColumnInfo.OriginX = 36;
     ultraGridColumn37.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn37.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn37.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn37.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn37.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn38.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance94.TextVAlignAsString = "Middle";
     ultraGridColumn38.CellAppearance = appearance94;
     ultraGridColumn38.Header.VisiblePosition = 40;
     ultraGridColumn38.RowLayoutColumnInfo.LabelPosition = Infragistics.Win.UltraWinGrid.LabelPosition.LabelOnly;
     ultraGridColumn38.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn38.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn38.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn38.RowLayoutColumnInfo.SpanX = 3;
     ultraGridColumn38.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn39.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance95.TextVAlignAsString = "Middle";
     ultraGridColumn39.CellAppearance = appearance95;
     ultraGridColumn39.Header.Caption = "���ƹ��";
     ultraGridColumn39.Header.VisiblePosition = 41;
     ultraGridColumn39.RowLayoutColumnInfo.OriginX = 2;
     ultraGridColumn39.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn39.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn39.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn39.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn39.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn40.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance96.TextVAlignAsString = "Middle";
     ultraGridColumn40.CellAppearance = appearance96;
     ultraGridColumn40.FilterOperatorDefaultValue = Infragistics.Win.UltraWinGrid.FilterOperatorDefaultValue.Equals;
     ultraGridColumn40.FilterOperatorDropDownItems = Infragistics.Win.UltraWinGrid.FilterOperatorDropDownItems.Equals;
     ultraGridColumn40.Header.Caption = "���߳���";
     ultraGridColumn40.Header.VisiblePosition = 5;
     ultraGridColumn40.RowLayoutColumnInfo.OriginX = 37;
     ultraGridColumn40.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn40.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn40.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn40.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn40.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn41.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance97.TextVAlignAsString = "Middle";
     ultraGridColumn41.CellAppearance = appearance97;
     ultraGridColumn41.Header.Caption = "����ʱ��";
     ultraGridColumn41.Header.VisiblePosition = 42;
     ultraGridColumn41.RowLayoutColumnInfo.OriginX = 38;
     ultraGridColumn41.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn41.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(125, 0);
     ultraGridColumn41.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn41.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn41.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn42.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance98.TextVAlignAsString = "Middle";
     ultraGridColumn42.CellAppearance = appearance98;
     ultraGridColumn42.Header.Caption = "������";
     ultraGridColumn42.Header.VisiblePosition = 43;
     ultraGridColumn42.RowLayoutColumnInfo.OriginX = 39;
     ultraGridColumn42.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn42.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn42.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn42.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn42.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn43.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance99.TextVAlignAsString = "Middle";
     ultraGridColumn43.CellAppearance = appearance99;
     ultraGridColumn43.Header.Caption = "�ɲ�";
     ultraGridColumn43.Header.VisiblePosition = 44;
     ultraGridColumn43.RowLayoutColumnInfo.OriginX = 4;
     ultraGridColumn43.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn43.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn43.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn43.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn43.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn44.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance100.TextVAlignAsString = "Middle";
     ultraGridColumn44.CellAppearance = appearance100;
     ultraGridColumn44.Header.Caption = "����";
     ultraGridColumn44.Header.VisiblePosition = 45;
     ultraGridColumn44.RowLayoutColumnInfo.OriginX = 5;
     ultraGridColumn44.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn44.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn44.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 25);
     ultraGridColumn44.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn44.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn45.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance101.TextVAlignAsString = "Middle";
     ultraGridColumn45.CellAppearance = appearance101;
     ultraGridColumn45.Header.Caption = "��ע";
     ultraGridColumn45.Header.VisiblePosition = 46;
     ultraGridColumn45.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn45.RowLayoutColumnInfo.OriginY = 1;
     ultraGridColumn45.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn45.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 47);
     ultraGridColumn45.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn45.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn46.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance102.TextVAlignAsString = "Middle";
     ultraGridColumn46.CellAppearance = appearance102;
     ultraGridColumn46.Header.Caption = "����״̬";
     ultraGridColumn46.Header.VisiblePosition = 13;
     ultraGridColumn46.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn46.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn46.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(67, 0);
     ultraGridColumn46.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 72);
     ultraGridColumn46.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn46.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn47.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     appearance103.TextVAlignAsString = "Middle";
     ultraGridColumn47.CellAppearance = appearance103;
     ultraGridColumn47.Header.Caption = "״̬";
     ultraGridColumn47.Header.VisiblePosition = 11;
     ultraGridColumn47.RowLayoutColumnInfo.OriginX = 29;
     ultraGridColumn47.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn47.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(68, 0);
     ultraGridColumn47.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn47.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn47.RowLayoutColumnInfo.SpanY = 1;
     appearance104.TextVAlignAsString = "Middle";
     ultraGridColumn48.CellAppearance = appearance104;
     ultraGridColumn48.Header.Caption = "ѡ��";
     ultraGridColumn48.Header.VisiblePosition = 47;
     ultraGridColumn48.Hidden = true;
     ultraGridColumn48.RowLayoutColumnInfo.OriginX = 0;
     ultraGridColumn48.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn48.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn48.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn48.Style = Infragistics.Win.UltraWinGrid.ColumnStyle.CheckBox;
     ultraGridColumn49.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn49.Header.Caption = "����";
     ultraGridColumn49.Header.VisiblePosition = 48;
     ultraGridColumn49.RowLayoutColumnInfo.OriginX = 11;
     ultraGridColumn49.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn49.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(50, 0);
     ultraGridColumn49.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 22);
     ultraGridColumn49.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn49.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn50.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn50.Header.VisiblePosition = 49;
     ultraGridColumn50.Hidden = true;
     ultraGridColumn50.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn51.Header.VisiblePosition = 50;
     ultraGridColumn51.Hidden = true;
     ultraGridColumn51.RowLayoutColumnInfo.OriginX = 41;
     ultraGridColumn51.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn51.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn51.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn51.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn52.CellActivation = Infragistics.Win.UltraWinGrid.Activation.ActivateOnly;
     ultraGridColumn52.Header.VisiblePosition = 51;
     ultraGridColumn52.Hidden = true;
     ultraGridColumn52.RowLayoutColumnInfo.OriginX = 42;
     ultraGridColumn52.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn52.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(60, 0);
     ultraGridColumn52.RowLayoutColumnInfo.SpanX = 1;
     ultraGridColumn52.RowLayoutColumnInfo.SpanY = 1;
     ultraGridColumn53.Header.VisiblePosition = 52;
     ultraGridColumn53.RowLayoutColumnInfo.OriginX = 44;
     ultraGridColumn53.RowLayoutColumnInfo.OriginY = 0;
     ultraGridColumn53.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(62, 0);
     ultraGridColumn53.RowLayoutColumnInfo.PreferredLabelSize = new System.Drawing.Size(0, 72);
     ultraGridColumn53.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn53.RowLayoutColumnInfo.SpanY = 3;
     ultraGridColumn54.Header.VisiblePosition = 53;
     ultraGridColumn54.RowLayoutColumnInfo.OriginX = 18;
     ultraGridColumn54.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn54.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(49, 0);
     ultraGridColumn54.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn54.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn55.Header.VisiblePosition = 54;
     ultraGridColumn55.RowLayoutColumnInfo.OriginX = 20;
     ultraGridColumn55.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn55.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(46, 0);
     ultraGridColumn55.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn55.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn56.Header.VisiblePosition = 55;
     ultraGridColumn56.RowLayoutColumnInfo.OriginX = 22;
     ultraGridColumn56.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn56.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(48, 0);
     ultraGridColumn56.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn56.RowLayoutColumnInfo.SpanY = 2;
     ultraGridColumn57.Header.VisiblePosition = 56;
     ultraGridColumn57.RowLayoutColumnInfo.OriginX = 24;
     ultraGridColumn57.RowLayoutColumnInfo.OriginY = 2;
     ultraGridColumn57.RowLayoutColumnInfo.PreferredCellSize = new System.Drawing.Size(47, 0);
     ultraGridColumn57.RowLayoutColumnInfo.SpanX = 2;
     ultraGridColumn57.RowLayoutColumnInfo.SpanY = 2;
     ultraGridBand1.Columns.AddRange(new object[] {
     ultraGridColumn1,
     ultraGridColumn2,
     ultraGridColumn3,
     ultraGridColumn4,
     ultraGridColumn5,
     ultraGridColumn6,
     ultraGridColumn7,
     ultraGridColumn8,
     ultraGridColumn9,
     ultraGridColumn10,
     ultraGridColumn11,
     ultraGridColumn12,
     ultraGridColumn13,
     ultraGridColumn14,
     ultraGridColumn15,
     ultraGridColumn16,
     ultraGridColumn17,
     ultraGridColumn18,
     ultraGridColumn19,
     ultraGridColumn20,
     ultraGridColumn21,
     ultraGridColumn22,
     ultraGridColumn23,
     ultraGridColumn24,
     ultraGridColumn25,
     ultraGridColumn26,
     ultraGridColumn27,
     ultraGridColumn28,
     ultraGridColumn29,
     ultraGridColumn30,
     ultraGridColumn31,
     ultraGridColumn32,
     ultraGridColumn33,
     ultraGridColumn34,
     ultraGridColumn35,
     ultraGridColumn36,
     ultraGridColumn37,
     ultraGridColumn38,
     ultraGridColumn39,
     ultraGridColumn40,
     ultraGridColumn41,
     ultraGridColumn42,
     ultraGridColumn43,
     ultraGridColumn44,
     ultraGridColumn45,
     ultraGridColumn46,
     ultraGridColumn47,
     ultraGridColumn48,
     ultraGridColumn49,
     ultraGridColumn50,
     ultraGridColumn51,
     ultraGridColumn52,
     ultraGridColumn53,
     ultraGridColumn54,
     ultraGridColumn55,
     ultraGridColumn56,
     ultraGridColumn57});
     ultraGridBand1.Override.AllowRowLayoutCellSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.None;
     ultraGridBand1.Override.AllowRowLayoutCellSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.Override.AllowRowLayoutColMoving = Infragistics.Win.Layout.GridBagLayoutAllowMoving.None;
     ultraGridBand1.Override.AllowRowLayoutLabelSizing = Infragistics.Win.UltraWinGrid.RowLayoutSizing.Horizontal;
     ultraGridBand1.Override.AllowRowLayoutLabelSpanSizing = Infragistics.Win.Layout.GridBagLayoutAllowSpanSizing.None;
     ultraGridBand1.RowLayoutStyle = Infragistics.Win.UltraWinGrid.RowLayoutStyle.GroupLayout;
     summarySettings1.DisplayFormat = "¯����{0}";
     summarySettings1.GroupBySummaryValueAppearance = appearance105;
     summarySettings2.DisplayFormat = "{0}";
     summarySettings2.GroupBySummaryValueAppearance = appearance106;
     summarySettings3.DisplayFormat = "{0}";
     summarySettings3.GroupBySummaryValueAppearance = appearance107;
     summarySettings4.DisplayFormat = "{0}";
     summarySettings4.GroupBySummaryValueAppearance = appearance108;
     ultraGridBand1.Summaries.AddRange(new Infragistics.Win.UltraWinGrid.SummarySettings[] {
     summarySettings1,
     summarySettings2,
     summarySettings3,
     summarySettings4});
     this.ultraGrid1.DisplayLayout.BandsSerializer.Add(ultraGridBand1);
     this.ultraGrid1.DisplayLayout.InterBandSpacing = 8;
     appearance168.FontData.BoldAsString = "True";
     this.ultraGrid1.DisplayLayout.Override.ActiveRowAppearance = appearance168;
     this.ultraGrid1.DisplayLayout.Override.AllowAddNew = Infragistics.Win.UltraWinGrid.AllowAddNew.No;
     this.ultraGrid1.DisplayLayout.Override.AllowDelete = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.AllowUpdate = Infragistics.Win.DefaultableBoolean.False;
     appearance169.BackColor = System.Drawing.Color.Transparent;
     this.ultraGrid1.DisplayLayout.Override.CardAreaAppearance = appearance169;
     appearance170.TextVAlignAsString = "Middle";
     this.ultraGrid1.DisplayLayout.Override.CellAppearance = appearance170;
     this.ultraGrid1.DisplayLayout.Override.CellClickAction = Infragistics.Win.UltraWinGrid.CellClickAction.EditAndSelectText;
     this.ultraGrid1.DisplayLayout.Override.ColumnAutoSizeMode = Infragistics.Win.UltraWinGrid.ColumnAutoSizeMode.AllRowsInBand;
     appearance171.BackColor = System.Drawing.Color.LightSteelBlue;
     appearance171.TextHAlignAsString = "Center";
     appearance171.ThemedElementAlpha = Infragistics.Win.Alpha.Transparent;
     this.ultraGrid1.DisplayLayout.Override.HeaderAppearance = appearance171;
     this.ultraGrid1.DisplayLayout.Override.HeaderClickAction = Infragistics.Win.UltraWinGrid.HeaderClickAction.SortMulti;
     this.ultraGrid1.DisplayLayout.Override.MaxSelectedRows = 1;
     this.ultraGrid1.DisplayLayout.Override.MinRowHeight = 21;
     appearance172.BackColor = System.Drawing.Color.LightSteelBlue;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorAppearance = appearance172;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorNumberStyle = Infragistics.Win.UltraWinGrid.RowSelectorNumberStyle.RowIndex;
     this.ultraGrid1.DisplayLayout.Override.RowSelectors = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.Override.RowSelectorWidth = 26;
     this.ultraGrid1.DisplayLayout.Override.RowSpacingBefore = 0;
     appearance173.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(129)))), ((int)(((byte)(169)))), ((int)(((byte)(226)))));
     appearance173.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(221)))), ((int)(((byte)(235)))), ((int)(((byte)(254)))));
     appearance173.BackGradientStyle = Infragistics.Win.GradientStyle.Vertical;
     appearance173.ForeColor = System.Drawing.Color.Black;
     this.ultraGrid1.DisplayLayout.Override.SelectedRowAppearance = appearance173;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCell = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeCol = Infragistics.Win.UltraWinGrid.SelectType.None;
     this.ultraGrid1.DisplayLayout.Override.SelectTypeRow = Infragistics.Win.UltraWinGrid.SelectType.Single;
     this.ultraGrid1.DisplayLayout.Override.SummaryFooterCaptionVisible = Infragistics.Win.DefaultableBoolean.False;
     this.ultraGrid1.DisplayLayout.Override.WrapHeaderText = Infragistics.Win.DefaultableBoolean.True;
     this.ultraGrid1.DisplayLayout.ScrollBounds = Infragistics.Win.UltraWinGrid.ScrollBounds.ScrollToFill;
     this.ultraGrid1.DisplayLayout.ScrollStyle = Infragistics.Win.UltraWinGrid.ScrollStyle.Immediate;
     this.ultraGrid1.DisplayLayout.TabNavigation = Infragistics.Win.UltraWinGrid.TabNavigation.NextControl;
     this.ultraGrid1.DisplayLayout.ViewStyle = Infragistics.Win.UltraWinGrid.ViewStyle.SingleBand;
     this.ultraGrid1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraGrid1.Font = new System.Drawing.Font("����", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.ultraGrid1.Location = new System.Drawing.Point(3, 27);
     this.ultraGrid1.Margin = new System.Windows.Forms.Padding(4);
     this.ultraGrid1.Name = "ultraGrid1";
     this.ultraGrid1.Size = new System.Drawing.Size(1347, 326);
     this.ultraGrid1.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraGrid1, null);
     this.ultraGrid1.AfterRowActivate += new System.EventHandler(this.ultraGrid1_AfterRowActivate);
     //
     // dataSet1
     //
     this.dataSet1.DataSetName = "NewDataSet";
     this.dataSet1.Tables.AddRange(new System.Data.DataTable[] {
     this.dataTable1});
     //
     // dataTable1
     //
     this.dataTable1.Columns.AddRange(new System.Data.DataColumn[] {
     this.dataColumn1,
     this.dataColumn2,
     this.dataColumn3,
     this.dataColumn4,
     this.dataColumn5,
     this.dataColumn6,
     this.dataColumn7,
     this.dataColumn8,
     this.dataColumn9,
     this.dataColumn10,
     this.dataColumn11,
     this.dataColumn12,
     this.dataColumn13,
     this.dataColumn14,
     this.dataColumn15,
     this.dataColumn16,
     this.dataColumn17,
     this.dataColumn19,
     this.dataColumn20,
     this.dataColumn21,
     this.dataColumn22,
     this.dataColumn23,
     this.dataColumn24,
     this.dataColumn25,
     this.dataColumn26,
     this.dataColumn27,
     this.dataColumn18,
     this.dataColumn28,
     this.dataColumn29,
     this.dataColumn30,
     this.dataColumn31,
     this.dataColumn32,
     this.dataColumn33,
     this.dataColumn34,
     this.dataColumn35,
     this.dataColumn36,
     this.dataColumn37,
     this.dataColumn38,
     this.dataColumn39,
     this.dataColumn40,
     this.dataColumn41,
     this.dataColumn42,
     this.dataColumn43,
     this.dataColumn44,
     this.dataColumn45,
     this.dataColumn46,
     this.dataColumn47,
     this.dataColumn48,
     this.dataColumn49,
     this.dataColumn50,
     this.dataColumn51,
     this.dataColumn52,
     this.dataColumn53,
     this.dataColumn54,
     this.dataColumn55,
     this.dataColumn56,
     this.dataColumn57});
     this.dataTable1.TableName = "Table1";
     //
     // dataColumn1
     //
     this.dataColumn1.ColumnName = "FS_CARDNO";
     //
     // dataColumn2
     //
     this.dataColumn2.ColumnName = "ұ��";
     //
     // dataColumn3
     //
     this.dataColumn3.ColumnName = "FD_SMELTDATE";
     //
     // dataColumn4
     //
     this.dataColumn4.ColumnName = "FS_GP_STOVENO";
     //
     // dataColumn5
     //
     this.dataColumn5.ColumnName = "FS_GP_STEELTYPE";
     //
     // dataColumn6
     //
     this.dataColumn6.ColumnName = "FS_GP_SPE";
     //
     // dataColumn7
     //
     this.dataColumn7.ColumnName = "��ѧ�ɷ֣�%��";
     //
     // dataColumn8
     //
     this.dataColumn8.ColumnName = "FN_GP_C";
     //
     // dataColumn9
     //
     this.dataColumn9.ColumnName = "FN_GP_SI";
     //
     // dataColumn10
     //
     this.dataColumn10.ColumnName = "FN_GP_MN";
     //
     // dataColumn11
     //
     this.dataColumn11.ColumnName = "FN_GP_S";
     //
     // dataColumn12
     //
     this.dataColumn12.ColumnName = "FN_GP_P";
     //
     // dataColumn13
     //
     this.dataColumn13.ColumnName = "FN_GP_NI";
     //
     // dataColumn14
     //
     this.dataColumn14.ColumnName = "FN_GP_CR";
     //
     // dataColumn15
     //
     this.dataColumn15.ColumnName = "FN_GP_CU";
     //
     // dataColumn16
     //
     this.dataColumn16.ColumnName = "FN_GP_V";
     //
     // dataColumn17
     //
     this.dataColumn17.ColumnName = "FN_GP_MO";
     //
     // dataColumn19
     //
     this.dataColumn19.ColumnName = "FN_GP_CEQ";
     //
     // dataColumn20
     //
     this.dataColumn20.ColumnName = "FN_GP_TOTALCOUNT";
     //
     // dataColumn21
     //
     this.dataColumn21.ColumnName = "�ϸ�Ʒ";
     //
     // dataColumn22
     //
     this.dataColumn22.ColumnName = "FN_GP_CHECKCOUNT";
     //
     // dataColumn23
     //
     this.dataColumn23.ColumnName = "FN_JJ_WEIGHT";
     //
     // dataColumn24
     //
     this.dataColumn24.ColumnName = "FS_GP_MEMO";
     //
     // dataColumn25
     //
     this.dataColumn25.ColumnName = "FS_GP_JUDGER";
     //
     // dataColumn26
     //
     this.dataColumn26.ColumnName = "FD_GP_JUDGEDATE";
     //
     // dataColumn27
     //
     this.dataColumn27.ColumnName = "����";
     //
     // dataColumn18
     //
     this.dataColumn18.ColumnName = "��������";
     //
     // dataColumn28
     //
     this.dataColumn28.ColumnName = "FN_GPYS_NUMBER";
     //
     // dataColumn29
     //
     this.dataColumn29.ColumnName = "FS_DJH";
     //
     // dataColumn30
     //
     this.dataColumn30.ColumnName = "FD_GPYS_RECEIVEDATE";
     //
     // dataColumn31
     //
     this.dataColumn31.ColumnName = "FS_GPYS_RECEIVER";
     //
     // dataColumn32
     //
     this.dataColumn32.ColumnName = "��������";
     //
     // dataColumn33
     //
     this.dataColumn33.ColumnName = "FS_ZC_BATCHNO";
     //
     // dataColumn34
     //
     this.dataColumn34.ColumnName = "FN_ZC_ENTERNUMBER";
     //
     // dataColumn35
     //
     this.dataColumn35.ColumnName = "FD_ZC_ENTERDATETIME";
     //
     // dataColumn36
     //
     this.dataColumn36.ColumnName = "FS_ZC_OPERATOR";
     //
     // dataColumn37
     //
     this.dataColumn37.ColumnName = "FS_ZC_MEMO";
     //
     // dataColumn38
     //
     this.dataColumn38.ColumnName = "����";
     //
     // dataColumn39
     //
     this.dataColumn39.ColumnName = "FN_ZZ_SPEC";
     //
     // dataColumn40
     //
     this.dataColumn40.ColumnName = "FN_LENGTH";
     //
     // dataColumn41
     //
     this.dataColumn41.ColumnName = "FD_ZZ_DATE";
     //
     // dataColumn42
     //
     this.dataColumn42.ColumnName = "FS_ZZ_OPERATOR";
     //
     // dataColumn43
     //
     this.dataColumn43.ColumnName = "FN_ZZ_NUM";
     //
     // dataColumn44
     //
     this.dataColumn44.ColumnName = "FN_ZZ_WASTNUM";
     //
     // dataColumn45
     //
     this.dataColumn45.ColumnName = "FS_ZZ_MEMO";
     //
     // dataColumn46
     //
     this.dataColumn46.ColumnName = "FS_FREEZED";
     //
     // dataColumn47
     //
     this.dataColumn47.ColumnName = "FS_CHECKED";
     //
     // dataColumn48
     //
     this.dataColumn48.ColumnName = "CHECKED";
     this.dataColumn48.DataType = typeof(bool);
     //
     // dataColumn49
     //
     this.dataColumn49.ColumnName = "FN_LL_WEIGHT";
     //
     // dataColumn50
     //
     this.dataColumn50.Caption = "ȥ��";
     this.dataColumn50.ColumnName = "FS_GP_FLOW";
     //
     // dataColumn51
     //
     this.dataColumn51.ColumnName = "FS_DISCHARGE_BEGINED";
     //
     // dataColumn52
     //
     this.dataColumn52.ColumnName = "FS_DISCHARGE_END";
     //
     // dataColumn53
     //
     this.dataColumn53.Caption = "�ϸ�";
     this.dataColumn53.ColumnName = "FS_UNQUALIFIED";
     //
     // dataColumn54
     //
     this.dataColumn54.Caption = "As";
     this.dataColumn54.ColumnName = "FN_GP_AS";
     //
     // dataColumn55
     //
     this.dataColumn55.Caption = "Ti";
     this.dataColumn55.ColumnName = "FN_GP_TI";
     //
     // dataColumn56
     //
     this.dataColumn56.Caption = "Sb";
     this.dataColumn56.ColumnName = "FN_GP_SB";
     //
     // dataColumn57
     //
     this.dataColumn57.Caption = "Als";
     this.dataColumn57.ColumnName = "FN_GP_ALS";
     //
     // cbx_Filter
     //
     this.cbx_Filter.AutoSize = true;
     this.cbx_Filter.BackColor = System.Drawing.Color.LightBlue;
     this.coreBind.SetDatabasecommand(this.cbx_Filter, null);
     this.cbx_Filter.Location = new System.Drawing.Point(1157, 2);
     this.cbx_Filter.Margin = new System.Windows.Forms.Padding(4);
     this.cbx_Filter.Name = "cbx_Filter";
     this.cbx_Filter.Size = new System.Drawing.Size(59, 19);
     this.cbx_Filter.TabIndex = 0;
     this.cbx_Filter.Text = "����";
     this.cbx_Filter.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.cbx_Filter.UseVisualStyleBackColor = false;
     this.coreBind.SetVerification(this.cbx_Filter, null);
     this.cbx_Filter.CheckedChanged += new System.EventHandler(this.cbx_Filter_CheckedChanged);
     //
     // ultraExpandableGroupBox1
     //
     this.ultraExpandableGroupBox1.Controls.Add(this.ultraExpandableGroupBoxPanel2);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.ultraExpandableGroupBox1.ExpandedSize = new System.Drawing.Size(1353, 328);
     this.ultraExpandableGroupBox1.Location = new System.Drawing.Point(0, 356);
     this.ultraExpandableGroupBox1.Margin = new System.Windows.Forms.Padding(1);
     this.ultraExpandableGroupBox1.Name = "ultraExpandableGroupBox1";
     this.ultraExpandableGroupBox1.Size = new System.Drawing.Size(1353, 328);
     this.ultraExpandableGroupBox1.TabIndex = 0;
     this.ultraExpandableGroupBox1.Text = "���ݱ༭����";
     this.coreBind.SetVerification(this.ultraExpandableGroupBox1, null);
     this.ultraExpandableGroupBox1.ViewStyle = Infragistics.Win.Misc.GroupBoxViewStyle.Office2007;
     //
     // ultraExpandableGroupBoxPanel2
     //
     this.ultraExpandableGroupBoxPanel2.Controls.Add(this.ucBilletFlowCard1);
     this.coreBind.SetDatabasecommand(this.ultraExpandableGroupBoxPanel2, null);
     this.ultraExpandableGroupBoxPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ultraExpandableGroupBoxPanel2.Location = new System.Drawing.Point(3, 21);
     this.ultraExpandableGroupBoxPanel2.Margin = new System.Windows.Forms.Padding(4);
     this.ultraExpandableGroupBoxPanel2.Name = "ultraExpandableGroupBoxPanel2";
     this.ultraExpandableGroupBoxPanel2.Size = new System.Drawing.Size(1347, 304);
     this.ultraExpandableGroupBoxPanel2.TabIndex = 0;
     this.coreBind.SetVerification(this.ultraExpandableGroupBoxPanel2, null);
     //
     // ucBilletFlowCard1
     //
     this.ucBilletFlowCard1.BackColor = System.Drawing.Color.Transparent;
     this.coreBind.SetDatabasecommand(this.ucBilletFlowCard1, null);
     this.ucBilletFlowCard1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.ucBilletFlowCard1.Location = new System.Drawing.Point(0, 0);
     this.ucBilletFlowCard1.Margin = new System.Windows.Forms.Padding(5);
     this.ucBilletFlowCard1.Name = "ucBilletFlowCard1";
     this.ucBilletFlowCard1.Size = new System.Drawing.Size(1347, 304);
     this.ucBilletFlowCard1.TabIndex = 0;
     this.coreBind.SetVerification(this.ucBilletFlowCard1, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Left
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Left;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Location = new System.Drawing.Point(0, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Left";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Left, null);
     //
     // ultraToolbarsManager1
     //
     this.ultraToolbarsManager1.DesignerFlags = 1;
     this.ultraToolbarsManager1.DockWithinContainer = this.FrmBase_Fill_Panel;
     this.ultraToolbarsManager1.LockToolbars = true;
     this.ultraToolbarsManager1.RuntimeCustomizationOptions = Infragistics.Win.UltraWinToolbars.RuntimeCustomizationOptions.None;
     this.ultraToolbarsManager1.ShowFullMenusDelay = 500;
     this.ultraToolbarsManager1.ShowQuickCustomizeButton = false;
     this.ultraToolbarsManager1.Style = Infragistics.Win.UltraWinToolbars.ToolbarStyle.Office2003;
     ultraToolbar1.DockedColumn = 0;
     ultraToolbar1.DockedRow = 0;
     controlContainerTool2.ControlName = "cbxDateTime";
     controlContainerTool2.InstanceProps.Width = 24;
     controlContainerTool9.ControlName = "dateTimePicker1";
     controlContainerTool20.ControlName = "dateTimePicker2";
     controlContainerTool20.InstanceProps.Width = 162;
     controlContainerTool15.ControlName = "rbtnA";
     controlContainerTool15.InstanceProps.IsFirstInGroup = true;
     controlContainerTool16.ControlName = "rbtnB";
     controlContainerTool17.ControlName = "rbtnC";
     ultraToolbar1.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool2,
     controlContainerTool9,
     controlContainerTool20,
     controlContainerTool15,
     controlContainerTool16,
     controlContainerTool17});
     ultraToolbar1.Text = "UltraToolbar1";
     ultraToolbar2.DockedColumn = 0;
     ultraToolbar2.DockedRow = 1;
     controlContainerTool19.ControlName = "tbQueryBatchNo";
     controlContainerTool19.InstanceProps.IsFirstInGroup = true;
     controlContainerTool19.InstanceProps.Width = 192;
     controlContainerTool18.ControlName = "tbQueryStoveNo";
     controlContainerTool18.InstanceProps.IsFirstInGroup = true;
     controlContainerTool18.InstanceProps.Width = 167;
     controlContainerTool8.ControlName = "cbx_Other1";
     controlContainerTool8.InstanceProps.IsFirstInGroup = true;
     controlContainerTool11.ControlName = "cbx_Other2";
     controlContainerTool13.ControlName = "cbx_Other3";
     buttonTool3.InstanceProps.IsFirstInGroup = true;
     buttonTool10.InstanceProps.IsFirstInGroup = true;
     buttonTool2.InstanceProps.IsFirstInGroup = true;
     buttonTool7.InstanceProps.IsFirstInGroup = true;
     ultraToolbar2.NonInheritedTools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool19,
     controlContainerTool18,
     controlContainerTool8,
     controlContainerTool11,
     controlContainerTool13,
     buttonTool3,
     buttonTool10,
     buttonTool2,
     buttonTool1,
     buttonTool7,
     buttonTool8,
     buttonTool11});
     ultraToolbar2.Text = "UltraToolbar2";
     this.ultraToolbarsManager1.Toolbars.AddRange(new Infragistics.Win.UltraWinToolbars.UltraToolbar[] {
     ultraToolbar1,
     ultraToolbar2});
     this.ultraToolbarsManager1.ToolbarSettings.AllowCustomize = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockBottom = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockLeft = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowDockRight = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowFloating = Infragistics.Win.DefaultableBoolean.False;
     this.ultraToolbarsManager1.ToolbarSettings.AllowHiding = Infragistics.Win.DefaultableBoolean.False;
     controlContainerTool22.ControlName = "dateTimePicker1";
     controlContainerTool22.SharedPropsInternal.Caption = "����ʱ��";
     controlContainerTool22.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool22.SharedPropsInternal.Width = 199;
     controlContainerTool23.ControlName = "dateTimePicker2";
     controlContainerTool23.SharedPropsInternal.Caption = "��";
     controlContainerTool23.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool23.SharedPropsInternal.Width = 162;
     appearance65.Image = ((object)(resources.GetObject("appearance65.Image")));
     buttonTool44.SharedPropsInternal.AppearancesSmall.Appearance = appearance65;
     buttonTool44.SharedPropsInternal.Caption = "��ѯ";
     buttonTool44.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool24.ControlName = "tbQueryStoveNo";
     controlContainerTool24.SharedPropsInternal.Caption = "ұ��¯��";
     controlContainerTool24.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance66.Image = ((object)(resources.GetObject("appearance66.Image")));
     buttonTool45.SharedPropsInternal.AppearancesSmall.Appearance = appearance66;
     buttonTool45.SharedPropsInternal.Caption = "����";
     buttonTool45.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance124.Image = ((object)(resources.GetObject("appearance124.Image")));
     buttonTool4.SharedPropsInternal.AppearancesSmall.Appearance = appearance124;
     buttonTool4.SharedPropsInternal.Caption = "ȡ������";
     buttonTool4.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.ControlName = "cbxDateTime";
     controlContainerTool1.SharedPropsInternal.Caption = "��";
     controlContainerTool1.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool1.SharedPropsInternal.Width = 24;
     controlContainerTool3.ControlName = "rbtnA";
     controlContainerTool3.SharedPropsInternal.Caption = "ѡ��A";
     controlContainerTool4.ControlName = "rbtnB";
     controlContainerTool4.SharedPropsInternal.Caption = "ѡ��B";
     controlContainerTool5.ControlName = "rbtnC";
     controlContainerTool5.SharedPropsInternal.Caption = "ѡ��C";
     controlContainerTool10.ControlName = "tbQueryBatchNo";
     controlContainerTool10.SharedPropsInternal.Caption = "�������Ʊ��";
     controlContainerTool10.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool10.SharedPropsInternal.Width = 192;
     controlContainerTool6.ControlName = "cbx_Other1";
     controlContainerTool6.SharedPropsInternal.Caption = "������1";
     controlContainerTool7.ControlName = "cbx_Other2";
     controlContainerTool7.SharedPropsInternal.Caption = "������2";
     appearance70.Image = ((object)(resources.GetObject("appearance70.Image")));
     buttonTool5.SharedPropsInternal.AppearancesSmall.Appearance = appearance70;
     buttonTool5.SharedPropsInternal.Caption = "��¯����";
     buttonTool5.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance71.Image = ((object)(resources.GetObject("appearance71.Image")));
     buttonTool6.SharedPropsInternal.AppearancesSmall.Appearance = appearance71;
     buttonTool6.SharedPropsInternal.Caption = "ȡ������";
     buttonTool6.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     appearance177.Image = ((object)(resources.GetObject("appearance177.Image")));
     buttonTool9.SharedPropsInternal.AppearancesSmall.Appearance = appearance177;
     buttonTool9.SharedPropsInternal.Caption = "����";
     buttonTool9.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     controlContainerTool12.ControlName = "cbx_Other3";
     controlContainerTool12.SharedPropsInternal.Caption = "������3";
     appearance119.Image = ((object)(resources.GetObject("appearance119.Image")));
     buttonTool12.SharedPropsInternal.AppearancesLarge.Appearance = appearance119;
     appearance120.Image = ((object)(resources.GetObject("appearance120.Image")));
     buttonTool12.SharedPropsInternal.AppearancesSmall.Appearance = appearance120;
     buttonTool12.SharedPropsInternal.Caption = "��������";
     buttonTool12.SharedPropsInternal.DisplayStyle = Infragistics.Win.UltraWinToolbars.ToolDisplayStyle.ImageAndText;
     this.ultraToolbarsManager1.Tools.AddRange(new Infragistics.Win.UltraWinToolbars.ToolBase[] {
     controlContainerTool22,
     controlContainerTool23,
     buttonTool44,
     controlContainerTool24,
     buttonTool45,
     buttonTool4,
     controlContainerTool1,
     controlContainerTool3,
     controlContainerTool4,
     controlContainerTool5,
     controlContainerTool10,
     controlContainerTool6,
     controlContainerTool7,
     buttonTool5,
     buttonTool6,
     buttonTool9,
     controlContainerTool12,
     buttonTool12});
     this.ultraToolbarsManager1.ToolClick += new Infragistics.Win.UltraWinToolbars.ToolClickEventHandler(this.ultraToolbarsManager1_ToolClick);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Right
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Right;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Location = new System.Drawing.Point(1353, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Right";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.Size = new System.Drawing.Size(0, 684);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Right, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Top
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Top;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Location = new System.Drawing.Point(0, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Top";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.Size = new System.Drawing.Size(1353, 61);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Top, null);
     //
     // _FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom
     //
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.AccessibleRole = System.Windows.Forms.AccessibleRole.Grouping;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(158)))), ((int)(((byte)(190)))), ((int)(((byte)(245)))));
     this.coreBind.SetDatabasecommand(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.DockedPosition = Infragistics.Win.UltraWinToolbars.DockedPosition.Bottom;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ForeColor = System.Drawing.SystemColors.ControlText;
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Location = new System.Drawing.Point(0, 745);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Margin = new System.Windows.Forms.Padding(4);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Name = "_FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom";
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.Size = new System.Drawing.Size(1353, 0);
     this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom.ToolbarsManager = this.ultraToolbarsManager1;
     this.coreBind.SetVerification(this._FrmBase_Fill_Panel_Toolbars_Dock_Area_Bottom, null);
     //
     // BoardBandFlowCard
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1353, 745);
     this.Controls.Add(this.FrmBase_Fill_Panel);
     this.coreBind.SetDatabasecommand(this, null);
     this.Margin = new System.Windows.Forms.Padding(5);
     this.Name = "BoardBandFlowCard";
     this.Text = "������";
     this.coreBind.SetVerification(this, null);
     this.Load += new System.EventHandler(this.BilletFlowCard_Load);
     this.FrmBase_Fill_Panel.ResumeLayout(false);
     this.FrmBase_Fill_Panel.PerformLayout();
     this.ultraPanel2.ClientArea.ResumeLayout(false);
     this.ultraPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraGroupBox2)).EndInit();
     this.ultraGroupBox2.ResumeLayout(false);
     this.ultraGroupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.ultraGrid1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataSet1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dataTable1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ultraExpandableGroupBox1)).EndInit();
     this.ultraExpandableGroupBox1.ResumeLayout(false);
     this.ultraExpandableGroupBoxPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.ultraToolbarsManager1)).EndInit();
     this.ResumeLayout(false);
 }
Esempio n. 56
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.label1       = new System.Windows.Forms.Label();
     this.button1      = new System.Windows.Forms.Button();
     this.button2      = new System.Windows.Forms.Button();
     this.radioButton1 = new System.Windows.Forms.RadioButton();
     this.radioButton2 = new System.Windows.Forms.RadioButton();
     this.radioButton3 = new System.Windows.Forms.RadioButton();
     this.button3      = new System.Windows.Forms.Button();
     this.label2       = new System.Windows.Forms.Label();
     this.button4      = new System.Windows.Forms.Button();
     this.button5      = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 9);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(168, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Accion a reailizar con cajero";
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(105, 250);
     this.button1.Name     = "button1";
     this.button1.Size     = new System.Drawing.Size(75, 33);
     this.button1.TabIndex = 10;
     this.button1.Text     = "Aceptar";
     this.button1.UseVisualStyleBackColor = true;
     this.button1.Click += new System.EventHandler(this.Button1Click);
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(339, 250);
     this.button2.Name     = "button2";
     this.button2.Size     = new System.Drawing.Size(75, 33);
     this.button2.TabIndex = 11;
     this.button2.Text     = "Regresar";
     this.button2.UseVisualStyleBackColor = true;
     this.button2.Click += new System.EventHandler(this.Button2Click);
     //
     // radioButton1
     //
     this.radioButton1.Location = new System.Drawing.Point(13, 35);
     this.radioButton1.Name     = "radioButton1";
     this.radioButton1.Size     = new System.Drawing.Size(104, 24);
     this.radioButton1.TabIndex = 13;
     this.radioButton1.TabStop  = true;
     this.radioButton1.Text     = "Agregar";
     this.radioButton1.UseVisualStyleBackColor = true;
     this.radioButton1.CheckedChanged         += new System.EventHandler(this.RadioButton1CheckedChanged);
     //
     // radioButton2
     //
     this.radioButton2.Location = new System.Drawing.Point(13, 65);
     this.radioButton2.Name     = "radioButton2";
     this.radioButton2.Size     = new System.Drawing.Size(104, 24);
     this.radioButton2.TabIndex = 14;
     this.radioButton2.TabStop  = true;
     this.radioButton2.Text     = "Editar";
     this.radioButton2.UseVisualStyleBackColor = true;
     //
     // radioButton3
     //
     this.radioButton3.Location = new System.Drawing.Point(13, 95);
     this.radioButton3.Name     = "radioButton3";
     this.radioButton3.Size     = new System.Drawing.Size(104, 24);
     this.radioButton3.TabIndex = 15;
     this.radioButton3.TabStop  = true;
     this.radioButton3.Text     = "Eliminar";
     this.radioButton3.UseVisualStyleBackColor = true;
     //
     // button3
     //
     this.button3.Location = new System.Drawing.Point(287, 60);
     this.button3.Name     = "button3";
     this.button3.Size     = new System.Drawing.Size(174, 29);
     this.button3.TabIndex = 16;
     this.button3.Text     = "Inventario tienda";
     this.button3.UseVisualStyleBackColor = true;
     //
     // label2
     //
     this.label2.Font     = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(193, 34);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(100, 23);
     this.label2.TabIndex = 17;
     this.label2.Text     = "Reporte:";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(287, 105);
     this.button4.Name     = "button4";
     this.button4.Size     = new System.Drawing.Size(174, 29);
     this.button4.TabIndex = 18;
     this.button4.Text     = "Inventario almacen";
     this.button4.UseVisualStyleBackColor = true;
     //
     // button5
     //
     this.button5.Location = new System.Drawing.Point(287, 151);
     this.button5.Name     = "button5";
     this.button5.Size     = new System.Drawing.Size(174, 29);
     this.button5.TabIndex = 19;
     this.button5.Text     = "Lista de cajeros registrados";
     this.button5.UseVisualStyleBackColor = true;
     //
     // Admin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSize            = true;
     this.BackColor           = System.Drawing.SystemColors.GradientActiveCaption;
     this.ClientSize          = new System.Drawing.Size(509, 309);
     this.Controls.Add(this.button5);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.button3);
     this.Controls.Add(this.radioButton3);
     this.Controls.Add(this.radioButton2);
     this.Controls.Add(this.radioButton1);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.label1);
     this.Name          = "Admin";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Administrador";
     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.lstCreditCardType = new System.Windows.Forms.ListBox();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOK = new System.Windows.Forms.Button();
     this.chkDefault = new System.Windows.Forms.CheckBox();
     this.txtCardNumber = new System.Windows.Forms.TextBox();
     this.cboExpirationYear = new System.Windows.Forms.ComboBox();
     this.cboExpirationMonth = new System.Windows.Forms.ComboBox();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.rdoBillCustomer = new System.Windows.Forms.RadioButton();
     this.rdoCreditCard = new System.Windows.Forms.RadioButton();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // lstCreditCardType
     //
     this.lstCreditCardType.FormattingEnabled = true;
     this.lstCreditCardType.Location = new System.Drawing.Point(116, 84);
     this.lstCreditCardType.Name = "lstCreditCardType";
     this.lstCreditCardType.Size = new System.Drawing.Size(216, 69);
     this.lstCreditCardType.TabIndex = 8;
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Location = new System.Drawing.Point(257, 276);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 17;
     this.btnCancel.Text = "&Cancel";
     //
     // btnOK
     //
     this.btnOK.Location = new System.Drawing.Point(167, 275);
     this.btnOK.Name = "btnOK";
     this.btnOK.Size = new System.Drawing.Size(75, 23);
     this.btnOK.TabIndex = 16;
     this.btnOK.Text = "&OK";
     this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
     //
     // chkDefault
     //
     this.chkDefault.Checked = true;
     this.chkDefault.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkDefault.Location = new System.Drawing.Point(12, 236);
     this.chkDefault.Name = "chkDefault";
     this.chkDefault.Size = new System.Drawing.Size(184, 24);
     this.chkDefault.TabIndex = 15;
     this.chkDefault.Text = "Set as default billing method";
     //
     // txtCardNumber
     //
     this.txtCardNumber.Location = new System.Drawing.Point(116, 164);
     this.txtCardNumber.Name = "txtCardNumber";
     this.txtCardNumber.Size = new System.Drawing.Size(216, 20);
     this.txtCardNumber.TabIndex = 9;
     this.txtCardNumber.Text = "1111390008727492";
     //
     // cboExpirationYear
     //
     this.cboExpirationYear.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboExpirationYear.FormattingEnabled = true;
     this.cboExpirationYear.Location = new System.Drawing.Point(235, 196);
     this.cboExpirationYear.Name = "cboExpirationYear";
     this.cboExpirationYear.Size = new System.Drawing.Size(97, 21);
     this.cboExpirationYear.TabIndex = 14;
     //
     // cboExpirationMonth
     //
     this.cboExpirationMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboExpirationMonth.FormattingEnabled = true;
     this.cboExpirationMonth.Location = new System.Drawing.Point(116, 196);
     this.cboExpirationMonth.Name = "cboExpirationMonth";
     this.cboExpirationMonth.Size = new System.Drawing.Size(104, 21);
     this.cboExpirationMonth.TabIndex = 11;
     //
     // label3
     //
     this.label3.Location = new System.Drawing.Point(12, 196);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(96, 23);
     this.label3.TabIndex = 13;
     this.label3.Text = "Expiration date:";
     this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label2
     //
     this.label2.Location = new System.Drawing.Point(12, 164);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(96, 23);
     this.label2.TabIndex = 12;
     this.label2.Text = "Card number:";
     this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // label1
     //
     this.label1.Location = new System.Drawing.Point(12, 84);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(96, 23);
     this.label1.TabIndex = 10;
     this.label1.Text = "Credit card type:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.rdoBillCustomer);
     this.groupBox1.Controls.Add(this.rdoCreditCard);
     this.groupBox1.Location = new System.Drawing.Point(12, 12);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(320, 56);
     this.groupBox1.TabIndex = 18;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Billing";
     //
     // rdoBillCustomer
     //
     this.rdoBillCustomer.Location = new System.Drawing.Point(179, 24);
     this.rdoBillCustomer.Name = "rdoBillCustomer";
     this.rdoBillCustomer.Size = new System.Drawing.Size(96, 24);
     this.rdoBillCustomer.TabIndex = 1;
     this.rdoBillCustomer.Text = "Bill customer";
     this.rdoBillCustomer.CheckedChanged += new System.EventHandler(this.Billing_CheckedChanged);
     //
     // rdoCreditCard
     //
     this.rdoCreditCard.Checked = true;
     this.rdoCreditCard.Location = new System.Drawing.Point(16, 24);
     this.rdoCreditCard.Name = "rdoCreditCard";
     this.rdoCreditCard.Size = new System.Drawing.Size(80, 24);
     this.rdoCreditCard.TabIndex = 0;
     this.rdoCreditCard.TabStop = true;
     this.rdoCreditCard.Text = "Credit card";
     this.rdoCreditCard.CheckedChanged += new System.EventHandler(this.Billing_CheckedChanged);
     //
     // frmPayment
     //
     this.AcceptButton = this.btnOK;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.CancelButton = this.btnCancel;
     this.ClientSize = new System.Drawing.Size(351, 310);
     this.ControlBox = false;
     this.Controls.Add(this.lstCreditCardType);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.chkDefault);
     this.Controls.Add(this.txtCardNumber);
     this.Controls.Add(this.cboExpirationYear);
     this.Controls.Add(this.cboExpirationMonth);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.Name = "frmPayment";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Payment";
     this.Load += new System.EventHandler(this.Payment_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FUtil));
     this.ToolTipMain         = new System.Windows.Forms.ToolTip(this.components);
     this.txtBatchTitle       = new System.Windows.Forms.TextBox();
     this.cmdImportVouchers   = new System.Windows.Forms.Button();
     this.OpenFileDialogOpen  = new System.Windows.Forms.OpenFileDialog();
     this.Frame2              = new System.Windows.Forms.GroupBox();
     this.optImportDuplicates = new System.Windows.Forms.RadioButton();
     this.optRejectDuplicates = new System.Windows.Forms.RadioButton();
     this.Frame1              = new System.Windows.Forms.GroupBox();
     this.txtPercentage       = new System.Windows.Forms.TextBox();
     this.txtStatus           = new System.Windows.Forms.TextBox();
     this.ProgressBar1        = new System.Windows.Forms.ProgressBar();
     this.Label4              = new System.Windows.Forms.Label();
     this.Label3              = new System.Windows.Forms.Label();
     this.statBar             = new System.Windows.Forms.StatusStrip();
     this._statBar_Panel1     = new System.Windows.Forms.ToolStripStatusLabel();
     this.lstCompanies        = new System.Windows.Forms.ListBox();
     this.Label1              = new System.Windows.Forms.Label();
     this.btnExit             = new System.Windows.Forms.PictureBox();
     this.Image1              = new System.Windows.Forms.PictureBox();
     this.lblDescription      = new System.Windows.Forms.Label();
     this._imgSideBar_0       = new System.Windows.Forms.PictureBox();
     this.Frame2.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.statBar.SuspendLayout();
     this.SuspendLayout();
     this.listBoxHelper1 = new UpgradeHelpers.Gui.ListBoxHelper(this.components);
     //
     // txtBatchTitle
     //
     this.txtBatchTitle.AcceptsReturn = true;
     this.txtBatchTitle.BackColor     = System.Drawing.SystemColors.Window;
     this.txtBatchTitle.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtBatchTitle.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtBatchTitle.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtBatchTitle.Location      = new System.Drawing.Point(112, 144);
     this.txtBatchTitle.MaxLength     = 0;
     this.txtBatchTitle.Name          = "txtBatchTitle";
     this.txtBatchTitle.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtBatchTitle.Size          = new System.Drawing.Size(449, 19);
     this.txtBatchTitle.TabIndex      = 13;
     this.txtBatchTitle.Text          = "Voucher Import Batch #";
     //
     // cmdImportVouchers
     //
     this.cmdImportVouchers.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdImportVouchers.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdImportVouchers.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdImportVouchers.Location                = new System.Drawing.Point(112, 200);
     this.cmdImportVouchers.Name                    = "cmdImportVouchers";
     this.cmdImportVouchers.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdImportVouchers.Size                    = new System.Drawing.Size(441, 33);
     this.cmdImportVouchers.TabIndex                = 12;
     this.cmdImportVouchers.Text                    = "Import Voucher File";
     this.cmdImportVouchers.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdImportVouchers.UseVisualStyleBackColor = false;
     this.cmdImportVouchers.Click                  += new System.EventHandler(this.cmdImportVouchers_Click);
     //
     // Frame2
     //
     this.Frame2.BackColor = System.Drawing.SystemColors.Window;
     this.Frame2.Controls.Add(this.optImportDuplicates);
     this.Frame2.Controls.Add(this.optRejectDuplicates);
     this.Frame2.Enabled     = true;
     this.Frame2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame2.Location    = new System.Drawing.Point(104, 256);
     this.Frame2.Name        = "Frame2";
     this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Size        = new System.Drawing.Size(465, 57);
     this.Frame2.TabIndex    = 9;
     this.Frame2.Text        = "Duplicate Invoices";
     this.Frame2.Visible     = true;
     //
     // optImportDuplicates
     //
     this.optImportDuplicates.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.optImportDuplicates.BackColor        = System.Drawing.SystemColors.Window;
     this.optImportDuplicates.CausesValidation = true;
     this.optImportDuplicates.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.optImportDuplicates.Checked          = false;
     this.optImportDuplicates.Cursor           = System.Windows.Forms.Cursors.Default;
     this.optImportDuplicates.Enabled          = true;
     this.optImportDuplicates.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.optImportDuplicates.Location         = new System.Drawing.Point(8, 32);
     this.optImportDuplicates.Name             = "optImportDuplicates";
     this.optImportDuplicates.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.optImportDuplicates.Size             = new System.Drawing.Size(449, 17);
     this.optImportDuplicates.TabIndex         = 11;
     this.optImportDuplicates.TabStop          = true;
     this.optImportDuplicates.Text             = "Increment the Invoice Nbr and import anyway (\"_#\" is added)";
     this.optImportDuplicates.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.optImportDuplicates.Visible          = true;
     //
     // optRejectDuplicates
     //
     this.optRejectDuplicates.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.optRejectDuplicates.BackColor        = System.Drawing.SystemColors.Window;
     this.optRejectDuplicates.CausesValidation = true;
     this.optRejectDuplicates.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.optRejectDuplicates.Checked          = true;
     this.optRejectDuplicates.Cursor           = System.Windows.Forms.Cursors.Default;
     this.optRejectDuplicates.Enabled          = true;
     this.optRejectDuplicates.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.optRejectDuplicates.Location         = new System.Drawing.Point(8, 16);
     this.optRejectDuplicates.Name             = "optRejectDuplicates";
     this.optRejectDuplicates.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.optRejectDuplicates.Size             = new System.Drawing.Size(449, 17);
     this.optRejectDuplicates.TabIndex         = 10;
     this.optRejectDuplicates.TabStop          = true;
     this.optRejectDuplicates.Text             = "Reject all duplicate Vendor Invoices (same Vendor, Invoice Nbr and Date)";
     this.optRejectDuplicates.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.optRejectDuplicates.Visible          = true;
     //
     // Frame1
     //
     this.Frame1.BackColor = System.Drawing.SystemColors.Window;
     this.Frame1.Controls.Add(this.txtPercentage);
     this.Frame1.Controls.Add(this.txtStatus);
     this.Frame1.Controls.Add(this.ProgressBar1);
     this.Frame1.Controls.Add(this.Label4);
     this.Frame1.Controls.Add(this.Label3);
     this.Frame1.Enabled     = true;
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(104, 56);
     this.Frame1.Name        = "Frame1";
     this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Size        = new System.Drawing.Size(465, 65);
     this.Frame1.TabIndex    = 3;
     this.Frame1.Text        = "Utility Status:";
     this.Frame1.Visible     = true;
     //
     // txtPercentage
     //
     this.txtPercentage.AcceptsReturn = true;
     this.txtPercentage.BackColor     = System.Drawing.SystemColors.Window;
     this.txtPercentage.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.txtPercentage.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPercentage.Enabled       = false;
     this.txtPercentage.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPercentage.Location      = new System.Drawing.Point(360, 8);
     this.txtPercentage.MaxLength     = 0;
     this.txtPercentage.Name          = "txtPercentage";
     this.txtPercentage.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPercentage.Size          = new System.Drawing.Size(25, 11);
     this.txtPercentage.TabIndex      = 8;
     this.txtPercentage.TabStop       = false;
     //
     // txtStatus
     //
     this.txtStatus.AcceptsReturn = true;
     this.txtStatus.BackColor     = System.Drawing.SystemColors.Window;
     this.txtStatus.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.txtStatus.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtStatus.Enabled       = false;
     this.txtStatus.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtStatus.Location      = new System.Drawing.Point(96, 40);
     this.txtStatus.MaxLength     = 0;
     this.txtStatus.Name          = "txtStatus";
     this.txtStatus.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtStatus.Size          = new System.Drawing.Size(361, 19);
     this.txtStatus.TabIndex      = 7;
     this.txtStatus.TabStop       = false;
     //
     // ProgressBar1
     //
     this.ProgressBar1.Location = new System.Drawing.Point(8, 24);
     this.ProgressBar1.Name     = "ProgressBar1";
     this.ProgressBar1.Size     = new System.Drawing.Size(449, 17);
     this.ProgressBar1.TabIndex = 4;
     //
     // Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Window;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(8, 40);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(89, 17);
     this.Label4.TabIndex    = 6;
     this.Label4.Text        = "Current Status:";
     //
     // Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Window;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(384, 8);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(73, 17);
     this.Label3.TabIndex    = 5;
     this.Label3.Text        = "% Complete";
     //
     // statBar
     //
     this.statBar.BackColor        = System.Drawing.SystemColors.Control;
     this.statBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.statBar.Location         = new System.Drawing.Point(0, 366);
     this.statBar.Name             = "statBar";
     this.statBar.ShowItemToolTips = true;
     this.statBar.Size             = new System.Drawing.Size(570, 25);
     this.statBar.TabIndex         = 1;
     this.statBar.Text             = "Status: Ready to Execute";
     this.statBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._statBar_Panel1 });
     //
     // _statBar_Panel1
     //
     this._statBar_Panel1.AutoSize           = false;
     this._statBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._statBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._statBar_Panel1.DoubleClickEnabled = true;
     this._statBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._statBar_Panel1.Name              = "";
     this._statBar_Panel1.Size              = new System.Drawing.Size(96, 25);
     this._statBar_Panel1.Tag               = "";
     this._statBar_Panel1.Text              = "Status:";
     this._statBar_Panel1.Text              = "Status:";
     this._statBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._statBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // lstCompanies
     //
     this.lstCompanies.BackColor             = System.Drawing.SystemColors.Window;
     this.lstCompanies.BorderStyle           = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lstCompanies.CausesValidation      = true;
     this.lstCompanies.Cursor                = System.Windows.Forms.Cursors.Default;
     this.lstCompanies.Enabled               = true;
     this.lstCompanies.ForeColor             = System.Drawing.Color.FromArgb(0, 0, 64);
     this.lstCompanies.IntegralHeight        = true;
     this.lstCompanies.Location              = new System.Drawing.Point(104, 0);
     this.lstCompanies.MultiColumn           = false;
     this.lstCompanies.Name                  = "lstCompanies";
     this.lstCompanies.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.lstCompanies.Size                  = new System.Drawing.Size(201, 59);
     this.lstCompanies.Sorted                = false;
     this.lstCompanies.TabIndex              = 0;
     this.lstCompanies.TabStop               = false;
     this.lstCompanies.Visible               = true;
     this.lstCompanies.SelectedIndexChanged += new System.EventHandler(this.lstCompanies_SelectedIndexChanged);
     //
     // Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Window;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(112, 128);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(169, 17);
     this.Label1.TabIndex    = 14;
     this.Label1.Text        = "Batch Title:";
     //
     // btnExit
     //
     this.btnExit.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.btnExit.Cursor      = System.Windows.Forms.Cursors.Default;
     this.btnExit.Enabled     = true;
     this.btnExit.Image       = (System.Drawing.Image)resources.GetObject("btnExit.Image");
     this.btnExit.Location    = new System.Drawing.Point(512, 320);
     this.btnExit.Name        = "btnExit";
     this.btnExit.Size        = new System.Drawing.Size(52, 39);
     this.btnExit.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Normal;
     this.btnExit.Visible     = true;
     this.btnExit.Click      += new System.EventHandler(this.btnExit_Click);
     //
     // Image1
     //
     this.Image1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Image1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Image1.Enabled     = true;
     this.Image1.Image       = (System.Drawing.Image)resources.GetObject("Image1.Image");
     this.Image1.Location    = new System.Drawing.Point(8, 336);
     this.Image1.Name        = "Image1";
     this.Image1.Size        = new System.Drawing.Size(96, 28);
     this.Image1.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Normal;
     this.Image1.Visible     = true;
     //
     // lblDescription
     //
     this.lblDescription.BackColor   = System.Drawing.SystemColors.Window;
     this.lblDescription.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblDescription.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblDescription.Enabled     = false;
     this.lblDescription.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblDescription.Location    = new System.Drawing.Point(312, 0);
     this.lblDescription.Name        = "lblDescription";
     this.lblDescription.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblDescription.Size        = new System.Drawing.Size(257, 57);
     this.lblDescription.TabIndex    = 2;
     this.lblDescription.Text        = "This utility will import a CSV file with invoice, G/L and Expense information into a new, unposted payment voucher batch.  See user guide for more information.";
     //
     // _imgSideBar_0
     //
     this._imgSideBar_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._imgSideBar_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._imgSideBar_0.Enabled     = true;
     this._imgSideBar_0.Image       = (System.Drawing.Image)resources.GetObject("_imgSideBar_0.Image");
     this._imgSideBar_0.Location    = new System.Drawing.Point(0, 0);
     this._imgSideBar_0.Name        = "_imgSideBar_0";
     this._imgSideBar_0.Size        = new System.Drawing.Size(104, 336);
     this._imgSideBar_0.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.Normal;
     this._imgSideBar_0.Visible     = true;
     //
     // FUtil
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Window;
     this.ClientSize          = new System.Drawing.Size(570, 391);
     this.Controls.Add(this.txtBatchTitle);
     this.Controls.Add(this.cmdImportVouchers);
     this.Controls.Add(this.Frame2);
     this.Controls.Add(this.Frame1);
     this.Controls.Add(this.statBar);
     this.Controls.Add(this.lstCompanies);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.btnExit);
     this.Controls.Add(this.Image1);
     this.Controls.Add(this.lblDescription);
     this.Controls.Add(this._imgSideBar_0);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.Font            = new System.Drawing.Font("Microsoft Sans Serif", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.ForeColor       = System.Drawing.SystemColors.WindowText;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = (System.Drawing.Icon)resources.GetObject("FUtil.Icon");
     this.Location        = new System.Drawing.Point(210, 163);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "FUtil";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "VoucherImport v2.1.5";
     listBoxHelper1.SetSelectionMode(this.lstCompanies, System.Windows.Forms.SelectionMode.One);
     this.Closed += new System.EventHandler(this.FUtil_Closed);
     this.Frame2.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.statBar.ResumeLayout(false);
     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();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.faTabStrip1 = new System.Windows.Forms.TabControl();
     this.faTabStripItemInfo = new System.Windows.Forms.TabPage();
     this.label10 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.faTabStripItemSend = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
     this.cmdClearSend = new System.Windows.Forms.Button();
     this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel();
     this.lblStatus = new System.Windows.Forms.Label();
     this.cmdSend = new System.Windows.Forms.Button();
     this.lblTeleLength = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label7 = new System.Windows.Forms.Label();
     this.numericUpDown1 = new System.Windows.Forms.NumericUpDown();
     this.panel4 = new System.Windows.Forms.Panel();
     this.lblLenEmpf = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel();
     this.lstStoredSenddata = new System.Windows.Forms.ListBox();
     this.panel3 = new System.Windows.Forms.Panel();
     this.cmdRemoveSendeTele = new System.Windows.Forms.Button();
     this.cmdAddSendeTele = new System.Windows.Forms.Button();
     this.dtaSendTabelle = new System.Windows.Forms.DataGridView();
     this.Bezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Laenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Wert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.dtaSendSendTable = new System.Windows.Forms.DataGridView();
     this.dataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaSendQuittTable = new System.Windows.Forms.DataGridView();
     this.colSendQuittText = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemRecieve = new System.Windows.Forms.TabPage();
     this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
     this.kryptonButton2 = new System.Windows.Forms.Button();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.grdEmpfang = new System.Windows.Forms.DataGridView();
     this.colEmpf = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtaEmpfangstelegrammAufgeschluesselt = new System.Windows.Forms.DataGridView();
     this.colEmpfBezeichnung = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfLaenge = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colEmpfWert = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.faTabStripItemSettings = new System.Windows.Forms.TabPage();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.label5 = new System.Windows.Forms.Label();
     this.cmdDelTele = new System.Windows.Forms.Button();
     this.cmdEditQuittFields = new System.Windows.Forms.Button();
     this.lstQuitt = new System.Windows.Forms.ListBox();
     this.chkAutoQuitt = new System.Windows.Forms.CheckBox();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.numSequenceNumberLength = new System.Windows.Forms.NumericUpDown();
     this.numSequenceNumberPosition = new System.Windows.Forms.NumericUpDown();
     this.label4 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.chkChanel2active = new System.Windows.Forms.CheckBox();
     this.numPort2 = new System.Windows.Forms.NumericUpDown();
     this.numPort1 = new System.Windows.Forms.NumericUpDown();
     this.lblKanal2Port = new System.Windows.Forms.Label();
     this.chkChanel1active = new System.Windows.Forms.CheckBox();
     this.lblKanal2 = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.optTwoChannel = new System.Windows.Forms.RadioButton();
     this.optOneChannel = new System.Windows.Forms.RadioButton();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label1 = new System.Windows.Forms.Label();
     this.ipAddressControl = new IPAddressControlLib.IPAddressControl();
     this.cmdSelectStep7UDT = new System.Windows.Forms.Button();
     this.cmdConnect = new System.Windows.Forms.Button();
     this.tableLayoutPanel4 = new System.Windows.Forms.TableLayoutPanel();
     this.panel1 = new System.Windows.Forms.Panel();
     this.cmdSettExport = new System.Windows.Forms.Button();
     this.cmdSettImport = new System.Windows.Forms.Button();
     this.cmdSettingsSave = new System.Windows.Forms.Button();
     this.flowLayoutPanel1 = new System.Windows.Forms.FlowLayoutPanel();
     this.picConnection1 = new System.Windows.Forms.PictureBox();
     this.picConnection2 = new System.Windows.Forms.PictureBox();
     this.cmdDisconnect = new System.Windows.Forms.Button();
     this.toolTip = new System.Windows.Forms.ToolTip(this.components);
     this.faTabStrip1.SuspendLayout();
     this.faTabStripItemInfo.SuspendLayout();
     this.faTabStripItemSend.SuspendLayout();
     this.tableLayoutPanel1.SuspendLayout();
     this.tableLayoutPanel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).BeginInit();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).BeginInit();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).BeginInit();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.tableLayoutPanel5.SuspendLayout();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendTabelle)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).BeginInit();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendSendTable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendQuittTable)).BeginInit();
     this.faTabStripItemRecieve.SuspendLayout();
     this.tableLayoutPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.grdEmpfang)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaEmpfangstelegrammAufgeschluesselt)).BeginInit();
     this.faTabStripItemSettings.SuspendLayout();
     this.groupBox4.SuspendLayout();
     this.groupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberLength)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberPosition)).BeginInit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numPort2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.numPort1)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.tableLayoutPanel4.SuspendLayout();
     this.panel1.SuspendLayout();
     this.flowLayoutPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection2)).BeginInit();
     this.SuspendLayout();
     //
     // faTabStrip1
     //
     this.faTabStrip1.Controls.Add(this.faTabStripItemInfo);
     this.faTabStrip1.Controls.Add(this.faTabStripItemSend);
     this.faTabStrip1.Controls.Add(this.faTabStripItemRecieve);
     this.faTabStrip1.Controls.Add(this.faTabStripItemSettings);
     this.faTabStrip1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.faTabStrip1.Font = new System.Drawing.Font("Tahoma", 8.25F);
     this.faTabStrip1.Location = new System.Drawing.Point(3, 53);
     this.faTabStrip1.Name = "faTabStrip1";
     this.faTabStrip1.SelectedIndex = 0;
     this.faTabStrip1.Size = new System.Drawing.Size(896, 569);
     this.faTabStrip1.TabIndex = 2;
     this.faTabStrip1.Text = "Sende Tabelle";
     //
     // faTabStripItemInfo
     //
     this.faTabStripItemInfo.Controls.Add(this.label10);
     this.faTabStripItemInfo.Controls.Add(this.label9);
     this.faTabStripItemInfo.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemInfo.Name = "faTabStripItemInfo";
     this.faTabStripItemInfo.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemInfo.TabIndex = 3;
     this.faTabStripItemInfo.Text = "Info";
     //
     // label10
     //
     this.label10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.label10.Location = new System.Drawing.Point(74, 59);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(726, 81);
     this.label10.TabIndex = 0;
     this.label10.Text = resources.GetString("label10.Text");
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Location = new System.Drawing.Point(39, 25);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(31, 13);
     this.label9.TabIndex = 0;
     this.label9.Text = "Info:";
     //
     // faTabStripItemSend
     //
     this.faTabStripItemSend.Controls.Add(this.tableLayoutPanel1);
     this.faTabStripItemSend.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemSend.Name = "faTabStripItemSend";
     this.faTabStripItemSend.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemSend.TabIndex = 0;
     this.faTabStripItemSend.Text = "Sende Tabelle";
     //
     // tableLayoutPanel1
     //
     this.tableLayoutPanel1.ColumnCount = 2;
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel1.Controls.Add(this.cmdClearSend, 0, 1);
     this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel3, 1, 0);
     this.tableLayoutPanel1.Controls.Add(this.splitContainer2, 0, 0);
     this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel1.Name = "tableLayoutPanel1";
     this.tableLayoutPanel1.RowCount = 2;
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 32F));
     this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel1.Size = new System.Drawing.Size(888, 543);
     this.tableLayoutPanel1.TabIndex = 1;
     //
     // cmdClearSend
     //
     this.cmdClearSend.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdClearSend.Location = new System.Drawing.Point(741, 514);
     this.cmdClearSend.Name = "cmdClearSend";
     this.cmdClearSend.Size = new System.Drawing.Size(144, 25);
     this.cmdClearSend.TabIndex = 5;
     this.cmdClearSend.Text = "CLR";
     this.cmdClearSend.UseVisualStyleBackColor = true;
     this.cmdClearSend.Click += new System.EventHandler(this.cmdClearSend_Click);
     //
     // tableLayoutPanel3
     //
     this.tableLayoutPanel3.ColumnCount = 1;
     this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel3.Controls.Add(this.lblStatus, 0, 2);
     this.tableLayoutPanel3.Controls.Add(this.cmdSend, 0, 0);
     this.tableLayoutPanel3.Controls.Add(this.lblTeleLength, 0, 3);
     this.tableLayoutPanel3.Controls.Add(this.panel2, 0, 1);
     this.tableLayoutPanel3.Controls.Add(this.panel4, 0, 4);
     this.tableLayoutPanel3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel3.Location = new System.Drawing.Point(741, 3);
     this.tableLayoutPanel3.Name = "tableLayoutPanel3";
     this.tableLayoutPanel3.RowCount = 5;
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 30F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 60F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 99F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 64F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 55F));
     this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
     this.tableLayoutPanel3.Size = new System.Drawing.Size(144, 505);
     this.tableLayoutPanel3.TabIndex = 3;
     //
     // lblStatus
     //
     this.lblStatus.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblStatus.Location = new System.Drawing.Point(3, 90);
     this.lblStatus.Name = "lblStatus";
     this.lblStatus.Size = new System.Drawing.Size(138, 99);
     this.lblStatus.TabIndex = 7;
     this.lblStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // cmdSend
     //
     this.cmdSend.Location = new System.Drawing.Point(3, 3);
     this.cmdSend.Name = "cmdSend";
     this.cmdSend.Size = new System.Drawing.Size(138, 24);
     this.cmdSend.TabIndex = 6;
     this.cmdSend.Text = "Senden";
     this.cmdSend.UseVisualStyleBackColor = true;
     this.cmdSend.Click += new System.EventHandler(this.cmdSend_Click);
     //
     // lblTeleLength
     //
     this.lblTeleLength.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lblTeleLength.Location = new System.Drawing.Point(3, 189);
     this.lblTeleLength.Name = "lblTeleLength";
     this.lblTeleLength.Size = new System.Drawing.Size(138, 64);
     this.lblTeleLength.TabIndex = 9;
     this.lblTeleLength.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel2
     //
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.numericUpDown1);
     this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(3, 33);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(138, 54);
     this.panel2.TabIndex = 10;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Location = new System.Drawing.Point(8, 8);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(66, 13);
     this.label7.TabIndex = 1;
     this.label7.Text = "Laufnummer";
     //
     // numericUpDown1
     //
     this.numericUpDown1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "Laufnummer", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numericUpDown1.Location = new System.Drawing.Point(18, 24);
     this.numericUpDown1.Name = "numericUpDown1";
     this.numericUpDown1.Size = new System.Drawing.Size(102, 21);
     this.numericUpDown1.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.Controls.Add(this.lblLenEmpf);
     this.panel4.Controls.Add(this.label8);
     this.panel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(3, 256);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(138, 246);
     this.panel4.TabIndex = 11;
     //
     // lblLenEmpf
     //
     this.lblLenEmpf.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.lblLenEmpf.Location = new System.Drawing.Point(15, 159);
     this.lblLenEmpf.Name = "lblLenEmpf";
     this.lblLenEmpf.Size = new System.Drawing.Size(40, 13);
     this.lblLenEmpf.TabIndex = 0;
     //
     // label8
     //
     this.label8.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label8.AutoSize = true;
     this.label8.Location = new System.Drawing.Point(11, 143);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(40, 13);
     this.label8.TabIndex = 0;
     this.label8.Text = "Länge:";
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.splitContainer3);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.tableLayoutPanel1.SetRowSpan(this.splitContainer2, 2);
     this.splitContainer2.Size = new System.Drawing.Size(732, 537);
     this.splitContainer2.SplitterDistance = 305;
     this.splitContainer2.TabIndex = 4;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tableLayoutPanel5);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.dtaSendTabelle);
     this.splitContainer3.Size = new System.Drawing.Size(732, 305);
     this.splitContainer3.SplitterDistance = 76;
     this.splitContainer3.TabIndex = 0;
     //
     // tableLayoutPanel5
     //
     this.tableLayoutPanel5.ColumnCount = 2;
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 100F));
     this.tableLayoutPanel5.Controls.Add(this.lstStoredSenddata, 0, 0);
     this.tableLayoutPanel5.Controls.Add(this.panel3, 1, 0);
     this.tableLayoutPanel5.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel5.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel5.Name = "tableLayoutPanel5";
     this.tableLayoutPanel5.RowCount = 1;
     this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel5.Size = new System.Drawing.Size(732, 76);
     this.tableLayoutPanel5.TabIndex = 0;
     //
     // lstStoredSenddata
     //
     this.lstStoredSenddata.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lstStoredSenddata.FormattingEnabled = true;
     this.lstStoredSenddata.Location = new System.Drawing.Point(3, 3);
     this.lstStoredSenddata.Name = "lstStoredSenddata";
     this.lstStoredSenddata.Size = new System.Drawing.Size(626, 70);
     this.lstStoredSenddata.TabIndex = 0;
     this.lstStoredSenddata.DoubleClick += new System.EventHandler(this.lstStoredSenddata_DoubleClick);
     //
     // panel3
     //
     this.panel3.Controls.Add(this.cmdRemoveSendeTele);
     this.panel3.Controls.Add(this.cmdAddSendeTele);
     this.panel3.Location = new System.Drawing.Point(635, 3);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(94, 70);
     this.panel3.TabIndex = 1;
     //
     // cmdRemoveSendeTele
     //
     this.cmdRemoveSendeTele.Location = new System.Drawing.Point(8, 41);
     this.cmdRemoveSendeTele.Name = "cmdRemoveSendeTele";
     this.cmdRemoveSendeTele.Size = new System.Drawing.Size(76, 22);
     this.cmdRemoveSendeTele.TabIndex = 0;
     this.cmdRemoveSendeTele.Text = "Remove";
     this.cmdRemoveSendeTele.UseVisualStyleBackColor = true;
     this.cmdRemoveSendeTele.Click += new System.EventHandler(this.cmdRemoveSendeTele_Click);
     //
     // cmdAddSendeTele
     //
     this.cmdAddSendeTele.Location = new System.Drawing.Point(8, 13);
     this.cmdAddSendeTele.Name = "cmdAddSendeTele";
     this.cmdAddSendeTele.Size = new System.Drawing.Size(76, 22);
     this.cmdAddSendeTele.TabIndex = 0;
     this.cmdAddSendeTele.Text = "Add";
     this.cmdAddSendeTele.UseVisualStyleBackColor = true;
     this.cmdAddSendeTele.Click += new System.EventHandler(this.cmdAddSendeTele_Click);
     //
     // dtaSendTabelle
     //
     this.dtaSendTabelle.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendTabelle.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendTabelle.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.Bezeichnung,
     this.Laenge,
     this.Wert});
     this.dtaSendTabelle.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendTabelle.Location = new System.Drawing.Point(0, 0);
     this.dtaSendTabelle.Name = "dtaSendTabelle";
     this.dtaSendTabelle.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendTabelle.Size = new System.Drawing.Size(732, 225);
     this.dtaSendTabelle.TabIndex = 4;
     this.dtaSendTabelle.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtaSendTabelle_CellEndEdit);
     this.dtaSendTabelle.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dtaSendTabelle_RowsAdded);
     //
     // Bezeichnung
     //
     this.Bezeichnung.HeaderText = "Bezeichnung";
     this.Bezeichnung.Name = "Bezeichnung";
     //
     // Laenge
     //
     this.Laenge.HeaderText = "Länge";
     this.Laenge.Name = "Laenge";
     //
     // Wert
     //
     this.Wert.HeaderText = "Wert";
     this.Wert.Name = "Wert";
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     this.splitContainer4.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.dtaSendSendTable);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.dtaSendQuittTable);
     this.splitContainer4.Size = new System.Drawing.Size(732, 228);
     this.splitContainer4.SplitterDistance = 109;
     this.splitContainer4.TabIndex = 0;
     //
     // dtaSendSendTable
     //
     this.dtaSendSendTable.AllowUserToAddRows = false;
     this.dtaSendSendTable.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendSendTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendSendTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.dataGridViewTextBoxColumn1});
     this.dtaSendSendTable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendSendTable.Location = new System.Drawing.Point(0, 0);
     this.dtaSendSendTable.Name = "dtaSendSendTable";
     this.dtaSendSendTable.ReadOnly = true;
     this.dtaSendSendTable.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendSendTable.Size = new System.Drawing.Size(732, 109);
     this.dtaSendSendTable.TabIndex = 7;
     this.dtaSendSendTable.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtaSendSendTable_CellContentClick);
     //
     // dataGridViewTextBoxColumn1
     //
     this.dataGridViewTextBoxColumn1.HeaderText = "Gesendete Telegramme";
     this.dataGridViewTextBoxColumn1.Name = "dataGridViewTextBoxColumn1";
     this.dataGridViewTextBoxColumn1.ReadOnly = true;
     //
     // dtaSendQuittTable
     //
     this.dtaSendQuittTable.AllowUserToAddRows = false;
     this.dtaSendQuittTable.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaSendQuittTable.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaSendQuittTable.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colSendQuittText});
     this.dtaSendQuittTable.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaSendQuittTable.Location = new System.Drawing.Point(0, 0);
     this.dtaSendQuittTable.Name = "dtaSendQuittTable";
     this.dtaSendQuittTable.ReadOnly = true;
     this.dtaSendQuittTable.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaSendQuittTable.Size = new System.Drawing.Size(732, 115);
     this.dtaSendQuittTable.TabIndex = 6;
     //
     // colSendQuittText
     //
     this.colSendQuittText.HeaderText = "Empfangene Quittungen";
     this.colSendQuittText.Name = "colSendQuittText";
     this.colSendQuittText.ReadOnly = true;
     //
     // faTabStripItemRecieve
     //
     this.faTabStripItemRecieve.Controls.Add(this.tableLayoutPanel2);
     this.faTabStripItemRecieve.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemRecieve.Name = "faTabStripItemRecieve";
     this.faTabStripItemRecieve.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemRecieve.TabIndex = 1;
     this.faTabStripItemRecieve.Text = "Empfangs FIFO";
     //
     // tableLayoutPanel2
     //
     this.tableLayoutPanel2.ColumnCount = 2;
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 150F));
     this.tableLayoutPanel2.Controls.Add(this.kryptonButton2, 1, 0);
     this.tableLayoutPanel2.Controls.Add(this.splitContainer1, 0, 0);
     this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel2.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel2.Name = "tableLayoutPanel2";
     this.tableLayoutPanel2.RowCount = 1;
     this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel2.Size = new System.Drawing.Size(888, 543);
     this.tableLayoutPanel2.TabIndex = 2;
     //
     // kryptonButton2
     //
     this.kryptonButton2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButton2.Location = new System.Drawing.Point(741, 3);
     this.kryptonButton2.Name = "kryptonButton2";
     this.kryptonButton2.Size = new System.Drawing.Size(144, 40);
     this.kryptonButton2.TabIndex = 4;
     this.kryptonButton2.Text = "CLR";
     this.kryptonButton2.UseVisualStyleBackColor = true;
     this.kryptonButton2.Click += new System.EventHandler(this.kryptonButton2_Click);
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 3);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.grdEmpfang);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.dtaEmpfangstelegrammAufgeschluesselt);
     this.splitContainer1.Size = new System.Drawing.Size(732, 537);
     this.splitContainer1.SplitterDistance = 212;
     this.splitContainer1.TabIndex = 5;
     //
     // grdEmpfang
     //
     this.grdEmpfang.AllowUserToAddRows = false;
     this.grdEmpfang.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.grdEmpfang.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.grdEmpfang.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colEmpf});
     this.grdEmpfang.Dock = System.Windows.Forms.DockStyle.Fill;
     this.grdEmpfang.Location = new System.Drawing.Point(0, 0);
     this.grdEmpfang.Name = "grdEmpfang";
     this.grdEmpfang.ReadOnly = true;
     this.grdEmpfang.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grdEmpfang.Size = new System.Drawing.Size(732, 212);
     this.grdEmpfang.TabIndex = 4;
     this.grdEmpfang.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEmpfang_CellClick);
     this.grdEmpfang.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.grdEmpfang_CellContentClick);
     //
     // colEmpf
     //
     this.colEmpf.HeaderText = "Empfangstelegramme";
     this.colEmpf.Name = "colEmpf";
     this.colEmpf.ReadOnly = true;
     //
     // dtaEmpfangstelegrammAufgeschluesselt
     //
     this.dtaEmpfangstelegrammAufgeschluesselt.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
     this.dtaEmpfangstelegrammAufgeschluesselt.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dtaEmpfangstelegrammAufgeschluesselt.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.colEmpfBezeichnung,
     this.colEmpfLaenge,
     this.colEmpfWert});
     this.dtaEmpfangstelegrammAufgeschluesselt.Dock = System.Windows.Forms.DockStyle.Fill;
     this.dtaEmpfangstelegrammAufgeschluesselt.Location = new System.Drawing.Point(0, 0);
     this.dtaEmpfangstelegrammAufgeschluesselt.Name = "dtaEmpfangstelegrammAufgeschluesselt";
     this.dtaEmpfangstelegrammAufgeschluesselt.RowTemplate.DefaultCellStyle.Font = new System.Drawing.Font("Courier New", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dtaEmpfangstelegrammAufgeschluesselt.Size = new System.Drawing.Size(732, 321);
     this.dtaEmpfangstelegrammAufgeschluesselt.TabIndex = 5;
     //
     // colEmpfBezeichnung
     //
     this.colEmpfBezeichnung.HeaderText = "Bezeichnung";
     this.colEmpfBezeichnung.Name = "colEmpfBezeichnung";
     //
     // colEmpfLaenge
     //
     this.colEmpfLaenge.HeaderText = "Länge";
     this.colEmpfLaenge.Name = "colEmpfLaenge";
     //
     // colEmpfWert
     //
     this.colEmpfWert.HeaderText = "Wert";
     this.colEmpfWert.Name = "colEmpfWert";
     //
     // faTabStripItemSettings
     //
     this.faTabStripItemSettings.Controls.Add(this.groupBox4);
     this.faTabStripItemSettings.Controls.Add(this.groupBox3);
     this.faTabStripItemSettings.Controls.Add(this.groupBox2);
     this.faTabStripItemSettings.Controls.Add(this.groupBox1);
     this.faTabStripItemSettings.Location = new System.Drawing.Point(4, 22);
     this.faTabStripItemSettings.Name = "faTabStripItemSettings";
     this.faTabStripItemSettings.Size = new System.Drawing.Size(888, 543);
     this.faTabStripItemSettings.TabIndex = 2;
     this.faTabStripItemSettings.Text = "Einstellungen";
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.label5);
     this.groupBox4.Controls.Add(this.cmdDelTele);
     this.groupBox4.Controls.Add(this.cmdEditQuittFields);
     this.groupBox4.Controls.Add(this.lstQuitt);
     this.groupBox4.Controls.Add(this.chkAutoQuitt);
     this.groupBox4.Location = new System.Drawing.Point(409, 18);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(176, 232);
     this.groupBox4.TabIndex = 8;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Quittungs Parameter";
     //
     // label5
     //
     this.label5.Location = new System.Drawing.Point(6, 164);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(164, 54);
     this.label5.TabIndex = 16;
     this.label5.Text = "Wenn automatisch quittieren eingeschaltet ist werden im Telegramm die Positionen " +
     "durch den Text ersetzt";
     //
     // cmdDelTele
     //
     this.cmdDelTele.Location = new System.Drawing.Point(6, 139);
     this.cmdDelTele.Name = "cmdDelTele";
     this.cmdDelTele.Size = new System.Drawing.Size(58, 22);
     this.cmdDelTele.TabIndex = 12;
     this.cmdDelTele.Text = "Del";
     this.cmdDelTele.UseVisualStyleBackColor = true;
     this.cmdDelTele.Click += new System.EventHandler(this.cmdDelTele_Click);
     //
     // cmdEditQuittFields
     //
     this.cmdEditQuittFields.Location = new System.Drawing.Point(112, 139);
     this.cmdEditQuittFields.Name = "cmdEditQuittFields";
     this.cmdEditQuittFields.Size = new System.Drawing.Size(58, 22);
     this.cmdEditQuittFields.TabIndex = 12;
     this.cmdEditQuittFields.Text = "Add";
     this.cmdEditQuittFields.UseVisualStyleBackColor = true;
     this.cmdEditQuittFields.Click += new System.EventHandler(this.cmdEditQuittFields_Click);
     //
     // lstQuitt
     //
     this.lstQuitt.FormattingEnabled = true;
     this.lstQuitt.Location = new System.Drawing.Point(6, 38);
     this.lstQuitt.Name = "lstQuitt";
     this.lstQuitt.Size = new System.Drawing.Size(164, 95);
     this.lstQuitt.TabIndex = 12;
     //
     // chkAutoQuitt
     //
     this.chkAutoQuitt.AutoSize = true;
     this.chkAutoQuitt.Checked = true;
     this.chkAutoQuitt.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkAutoQuitt.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "AutomaticQuitt", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkAutoQuitt.Location = new System.Drawing.Point(6, 20);
     this.chkAutoQuitt.Name = "chkAutoQuitt";
     this.chkAutoQuitt.Size = new System.Drawing.Size(134, 17);
     this.chkAutoQuitt.TabIndex = 15;
     this.chkAutoQuitt.Text = "Automatisch quittieren";
     this.chkAutoQuitt.UseVisualStyleBackColor = true;
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.numSequenceNumberLength);
     this.groupBox3.Controls.Add(this.numSequenceNumberPosition);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Controls.Add(this.label6);
     this.groupBox3.Location = new System.Drawing.Point(11, 103);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(176, 107);
     this.groupBox3.TabIndex = 8;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Telegramm Parameter";
     //
     // numSequenceNumberLength
     //
     this.numSequenceNumberLength.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SequenceNumberLength", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numSequenceNumberLength.Location = new System.Drawing.Point(12, 75);
     this.numSequenceNumberLength.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numSequenceNumberLength.Name = "numSequenceNumberLength";
     this.numSequenceNumberLength.Size = new System.Drawing.Size(141, 21);
     this.numSequenceNumberLength.TabIndex = 12;
     //
     // numSequenceNumberPosition
     //
     this.numSequenceNumberPosition.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SequenceNumberPosition", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numSequenceNumberPosition.Location = new System.Drawing.Point(12, 34);
     this.numSequenceNumberPosition.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numSequenceNumberPosition.Name = "numSequenceNumberPosition";
     this.numSequenceNumberPosition.Size = new System.Drawing.Size(141, 21);
     this.numSequenceNumberPosition.TabIndex = 12;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Location = new System.Drawing.Point(9, 59);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(98, 13);
     this.label4.TabIndex = 14;
     this.label4.Text = "Laufnummer Länge";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Location = new System.Drawing.Point(9, 18);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(106, 13);
     this.label6.TabIndex = 14;
     this.label6.Text = "Laufnummer Position";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.chkChanel2active);
     this.groupBox2.Controls.Add(this.numPort2);
     this.groupBox2.Controls.Add(this.numPort1);
     this.groupBox2.Controls.Add(this.lblKanal2Port);
     this.groupBox2.Controls.Add(this.chkChanel1active);
     this.groupBox2.Controls.Add(this.lblKanal2);
     this.groupBox2.Controls.Add(this.label3);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.optTwoChannel);
     this.groupBox2.Controls.Add(this.optOneChannel);
     this.groupBox2.Location = new System.Drawing.Point(216, 18);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(187, 232);
     this.groupBox2.TabIndex = 8;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Verbindungs Parameter";
     //
     // chkChanel2active
     //
     this.chkChanel2active.AutoSize = true;
     this.chkChanel2active.Checked = true;
     this.chkChanel2active.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChanel2active.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "RecieveConnectionActive", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkChanel2active.Enabled = false;
     this.chkChanel2active.Location = new System.Drawing.Point(121, 171);
     this.chkChanel2active.Name = "chkChanel2active";
     this.chkChanel2active.Size = new System.Drawing.Size(49, 17);
     this.chkChanel2active.TabIndex = 15;
     this.chkChanel2active.Text = "aktiv";
     this.chkChanel2active.UseVisualStyleBackColor = true;
     //
     // numPort2
     //
     this.numPort2.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "RecievePort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numPort2.Enabled = false;
     this.numPort2.Location = new System.Drawing.Point(27, 188);
     this.numPort2.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numPort2.Name = "numPort2";
     this.numPort2.Size = new System.Drawing.Size(141, 21);
     this.numPort2.TabIndex = 12;
     //
     // numPort1
     //
     this.numPort1.DataBindings.Add(new System.Windows.Forms.Binding("Value", global::Kopplungstester.Properties.Settings.Default, "SendPort", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.numPort1.Location = new System.Drawing.Point(27, 120);
     this.numPort1.Maximum = new decimal(new int[] {
     65536,
     0,
     0,
     0});
     this.numPort1.Name = "numPort1";
     this.numPort1.Size = new System.Drawing.Size(141, 21);
     this.numPort1.TabIndex = 12;
     //
     // lblKanal2Port
     //
     this.lblKanal2Port.AutoSize = true;
     this.lblKanal2Port.Enabled = false;
     this.lblKanal2Port.Location = new System.Drawing.Point(24, 172);
     this.lblKanal2Port.Name = "lblKanal2Port";
     this.lblKanal2Port.Size = new System.Drawing.Size(27, 13);
     this.lblKanal2Port.TabIndex = 14;
     this.lblKanal2Port.Text = "Port";
     //
     // chkChanel1active
     //
     this.chkChanel1active.AutoSize = true;
     this.chkChanel1active.Checked = true;
     this.chkChanel1active.CheckState = System.Windows.Forms.CheckState.Checked;
     this.chkChanel1active.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "SendConnectionActive", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.chkChanel1active.Location = new System.Drawing.Point(121, 103);
     this.chkChanel1active.Name = "chkChanel1active";
     this.chkChanel1active.Size = new System.Drawing.Size(49, 17);
     this.chkChanel1active.TabIndex = 15;
     this.chkChanel1active.Text = "aktiv";
     this.chkChanel1active.UseVisualStyleBackColor = true;
     //
     // lblKanal2
     //
     this.lblKanal2.AutoSize = true;
     this.lblKanal2.Enabled = false;
     this.lblKanal2.Location = new System.Drawing.Point(9, 150);
     this.lblKanal2.Name = "lblKanal2";
     this.lblKanal2.Size = new System.Drawing.Size(88, 13);
     this.lblKanal2.TabIndex = 14;
     this.lblKanal2.Text = "Kanal 2 (recieve)";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Location = new System.Drawing.Point(24, 104);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(27, 13);
     this.label3.TabIndex = 14;
     this.label3.Text = "Port";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Location = new System.Drawing.Point(9, 82);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(121, 13);
     this.label2.TabIndex = 14;
     this.label2.Text = "Kanal 1 (send / recieve)";
     //
     // optTwoChannel
     //
     this.optTwoChannel.AutoSize = true;
     this.optTwoChannel.Checked = true;
     this.optTwoChannel.Location = new System.Drawing.Point(6, 43);
     this.optTwoChannel.Name = "optTwoChannel";
     this.optTwoChannel.Size = new System.Drawing.Size(60, 17);
     this.optTwoChannel.TabIndex = 14;
     this.optTwoChannel.TabStop = true;
     this.optTwoChannel.Text = "2 Kanal";
     this.optTwoChannel.UseVisualStyleBackColor = true;
     this.optTwoChannel.CheckedChanged += new System.EventHandler(this.optTwoChannel_CheckedChanged);
     //
     // optOneChannel
     //
     this.optOneChannel.AutoSize = true;
     this.optOneChannel.DataBindings.Add(new System.Windows.Forms.Binding("Checked", global::Kopplungstester.Properties.Settings.Default, "UseOnlyOneConnection", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.optOneChannel.Location = new System.Drawing.Point(6, 20);
     this.optOneChannel.Name = "optOneChannel";
     this.optOneChannel.Size = new System.Drawing.Size(60, 17);
     this.optOneChannel.TabIndex = 14;
     this.optOneChannel.Text = "1 Kanal";
     this.optOneChannel.UseVisualStyleBackColor = true;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.ipAddressControl);
     this.groupBox1.Location = new System.Drawing.Point(11, 18);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(176, 79);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Verbindungs Parameter";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Location = new System.Drawing.Point(9, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(87, 13);
     this.label1.TabIndex = 12;
     this.label1.Text = "IP - Adresse SPS";
     //
     // ipAddressControl
     //
     this.ipAddressControl.AllowInternalTab = false;
     this.ipAddressControl.AutoHeight = true;
     this.ipAddressControl.BackColor = System.Drawing.SystemColors.Window;
     this.ipAddressControl.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.ipAddressControl.Cursor = System.Windows.Forms.Cursors.IBeam;
     this.ipAddressControl.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Kopplungstester.Properties.Settings.Default, "IPAddress", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
     this.ipAddressControl.Location = new System.Drawing.Point(12, 52);
     this.ipAddressControl.MinimumSize = new System.Drawing.Size(87, 21);
     this.ipAddressControl.Name = "ipAddressControl";
     this.ipAddressControl.ReadOnly = false;
     this.ipAddressControl.Size = new System.Drawing.Size(141, 21);
     this.ipAddressControl.TabIndex = 13;
     this.ipAddressControl.Text = global::Kopplungstester.Properties.Settings.Default.IPAddress;
     //
     // cmdSelectStep7UDT
     //
     this.cmdSelectStep7UDT.Location = new System.Drawing.Point(281, 3);
     this.cmdSelectStep7UDT.Name = "cmdSelectStep7UDT";
     this.cmdSelectStep7UDT.Size = new System.Drawing.Size(136, 40);
     this.cmdSelectStep7UDT.TabIndex = 6;
     this.cmdSelectStep7UDT.Text = "Send/Recieve Struktur\r\naus Step7 UDT";
     this.cmdSelectStep7UDT.UseVisualStyleBackColor = true;
     this.cmdSelectStep7UDT.Click += new System.EventHandler(this.cmdSelectStep7UDT_Click);
     //
     // cmdConnect
     //
     this.cmdConnect.Location = new System.Drawing.Point(3, 3);
     this.cmdConnect.Name = "cmdConnect";
     this.cmdConnect.Size = new System.Drawing.Size(107, 40);
     this.cmdConnect.TabIndex = 11;
     this.cmdConnect.Text = "Connect";
     this.cmdConnect.UseVisualStyleBackColor = true;
     this.cmdConnect.Click += new System.EventHandler(this.cmdConnect_Click);
     //
     // tableLayoutPanel4
     //
     this.tableLayoutPanel4.ColumnCount = 1;
     this.tableLayoutPanel4.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
     this.tableLayoutPanel4.Controls.Add(this.faTabStrip1, 0, 1);
     this.tableLayoutPanel4.Controls.Add(this.panel1, 0, 0);
     this.tableLayoutPanel4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tableLayoutPanel4.Location = new System.Drawing.Point(0, 0);
     this.tableLayoutPanel4.Name = "tableLayoutPanel4";
     this.tableLayoutPanel4.RowCount = 2;
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 50F));
     this.tableLayoutPanel4.RowStyles.Add(new System.Windows.Forms.RowStyle());
     this.tableLayoutPanel4.Size = new System.Drawing.Size(902, 625);
     this.tableLayoutPanel4.TabIndex = 3;
     //
     // panel1
     //
     this.panel1.Controls.Add(this.cmdSettExport);
     this.panel1.Controls.Add(this.cmdSettImport);
     this.panel1.Controls.Add(this.cmdSettingsSave);
     this.panel1.Controls.Add(this.flowLayoutPanel1);
     this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(3, 3);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(896, 44);
     this.panel1.TabIndex = 3;
     //
     // cmdSettExport
     //
     this.cmdSettExport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettExport.Location = new System.Drawing.Point(636, 1);
     this.cmdSettExport.Name = "cmdSettExport";
     this.cmdSettExport.Size = new System.Drawing.Size(69, 40);
     this.cmdSettExport.TabIndex = 12;
     this.cmdSettExport.Text = "Settings export";
     this.cmdSettExport.UseVisualStyleBackColor = true;
     this.cmdSettExport.Click += new System.EventHandler(this.cmdSettExport_Click);
     //
     // cmdSettImport
     //
     this.cmdSettImport.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettImport.Location = new System.Drawing.Point(711, 1);
     this.cmdSettImport.Name = "cmdSettImport";
     this.cmdSettImport.Size = new System.Drawing.Size(69, 40);
     this.cmdSettImport.TabIndex = 12;
     this.cmdSettImport.Text = "Settings import";
     this.cmdSettImport.UseVisualStyleBackColor = true;
     this.cmdSettImport.Click += new System.EventHandler(this.cmdSettImport_Click);
     //
     // cmdSettingsSave
     //
     this.cmdSettingsSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cmdSettingsSave.Location = new System.Drawing.Point(786, 1);
     this.cmdSettingsSave.Name = "cmdSettingsSave";
     this.cmdSettingsSave.Size = new System.Drawing.Size(107, 40);
     this.cmdSettingsSave.TabIndex = 12;
     this.cmdSettingsSave.Text = "Änderungen Speichern";
     this.cmdSettingsSave.UseVisualStyleBackColor = true;
     this.cmdSettingsSave.Click += new System.EventHandler(this.cmdSettingsSave_Click);
     //
     // flowLayoutPanel1
     //
     this.flowLayoutPanel1.Controls.Add(this.cmdConnect);
     this.flowLayoutPanel1.Controls.Add(this.picConnection1);
     this.flowLayoutPanel1.Controls.Add(this.picConnection2);
     this.flowLayoutPanel1.Controls.Add(this.cmdDisconnect);
     this.flowLayoutPanel1.Controls.Add(this.cmdSelectStep7UDT);
     this.flowLayoutPanel1.Location = new System.Drawing.Point(0, -3);
     this.flowLayoutPanel1.Name = "flowLayoutPanel1";
     this.flowLayoutPanel1.Size = new System.Drawing.Size(550, 44);
     this.flowLayoutPanel1.TabIndex = 3;
     //
     // picConnection1
     //
     this.picConnection1.BackColor = System.Drawing.Color.Red;
     this.picConnection1.Location = new System.Drawing.Point(116, 3);
     this.picConnection1.Name = "picConnection1";
     this.picConnection1.Size = new System.Drawing.Size(20, 41);
     this.picConnection1.TabIndex = 12;
     this.picConnection1.TabStop = false;
     this.toolTip.SetToolTip(this.picConnection1, "Sende Verbindung aufgebaut");
     //
     // picConnection2
     //
     this.picConnection2.BackColor = System.Drawing.Color.Red;
     this.picConnection2.Location = new System.Drawing.Point(142, 3);
     this.picConnection2.Name = "picConnection2";
     this.picConnection2.Size = new System.Drawing.Size(20, 41);
     this.picConnection2.TabIndex = 12;
     this.picConnection2.TabStop = false;
     this.toolTip.SetToolTip(this.picConnection2, "Recieve Verbindung aufgebaut");
     //
     // cmdDisconnect
     //
     this.cmdDisconnect.Location = new System.Drawing.Point(168, 3);
     this.cmdDisconnect.Name = "cmdDisconnect";
     this.cmdDisconnect.Size = new System.Drawing.Size(107, 40);
     this.cmdDisconnect.TabIndex = 11;
     this.cmdDisconnect.Text = "Disconnect";
     this.cmdDisconnect.UseVisualStyleBackColor = true;
     this.cmdDisconnect.Click += new System.EventHandler(this.cmdDisconnect_Click);
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(902, 625);
     this.Controls.Add(this.tableLayoutPanel4);
     this.Name = "MainForm";
     this.Text = "Kopplungstester";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
     this.faTabStrip1.ResumeLayout(false);
     this.faTabStripItemInfo.ResumeLayout(false);
     this.faTabStripItemInfo.PerformLayout();
     this.faTabStripItemSend.ResumeLayout(false);
     this.tableLayoutPanel1.ResumeLayout(false);
     this.tableLayoutPanel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numericUpDown1)).EndInit();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer2)).EndInit();
     this.splitContainer2.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer3)).EndInit();
     this.splitContainer3.ResumeLayout(false);
     this.tableLayoutPanel5.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendTabelle)).EndInit();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer4)).EndInit();
     this.splitContainer4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendSendTable)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaSendQuittTable)).EndInit();
     this.faTabStripItemRecieve.ResumeLayout(false);
     this.tableLayoutPanel2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
     this.splitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.grdEmpfang)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dtaEmpfangstelegrammAufgeschluesselt)).EndInit();
     this.faTabStripItemSettings.ResumeLayout(false);
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberLength)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numSequenceNumberPosition)).EndInit();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.numPort2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.numPort1)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.tableLayoutPanel4.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     this.flowLayoutPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.picConnection1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.picConnection2)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
     this.label1        = new System.Windows.Forms.Label();
     this.VoltageCombo  = new System.Windows.Forms.ComboBox();
     this.groupBox1     = new System.Windows.Forms.GroupBox();
     this.AmpToKvaRadio = new System.Windows.Forms.RadioButton();
     this.KvaToARadio   = new System.Windows.Forms.RadioButton();
     this.inputTextBox  = new System.Windows.Forms.TextBox();
     this.inputLabel    = new System.Windows.Forms.Label();
     this.outputLabel   = new System.Windows.Forms.Label();
     this.outputText    = new System.Windows.Forms.TextBox();
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // label1
     //
     this.label1.Font     = new System.Drawing.Font("Stencil", 12F);
     this.label1.Location = new System.Drawing.Point(30, 18);
     this.label1.Name     = "label1";
     this.label1.Size     = new System.Drawing.Size(88, 23);
     this.label1.TabIndex = 0;
     this.label1.Text     = "Voltage:";
     //
     // VoltageCombo
     //
     this.VoltageCombo.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.VoltageCombo.Font              = new System.Drawing.Font("Stencil", 12F);
     this.VoltageCombo.FormattingEnabled = true;
     this.VoltageCombo.Items.AddRange(new object[] {
         "400V",
         "231V",
         "13.8KV",
         "33KV"
     });
     this.VoltageCombo.Location              = new System.Drawing.Point(124, 14);
     this.VoltageCombo.Name                  = "VoltageCombo";
     this.VoltageCombo.Size                  = new System.Drawing.Size(93, 27);
     this.VoltageCombo.TabIndex              = 1;
     this.VoltageCombo.SelectedIndexChanged += new System.EventHandler(this.VoltageComboSelectedIndexChanged);
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.AmpToKvaRadio);
     this.groupBox1.Controls.Add(this.KvaToARadio);
     this.groupBox1.Location = new System.Drawing.Point(8, 47);
     this.groupBox1.Name     = "groupBox1";
     this.groupBox1.Size     = new System.Drawing.Size(377, 58);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop  = false;
     //
     // AmpToKvaRadio
     //
     this.AmpToKvaRadio.Font     = new System.Drawing.Font("Stencil", 12F);
     this.AmpToKvaRadio.Location = new System.Drawing.Point(203, 19);
     this.AmpToKvaRadio.Name     = "AmpToKvaRadio";
     this.AmpToKvaRadio.Size     = new System.Drawing.Size(168, 24);
     this.AmpToKvaRadio.TabIndex = 1;
     this.AmpToKvaRadio.Text     = " Ampere to KVA";
     this.AmpToKvaRadio.UseVisualStyleBackColor = true;
     this.AmpToKvaRadio.CheckedChanged         += new System.EventHandler(this.AmpToKvaRadioCheckedChanged);
     //
     // KvaToARadio
     //
     this.KvaToARadio.Checked  = true;
     this.KvaToARadio.Font     = new System.Drawing.Font("Stencil", 12F);
     this.KvaToARadio.Location = new System.Drawing.Point(6, 19);
     this.KvaToARadio.Name     = "KvaToARadio";
     this.KvaToARadio.Size     = new System.Drawing.Size(156, 24);
     this.KvaToARadio.TabIndex = 0;
     this.KvaToARadio.TabStop  = true;
     this.KvaToARadio.Text     = "KVA to Ampere";
     this.KvaToARadio.UseVisualStyleBackColor = true;
     this.KvaToARadio.CheckedChanged         += new System.EventHandler(this.KvaToARadioCheckedChanged);
     //
     // inputTextBox
     //
     this.inputTextBox.BackColor    = System.Drawing.Color.PaleTurquoise;
     this.inputTextBox.Font         = new System.Drawing.Font("Stencil", 12F);
     this.inputTextBox.Location     = new System.Drawing.Point(8, 111);
     this.inputTextBox.MaxLength    = 9;
     this.inputTextBox.Name         = "inputTextBox";
     this.inputTextBox.Size         = new System.Drawing.Size(88, 26);
     this.inputTextBox.TabIndex     = 0;
     this.inputTextBox.Text         = "0";
     this.inputTextBox.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.inputTextBox.TextChanged += new System.EventHandler(this.InputTextBoxTextChanged);
     this.inputTextBox.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.InputTextBoxKeyPress);
     //
     // inputLabel
     //
     this.inputLabel.Font      = new System.Drawing.Font("Stencil", 12F);
     this.inputLabel.Location  = new System.Drawing.Point(107, 112);
     this.inputLabel.Name      = "inputLabel";
     this.inputLabel.Size      = new System.Drawing.Size(110, 23);
     this.inputLabel.TabIndex  = 4;
     this.inputLabel.Text      = "KVA equals ";
     this.inputLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // outputLabel
     //
     this.outputLabel.Font      = new System.Drawing.Font("Stencil", 12F);
     this.outputLabel.Location  = new System.Drawing.Point(344, 111);
     this.outputLabel.Name      = "outputLabel";
     this.outputLabel.Size      = new System.Drawing.Size(41, 23);
     this.outputLabel.TabIndex  = 5;
     this.outputLabel.Text      = "A";
     this.outputLabel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // outputText
     //
     this.outputText.Font      = new System.Drawing.Font("Stencil", 12F);
     this.outputText.Location  = new System.Drawing.Point(223, 111);
     this.outputText.MaxLength = 12;
     this.outputText.Name      = "outputText";
     this.outputText.ReadOnly  = true;
     this.outputText.Size      = new System.Drawing.Size(115, 26);
     this.outputText.TabIndex  = 6;
     this.outputText.Text      = "0";
     this.outputText.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // MainForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.PaleTurquoise;
     this.ClientSize          = new System.Drawing.Size(397, 149);
     this.Controls.Add(this.outputText);
     this.Controls.Add(this.outputLabel);
     this.Controls.Add(this.inputLabel);
     this.Controls.Add(this.inputTextBox);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.VoltageCombo);
     this.Controls.Add(this.label1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     //this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.Name          = "MainForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "KVA/Ampere converter";
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }