Ejemplo n.º 1
0
 private void DrawLine2_Load(object sender, EventArgs e)
 {
     // <Snippet1>
     Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
         new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     Microsoft.VisualBasic.PowerPacks.LineShape line1 =
         new Microsoft.VisualBasic.PowerPacks.LineShape(0, 0, 1000, 1000);
     // Set the form as the parent of the ShapeContainer.
     canvas.Parent = this;
     // Set the ShapeContainer as the parent of the LineShape.
     line1.Parent = canvas;
     // </Snippet1>
 }
Ejemplo n.º 2
0
        //----------------------------------------------------------------------------------------------------------------
        //Форма
        public Form1()
        {
            InitializeComponent();
            x1 = y1 = x2 = y2 = 0;
            for (int i = 0; i < 50; i++)
                for (int j = 0; j < 50; j++)
                    matrix_sumizn[i, j] = 0;

            //створення точок
            for (int i = 0; i < n; i++)
            {
                ovalshape[i] = new Microsoft.VisualBasic.PowerPacks.OvalShape();
                ovalshape[i].BackColor = Color.Red;
                ovalshape[i].BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
                ovalshape[i].Size = new Size(25, 25);
                ovalshape[i].Visible = true;
                ovalshape[i].ContextMenuStrip = contextMenuStrip2;
                ovalshape[i].Name = i.ToString();
                ovalshape[i].MouseClick += new MouseEventHandler(ovalshape_MouseClick);
            }
            //-----------------------------------------------------------------------------
            //Створення полів дя вuводу назв населених пунктів
            for (int i = 0; i < n; i++)
            {
                tb[i] = new TextBox();
                tb[i].Size = new Size(50, 20);
                tb[i].Name = i.ToString();
                tb[i].Text = "Пункт " + ((char)('A' + i)).ToString();
            }
            //------------------------------------------------------------------------------
            //Створення ліній
            for (int i = 0; i < n; i++)
            {
                lineshape[i] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                lineshape[i].Name = i.ToString();
            }
            //------------------------------------------------------------------------------
            //Створення текстових полів для введення величин
            for (int i = 0; i < n; i++)
            {
                tb_length[i] = new TextBox();
                tb_length[i].Size = new Size(50, 20);
                tb_length[i].Name = i.ToString();
                tb_length[i].Text = "1";
            }
            //------------------------------------------------------------------------------
            MouseClick += new MouseEventHandler(Form1_MouseClick);
        }
Ejemplo n.º 3
0
 private void DiagonalLine_Load(object sender, EventArgs e)
 {
     // <Snippet1>
     Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
         new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     Microsoft.VisualBasic.PowerPacks.LineShape line1 =
         new Microsoft.VisualBasic.PowerPacks.LineShape();
     // Set the form as the parent of the ShapeContainer.
     canvas.Parent = this;
     // Set the ShapeContainer as the parent of the LineShape.
     line1.Parent = canvas;
     // Set the starting and ending coordinates for the line.
     line1.StartPoint = new System.Drawing.Point(0, 0);
     line1.EndPoint   = new System.Drawing.Point(1000, 1000);
     // </Snippet1>
 }
Ejemplo n.º 4
0
 private void InitializeComponent()
 {
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(this.components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.Line2           = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.Line1           = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.Text1           = new System.Windows.Forms.TextBox();
     this.Command1        = new System.Windows.Forms.Button();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.prgUpdate       = new System.Windows.Forms.ProgressBar();
     this.Command3        = new System.Windows.Forms.Button();
     this.txtFile         = new System.Windows.Forms.TextBox();
     this.cmdDlgOpen      = new System.Windows.Forms.OpenFileDialog();
     this.Label3          = new System.Windows.Forms.Label();
     this.Label1          = new System.Windows.Forms.Label();
     this.lblHeading      = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     //
     //ShapeContainer1
     //
     this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.ShapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
     this.ShapeContainer1.Name     = "ShapeContainer1";
     this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
         this.Line2,
         this.Line1
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(512, 234);
     this.ShapeContainer1.TabIndex = 11;
     this.ShapeContainer1.TabStop  = false;
     //
     //Line2
     //
     this.Line2.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Line2.BorderWidth = 2;
     this.Line2.Name        = "Line2";
     this.Line2.X1          = 8;
     this.Line2.X2          = 508;
     this.Line2.Y1          = 156;
     this.Line2.Y2          = 156;
     //
     //Line1
     //
     this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Line1.BorderWidth = 2;
     this.Line1.Name        = "Line1";
     this.Line1.X1          = 4;
     this.Line1.X2          = 504;
     this.Line1.Y1          = 76;
     this.Line1.Y2          = 76;
     //
     //Text1
     //
     this.Text1.AcceptsReturn = true;
     this.Text1.BackColor     = System.Drawing.SystemColors.Window;
     this.Text1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Text1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.Text1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.Text1.Location      = new System.Drawing.Point(88, 160);
     this.Text1.MaxLength     = 0;
     this.Text1.Name          = "Text1";
     this.Text1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.Text1.Size          = new System.Drawing.Size(371, 17);
     this.Text1.TabIndex      = 8;
     //
     //Command1
     //
     this.Command1.BackColor               = System.Drawing.SystemColors.Control;
     this.Command1.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.Command1.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.Command1.Location                = new System.Drawing.Point(476, 164);
     this.Command1.Name                    = "Command1";
     this.Command1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command1.Size                    = new System.Drawing.Size(35, 15);
     this.Command1.TabIndex                = 7;
     this.Command1.Text                    = "...";
     this.Command1.UseVisualStyleBackColor = false;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.cmdClose);
     this.picButtons.Cursor      = System.Windows.Forms.Cursors.Default;
     this.picButtons.Dock        = System.Windows.Forms.DockStyle.Top;
     this.picButtons.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.picButtons.Location    = new System.Drawing.Point(0, 0);
     this.picButtons.Name        = "picButtons";
     this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Size        = new System.Drawing.Size(512, 38);
     this.picButtons.TabIndex    = 4;
     //
     //cmdClose
     //
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(432, 2);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(73, 29);
     this.cmdClose.TabIndex                = 5;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "E&xit";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //prgUpdate
     //
     this.prgUpdate.Location = new System.Drawing.Point(84, 192);
     this.prgUpdate.Maximum  = 1;
     this.prgUpdate.Name     = "prgUpdate";
     this.prgUpdate.Size     = new System.Drawing.Size(373, 33);
     this.prgUpdate.TabIndex = 3;
     //
     //Command3
     //
     this.Command3.BackColor               = System.Drawing.SystemColors.Control;
     this.Command3.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.Command3.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.Command3.Location                = new System.Drawing.Point(472, 84);
     this.Command3.Name                    = "Command3";
     this.Command3.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command3.Size                    = new System.Drawing.Size(35, 15);
     this.Command3.TabIndex                = 2;
     this.Command3.Text                    = "...";
     this.Command3.UseVisualStyleBackColor = false;
     //
     //txtFile
     //
     this.txtFile.AcceptsReturn = true;
     this.txtFile.BackColor     = System.Drawing.SystemColors.Window;
     this.txtFile.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFile.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtFile.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtFile.Location      = new System.Drawing.Point(84, 80);
     this.txtFile.MaxLength     = 0;
     this.txtFile.Name          = "txtFile";
     this.txtFile.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtFile.Size          = new System.Drawing.Size(371, 17);
     this.txtFile.TabIndex      = 0;
     //
     //Label3
     //
     this.Label3.BackColor   = System.Drawing.Color.Transparent;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(0)), Convert.ToInt32(Convert.ToByte(0)), Convert.ToInt32(Convert.ToByte(128)));
     this.Label3.Location    = new System.Drawing.Point(12, 128);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(495, 21);
     this.Label3.TabIndex    = 10;
     this.Label3.Text        = "Menu Translation  -  CSV file layout: ( MenuNo | Description )";
     //
     //Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(12, 162);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(65, 15);
     this.Label1.TabIndex    = 9;
     this.Label1.Text        = "File path";
     //
     //lblHeading
     //
     this.lblHeading.BackColor   = System.Drawing.Color.Transparent;
     this.lblHeading.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblHeading.ForeColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(0)), Convert.ToInt32(Convert.ToByte(0)), Convert.ToInt32(Convert.ToByte(128)));
     this.lblHeading.Location    = new System.Drawing.Point(8, 48);
     this.lblHeading.Name        = "lblHeading";
     this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.Size        = new System.Drawing.Size(495, 21);
     this.lblHeading.TabIndex    = 6;
     this.lblHeading.Text        = "Main Translation  -  CSV file layout: ( LanguageNo | Description )";
     //
     //Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(8, 82);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(65, 15);
     this.Label2.TabIndex    = 1;
     this.Label2.Text        = "File path";
     //
     //frmLangImport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(512, 234);
     this.ControlBox          = false;
     this.Controls.Add(this.Text1);
     this.Controls.Add(this.Command1);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this.prgUpdate);
     this.Controls.Add(this.Command3);
     this.Controls.Add(this.txtFile);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.lblHeading);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Location        = new System.Drawing.Point(3, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmLangImport";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Import Language Translation";
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 5
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPerson));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.chkController = new System.Windows.Forms.CheckBox();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.txtComm = new System.Windows.Forms.TextBox();
			this.Label2 = new System.Windows.Forms.Label();
			this.cmdBuild = new System.Windows.Forms.Button();
			this._chkFields_2 = new System.Windows.Forms.CheckBox();
			this._frmSecurity_1 = new System.Windows.Forms.GroupBox();
			this.cmbDraw = new System.Windows.Forms.ComboBox();
			this._txtFields_12 = new System.Windows.Forms.TextBox();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this._lblLabels_12 = new System.Windows.Forms.Label();
			this._frmSecurity_0 = new System.Windows.Forms.GroupBox();
			this._txtFields_11 = new System.Windows.Forms.TextBox();
			this._txtFields_10 = new System.Windows.Forms.TextBox();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_4 = new System.Windows.Forms.TextBox();
			this._txtFields_5 = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this._txtFields_13 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdFPR = new System.Windows.Forms.Button();
			this.cmdPOSsecurity = new System.Windows.Forms.Button();
			this.cmdBOsecurity = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._lbl_1 = new System.Windows.Forms.Label();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.frmSecurity = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.Frame1.SuspendLayout();
			this._frmSecurity_1.SuspendLayout();
			this._frmSecurity_0.SuspendLayout();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.frmSecurity, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Edit Employee Details";
			this.ClientSize = new System.Drawing.Size(486, 348);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmPerson";
			this.chkController.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.chkController.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkController.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.chkController.Text = "Permit this person to terminate controller";
			this.chkController.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkController.Size = new System.Drawing.Size(229, 21);
			this.chkController.Location = new System.Drawing.Point(226, 286);
			this.chkController.TabIndex = 34;
			this.chkController.CausesValidation = true;
			this.chkController.Enabled = true;
			this.chkController.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkController.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkController.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkController.TabStop = true;
			this.chkController.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkController.Visible = true;
			this.chkController.Name = "chkController";
			this.Frame1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.Frame1.Text = "Commission %";
			this.Frame1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Frame1.Size = new System.Drawing.Size(189, 39);
			this.Frame1.Location = new System.Drawing.Point(22, 242);
			this.Frame1.TabIndex = 31;
			this.Frame1.Enabled = true;
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame1.Visible = true;
			this.Frame1.Padding = new System.Windows.Forms.Padding(0);
			this.Frame1.Name = "Frame1";
			this.txtComm.AutoSize = false;
			this.txtComm.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtComm.Size = new System.Drawing.Size(61, 17);
			this.txtComm.Location = new System.Drawing.Point(116, 14);
			this.txtComm.TabIndex = 33;
			this.txtComm.AcceptsReturn = true;
			this.txtComm.BackColor = System.Drawing.SystemColors.Window;
			this.txtComm.CausesValidation = true;
			this.txtComm.Enabled = true;
			this.txtComm.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtComm.HideSelection = true;
			this.txtComm.ReadOnly = false;
			this.txtComm.MaxLength = 0;
			this.txtComm.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtComm.Multiline = false;
			this.txtComm.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtComm.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtComm.TabStop = true;
			this.txtComm.Visible = true;
			this.txtComm.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtComm.Name = "txtComm";
			this.Label2.Text = "Value";
			this.Label2.Size = new System.Drawing.Size(71, 17);
			this.Label2.Location = new System.Drawing.Point(10, 16);
			this.Label2.TabIndex = 32;
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label2.BackColor = System.Drawing.Color.Transparent;
			this.Label2.Enabled = true;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.UseMnemonic = true;
			this.Label2.Visible = true;
			this.Label2.AutoSize = false;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Name = "Label2";
			this.cmdBuild.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBuild.Text = "Build...";
			this.cmdBuild.Size = new System.Drawing.Size(46, 16);
			this.cmdBuild.Location = new System.Drawing.Point(402, 213);
			this.cmdBuild.TabIndex = 27;
			this.cmdBuild.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBuild.CausesValidation = true;
			this.cmdBuild.Enabled = true;
			this.cmdBuild.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBuild.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBuild.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBuild.TabStop = true;
			this.cmdBuild.Name = "cmdBuild";
			this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_2.Text = "Disable this person from using the application suite:";
			this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_2.Size = new System.Drawing.Size(262, 19);
			this._chkFields_2.Location = new System.Drawing.Point(194, 308);
			this._chkFields_2.TabIndex = 29;
			this._chkFields_2.CausesValidation = true;
			this._chkFields_2.Enabled = true;
			this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_2.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_2.TabStop = true;
			this._chkFields_2.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_2.Visible = true;
			this._chkFields_2.Name = "_chkFields_2";
			this._frmSecurity_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._frmSecurity_1.Text = "Point Of Sale Logon";
			this._frmSecurity_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmSecurity_1.Size = new System.Drawing.Size(220, 108);
			this._frmSecurity_1.Location = new System.Drawing.Point(237, 171);
			this._frmSecurity_1.TabIndex = 24;
			this._frmSecurity_1.Enabled = true;
			this._frmSecurity_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmSecurity_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmSecurity_1.Visible = true;
			this._frmSecurity_1.Padding = new System.Windows.Forms.Padding(0);
			this._frmSecurity_1.Name = "_frmSecurity_1";
			this.cmbDraw.BackColor = System.Drawing.Color.White;
			this.cmbDraw.Size = new System.Drawing.Size(105, 21);
			this.cmbDraw.Location = new System.Drawing.Point(104, 80);
			this.cmbDraw.Items.AddRange(new object[] {
				"Till / Drawer # 1",
				"Till / Drawer # 2"
			});
			this.cmbDraw.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbDraw.TabIndex = 37;
			this.cmbDraw.CausesValidation = true;
			this.cmbDraw.Enabled = true;
			this.cmbDraw.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbDraw.IntegralHeight = true;
			this.cmbDraw.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbDraw.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbDraw.Sorted = false;
			this.cmbDraw.TabStop = true;
			this.cmbDraw.Visible = true;
			this.cmbDraw.Name = "cmbDraw";
			this._txtFields_12.AutoSize = false;
			this._txtFields_12.Size = new System.Drawing.Size(114, 19);
			this._txtFields_12.ImeMode = System.Windows.Forms.ImeMode.Disable;
			this._txtFields_12.Location = new System.Drawing.Point(96, 18);
			this._txtFields_12.PasswordChar = Strings.ChrW(35);
			this._txtFields_12.TabIndex = 26;
			this._txtFields_12.AcceptsReturn = true;
			this._txtFields_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_12.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_12.CausesValidation = true;
			this._txtFields_12.Enabled = true;
			this._txtFields_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_12.HideSelection = true;
			this._txtFields_12.ReadOnly = false;
			this._txtFields_12.MaxLength = 0;
			this._txtFields_12.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_12.Multiline = false;
			this._txtFields_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_12.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_12.TabStop = true;
			this._txtFields_12.Visible = true;
			this._txtFields_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_12.Name = "_txtFields_12";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Text = "Default Till/Drawer:";
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_0.Size = new System.Drawing.Size(92, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(8, 88);
			this._lblLabels_0.TabIndex = 36;
			this._lblLabels_0.Enabled = true;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.UseMnemonic = true;
			this._lblLabels_0.Visible = true;
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_0.Name = "_lblLabels_0";
			this.Label1.Text = "This is a barcode used for log-in for the Point Of Sale device.";
			this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label1.Size = new System.Drawing.Size(148, 43);
			this.Label1.Location = new System.Drawing.Point(9, 39);
			this.Label1.TabIndex = 28;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this._lblLabels_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_12.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_12.Text = "Access Scan ID:";
			this._lblLabels_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_12.Size = new System.Drawing.Size(80, 13);
			this._lblLabels_12.Location = new System.Drawing.Point(9, 18);
			this._lblLabels_12.TabIndex = 25;
			this._lblLabels_12.Enabled = true;
			this._lblLabels_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_12.UseMnemonic = true;
			this._lblLabels_12.Visible = true;
			this._lblLabels_12.AutoSize = true;
			this._lblLabels_12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_12.Name = "_lblLabels_12";
			this._frmSecurity_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._frmSecurity_0.Text = "Back Office Logon";
			this._frmSecurity_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmSecurity_0.Size = new System.Drawing.Size(190, 66);
			this._frmSecurity_0.Location = new System.Drawing.Point(21, 171);
			this._frmSecurity_0.TabIndex = 19;
			this._frmSecurity_0.Enabled = true;
			this._frmSecurity_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmSecurity_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmSecurity_0.Visible = true;
			this._frmSecurity_0.Padding = new System.Windows.Forms.Padding(0);
			this._frmSecurity_0.Name = "_frmSecurity_0";
			this._txtFields_11.AutoSize = false;
			this._txtFields_11.Size = new System.Drawing.Size(114, 19);
			this._txtFields_11.ImeMode = System.Windows.Forms.ImeMode.Disable;
			this._txtFields_11.Location = new System.Drawing.Point(65, 40);
			this._txtFields_11.PasswordChar = Strings.ChrW(35);
			this._txtFields_11.TabIndex = 23;
			this._txtFields_11.AcceptsReturn = true;
			this._txtFields_11.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_11.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_11.CausesValidation = true;
			this._txtFields_11.Enabled = true;
			this._txtFields_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_11.HideSelection = true;
			this._txtFields_11.ReadOnly = false;
			this._txtFields_11.MaxLength = 0;
			this._txtFields_11.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_11.Multiline = false;
			this._txtFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_11.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_11.TabStop = true;
			this._txtFields_11.Visible = true;
			this._txtFields_11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_11.Name = "_txtFields_11";
			this._txtFields_10.AutoSize = false;
			this._txtFields_10.Size = new System.Drawing.Size(114, 19);
			this._txtFields_10.Location = new System.Drawing.Point(65, 18);
			this._txtFields_10.TabIndex = 21;
			this._txtFields_10.AcceptsReturn = true;
			this._txtFields_10.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_10.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_10.CausesValidation = true;
			this._txtFields_10.Enabled = true;
			this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_10.HideSelection = true;
			this._txtFields_10.ReadOnly = false;
			this._txtFields_10.MaxLength = 0;
			this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_10.Multiline = false;
			this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_10.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_10.TabStop = true;
			this._txtFields_10.Visible = true;
			this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_10.Name = "_txtFields_10";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Text = "Password:"******"_lblLabels_11";
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Text = "User ID:";
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_10.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_10.Location = new System.Drawing.Point(19, 18);
			this._lblLabels_10.TabIndex = 20;
			this._lblLabels_10.Enabled = true;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.UseMnemonic = true;
			this._lblLabels_10.Visible = true;
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_10.Name = "_lblLabels_10";
			this._txtFields_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(31, 19);
			this._txtFields_1.Location = new System.Drawing.Point(87, 66);
			this._txtFields_1.TabIndex = 6;
			this._txtFields_1.Text = "Miss";
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_1.CausesValidation = true;
			this._txtFields_1.Enabled = true;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.HideSelection = true;
			this._txtFields_1.ReadOnly = false;
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.Multiline = false;
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_1.TabStop = true;
			this._txtFields_1.Visible = true;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Name = "_txtFields_1";
			this._txtFields_2.AutoSize = false;
			this._txtFields_2.Size = new System.Drawing.Size(118, 19);
			this._txtFields_2.Location = new System.Drawing.Point(120, 66);
			this._txtFields_2.TabIndex = 7;
			this._txtFields_2.AcceptsReturn = true;
			this._txtFields_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_2.CausesValidation = true;
			this._txtFields_2.Enabled = true;
			this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_2.HideSelection = true;
			this._txtFields_2.ReadOnly = false;
			this._txtFields_2.MaxLength = 0;
			this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_2.Multiline = false;
			this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_2.TabStop = true;
			this._txtFields_2.Visible = true;
			this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_2.Name = "_txtFields_2";
			this._txtFields_4.AutoSize = false;
			this._txtFields_4.Size = new System.Drawing.Size(151, 19);
			this._txtFields_4.Location = new System.Drawing.Point(87, 87);
			this._txtFields_4.TabIndex = 9;
			this._txtFields_4.AcceptsReturn = true;
			this._txtFields_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_4.CausesValidation = true;
			this._txtFields_4.Enabled = true;
			this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_4.HideSelection = true;
			this._txtFields_4.ReadOnly = false;
			this._txtFields_4.MaxLength = 0;
			this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_4.Multiline = false;
			this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_4.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_4.TabStop = true;
			this._txtFields_4.Visible = true;
			this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_4.Name = "_txtFields_4";
			this._txtFields_5.AutoSize = false;
			this._txtFields_5.Size = new System.Drawing.Size(151, 19);
			this._txtFields_5.Location = new System.Drawing.Point(318, 66);
			this._txtFields_5.TabIndex = 11;
			this._txtFields_5.AcceptsReturn = true;
			this._txtFields_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_5.CausesValidation = true;
			this._txtFields_5.Enabled = true;
			this._txtFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_5.HideSelection = true;
			this._txtFields_5.ReadOnly = false;
			this._txtFields_5.MaxLength = 0;
			this._txtFields_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_5.Multiline = false;
			this._txtFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_5.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_5.TabStop = true;
			this._txtFields_5.Visible = true;
			this._txtFields_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_5.Name = "_txtFields_5";
			this._txtFields_7.AutoSize = false;
			this._txtFields_7.Size = new System.Drawing.Size(151, 19);
			this._txtFields_7.Location = new System.Drawing.Point(87, 120);
			this._txtFields_7.TabIndex = 15;
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.CausesValidation = true;
			this._txtFields_7.Enabled = true;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.HideSelection = true;
			this._txtFields_7.ReadOnly = false;
			this._txtFields_7.MaxLength = 0;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.Multiline = false;
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_7.TabStop = true;
			this._txtFields_7.Visible = true;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_8.AutoSize = false;
			this._txtFields_8.Size = new System.Drawing.Size(151, 19);
			this._txtFields_8.Location = new System.Drawing.Point(318, 120);
			this._txtFields_8.TabIndex = 17;
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.CausesValidation = true;
			this._txtFields_8.Enabled = true;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.HideSelection = true;
			this._txtFields_8.ReadOnly = false;
			this._txtFields_8.MaxLength = 0;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.Multiline = false;
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_8.TabStop = true;
			this._txtFields_8.Visible = true;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Name = "_txtFields_8";
			this._txtFields_13.AutoSize = false;
			this._txtFields_13.Size = new System.Drawing.Size(151, 19);
			this._txtFields_13.Location = new System.Drawing.Point(318, 87);
			this._txtFields_13.TabIndex = 13;
			this._txtFields_13.AcceptsReturn = true;
			this._txtFields_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_13.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_13.CausesValidation = true;
			this._txtFields_13.Enabled = true;
			this._txtFields_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_13.HideSelection = true;
			this._txtFields_13.ReadOnly = false;
			this._txtFields_13.MaxLength = 0;
			this._txtFields_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_13.Multiline = false;
			this._txtFields_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_13.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_13.TabStop = true;
			this._txtFields_13.Visible = true;
			this._txtFields_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_13.Name = "_txtFields_13";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(486, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 0;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdFPR.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdFPR.Text = "&Finger Print Registration";
			this.cmdFPR.Size = new System.Drawing.Size(73, 29);
			this.cmdFPR.Location = new System.Drawing.Point(304, 3);
			this.cmdFPR.TabIndex = 35;
			this.cmdFPR.TabStop = false;
			this.cmdFPR.BackColor = System.Drawing.SystemColors.Control;
			this.cmdFPR.CausesValidation = true;
			this.cmdFPR.Enabled = true;
			this.cmdFPR.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdFPR.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdFPR.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdFPR.Name = "cmdFPR";
			this.cmdPOSsecurity.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPOSsecurity.Text = "&Point Of Sale Permissions";
			this.cmdPOSsecurity.Size = new System.Drawing.Size(73, 29);
			this.cmdPOSsecurity.Location = new System.Drawing.Point(207, 3);
			this.cmdPOSsecurity.TabIndex = 2;
			this.cmdPOSsecurity.TabStop = false;
			this.cmdPOSsecurity.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPOSsecurity.CausesValidation = true;
			this.cmdPOSsecurity.Enabled = true;
			this.cmdPOSsecurity.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPOSsecurity.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPOSsecurity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPOSsecurity.Name = "cmdPOSsecurity";
			this.cmdBOsecurity.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBOsecurity.Text = "&Back Office Permissions";
			this.cmdBOsecurity.Size = new System.Drawing.Size(73, 29);
			this.cmdBOsecurity.Location = new System.Drawing.Point(104, 3);
			this.cmdBOsecurity.TabIndex = 30;
			this.cmdBOsecurity.TabStop = false;
			this.cmdBOsecurity.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBOsecurity.CausesValidation = true;
			this.cmdBOsecurity.Enabled = true;
			this.cmdBOsecurity.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBOsecurity.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBOsecurity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBOsecurity.Name = "cmdBOsecurity";
			this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.TabIndex = 3;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.CausesValidation = true;
			this.cmdCancel.Enabled = true;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Name = "cmdCancel";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(405, 3);
			this.cmdClose.TabIndex = 1;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Text = "Employee No. ";
			this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_1.Size = new System.Drawing.Size(77, 14);
			this._lbl_1.Location = new System.Drawing.Point(400, 44);
			this._lbl_1.TabIndex = 38;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = true;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this.Line1.X1 = 16;
			this.Line1.X2 = 468;
			this.Line1.Y1 = 110;
			this.Line1.Y2 = 110;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.BorderWidth = 1;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.Size = new System.Drawing.Size(472, 171);
			this._Shape1_0.Location = new System.Drawing.Point(6, 166);
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_0.BorderWidth = 1;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_0.Visible = true;
			this._Shape1_0.Name = "_Shape1_0";
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Text = "&2. Security";
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.Size = new System.Drawing.Size(64, 13);
			this._lbl_0.Location = new System.Drawing.Point(8, 150);
			this._lbl_0.TabIndex = 18;
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Text = "First Name:";
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_2.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(27, 66);
			this._lblLabels_2.TabIndex = 5;
			this._lblLabels_2.Enabled = true;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.UseMnemonic = true;
			this._lblLabels_2.Visible = true;
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Text = "Surname:";
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_4.Size = new System.Drawing.Size(46, 13);
			this._lblLabels_4.Location = new System.Drawing.Point(33, 87);
			this._lblLabels_4.TabIndex = 8;
			this._lblLabels_4.Enabled = true;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.UseMnemonic = true;
			this._lblLabels_4.Visible = true;
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Text = "Position:";
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_5.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_5.Location = new System.Drawing.Point(258, 66);
			this._lblLabels_5.TabIndex = 10;
			this._lblLabels_5.Enabled = true;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.UseMnemonic = true;
			this._lblLabels_5.Visible = true;
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Text = "Cell:";
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_7.Size = new System.Drawing.Size(22, 13);
			this._lblLabels_7.Location = new System.Drawing.Point(60, 120);
			this._lblLabels_7.TabIndex = 14;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.UseMnemonic = true;
			this._lblLabels_7.Visible = true;
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_8.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(243, 120);
			this._lblLabels_8.TabIndex = 16;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.UseMnemonic = true;
			this._lblLabels_8.Visible = true;
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Text = "ID Number:";
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_13.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_13.Location = new System.Drawing.Point(243, 87);
			this._lblLabels_13.TabIndex = 12;
			this._lblLabels_13.Enabled = true;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.UseMnemonic = true;
			this._lblLabels_13.Visible = true;
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Text = "&1. General";
			this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_5.Size = new System.Drawing.Size(61, 13);
			this._lbl_5.Location = new System.Drawing.Point(8, 44);
			this._lbl_5.TabIndex = 4;
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = true;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.Size = new System.Drawing.Size(472, 85);
			this._Shape1_2.Location = new System.Drawing.Point(6, 60);
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_2.BorderWidth = 1;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_2.Visible = true;
			this._Shape1_2.Name = "_Shape1_2";
			this.Controls.Add(chkController);
			this.Controls.Add(Frame1);
			this.Controls.Add(cmdBuild);
			this.Controls.Add(_chkFields_2);
			this.Controls.Add(_frmSecurity_1);
			this.Controls.Add(_frmSecurity_0);
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(_txtFields_2);
			this.Controls.Add(_txtFields_4);
			this.Controls.Add(_txtFields_5);
			this.Controls.Add(_txtFields_7);
			this.Controls.Add(_txtFields_8);
			this.Controls.Add(_txtFields_13);
			this.Controls.Add(picButtons);
			this.Controls.Add(_lbl_1);
			this.ShapeContainer1.Shapes.Add(Line1);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.Controls.Add(_lbl_0);
			this.Controls.Add(_lblLabels_2);
			this.Controls.Add(_lblLabels_4);
			this.Controls.Add(_lblLabels_5);
			this.Controls.Add(_lblLabels_7);
			this.Controls.Add(_lblLabels_8);
			this.Controls.Add(_lblLabels_13);
			this.Controls.Add(_lbl_5);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(ShapeContainer1);
			this.Frame1.Controls.Add(txtComm);
			this.Frame1.Controls.Add(Label2);
			this._frmSecurity_1.Controls.Add(cmbDraw);
			this._frmSecurity_1.Controls.Add(_txtFields_12);
			this._frmSecurity_1.Controls.Add(_lblLabels_0);
			this._frmSecurity_1.Controls.Add(Label1);
			this._frmSecurity_1.Controls.Add(_lblLabels_12);
			this._frmSecurity_0.Controls.Add(_txtFields_11);
			this._frmSecurity_0.Controls.Add(_txtFields_10);
			this._frmSecurity_0.Controls.Add(_lblLabels_11);
			this._frmSecurity_0.Controls.Add(_lblLabels_10);
			this.picButtons.Controls.Add(cmdFPR);
			this.picButtons.Controls.Add(cmdPOSsecurity);
			this.picButtons.Controls.Add(cmdBOsecurity);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.chkFields.SetIndex(_chkFields_2, CType(2, Short))
			//Me.frmSecurity.SetIndex(_frmSecurity_1, CType(1, Short))
			//Me.frmSecurity.SetIndex(_frmSecurity_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_12, CType(12, Short))
			//Me.lblLabels.SetIndex(_lblLabels_11, CType(11, Short))
			//Me.lblLabels.SetIndex(_lblLabels_10, CType(10, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_4, CType(4, Short))
			//M() ''e.lblLabels.SetIndex(_lblLabels_5, CType(5, Short))
			//M() 'e.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//M() 'e.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//Me.lblLabels.SetIndex(_lblLabels_13, CType(13, Short))
			//Me.txtFields.SetIndex(_txtFields_12, CType(12, Short))
			//Me.txtFields.SetIndex(_txtFields_11, CType(11, Short))
			//Me.txtFields.SetIndex(_txtFields_10, CType(10, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//Me.txtFields.SetIndex(_txtFields_2, CType(2, Short))
			//Me.txtFields.SetIndex(_txtFields_4, CType(4, Short))
			//Me.txtFields.SetIndex(_txtFields_5, CType(5, Short))
			//Me.txtFields.SetIndex(_txtFields_7, CType(7, Short))
			//Me.txtFields.SetIndex(_txtFields_8, CType(8, Short))
			//Me.txtFields.SetIndex(_txtFields_13, CType(13, Short))
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.frmSecurity, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			this.Frame1.ResumeLayout(false);
			this._frmSecurity_1.ResumeLayout(false);
			this._frmSecurity_0.ResumeLayout(false);
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Ejemplo n.º 6
0
        /// <summary>
        /// Draw 4 Line:
        /// 
        /// (Start Point).____________        or         ____________.(Start Point)
        ///                           |                 |
        ///                           |                 |
        ///                         \ | /             \ | /
        ///                          \|/               \|/
        ///                           .                 .
        ///                       (End Point)       (End Point)
        /// </summary>
        /// <param name="Startloc"> Start Point</param>
        /// <param name="Endloc"> End Point </param>
        /// <param name="RL"> Right Arrow or Left Arrow </param>
        private void DrawLineArrow(Point Startloc, Point Endloc)
        {
            char RL = (Startloc.X < Endloc.X) ? 'R' : 'L';
            Startloc = new Point(Startloc.X + 30, Startloc.Y + 15);
            Endloc = new Point(Endloc.X + 30, Endloc.Y);
            switch (RL)
            {
                case 'R':
                    #region Right Arrow
                    {
                        // Right Arrow:
                        //
                        // (Start Point).____________
                        //                           |
                        //                           |
                        //                         \ | /
                        //                          \|/
                        //                           .
                        //                       (End Point)
                        //
                        // lineShapeArrow (Right Line -)
                        //
                        if (LineShapeCounter >= numArrow) return;
                        LineShapeArrow[LineShapeCounter] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                        this.LineShapeArrow[LineShapeCounter].X1 = Startloc.X;
                        this.LineShapeArrow[LineShapeCounter].X2 = Endloc.X;
                        this.LineShapeArrow[LineShapeCounter].Y1 = Startloc.Y;
                        this.LineShapeArrow[LineShapeCounter].Y2 = Startloc.Y;
                        this.LineShapeArrow[LineShapeCounter].BorderWidth = 2;
                        this.LineShapeArrow[LineShapeCounter].BorderColor = Color.Red;
                        this.shapeContainerTree.Shapes.Add(LineShapeArrow[LineShapeCounter]);
                        LineShapeCounter++;
                        //
                        // lineShapeArrow (Up Line |)
                        //
                        if (LineShapeCounter >= numArrow) return;
                        LineShapeArrow[LineShapeCounter] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                        this.LineShapeArrow[LineShapeCounter].X1 = Endloc.X;
                        this.LineShapeArrow[LineShapeCounter].X2 = Endloc.X;
                        this.LineShapeArrow[LineShapeCounter].Y1 = Startloc.Y;
                        this.LineShapeArrow[LineShapeCounter].Y2 = Endloc.Y;
                        this.LineShapeArrow[LineShapeCounter].BorderWidth = 2;
                        this.LineShapeArrow[LineShapeCounter].BorderColor = Color.Red;
                        this.shapeContainerTree.Shapes.Add(LineShapeArrow[LineShapeCounter]);
                        LineShapeCounter++;
                    }
                    break;
                    #endregion

                case 'L':
                    #region Left Arrow
                    {
                        // Left Arrow:
                        //
                        //      ____________.(Start Point)
                        //     |
                        //     |
                        //   \ | /
                        //    \|/
                        //     .
                        // (End Point)
                        //
                        // lineShapeArrow (Left Line -)
                        //
                        if (LineShapeCounter >= numArrow) return;
                        LineShapeArrow[LineShapeCounter] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                        this.LineShapeArrow[LineShapeCounter].X1 = Startloc.X;
                        this.LineShapeArrow[LineShapeCounter].X2 = Endloc.X;
                        this.LineShapeArrow[LineShapeCounter].Y1 = Startloc.Y;
                        this.LineShapeArrow[LineShapeCounter].Y2 = Startloc.Y;
                        this.LineShapeArrow[LineShapeCounter].BorderWidth = 2;
                        this.LineShapeArrow[LineShapeCounter].BorderColor = Color.Blue;
                        this.shapeContainerTree.Shapes.Add(LineShapeArrow[LineShapeCounter]);
                        LineShapeCounter++;
                        //
                        // lineShapeArrow (Up Line |)
                        //
                        if (LineShapeCounter >= numArrow) return;
                        LineShapeArrow[LineShapeCounter] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                        this.LineShapeArrow[LineShapeCounter].X1 = Endloc.X;
                        this.LineShapeArrow[LineShapeCounter].X2 = Endloc.X;
                        this.LineShapeArrow[LineShapeCounter].Y1 = Startloc.Y;
                        this.LineShapeArrow[LineShapeCounter].Y2 = Endloc.Y;
                        this.LineShapeArrow[LineShapeCounter].BorderWidth = 2;
                        this.LineShapeArrow[LineShapeCounter].BorderColor = Color.Blue;
                        this.shapeContainerTree.Shapes.Add(LineShapeArrow[LineShapeCounter]);
                        LineShapeCounter++;
                    }
                    break;
                    #endregion

                default: return;
            }
            //
            // lineShapeArrow (Left Cross Line \)
            //
            if (LineShapeCounter >= numArrow) return;
            LineShapeArrow[LineShapeCounter] = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.LineShapeArrow[LineShapeCounter].X1 = Endloc.X - 5;
            this.LineShapeArrow[LineShapeCounter].X2 = Endloc.X;
            this.LineShapeArrow[LineShapeCounter].Y1 = Endloc.Y - 5;
            this.LineShapeArrow[LineShapeCounter].Y2 = Endloc.Y;
            this.LineShapeArrow[LineShapeCounter].BorderWidth = 2;
            this.LineShapeArrow[LineShapeCounter].BorderColor = (RL == 'L') ? Color.Blue : Color.Red;
            this.shapeContainerTree.Shapes.Add(LineShapeArrow[LineShapeCounter]);
            LineShapeCounter++;
            //
            // lineShapeArrow (Right Cross Line /)
            //
            if (LineShapeCounter >= numArrow) return;
            LineShapeArrow[LineShapeCounter] = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.LineShapeArrow[LineShapeCounter].X1 = Endloc.X + 5;
            this.LineShapeArrow[LineShapeCounter].X2 = Endloc.X;
            this.LineShapeArrow[LineShapeCounter].Y1 = Endloc.Y - 5;
            this.LineShapeArrow[LineShapeCounter].Y2 = Endloc.Y;
            this.LineShapeArrow[LineShapeCounter].BorderWidth = 2;
            this.LineShapeArrow[LineShapeCounter].BorderColor = (RL == 'L') ? Color.Blue : Color.Red;
            this.shapeContainerTree.Shapes.Add(LineShapeArrow[LineShapeCounter]);
            LineShapeCounter++;
        }
Ejemplo n.º 7
0
 private void InitializeComponent()
 {
     this._PanelAccountButtons = new Shellscape.UI.Controls.DoubleBufferedPanel();
     this._ButtonDefault = new System.Windows.Forms.Button();
     this._ButtonCancel = new System.Windows.Forms.Button();
     this._ButtonSave = new System.Windows.Forms.Button();
     this._TextUsername = new System.Windows.Forms.TextBox();
     this._LabelPassword = new System.Windows.Forms.Label();
     this._LabelUsername = new System.Windows.Forms.Label();
     this._LabelAccountTitle = new System.Windows.Forms.Label();
     this._LabelError = new System.Windows.Forms.Label();
     this._PictureExclamation = new System.Windows.Forms.PictureBox();
     this._TextPassword = new System.Windows.Forms.TextBox();
     this._LabelWarn = new System.Windows.Forms.Label();
     this._ButtonRemove = new System.Windows.Forms.Button();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this._PanelAccountButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this._PictureExclamation)).BeginInit();
     this.SuspendLayout();
     //
     // _PanelAccountButtons
     //
     this._PanelAccountButtons.BackColor = System.Drawing.SystemColors.Control;
     this._PanelAccountButtons.Controls.Add(this._ButtonDefault);
     this._PanelAccountButtons.Controls.Add(this._ButtonCancel);
     this._PanelAccountButtons.Controls.Add(this._ButtonSave);
     this._PanelAccountButtons.Dock = System.Windows.Forms.DockStyle.Bottom;
     this._PanelAccountButtons.Location = new System.Drawing.Point(2, 604);
     this._PanelAccountButtons.Name = "_PanelAccountButtons";
     this._PanelAccountButtons.Padding = new System.Windows.Forms.Padding(10, 0, 10, 0);
     this._PanelAccountButtons.Size = new System.Drawing.Size(991, 40);
     this._PanelAccountButtons.TabIndex = 44;
     //
     // _ButtonDefault
     //
     this._ButtonDefault.AutoSize = true;
     this._ButtonDefault.Enabled = false;
     this._ButtonDefault.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._ButtonDefault.Location = new System.Drawing.Point(10, 6);
     this._ButtonDefault.MinimumSize = new System.Drawing.Size(65, 23);
     this._ButtonDefault.Name = "_ButtonDefault";
     this._ButtonDefault.Size = new System.Drawing.Size(91, 30);
     this._ButtonDefault.TabIndex = 3;
     this._ButtonDefault.Text = "Make Default";
     this._ButtonDefault.UseVisualStyleBackColor = true;
     this._ButtonDefault.Click += new System.EventHandler(this._ButtonDefault_Click);
     //
     // _ButtonCancel
     //
     this._ButtonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this._ButtonCancel.AutoSize = true;
     this._ButtonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this._ButtonCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._ButtonCancel.Location = new System.Drawing.Point(903, 6);
     this._ButtonCancel.Name = "_ButtonCancel";
     this._ButtonCancel.Size = new System.Drawing.Size(75, 30);
     this._ButtonCancel.TabIndex = 5;
     this._ButtonCancel.Text = "Cancel";
     this._ButtonCancel.UseVisualStyleBackColor = true;
     this._ButtonCancel.Click += new System.EventHandler(this._ButtonCancel_Click);
     //
     // _ButtonSave
     //
     this._ButtonSave.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this._ButtonSave.AutoSize = true;
     this._ButtonSave.Enabled = false;
     this._ButtonSave.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._ButtonSave.Location = new System.Drawing.Point(822, 6);
     this._ButtonSave.Name = "_ButtonSave";
     this._ButtonSave.Size = new System.Drawing.Size(75, 30);
     this._ButtonSave.TabIndex = 4;
     this._ButtonSave.Text = "Save";
     this._ButtonSave.UseVisualStyleBackColor = true;
     this._ButtonSave.Click += new System.EventHandler(this._ButtonSave_Click);
     //
     // _TextUsername
     //
     this._TextUsername.Location = new System.Drawing.Point(100, 80);
     this._TextUsername.Name = "_TextUsername";
     this._TextUsername.Size = new System.Drawing.Size(249, 23);
     this._TextUsername.TabIndex = 0;
     //
     // _LabelPassword
     //
     this._LabelPassword.AutoSize = true;
     this._LabelPassword.Location = new System.Drawing.Point(12, 110);
     this._LabelPassword.Name = "_LabelPassword";
     this._LabelPassword.Size = new System.Drawing.Size(60, 15);
     this._LabelPassword.TabIndex = 46;
     this._LabelPassword.Text = "Password:"******"_LabelUsername";
     this._LabelUsername.Size = new System.Drawing.Size(63, 15);
     this._LabelUsername.TabIndex = 45;
     this._LabelUsername.Text = "Username:"******"Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LabelAccountTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(153)))));
     this._LabelAccountTitle.Location = new System.Drawing.Point(8, 48);
     this._LabelAccountTitle.Name = "_LabelAccountTitle";
     this._LabelAccountTitle.Size = new System.Drawing.Size(39, 21);
     this._LabelAccountTitle.TabIndex = 47;
     this._LabelAccountTitle.Text = "Title";
     //
     // _LabelError
     //
     this._LabelError.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LabelError.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(38)))), ((int)(((byte)(30)))));
     this._LabelError.Location = new System.Drawing.Point(120, 138);
     this._LabelError.Name = "_LabelError";
     this._LabelError.Size = new System.Drawing.Size(229, 26);
     this._LabelError.TabIndex = 48;
     this._LabelError.Text = "An account with this username already exists. Please enter a different username.";
     //
     // _PictureExclamation
     //
     this._PictureExclamation.Location = new System.Drawing.Point(100, 138);
     this._PictureExclamation.MinimumSize = new System.Drawing.Size(16, 16);
     this._PictureExclamation.Name = "_PictureExclamation";
     this._PictureExclamation.Size = new System.Drawing.Size(16, 16);
     this._PictureExclamation.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this._PictureExclamation.TabIndex = 49;
     this._PictureExclamation.TabStop = false;
     //
     // _TextPassword
     //
     this._TextPassword.Location = new System.Drawing.Point(100, 110);
     this._TextPassword.Name = "_TextPassword";
     this._TextPassword.Size = new System.Drawing.Size(249, 23);
     this._TextPassword.TabIndex = 1;
     this._TextPassword.UseSystemPasswordChar = true;
     //
     // _LabelWarn
     //
     this._LabelWarn.Dock = System.Windows.Forms.DockStyle.Bottom;
     this._LabelWarn.ForeColor = System.Drawing.SystemColors.GrayText;
     this._LabelWarn.Location = new System.Drawing.Point(2, 580);
     this._LabelWarn.Name = "_LabelWarn";
     this._LabelWarn.Padding = new System.Windows.Forms.Padding(0, 0, 0, 4);
     this._LabelWarn.Size = new System.Drawing.Size(991, 24);
     this._LabelWarn.TabIndex = 52;
     this._LabelWarn.Text = "Clicking save will immediately save any changes made to this account. ";
     this._LabelWarn.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     //
     // _ButtonRemove
     //
     this._ButtonRemove.AutoSize = true;
     this._ButtonRemove.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this._ButtonRemove.Location = new System.Drawing.Point(100, 183);
     this._ButtonRemove.MinimumSize = new System.Drawing.Size(65, 23);
     this._ButtonRemove.Name = "_ButtonRemove";
     this._ButtonRemove.Size = new System.Drawing.Size(173, 30);
     this._ButtonRemove.TabIndex = 2;
     this._ButtonRemove.Text = "Remove Account";
     this._ButtonRemove.UseVisualStyleBackColor = true;
     this._ButtonRemove.Click += new System.EventHandler(this._ButtonRemove_Click);
     //
     // lineShape1
     //
     this.lineShape1.BorderColor = System.Drawing.Color.Red;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 0;
     this.lineShape1.X2 = 300;
     this.lineShape1.Y1 = 128;
     this.lineShape1.Y2 = 128;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(2, 45);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(991, 599);
     this.shapeContainer1.TabIndex = 56;
     this.shapeContainer1.TabStop = false;
     //
     // AccountPanel
     //
     this.Controls.Add(this._ButtonRemove);
     this.Controls.Add(this._LabelWarn);
     this.Controls.Add(this._TextPassword);
     this.Controls.Add(this._PanelAccountButtons);
     this.Controls.Add(this._PictureExclamation);
     this.Controls.Add(this._LabelAccountTitle);
     this.Controls.Add(this._LabelError);
     this.Controls.Add(this._TextUsername);
     this.Controls.Add(this._LabelPassword);
     this.Controls.Add(this._LabelUsername);
     this.Controls.Add(this.shapeContainer1);
     this.Name = "AccountPanel";
     this.Padding = new System.Windows.Forms.Padding(2, 45, 2, 2);
     this.Size = new System.Drawing.Size(995, 646);
     this._PanelAccountButtons.ResumeLayout(false);
     this._PanelAccountButtons.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this._PictureExclamation)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 8
0
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmExport));
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdClose = new System.Windows.Forms.Button();
			this.lblHeading = new System.Windows.Forms.Label();
			this.prgUpdate = new System.Windows.Forms.ProgressBar();
			this.Command3 = new System.Windows.Forms.Button();
			this.txtFile = new System.Windows.Forms.TextBox();
			this.cmdDlgOpen = new System.Windows.Forms.OpenFileDialog();
			this.Label2 = new System.Windows.Forms.Label();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Line1 });
			this.ShapeContainer1.Size = new System.Drawing.Size(512, 114);
			this.ShapeContainer1.TabIndex = 5;
			this.ShapeContainer1.TabStop = false;
			//
			//Line1
			//
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderWidth = 2;
			this.Line1.Name = "Line1";
			this.Line1.X1 = 4;
			this.Line1.X2 = 504;
			this.Line1.Y1 = 44;
			this.Line1.Y2 = 44;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdClose);
			this.picButtons.Controls.Add(this.lblHeading);
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.Name = "picButtons";
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Size = new System.Drawing.Size(512, 38);
			this.picButtons.TabIndex = 4;
			//
			//cmdClose
			//
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Location = new System.Drawing.Point(432, 2);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.TabIndex = 5;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//lblHeading
			//
			this.lblHeading.BackColor = System.Drawing.Color.Transparent;
			this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblHeading.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblHeading.ForeColor = System.Drawing.Color.White;
			this.lblHeading.Location = new System.Drawing.Point(12, 8);
			this.lblHeading.Name = "lblHeading";
			this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblHeading.Size = new System.Drawing.Size(407, 21);
			this.lblHeading.TabIndex = 6;
			this.lblHeading.Text = "HandHeld StockTake: (Item Barcode, Item Quantity)";
			//
			//prgUpdate
			//
			this.prgUpdate.Location = new System.Drawing.Point(84, 72);
			this.prgUpdate.Maximum = 1;
			this.prgUpdate.Name = "prgUpdate";
			this.prgUpdate.Size = new System.Drawing.Size(373, 33);
			this.prgUpdate.TabIndex = 3;
			//
			//Command3
			//
			this.Command3.BackColor = System.Drawing.SystemColors.Control;
			this.Command3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command3.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Command3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command3.Location = new System.Drawing.Point(472, 52);
			this.Command3.Name = "Command3";
			this.Command3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command3.Size = new System.Drawing.Size(35, 15);
			this.Command3.TabIndex = 2;
			this.Command3.Text = "...";
			this.Command3.UseVisualStyleBackColor = false;
			//
			//txtFile
			//
			this.txtFile.AcceptsReturn = true;
			this.txtFile.BackColor = System.Drawing.SystemColors.Window;
			this.txtFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtFile.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtFile.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtFile.Location = new System.Drawing.Point(84, 48);
			this.txtFile.MaxLength = 0;
			this.txtFile.Name = "txtFile";
			this.txtFile.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtFile.Size = new System.Drawing.Size(371, 17);
			this.txtFile.TabIndex = 0;
			//
			//Label2
			//
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Location = new System.Drawing.Point(8, 50);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(65, 15);
			this.Label2.TabIndex = 1;
			this.Label2.Text = "File path";
			//
			//frmExport
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.ClientSize = new System.Drawing.Size(512, 114);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.prgUpdate);
			this.Controls.Add(this.Command3);
			this.Controls.Add(this.txtFile);
			this.Controls.Add(this.Label2);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Icon = (System.Drawing.Icon)resources.GetObject("$this.Icon");
			this.Location = new System.Drawing.Point(3, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmExport";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Import";
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Ejemplo n.º 9
0
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.Line3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Line2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Frame3 = new System.Windows.Forms.GroupBox();
			this.cmdUndo = new System.Windows.Forms.Button();
			this.chkUndoPosOveride = new System.Windows.Forms.CheckBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.Command2 = new System.Windows.Forms.Button();
			this.Command1 = new System.Windows.Forms.Button();
			this.Frame2 = new System.Windows.Forms.GroupBox();
			this.cmdUpdate = new System.Windows.Forms.Button();
			this.chkDiscontinued = new System.Windows.Forms.CheckBox();
			this.chkDisable = new System.Windows.Forms.CheckBox();
			this._OprBarcode_1 = new System.Windows.Forms.RadioButton();
			this._OprBarcode_0 = new System.Windows.Forms.RadioButton();
			this._OprBarcode_2 = new System.Windows.Forms.RadioButton();
			this.chkSerialTracking = new System.Windows.Forms.CheckBox();
			this.chkPosOveride = new System.Windows.Forms.CheckBox();
			this.chkAllowFractions = new System.Windows.Forms.CheckBox();
			this.chkNonWeigted = new System.Windows.Forms.CheckBox();
			this.chkScale = new System.Windows.Forms.CheckBox();
			this.cmbUpPrinting = new _4PosBackOffice.NET.myDataGridView();
			this.cmpUpSupplier = new _4PosBackOffice.NET.myDataGridView();
			this.cmbUpPricing = new _4PosBackOffice.NET.myDataGridView();
			this.cmbReportGroups = new _4PosBackOffice.NET.myDataGridView();
			this.Label1 = new System.Windows.Forms.Label();
			this.Label6 = new System.Windows.Forms.Label();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.Label3 = new System.Windows.Forms.Label();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.Command3 = new System.Windows.Forms.Button();
			this.lblChanges = new System.Windows.Forms.Label();
			this.lblHeading = new System.Windows.Forms.Label();
			this.Frame3.SuspendLayout();
			this.picButtons.SuspendLayout();
			this.Frame2.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)this.cmbUpPrinting).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmpUpSupplier).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbUpPricing).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbReportGroups).BeginInit();
			this.Frame1.SuspendLayout();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 13);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
				this.Line3,
				this.Line2,
				this.Line1
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(441, 312);
			this.ShapeContainer1.TabIndex = 28;
			this.ShapeContainer1.TabStop = false;
			//
			//Line3
			//
			this.Line3.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line3.BorderWidth = 2;
			this.Line3.Name = "Line3";
			this.Line3.X1 = 6;
			this.Line3.X2 = 432;
			this.Line3.Y1 = 251;
			this.Line3.Y2 = 251;
			//
			//Line2
			//
			this.Line2.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line2.BorderWidth = 2;
			this.Line2.Name = "Line2";
			this.Line2.X1 = 8;
			this.Line2.X2 = 434;
			this.Line2.Y1 = 96;
			this.Line2.Y2 = 96;
			//
			//Line1
			//
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderWidth = 2;
			this.Line1.Name = "Line1";
			this.Line1.X1 = 6;
			this.Line1.X2 = 434;
			this.Line1.Y1 = 139;
			this.Line1.Y2 = 139;
			//
			//Frame3
			//
			this.Frame3.BackColor = System.Drawing.SystemColors.Control;
			this.Frame3.Controls.Add(this.cmdUndo);
			this.Frame3.Controls.Add(this.chkUndoPosOveride);
			this.Frame3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame3.Location = new System.Drawing.Point(6, 496);
			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(441, 49);
			this.Frame3.TabIndex = 28;
			this.Frame3.TabStop = false;
			this.Frame3.Text = "Undo Changes";
			//
			//cmdUndo
			//
			this.cmdUndo.BackColor = System.Drawing.SystemColors.Control;
			this.cmdUndo.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdUndo.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdUndo.Location = new System.Drawing.Point(184, 16);
			this.cmdUndo.Name = "cmdUndo";
			this.cmdUndo.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdUndo.Size = new System.Drawing.Size(95, 27);
			this.cmdUndo.TabIndex = 30;
			this.cmdUndo.Text = "Undo Update";
			this.cmdUndo.UseVisualStyleBackColor = false;
			//
			//chkUndoPosOveride
			//
			this.chkUndoPosOveride.BackColor = System.Drawing.SystemColors.Control;
			this.chkUndoPosOveride.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkUndoPosOveride.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkUndoPosOveride.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkUndoPosOveride.Location = new System.Drawing.Point(8, 21);
			this.chkUndoPosOveride.Name = "chkUndoPosOveride";
			this.chkUndoPosOveride.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkUndoPosOveride.Size = new System.Drawing.Size(171, 16);
			this.chkUndoPosOveride.TabIndex = 29;
			this.chkUndoPosOveride.Text = "Undo POS Price Overide (SQ)";
			this.chkUndoPosOveride.UseVisualStyleBackColor = false;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.Command2);
			this.picButtons.Controls.Add(this.Command1);
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.Name = "picButtons";
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Size = new System.Drawing.Size(452, 38);
			this.picButtons.TabIndex = 20;
			//
			//Command2
			//
			this.Command2.BackColor = System.Drawing.SystemColors.Control;
			this.Command2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command2.Location = new System.Drawing.Point(360, 4);
			this.Command2.Name = "Command2";
			this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command2.Size = new System.Drawing.Size(83, 27);
			this.Command2.TabIndex = 22;
			this.Command2.Text = "&Exit";
			this.Command2.UseVisualStyleBackColor = false;
			//
			//Command1
			//
			this.Command1.BackColor = System.Drawing.SystemColors.Control;
			this.Command1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command1.Location = new System.Drawing.Point(4, 4);
			this.Command1.Name = "Command1";
			this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command1.Size = new System.Drawing.Size(83, 27);
			this.Command1.TabIndex = 21;
			this.Command1.Text = "Global Cost";
			this.Command1.UseVisualStyleBackColor = false;
			//
			//Frame2
			//
			this.Frame2.BackColor = System.Drawing.SystemColors.Control;
			this.Frame2.Controls.Add(this.cmdUpdate);
			this.Frame2.Controls.Add(this.chkDiscontinued);
			this.Frame2.Controls.Add(this.chkDisable);
			this.Frame2.Controls.Add(this._OprBarcode_1);
			this.Frame2.Controls.Add(this._OprBarcode_0);
			this.Frame2.Controls.Add(this._OprBarcode_2);
			this.Frame2.Controls.Add(this.chkSerialTracking);
			this.Frame2.Controls.Add(this.chkPosOveride);
			this.Frame2.Controls.Add(this.chkAllowFractions);
			this.Frame2.Controls.Add(this.chkNonWeigted);
			this.Frame2.Controls.Add(this.chkScale);
			this.Frame2.Controls.Add(this.cmbUpPrinting);
			this.Frame2.Controls.Add(this.cmpUpSupplier);
			this.Frame2.Controls.Add(this.cmbUpPricing);
			this.Frame2.Controls.Add(this.cmbReportGroups);
			this.Frame2.Controls.Add(this.Label1);
			this.Frame2.Controls.Add(this.Label6);
			this.Frame2.Controls.Add(this.Label5);
			this.Frame2.Controls.Add(this.Label4);
			this.Frame2.Controls.Add(this.Label3);
			this.Frame2.Controls.Add(this.ShapeContainer1);
			this.Frame2.Enabled = false;
			this.Frame2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame2.Location = new System.Drawing.Point(6, 166);
			this.Frame2.Name = "Frame2";
			this.Frame2.Padding = new System.Windows.Forms.Padding(0);
			this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame2.Size = new System.Drawing.Size(441, 325);
			this.Frame2.TabIndex = 12;
			this.Frame2.TabStop = false;
			this.Frame2.Text = "Field(s) To Update";
			//
			//cmdUpdate
			//
			this.cmdUpdate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdUpdate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdUpdate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdUpdate.Location = new System.Drawing.Point(184, 280);
			this.cmdUpdate.Name = "cmdUpdate";
			this.cmdUpdate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdUpdate.Size = new System.Drawing.Size(95, 27);
			this.cmdUpdate.TabIndex = 19;
			this.cmdUpdate.Text = "Update";
			this.cmdUpdate.UseVisualStyleBackColor = false;
			//
			//chkDiscontinued
			//
			this.chkDiscontinued.BackColor = System.Drawing.SystemColors.Control;
			this.chkDiscontinued.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkDiscontinued.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkDiscontinued.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkDiscontinued.Location = new System.Drawing.Point(348, 272);
			this.chkDiscontinued.Name = "chkDiscontinued";
			this.chkDiscontinued.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkDiscontinued.Size = new System.Drawing.Size(83, 17);
			this.chkDiscontinued.TabIndex = 11;
			this.chkDiscontinued.Text = "Discontinued";
			this.chkDiscontinued.UseVisualStyleBackColor = false;
			//
			//chkDisable
			//
			this.chkDisable.BackColor = System.Drawing.SystemColors.Control;
			this.chkDisable.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkDisable.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkDisable.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkDisable.Location = new System.Drawing.Point(6, 272);
			this.chkDisable.Name = "chkDisable";
			this.chkDisable.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkDisable.Size = new System.Drawing.Size(71, 17);
			this.chkDisable.TabIndex = 10;
			this.chkDisable.Text = "Disabled";
			this.chkDisable.UseVisualStyleBackColor = false;
			//
			//_OprBarcode_1
			//
			this._OprBarcode_1.BackColor = System.Drawing.SystemColors.Control;
			this._OprBarcode_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._OprBarcode_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._OprBarcode_1.Location = new System.Drawing.Point(128, 130);
			this._OprBarcode_1.Name = "_OprBarcode_1";
			this._OprBarcode_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._OprBarcode_1.Size = new System.Drawing.Size(71, 19);
			this._OprBarcode_1.TabIndex = 7;
			this._OprBarcode_1.TabStop = true;
			this._OprBarcode_1.Text = "Barcode";
			this._OprBarcode_1.UseVisualStyleBackColor = false;
			//
			//_OprBarcode_0
			//
			this._OprBarcode_0.BackColor = System.Drawing.SystemColors.Control;
			this._OprBarcode_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._OprBarcode_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._OprBarcode_0.Location = new System.Drawing.Point(6, 130);
			this._OprBarcode_0.Name = "_OprBarcode_0";
			this._OprBarcode_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._OprBarcode_0.Size = new System.Drawing.Size(69, 19);
			this._OprBarcode_0.TabIndex = 6;
			this._OprBarcode_0.TabStop = true;
			this._OprBarcode_0.Text = "Shelf";
			this._OprBarcode_0.UseVisualStyleBackColor = false;
			//
			//_OprBarcode_2
			//
			this._OprBarcode_2.BackColor = System.Drawing.SystemColors.Control;
			this._OprBarcode_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._OprBarcode_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._OprBarcode_2.Location = new System.Drawing.Point(252, 130);
			this._OprBarcode_2.Name = "_OprBarcode_2";
			this._OprBarcode_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._OprBarcode_2.Size = new System.Drawing.Size(47, 19);
			this._OprBarcode_2.TabIndex = 5;
			this._OprBarcode_2.TabStop = true;
			this._OprBarcode_2.Text = "None";
			this._OprBarcode_2.UseVisualStyleBackColor = false;
			//
			//chkSerialTracking
			//
			this.chkSerialTracking.BackColor = System.Drawing.SystemColors.Control;
			this.chkSerialTracking.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkSerialTracking.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkSerialTracking.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkSerialTracking.Location = new System.Drawing.Point(8, 86);
			this.chkSerialTracking.Name = "chkSerialTracking";
			this.chkSerialTracking.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkSerialTracking.Size = new System.Drawing.Size(211, 21);
			this.chkSerialTracking.TabIndex = 4;
			this.chkSerialTracking.Text = "Serial Tracking ";
			this.chkSerialTracking.UseVisualStyleBackColor = false;
			//
			//chkPosOveride
			//
			this.chkPosOveride.BackColor = System.Drawing.SystemColors.Control;
			this.chkPosOveride.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkPosOveride.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkPosOveride.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkPosOveride.Location = new System.Drawing.Point(8, 68);
			this.chkPosOveride.Name = "chkPosOveride";
			this.chkPosOveride.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkPosOveride.Size = new System.Drawing.Size(211, 21);
			this.chkPosOveride.TabIndex = 3;
			this.chkPosOveride.Text = "POS Price Overide (SQ)";
			this.chkPosOveride.UseVisualStyleBackColor = false;
			//
			//chkAllowFractions
			//
			this.chkAllowFractions.BackColor = System.Drawing.SystemColors.Control;
			this.chkAllowFractions.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkAllowFractions.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkAllowFractions.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkAllowFractions.Location = new System.Drawing.Point(8, 52);
			this.chkAllowFractions.Name = "chkAllowFractions";
			this.chkAllowFractions.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkAllowFractions.Size = new System.Drawing.Size(211, 20);
			this.chkAllowFractions.TabIndex = 2;
			this.chkAllowFractions.Text = "Allow Fractions";
			this.chkAllowFractions.UseVisualStyleBackColor = false;
			//
			//chkNonWeigted
			//
			this.chkNonWeigted.BackColor = System.Drawing.SystemColors.Control;
			this.chkNonWeigted.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkNonWeigted.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkNonWeigted.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkNonWeigted.Location = new System.Drawing.Point(8, 34);
			this.chkNonWeigted.Name = "chkNonWeigted";
			this.chkNonWeigted.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkNonWeigted.Size = new System.Drawing.Size(211, 17);
			this.chkNonWeigted.TabIndex = 1;
			this.chkNonWeigted.Text = "This is a scale item Non-Weigted";
			this.chkNonWeigted.UseVisualStyleBackColor = false;
			//
			//chkScale
			//
			this.chkScale.BackColor = System.Drawing.SystemColors.Control;
			this.chkScale.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkScale.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkScale.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkScale.Location = new System.Drawing.Point(8, 16);
			this.chkScale.Name = "chkScale";
			this.chkScale.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkScale.Size = new System.Drawing.Size(211, 18);
			this.chkScale.TabIndex = 0;
			this.chkScale.Text = "This Is a Scale Product ";
			this.chkScale.UseVisualStyleBackColor = false;
			//
			//cmbUpPrinting
			//
			this.cmbUpPrinting.AllowAddNew = true;
			this.cmbUpPrinting.BoundText = "";
			this.cmbUpPrinting.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbUpPrinting.Col = 0;
			this.cmbUpPrinting.CtlText = "";
			this.cmbUpPrinting.DataField = null;
			this.cmbUpPrinting.Location = new System.Drawing.Point(156, 210);
			this.cmbUpPrinting.Name = "cmbUpPrinting";
			this.cmbUpPrinting.row = 0;
			this.cmbUpPrinting.Size = new System.Drawing.Size(275, 21);
			this.cmbUpPrinting.TabIndex = 8;
			this.cmbUpPrinting.TopRow = 0;
			//
			//cmpUpSupplier
			//
			this.cmpUpSupplier.AllowAddNew = true;
			this.cmpUpSupplier.BoundText = "";
			this.cmpUpSupplier.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmpUpSupplier.Col = 0;
			this.cmpUpSupplier.CtlText = "";
			this.cmpUpSupplier.DataField = null;
			this.cmpUpSupplier.Location = new System.Drawing.Point(156, 162);
			this.cmpUpSupplier.Name = "cmpUpSupplier";
			this.cmpUpSupplier.row = 0;
			this.cmpUpSupplier.Size = new System.Drawing.Size(275, 21);
			this.cmpUpSupplier.TabIndex = 15;
			this.cmpUpSupplier.TopRow = 0;
			//
			//cmbUpPricing
			//
			this.cmbUpPricing.AllowAddNew = true;
			this.cmbUpPricing.BoundText = "";
			this.cmbUpPricing.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbUpPricing.Col = 0;
			this.cmbUpPricing.CtlText = "";
			this.cmbUpPricing.DataField = null;
			this.cmbUpPricing.Location = new System.Drawing.Point(156, 186);
			this.cmbUpPricing.Name = "cmbUpPricing";
			this.cmbUpPricing.row = 0;
			this.cmbUpPricing.Size = new System.Drawing.Size(275, 21);
			this.cmbUpPricing.TabIndex = 17;
			this.cmbUpPricing.TopRow = 0;
			//
			//cmbReportGroups
			//
			this.cmbReportGroups.AllowAddNew = true;
			this.cmbReportGroups.BoundText = "";
			this.cmbReportGroups.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbReportGroups.Col = 0;
			this.cmbReportGroups.CtlText = "";
			this.cmbReportGroups.DataField = null;
			this.cmbReportGroups.Location = new System.Drawing.Point(156, 234);
			this.cmbReportGroups.Name = "cmbReportGroups";
			this.cmbReportGroups.row = 0;
			this.cmbReportGroups.Size = new System.Drawing.Size(275, 21);
			this.cmbReportGroups.TabIndex = 26;
			this.cmbReportGroups.TopRow = 0;
			//
			//Label1
			//
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(38, 238);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(113, 13);
			this.Label1.TabIndex = 27;
			this.Label1.Text = "Report Groups:";
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label6
			//
			this.Label6.BackColor = System.Drawing.SystemColors.Control;
			this.Label6.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label6.Location = new System.Drawing.Point(38, 164);
			this.Label6.Name = "Label6";
			this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label6.Size = new System.Drawing.Size(113, 17);
			this.Label6.TabIndex = 18;
			this.Label6.Text = "New Supplier :";
			this.Label6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label5
			//
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label5.Location = new System.Drawing.Point(38, 188);
			this.Label5.Name = "Label5";
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.Size = new System.Drawing.Size(113, 17);
			this.Label5.TabIndex = 16;
			this.Label5.Text = "New Pricing Group :";
			this.Label5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label4
			//
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Location = new System.Drawing.Point(8, 112);
			this.Label4.Name = "Label4";
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.Size = new System.Drawing.Size(147, 13);
			this.Label4.TabIndex = 14;
			this.Label4.Text = "Shelf && Barcode Printing";
			//
			//Label3
			//
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Location = new System.Drawing.Point(38, 214);
			this.Label3.Name = "Label3";
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.Size = new System.Drawing.Size(113, 13);
			this.Label3.TabIndex = 13;
			this.Label3.Text = "New Printing Location :";
			this.Label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Frame1
			//
			this.Frame1.BackColor = System.Drawing.SystemColors.Control;
			this.Frame1.Controls.Add(this.Command3);
			this.Frame1.Controls.Add(this.lblChanges);
			this.Frame1.Controls.Add(this.lblHeading);
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.Location = new System.Drawing.Point(6, 44);
			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(441, 119);
			this.Frame1.TabIndex = 9;
			this.Frame1.TabStop = false;
			this.Frame1.Text = "1. Filter";
			//
			//Command3
			//
			this.Command3.BackColor = System.Drawing.SystemColors.Control;
			this.Command3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command3.Location = new System.Drawing.Point(356, 16);
			this.Command3.Name = "Command3";
			this.Command3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command3.Size = new System.Drawing.Size(79, 37);
			this.Command3.TabIndex = 23;
			this.Command3.Text = "Filter";
			this.Command3.UseVisualStyleBackColor = false;
			//
			//lblChanges
			//
			this.lblChanges.BackColor = System.Drawing.SystemColors.Window;
			this.lblChanges.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lblChanges.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblChanges.ForeColor = System.Drawing.Color.Red;
			this.lblChanges.Location = new System.Drawing.Point(12, 94);
			this.lblChanges.Name = "lblChanges";
			this.lblChanges.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblChanges.Size = new System.Drawing.Size(339, 19);
			this.lblChanges.TabIndex = 25;
			this.lblChanges.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			//
			//lblHeading
			//
			this.lblHeading.BackColor = System.Drawing.SystemColors.Control;
			this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblHeading.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblHeading.Location = new System.Drawing.Point(12, 16);
			this.lblHeading.Name = "lblHeading";
			this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblHeading.Size = new System.Drawing.Size(339, 76);
			this.lblHeading.TabIndex = 24;
			this.lblHeading.Text = "Using the \"Stock Item Selector\" .....";
			//
			//frmGlobalFilter
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.ClientSize = new System.Drawing.Size(452, 545);
			this.ControlBox = false;
			this.Controls.Add(this.Frame3);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.Frame2);
			this.Controls.Add(this.Frame1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.ForeColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(128)), Convert.ToInt32(Convert.ToByte(128)), Convert.ToInt32(Convert.ToByte(128)));
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(4, 23);
			this.Name = "frmGlobalFilter";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Global Update";
			this.Frame3.ResumeLayout(false);
			this.picButtons.ResumeLayout(false);
			this.Frame2.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)this.cmbUpPrinting).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmpUpSupplier).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbUpPricing).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbReportGroups).EndInit();
			this.Frame1.ResumeLayout(false);
			this.ResumeLayout(false);

		}
Ejemplo n.º 10
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(FinancialFees));
     this.EnterPatiendId = new System.Windows.Forms.TextBox();
     this.EnterPatientFirstName = new System.Windows.Forms.TextBox();
     this.EnterpatientLastName = new System.Windows.Forms.TextBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.rectangleShape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.label1 = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.updateFinancialFeesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label6 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.EnterPatientPhoneNumber = new System.Windows.Forms.TextBox();
     this.Vip1photo = new System.Windows.Forms.PictureBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.PatientPhoneNumber = new System.Windows.Forms.TextBox();
     this.PatientProfileLastName = new System.Windows.Forms.TextBox();
     this.PatientProfileFirstName = new System.Windows.Forms.TextBox();
     this.PatientProfilePatientId = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.patient = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.EnterPatientAddress = new System.Windows.Forms.TextBox();
     this.label46 = new System.Windows.Forms.Label();
     this.button4 = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.SecondCost = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.SecondDes = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.FirstCost = new System.Windows.Forms.TextBox();
     this.FirstDes = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.FourthCost = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.FourthDes = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.ThirdCost = new System.Windows.Forms.TextBox();
     this.ThirdDes = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.EighthCost = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.EighthDes = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.SeventhCost = new System.Windows.Forms.TextBox();
     this.SeventhDes = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.SixthCost = new System.Windows.Forms.TextBox();
     this.label26 = new System.Windows.Forms.Label();
     this.SixthDes = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.FifthCost = new System.Windows.Forms.TextBox();
     this.FifthDes = new System.Windows.Forms.TextBox();
     this.label36 = new System.Windows.Forms.Label();
     this.UnpaidAmount = new System.Windows.Forms.TextBox();
     this.textBox17 = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.PaidAmount = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.textBox19 = new System.Windows.Forms.TextBox();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.returnToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).BeginInit();
     this.SuspendLayout();
     //
     // EnterPatiendId
     //
     this.EnterPatiendId.Location = new System.Drawing.Point(231, 80);
     this.EnterPatiendId.Name = "EnterPatiendId";
     this.EnterPatiendId.Size = new System.Drawing.Size(135, 22);
     this.EnterPatiendId.TabIndex = 1;
     //
     // EnterPatientFirstName
     //
     this.EnterPatientFirstName.Location = new System.Drawing.Point(231, 160);
     this.EnterPatientFirstName.Name = "EnterPatientFirstName";
     this.EnterPatientFirstName.Size = new System.Drawing.Size(135, 22);
     this.EnterPatientFirstName.TabIndex = 3;
     //
     // EnterpatientLastName
     //
     this.EnterpatientLastName.Location = new System.Drawing.Point(231, 233);
     this.EnterpatientLastName.Name = "EnterpatientLastName";
     this.EnterpatientLastName.Size = new System.Drawing.Size(135, 22);
     this.EnterpatientLastName.TabIndex = 4;
     this.EnterpatientLastName.TextChanged += new System.EventHandler(this.NumberOfBedsInTheRoom_TextChanged);
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.rectangleShape3,
     this.rectangleShape2,
     this.rectangleShape1,
     this.lineShape2,
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1008, 682);
     this.shapeContainer1.TabIndex = 12;
     this.shapeContainer1.TabStop = false;
     //
     // rectangleShape3
     //
     this.rectangleShape3.Location = new System.Drawing.Point(673, 751);
     this.rectangleShape3.Name = "rectangleShape3";
     this.rectangleShape3.Size = new System.Drawing.Size(329, 1);
     //
     // rectangleShape2
     //
     this.rectangleShape2.Location = new System.Drawing.Point(414, 748);
     this.rectangleShape2.Name = "rectangleShape2";
     this.rectangleShape2.Size = new System.Drawing.Size(224, 1);
     //
     // rectangleShape1
     //
     this.rectangleShape1.Location = new System.Drawing.Point(2, 453);
     this.rectangleShape1.Name = "rectangleShape1";
     this.rectangleShape1.Size = new System.Drawing.Size(615, 298);
     //
     // lineShape2
     //
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.X1 = 430;
     this.lineShape2.X2 = 431;
     this.lineShape2.Y1 = -1;
     this.lineShape2.Y2 = 452;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 1223;
     this.lineShape1.X2 = 1207;
     this.lineShape1.Y1 = 499;
     this.lineShape1.Y2 = 443;
     this.lineShape1.Click += new System.EventHandler(this.lineShape1_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(711, 39);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(125, 23);
     this.label1.TabIndex = 13;
     this.label1.Text = "Financial fees";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.returnToolStripMenuItem,
     this.updateToolStripMenuItem,
     this.updateFinancialFeesToolStripMenuItem,
     this.exitToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1008, 24);
     this.menuStrip1.TabIndex = 35;
     this.menuStrip1.Text = "menuStrip1";
     //
     // updateToolStripMenuItem
     //
     this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
     this.updateToolStripMenuItem.Size = new System.Drawing.Size(115, 20);
     this.updateToolStripMenuItem.Text = "Add Financial fees";
     this.updateToolStripMenuItem.Click += new System.EventHandler(this.updateToolStripMenuItem_Click);
     //
     // updateFinancialFeesToolStripMenuItem
     //
     this.updateFinancialFeesToolStripMenuItem.Name = "updateFinancialFeesToolStripMenuItem";
     this.updateFinancialFeesToolStripMenuItem.Size = new System.Drawing.Size(131, 20);
     this.updateFinancialFeesToolStripMenuItem.Text = "Update Financial fees";
     this.updateFinancialFeesToolStripMenuItem.Click += new System.EventHandler(this.updateFinancialFeesToolStripMenuItem_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 462);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(131, 23);
     this.label6.TabIndex = 36;
     this.label6.Text = "Patient Profile";
     this.label6.Click += new System.EventHandler(this.label6_Click);
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(10, 80);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(106, 19);
     this.label28.TabIndex = 79;
     this.label28.Text = "Enter Patient ID";
     this.label28.Click += new System.EventHandler(this.label28_Click);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(12, 163);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(122, 19);
     this.label29.TabIndex = 80;
     this.label29.Text = "Patient First Name";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(12, 315);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(141, 19);
     this.label30.TabIndex = 81;
     this.label30.Text = "Patient Phone number";
     this.label30.Click += new System.EventHandler(this.label30_Click);
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(15, 388);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(101, 19);
     this.label31.TabIndex = 82;
     this.label31.Text = "Patient address";
     this.label31.Click += new System.EventHandler(this.label31_Click);
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(12, 363);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(0, 19);
     this.label32.TabIndex = 83;
     //
     // EnterPatientPhoneNumber
     //
     this.EnterPatientPhoneNumber.Location = new System.Drawing.Point(231, 315);
     this.EnterPatientPhoneNumber.Name = "EnterPatientPhoneNumber";
     this.EnterPatientPhoneNumber.Size = new System.Drawing.Size(135, 22);
     this.EnterPatientPhoneNumber.TabIndex = 10;
     //
     // Vip1photo
     //
     this.Vip1photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip1photo.Image")));
     this.Vip1photo.Location = new System.Drawing.Point(456, 540);
     this.Vip1photo.Name = "Vip1photo";
     this.Vip1photo.Size = new System.Drawing.Size(81, 88);
     this.Vip1photo.TabIndex = 95;
     this.Vip1photo.TabStop = false;
     this.Vip1photo.Click += new System.EventHandler(this.pictureBox7_Click);
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(15, 547);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(122, 19);
     this.label7.TabIndex = 113;
     this.label7.Text = "Patient First Name";
     this.label7.Click += new System.EventHandler(this.label7_Click);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(15, 648);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(141, 19);
     this.label8.TabIndex = 112;
     this.label8.Text = "Patient Phone number";
     this.label8.Click += new System.EventHandler(this.label8_Click);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(15, 496);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(73, 19);
     this.label9.TabIndex = 111;
     this.label9.Text = "Patient ID:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(15, 596);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(121, 19);
     this.label10.TabIndex = 110;
     this.label10.Text = "Patient Last Name";
     this.label10.Click += new System.EventHandler(this.label10_Click);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(425, 493);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(147, 19);
     this.label11.TabIndex = 109;
     this.label11.Text = "Patient personal photo:";
     //
     // PatientPhoneNumber
     //
     this.PatientPhoneNumber.Location = new System.Drawing.Point(231, 648);
     this.PatientPhoneNumber.Name = "PatientPhoneNumber";
     this.PatientPhoneNumber.Size = new System.Drawing.Size(135, 22);
     this.PatientPhoneNumber.TabIndex = 108;
     this.PatientPhoneNumber.TextChanged += new System.EventHandler(this.PatientPhoneNumber_TextChanged);
     //
     // PatientProfileLastName
     //
     this.PatientProfileLastName.Location = new System.Drawing.Point(231, 596);
     this.PatientProfileLastName.Name = "PatientProfileLastName";
     this.PatientProfileLastName.Size = new System.Drawing.Size(135, 22);
     this.PatientProfileLastName.TabIndex = 107;
     //
     // PatientProfileFirstName
     //
     this.PatientProfileFirstName.Location = new System.Drawing.Point(231, 547);
     this.PatientProfileFirstName.Name = "PatientProfileFirstName";
     this.PatientProfileFirstName.Size = new System.Drawing.Size(135, 22);
     this.PatientProfileFirstName.TabIndex = 106;
     this.PatientProfileFirstName.TextChanged += new System.EventHandler(this.textBox15_TextChanged);
     //
     // PatientProfilePatientId
     //
     this.PatientProfilePatientId.Location = new System.Drawing.Point(231, 493);
     this.PatientProfilePatientId.Name = "PatientProfilePatientId";
     this.PatientProfilePatientId.Size = new System.Drawing.Size(135, 22);
     this.PatientProfilePatientId.TabIndex = 105;
     this.PatientProfilePatientId.TextChanged += new System.EventHandler(this.vip1RoomIdText_TextChanged);
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.Location = new System.Drawing.Point(36, 123);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(31, 19);
     this.label41.TabIndex = 115;
     this.label41.Text = "OR";
     this.label41.Click += new System.EventHandler(this.label41_Click);
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Location = new System.Drawing.Point(36, 203);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(31, 19);
     this.label42.TabIndex = 116;
     this.label42.Text = "OR";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.Location = new System.Drawing.Point(36, 275);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(31, 19);
     this.label43.TabIndex = 117;
     this.label43.Text = "OR";
     //
     // patient
     //
     this.patient.AutoSize = true;
     this.patient.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.patient.Location = new System.Drawing.Point(12, 233);
     this.patient.Name = "patient";
     this.patient.Size = new System.Drawing.Size(121, 19);
     this.patient.TabIndex = 118;
     this.patient.Text = "Patient Last Name";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.Location = new System.Drawing.Point(36, 358);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(31, 19);
     this.label45.TabIndex = 119;
     this.label45.Text = "OR";
     //
     // EnterPatientAddress
     //
     this.EnterPatientAddress.Location = new System.Drawing.Point(231, 385);
     this.EnterPatientAddress.Name = "EnterPatientAddress";
     this.EnterPatientAddress.Size = new System.Drawing.Size(135, 22);
     this.EnterPatientAddress.TabIndex = 120;
     this.EnterPatientAddress.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label46.Location = new System.Drawing.Point(112, 38);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(129, 23);
     this.label46.TabIndex = 121;
     this.label46.Text = "Check identity";
     //
     // button4
     //
     this.button4.Location = new System.Drawing.Point(299, 427);
     this.button4.Name = "button4";
     this.button4.Size = new System.Drawing.Size(122, 23);
     this.button4.TabIndex = 134;
     this.button4.Text = "Enter";
     this.button4.UseVisualStyleBackColor = true;
     this.button4.Click += new System.EventHandler(this.button4_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(752, 137);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(149, 19);
     this.label12.TabIndex = 146;
     this.label12.Text = "Cost of the Description";
     //
     // SecondCost
     //
     this.SecondCost.Location = new System.Drawing.Point(901, 140);
     this.SecondCost.Name = "SecondCost";
     this.SecondCost.Size = new System.Drawing.Size(95, 22);
     this.SecondCost.TabIndex = 145;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(596, 140);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(0, 19);
     this.label3.TabIndex = 144;
     //
     // SecondDes
     //
     this.SecondDes.Location = new System.Drawing.Point(596, 137);
     this.SecondDes.Name = "SecondDes";
     this.SecondDes.Size = new System.Drawing.Size(150, 22);
     this.SecondDes.TabIndex = 143;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(433, 140);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(139, 19);
     this.label4.TabIndex = 142;
     this.label4.Text = "2. Description Name ";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(752, 89);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(149, 19);
     this.label33.TabIndex = 141;
     this.label33.Text = "Cost of the Description";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(596, 92);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(0, 19);
     this.label24.TabIndex = 140;
     //
     // FirstCost
     //
     this.FirstCost.Location = new System.Drawing.Point(901, 92);
     this.FirstCost.Name = "FirstCost";
     this.FirstCost.Size = new System.Drawing.Size(95, 22);
     this.FirstCost.TabIndex = 139;
     //
     // FirstDes
     //
     this.FirstDes.Location = new System.Drawing.Point(596, 89);
     this.FirstDes.Name = "FirstDes";
     this.FirstDes.Size = new System.Drawing.Size(150, 22);
     this.FirstDes.TabIndex = 138;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(433, 92);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(139, 19);
     this.label2.TabIndex = 137;
     this.label2.Text = "1. Description Name ";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(752, 233);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(149, 19);
     this.label5.TabIndex = 156;
     this.label5.Text = "Cost of the Description";
     //
     // FourthCost
     //
     this.FourthCost.Location = new System.Drawing.Point(901, 236);
     this.FourthCost.Name = "FourthCost";
     this.FourthCost.Size = new System.Drawing.Size(95, 22);
     this.FourthCost.TabIndex = 155;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(596, 236);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(0, 19);
     this.label13.TabIndex = 154;
     //
     // FourthDes
     //
     this.FourthDes.Location = new System.Drawing.Point(596, 233);
     this.FourthDes.Name = "FourthDes";
     this.FourthDes.Size = new System.Drawing.Size(150, 22);
     this.FourthDes.TabIndex = 153;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(433, 236);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(139, 19);
     this.label14.TabIndex = 152;
     this.label14.Text = "4. Description Name ";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(752, 185);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(149, 19);
     this.label15.TabIndex = 151;
     this.label15.Text = "Cost of the Description";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(596, 188);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(0, 19);
     this.label16.TabIndex = 150;
     //
     // ThirdCost
     //
     this.ThirdCost.Location = new System.Drawing.Point(901, 188);
     this.ThirdCost.Name = "ThirdCost";
     this.ThirdCost.Size = new System.Drawing.Size(95, 22);
     this.ThirdCost.TabIndex = 149;
     //
     // ThirdDes
     //
     this.ThirdDes.Location = new System.Drawing.Point(596, 185);
     this.ThirdDes.Name = "ThirdDes";
     this.ThirdDes.Size = new System.Drawing.Size(150, 22);
     this.ThirdDes.TabIndex = 148;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(433, 188);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(139, 19);
     this.label17.TabIndex = 147;
     this.label17.Text = "3. Description Name ";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(752, 428);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(149, 19);
     this.label18.TabIndex = 176;
     this.label18.Text = "Cost of the Description";
     //
     // EighthCost
     //
     this.EighthCost.Location = new System.Drawing.Point(901, 431);
     this.EighthCost.Name = "EighthCost";
     this.EighthCost.Size = new System.Drawing.Size(95, 22);
     this.EighthCost.TabIndex = 175;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(596, 431);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(0, 19);
     this.label19.TabIndex = 174;
     //
     // EighthDes
     //
     this.EighthDes.Location = new System.Drawing.Point(596, 428);
     this.EighthDes.Name = "EighthDes";
     this.EighthDes.Size = new System.Drawing.Size(150, 22);
     this.EighthDes.TabIndex = 173;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(433, 431);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(139, 19);
     this.label20.TabIndex = 172;
     this.label20.Text = "8. Description Name ";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(752, 380);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(149, 19);
     this.label21.TabIndex = 171;
     this.label21.Text = "Cost of the Description";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(596, 383);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(0, 19);
     this.label22.TabIndex = 170;
     //
     // SeventhCost
     //
     this.SeventhCost.Location = new System.Drawing.Point(901, 383);
     this.SeventhCost.Name = "SeventhCost";
     this.SeventhCost.Size = new System.Drawing.Size(95, 22);
     this.SeventhCost.TabIndex = 169;
     //
     // SeventhDes
     //
     this.SeventhDes.Location = new System.Drawing.Point(596, 380);
     this.SeventhDes.Name = "SeventhDes";
     this.SeventhDes.Size = new System.Drawing.Size(150, 22);
     this.SeventhDes.TabIndex = 168;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.Location = new System.Drawing.Point(433, 383);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(139, 19);
     this.label23.TabIndex = 167;
     this.label23.Text = "7. Description Name ";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(752, 332);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(149, 19);
     this.label25.TabIndex = 166;
     this.label25.Text = "Cost of the Description";
     //
     // SixthCost
     //
     this.SixthCost.Location = new System.Drawing.Point(901, 335);
     this.SixthCost.Name = "SixthCost";
     this.SixthCost.Size = new System.Drawing.Size(95, 22);
     this.SixthCost.TabIndex = 165;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(596, 335);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(0, 19);
     this.label26.TabIndex = 164;
     //
     // SixthDes
     //
     this.SixthDes.Location = new System.Drawing.Point(596, 332);
     this.SixthDes.Name = "SixthDes";
     this.SixthDes.Size = new System.Drawing.Size(150, 22);
     this.SixthDes.TabIndex = 163;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(433, 335);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(139, 19);
     this.label27.TabIndex = 162;
     this.label27.Text = "6. Description Name ";
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(752, 284);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(149, 19);
     this.label34.TabIndex = 161;
     this.label34.Text = "Cost of the Description";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(596, 287);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(0, 19);
     this.label35.TabIndex = 160;
     //
     // FifthCost
     //
     this.FifthCost.Location = new System.Drawing.Point(901, 287);
     this.FifthCost.Name = "FifthCost";
     this.FifthCost.Size = new System.Drawing.Size(95, 22);
     this.FifthCost.TabIndex = 159;
     //
     // FifthDes
     //
     this.FifthDes.Location = new System.Drawing.Point(596, 284);
     this.FifthDes.Name = "FifthDes";
     this.FifthDes.Size = new System.Drawing.Size(150, 22);
     this.FifthDes.TabIndex = 158;
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(433, 287);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(139, 19);
     this.label36.TabIndex = 157;
     this.label36.Text = "5. Description Name ";
     //
     // UnpaidAmount
     //
     this.UnpaidAmount.Location = new System.Drawing.Point(901, 496);
     this.UnpaidAmount.Name = "UnpaidAmount";
     this.UnpaidAmount.Size = new System.Drawing.Size(95, 22);
     this.UnpaidAmount.TabIndex = 177;
     //
     // textBox17
     //
     this.textBox17.Location = new System.Drawing.Point(749, 478);
     this.textBox17.Name = "textBox17";
     this.textBox17.Size = new System.Drawing.Size(0, 22);
     this.textBox17.TabIndex = 178;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label37.Location = new System.Drawing.Point(775, 496);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(124, 21);
     this.label37.TabIndex = 179;
     this.label37.Text = "Unpaid amount";
     this.label37.Click += new System.EventHandler(this.label37_Click);
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(775, 548);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(103, 21);
     this.label38.TabIndex = 181;
     this.label38.Text = "Paid amount";
     //
     // PaidAmount
     //
     this.PaidAmount.Location = new System.Drawing.Point(901, 548);
     this.PaidAmount.Name = "PaidAmount";
     this.PaidAmount.Size = new System.Drawing.Size(95, 22);
     this.PaidAmount.TabIndex = 180;
     this.PaidAmount.TextChanged += new System.EventHandler(this.textBox18_TextChanged);
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.Location = new System.Drawing.Point(775, 607);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(113, 21);
     this.label39.TabIndex = 183;
     this.label39.Text = "Total amount ";
     this.label39.Click += new System.EventHandler(this.label39_Click);
     //
     // textBox19
     //
     this.textBox19.Location = new System.Drawing.Point(901, 604);
     this.textBox19.Name = "textBox19";
     this.textBox19.Size = new System.Drawing.Size(95, 22);
     this.textBox19.TabIndex = 182;
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // returnToolStripMenuItem
     //
     this.returnToolStripMenuItem.Name = "returnToolStripMenuItem";
     this.returnToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.returnToolStripMenuItem.Text = "Return";
     this.returnToolStripMenuItem.Click += new System.EventHandler(this.returnToolStripMenuItem_Click);
     //
     // FinancialFees
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1008, 682);
     this.Controls.Add(this.label39);
     this.Controls.Add(this.textBox19);
     this.Controls.Add(this.label38);
     this.Controls.Add(this.PaidAmount);
     this.Controls.Add(this.label37);
     this.Controls.Add(this.textBox17);
     this.Controls.Add(this.UnpaidAmount);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.EighthCost);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.EighthDes);
     this.Controls.Add(this.label20);
     this.Controls.Add(this.label21);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.SeventhCost);
     this.Controls.Add(this.SeventhDes);
     this.Controls.Add(this.label23);
     this.Controls.Add(this.label25);
     this.Controls.Add(this.SixthCost);
     this.Controls.Add(this.label26);
     this.Controls.Add(this.SixthDes);
     this.Controls.Add(this.label27);
     this.Controls.Add(this.label34);
     this.Controls.Add(this.label35);
     this.Controls.Add(this.FifthCost);
     this.Controls.Add(this.FifthDes);
     this.Controls.Add(this.label36);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.FourthCost);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.FourthDes);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.ThirdCost);
     this.Controls.Add(this.ThirdDes);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.SecondCost);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.SecondDes);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label33);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.FirstCost);
     this.Controls.Add(this.FirstDes);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.button4);
     this.Controls.Add(this.label46);
     this.Controls.Add(this.EnterPatientAddress);
     this.Controls.Add(this.label45);
     this.Controls.Add(this.patient);
     this.Controls.Add(this.label43);
     this.Controls.Add(this.label42);
     this.Controls.Add(this.label41);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.PatientPhoneNumber);
     this.Controls.Add(this.PatientProfileLastName);
     this.Controls.Add(this.PatientProfileFirstName);
     this.Controls.Add(this.PatientProfilePatientId);
     this.Controls.Add(this.Vip1photo);
     this.Controls.Add(this.label32);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.label29);
     this.Controls.Add(this.label28);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.EnterPatientPhoneNumber);
     this.Controls.Add(this.EnterpatientLastName);
     this.Controls.Add(this.EnterPatientFirstName);
     this.Controls.Add(this.EnterPatiendId);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.shapeContainer1);
     this.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "FinancialFees";
     this.Text = "Financial Fees ";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 11
0
        public Panel panlm(int n, bool flag, int height, string state, string leibie, string time, string detil, string url, string messageid)
        {
            var pan1 = new System.Windows.Forms.Panel();

            // pan1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
            pan1.Location = new System.Drawing.Point(0, height);
            pan1.Name     = "panelm_" + n;
            pan1.Size     = new System.Drawing.Size(660, 70);
            pan1.TabIndex = 1;
            pan1.Visible  = flag;
            //
            // ckb_1
            //
            var ckb_1 = new System.Windows.Forms.CheckBox();

            ckb_1.AutoSize  = true;
            ckb_1.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            ckb_1.ForeColor = System.Drawing.Color.Red;
            ckb_1.Location  = new System.Drawing.Point(10, 10);
            ckb_1.Name      = "ckb_" + n;
            ckb_1.Size      = new System.Drawing.Size(75, 21);
            ckb_1.TabIndex  = 0;
            ckb_1.Text      = "【" + state.Replace("2", "未读").Replace("3", "未读").Replace("5", "已读") + "】";
            ckb_1.UseVisualStyleBackColor = true;
            ckb_1.Tag = messageid;
            //
            // labed_1
            //
            var labed_1 = new System.Windows.Forms.Label();

            labed_1.AutoSize = true;
            labed_1.Font     = new System.Drawing.Font("微软雅黑", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labed_1.Location = new System.Drawing.Point(82, 10);
            labed_1.Name     = "labed_" + n;
            labed_1.Size     = new System.Drawing.Size(34, 60);
            labed_1.TabIndex = 1;
            labed_1.Text     = leibie;

            //
            // labtime_1
            //
            var labtime_1 = new System.Windows.Forms.Label();

            labtime_1.AutoSize = true;
            labtime_1.Font     = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labtime_1.Location = new System.Drawing.Point(564, 12);
            labtime_1.Name     = "labtime_1";
            labtime_1.Size     = new System.Drawing.Size(76, 17);
            labtime_1.TabIndex = 3;
            labtime_1.Text     = Convert.ToDateTime(time).ToString("MM-dd HH:mm");
            //
            // labcontent_1
            //
            var labcontent_1 = new System.Windows.Forms.Label();

            labcontent_1.AutoEllipsis = true;
            labcontent_1.Font         = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labcontent_1.Location     = new System.Drawing.Point(82, 38);
            labcontent_1.Name         = "labcontent_1";
            labcontent_1.Size         = new System.Drawing.Size(501, 23);
            labcontent_1.TabIndex     = 4;
            labcontent_1.Text         = detil;
            //
            // lineShape2
            //
            var lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();

            lineShape2.BorderColor = System.Drawing.Color.Silver;
            lineShape2.Name        = "lineShape_" + n;
            lineShape2.X1          = 3;
            lineShape2.X2          = 650;
            lineShape2.Y1          = 65;
            lineShape2.Y2          = 65;
            //
            // shapeContainer2
            //
            var shapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();

            shapeContainer2.Location = new System.Drawing.Point(0, 0);
            shapeContainer2.Margin   = new System.Windows.Forms.Padding(0);
            shapeContainer2.Name     = "shapeContainer_" + n;
            shapeContainer2.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
                lineShape2
            });
            shapeContainer2.Size     = new System.Drawing.Size(650, 70);
            shapeContainer2.TabIndex = 5;
            shapeContainer2.TabStop  = false;

            //
            // labqianwang_1
            //
            var labqianwang_1 = new System.Windows.Forms.Label();

            labqianwang_1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(102)))), ((int)(((byte)(204)))), ((int)(((byte)(204)))));
            labqianwang_1.AutoSize  = true;
            labqianwang_1.Cursor    = System.Windows.Forms.Cursors.Hand;
            labqianwang_1.Font      = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
            labqianwang_1.Location  = new System.Drawing.Point(589, 38);
            labqianwang_1.Name      = "labqianwang_" + n;
            labqianwang_1.Size      = new System.Drawing.Size(44, 17);
            labqianwang_1.TabIndex  = 6;
            labqianwang_1.TabStop   = true;
            //labqianwang_1.Text = "前往》";
            labqianwang_1.Tag    = url;
            labqianwang_1.Click += new System.EventHandler(labMessage_Click);
            pan1.Controls.Add(labqianwang_1);
            pan1.Controls.Add(labcontent_1);
            pan1.Controls.Add(labtime_1);

            pan1.Controls.Add(labed_1);
            pan1.Controls.Add(ckb_1);
            pan1.Controls.Add(shapeContainer2);

            return(pan1);
        }
Ejemplo n.º 12
0
        /* protected override void Dispose(bool disposing)
         * {
         *   if (disposing && (this.components != null))
         *   {
         *       this.components.Dispose();
         *   }
         *   base.Dispose(disposing);
         * }*/

        private void InitializeComponent()
        {
            this.AddTableButton  = new System.Windows.Forms.Button();
            this.AddFieldButton  = new System.Windows.Forms.Button();
            this.AddSvyazButton  = 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.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
            this.lineShape1      = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.label6          = new System.Windows.Forms.Label();
            this.label7          = new System.Windows.Forms.Label();
            this.TableNameBox    = new System.Windows.Forms.TextBox();
            this.SuspendLayout();
            //
            // AddTableButton
            //
            this.AddTableButton.Location = new System.Drawing.Point(272, 329);
            this.AddTableButton.Name     = "AddTableButton";
            this.AddTableButton.Size     = new System.Drawing.Size(113, 20);
            this.AddTableButton.TabIndex = 0;
            this.AddTableButton.Text     = "Добавить таблицу";
            this.AddTableButton.UseVisualStyleBackColor = true;
            this.AddTableButton.Click += new System.EventHandler(this.AddTableButton_Click);
            //
            // AddFieldButton
            //
            this.AddFieldButton.Location = new System.Drawing.Point(49, 329);
            this.AddFieldButton.Name     = "AddFieldButton";
            this.AddFieldButton.Size     = new System.Drawing.Size(117, 20);
            this.AddFieldButton.TabIndex = 1;
            this.AddFieldButton.Text     = "Добавить поле";
            this.AddFieldButton.UseVisualStyleBackColor = true;
            this.AddFieldButton.Click += new System.EventHandler(this.AddFieldButton_Click);
            //
            // AddSvyazButton
            //
            this.AddSvyazButton.Location = new System.Drawing.Point(503, 330);
            this.AddSvyazButton.Name     = "AddSvyazButton";
            this.AddSvyazButton.Size     = new System.Drawing.Size(106, 20);
            this.AddSvyazButton.TabIndex = 2;
            this.AddSvyazButton.Text     = "Добавить Связь";
            this.AddSvyazButton.UseVisualStyleBackColor = true;
            this.AddSvyazButton.Click += new System.EventHandler(this.AddSvyazButton_Click);
            //
            // label1
            //
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(3, 48);
            this.label1.Name     = "label1";
            this.label1.Size     = new System.Drawing.Size(84, 13);
            this.label1.TabIndex = 3;
            this.label1.Text     = "Название поля";
            //
            // label2
            //
            this.label2.AutoSize = true;
            this.label2.Location = new System.Drawing.Point(136, 48);
            this.label2.Name     = "label2";
            this.label2.Size     = new System.Drawing.Size(69, 13);
            this.label2.TabIndex = 4;
            this.label2.Text     = "Тип Данных";
            //
            // label3
            //
            this.label3.AutoSize = true;
            this.label3.Location = new System.Drawing.Point(273, 48);
            this.label3.Name     = "label3";
            this.label3.Size     = new System.Drawing.Size(178, 13);
            this.label3.TabIndex = 5;
            this.label3.Text     = "Название поля Текущие таблицы";
            //
            // label4
            //
            this.label4.AutoSize = true;
            this.label4.Location = new System.Drawing.Point(470, 48);
            this.label4.Name     = "label4";
            this.label4.Size     = new System.Drawing.Size(108, 13);
            this.label4.TabIndex = 6;
            this.label4.Text     = "Название  Таблицы";
            //
            // shapeContainer1
            //
            this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
            this.shapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
            this.shapeContainer1.Name     = "shapeContainer1";
            this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
                this.lineShape1
            });
            this.shapeContainer1.Size     = new System.Drawing.Size(621, 384);
            this.shapeContainer1.TabIndex = 8;
            this.shapeContainer1.TabStop  = false;
            //
            // lineShape1
            //
            this.lineShape1.BorderColor = System.Drawing.SystemColors.ControlDark;
            this.lineShape1.BorderWidth = 2;
            this.lineShape1.Name        = "lineShape1";
            this.lineShape1.X1          = 233;
            this.lineShape1.X2          = 234;
            this.lineShape1.Y1          = 17;
            this.lineShape1.Y2          = 359;
            //
            // label6
            //
            this.label6.AutoSize = true;
            this.label6.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.label6.Location = new System.Drawing.Point(88, 9);
            this.label6.Name     = "label6";
            this.label6.Size     = new System.Drawing.Size(45, 18);
            this.label6.TabIndex = 9;
            this.label6.Text     = "Поля";
            //
            // label7
            //
            this.label7.AutoSize = true;
            this.label7.Font     = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
            this.label7.Location = new System.Drawing.Point(412, 15);
            this.label7.Name     = "label7";
            this.label7.Size     = new System.Drawing.Size(51, 18);
            this.label7.TabIndex = 10;
            this.label7.Text     = "Связи";
            //
            // TableNameBox
            //
            this.TableNameBox.Location = new System.Drawing.Point(391, 330);
            this.TableNameBox.Name     = "TableNameBox";
            this.TableNameBox.Size     = new System.Drawing.Size(106, 20);
            this.TableNameBox.TabIndex = 11;
            //
            // FormAddTable
            //
            this.ClientSize = new System.Drawing.Size(621, 384);
            this.Controls.Add(this.TableNameBox);
            this.Controls.Add(this.label7);
            this.Controls.Add(this.label6);
            this.Controls.Add(this.label4);
            this.Controls.Add(this.label3);
            this.Controls.Add(this.label2);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.AddSvyazButton);
            this.Controls.Add(this.AddFieldButton);
            this.Controls.Add(this.AddTableButton);
            this.Controls.Add(this.shapeContainer1);
            this.MaximizeBox   = false;
            this.Name          = "FormAddTable";
            this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
            this.Text          = "Добавить Таблицу";
            this.FormClosed   += new System.Windows.Forms.FormClosedEventHandler(this.FormAddTable_FormClosed);
            this.Load         += new System.EventHandler(this.FormAddTable_Load);
            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.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_talla));
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.cbo_buscar = new System.Windows.Forms.ComboBox();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.gridtalla = new System.Windows.Forms.DataGridView();
     this.gtallaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtallaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla01 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla02 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla03 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla04 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla05 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla06 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla07 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla08 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla09 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla10 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla11 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gtalla12 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelControl14 = new DevExpress.XtraEditors.LabelControl();
     this.talla12 = new System.Windows.Forms.TextBox();
     this.labelControl13 = new DevExpress.XtraEditors.LabelControl();
     this.talla11 = new System.Windows.Forms.TextBox();
     this.labelControl12 = new DevExpress.XtraEditors.LabelControl();
     this.talla10 = new System.Windows.Forms.TextBox();
     this.labelControl11 = new DevExpress.XtraEditors.LabelControl();
     this.talla09 = new System.Windows.Forms.TextBox();
     this.labelControl10 = new DevExpress.XtraEditors.LabelControl();
     this.talla08 = new System.Windows.Forms.TextBox();
     this.labelControl9 = new DevExpress.XtraEditors.LabelControl();
     this.talla07 = new System.Windows.Forms.TextBox();
     this.labelControl8 = new DevExpress.XtraEditors.LabelControl();
     this.talla06 = new System.Windows.Forms.TextBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.talla05 = new System.Windows.Forms.TextBox();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.talla04 = new System.Windows.Forms.TextBox();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.talla03 = new System.Windows.Forms.TextBox();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.talla02 = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.talla01 = new System.Windows.Forms.TextBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.tallaid = new System.Windows.Forms.TextBox();
     this.tallaname = new System.Windows.Forms.TextBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridtalla)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.btn_busqueda);
     this.groupBox2.Controls.Add(this.cbo_buscar);
     this.groupBox2.Controls.Add(this.txt_criterio);
     this.groupBox2.Controls.Add(this.label5);
     this.groupBox2.Location = new System.Drawing.Point(4, 184);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(617, 46);
     this.groupBox2.TabIndex = 30;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Buscar";
     //
     // cbo_buscar
     //
     this.cbo_buscar.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_buscar.DropDownWidth = 250;
     this.cbo_buscar.Location = new System.Drawing.Point(31, 17);
     this.cbo_buscar.Name = "cbo_buscar";
     this.cbo_buscar.Size = new System.Drawing.Size(121, 21);
     this.cbo_buscar.TabIndex = 43;
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(158, 18);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(319, 21);
     this.txt_criterio.TabIndex = 27;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(5, 21);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(26, 13);
     this.label5.TabIndex = 26;
     this.label5.Text = "Por:";
     //
     // gridtalla
     //
     this.gridtalla.AllowUserToAddRows = false;
     this.gridtalla.AllowUserToDeleteRows = false;
     this.gridtalla.AllowUserToResizeColumns = false;
     this.gridtalla.AllowUserToResizeRows = false;
     this.gridtalla.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.gridtalla.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     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.gridtalla.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridtalla.ColumnHeadersHeight = 20;
     this.gridtalla.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gtallaid,
     this.gtallaname,
     this.gtalla01,
     this.gtalla02,
     this.gtalla03,
     this.gtalla04,
     this.gtalla05,
     this.gtalla06,
     this.gtalla07,
     this.gtalla08,
     this.gtalla09,
     this.gtalla10,
     this.gtalla11,
     this.gtalla12,
     this.usuar,
     this.fecre,
     this.feact});
     this.gridtalla.Location = new System.Drawing.Point(0, 236);
     this.gridtalla.MultiSelect = false;
     this.gridtalla.Name = "gridtalla";
     this.gridtalla.RowHeadersVisible = false;
     this.gridtalla.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridtalla.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.gridtalla.RowTemplate.Height = 20;
     this.gridtalla.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridtalla.Size = new System.Drawing.Size(624, 343);
     this.gridtalla.TabIndex = 29;
     this.gridtalla.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridtalla_CellClick);
     this.gridtalla.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridtalla_CellEnter);
     this.gridtalla.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridtalla_CellLeave);
     this.gridtalla.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridtalla_KeyUp);
     //
     // gtallaid
     //
     this.gtallaid.DataPropertyName = "tallaid";
     this.gtallaid.HeaderText = "Cód";
     this.gtallaid.Name = "gtallaid";
     this.gtallaid.Width = 40;
     //
     // gtallaname
     //
     this.gtallaname.DataPropertyName = "tallaname";
     this.gtallaname.HeaderText = "Descripción";
     this.gtallaname.Name = "gtallaname";
     this.gtallaname.Width = 260;
     //
     // gtalla01
     //
     this.gtalla01.DataPropertyName = "talla01";
     this.gtalla01.HeaderText = "T01";
     this.gtalla01.Name = "gtalla01";
     this.gtalla01.Width = 25;
     //
     // gtalla02
     //
     this.gtalla02.DataPropertyName = "talla02";
     this.gtalla02.HeaderText = "T02";
     this.gtalla02.Name = "gtalla02";
     this.gtalla02.Width = 25;
     //
     // gtalla03
     //
     this.gtalla03.DataPropertyName = "talla03";
     this.gtalla03.HeaderText = "T03";
     this.gtalla03.Name = "gtalla03";
     this.gtalla03.Width = 25;
     //
     // gtalla04
     //
     this.gtalla04.DataPropertyName = "talla04";
     this.gtalla04.HeaderText = "T04";
     this.gtalla04.Name = "gtalla04";
     this.gtalla04.Width = 25;
     //
     // gtalla05
     //
     this.gtalla05.DataPropertyName = "talla05";
     this.gtalla05.HeaderText = "T05";
     this.gtalla05.Name = "gtalla05";
     this.gtalla05.Width = 25;
     //
     // gtalla06
     //
     this.gtalla06.DataPropertyName = "talla06";
     this.gtalla06.HeaderText = "T06";
     this.gtalla06.Name = "gtalla06";
     this.gtalla06.Width = 25;
     //
     // gtalla07
     //
     this.gtalla07.DataPropertyName = "talla07";
     this.gtalla07.HeaderText = "T07";
     this.gtalla07.Name = "gtalla07";
     this.gtalla07.Width = 25;
     //
     // gtalla08
     //
     this.gtalla08.DataPropertyName = "talla08";
     this.gtalla08.HeaderText = "T08";
     this.gtalla08.Name = "gtalla08";
     this.gtalla08.Width = 25;
     //
     // gtalla09
     //
     this.gtalla09.DataPropertyName = "talla09";
     this.gtalla09.HeaderText = "T09";
     this.gtalla09.Name = "gtalla09";
     this.gtalla09.Width = 25;
     //
     // gtalla10
     //
     this.gtalla10.DataPropertyName = "talla10";
     this.gtalla10.HeaderText = "T10";
     this.gtalla10.Name = "gtalla10";
     this.gtalla10.Width = 25;
     //
     // gtalla11
     //
     this.gtalla11.DataPropertyName = "talla11";
     this.gtalla11.HeaderText = "T11";
     this.gtalla11.Name = "gtalla11";
     this.gtalla11.Width = 25;
     //
     // gtalla12
     //
     this.gtalla12.DataPropertyName = "talla12";
     this.gtalla12.HeaderText = "T12";
     this.gtalla12.Name = "gtalla12";
     this.gtalla12.Width = 25;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.labelControl14);
     this.groupBox1.Controls.Add(this.talla12);
     this.groupBox1.Controls.Add(this.labelControl13);
     this.groupBox1.Controls.Add(this.talla11);
     this.groupBox1.Controls.Add(this.labelControl12);
     this.groupBox1.Controls.Add(this.talla10);
     this.groupBox1.Controls.Add(this.labelControl11);
     this.groupBox1.Controls.Add(this.talla09);
     this.groupBox1.Controls.Add(this.labelControl10);
     this.groupBox1.Controls.Add(this.talla08);
     this.groupBox1.Controls.Add(this.labelControl9);
     this.groupBox1.Controls.Add(this.talla07);
     this.groupBox1.Controls.Add(this.labelControl8);
     this.groupBox1.Controls.Add(this.talla06);
     this.groupBox1.Controls.Add(this.labelControl7);
     this.groupBox1.Controls.Add(this.talla05);
     this.groupBox1.Controls.Add(this.labelControl6);
     this.groupBox1.Controls.Add(this.talla04);
     this.groupBox1.Controls.Add(this.labelControl5);
     this.groupBox1.Controls.Add(this.talla03);
     this.groupBox1.Controls.Add(this.labelControl4);
     this.groupBox1.Controls.Add(this.talla02);
     this.groupBox1.Controls.Add(this.labelControl3);
     this.groupBox1.Controls.Add(this.talla01);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.tallaid);
     this.groupBox1.Controls.Add(this.tallaname);
     this.groupBox1.Controls.Add(this.shapeContainer1);
     this.groupBox1.Location = new System.Drawing.Point(4, 66);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(620, 115);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // labelControl14
     //
     this.labelControl14.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl14.Location = new System.Drawing.Point(486, 71);
     this.labelControl14.Name = "labelControl14";
     this.labelControl14.Size = new System.Drawing.Size(21, 13);
     this.labelControl14.TabIndex = 52;
     this.labelControl14.Text = "T12";
     //
     // talla12
     //
     this.talla12.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla12.Location = new System.Drawing.Point(483, 87);
     this.talla12.MaxLength = 2;
     this.talla12.Name = "talla12";
     this.talla12.Size = new System.Drawing.Size(26, 20);
     this.talla12.TabIndex = 51;
     this.talla12.Text = "NN";
     this.talla12.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl13
     //
     this.labelControl13.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl13.Location = new System.Drawing.Point(456, 71);
     this.labelControl13.Name = "labelControl13";
     this.labelControl13.Size = new System.Drawing.Size(21, 13);
     this.labelControl13.TabIndex = 50;
     this.labelControl13.Text = "T11";
     //
     // talla11
     //
     this.talla11.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla11.Location = new System.Drawing.Point(453, 87);
     this.talla11.MaxLength = 2;
     this.talla11.Name = "talla11";
     this.talla11.Size = new System.Drawing.Size(26, 20);
     this.talla11.TabIndex = 49;
     this.talla11.Text = "NN";
     this.talla11.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla11.TextChanged += new System.EventHandler(this.talla11_TextChanged);
     //
     // labelControl12
     //
     this.labelControl12.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl12.Location = new System.Drawing.Point(424, 71);
     this.labelControl12.Name = "labelControl12";
     this.labelControl12.Size = new System.Drawing.Size(21, 13);
     this.labelControl12.TabIndex = 48;
     this.labelControl12.Text = "T10";
     //
     // talla10
     //
     this.talla10.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla10.Location = new System.Drawing.Point(421, 87);
     this.talla10.MaxLength = 2;
     this.talla10.Name = "talla10";
     this.talla10.Size = new System.Drawing.Size(26, 20);
     this.talla10.TabIndex = 47;
     this.talla10.Text = "NN";
     this.talla10.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla10.TextChanged += new System.EventHandler(this.talla10_TextChanged);
     //
     // labelControl11
     //
     this.labelControl11.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl11.Location = new System.Drawing.Point(392, 71);
     this.labelControl11.Name = "labelControl11";
     this.labelControl11.Size = new System.Drawing.Size(21, 13);
     this.labelControl11.TabIndex = 46;
     this.labelControl11.Text = "T09";
     //
     // talla09
     //
     this.talla09.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla09.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla09.Location = new System.Drawing.Point(389, 87);
     this.talla09.MaxLength = 2;
     this.talla09.Name = "talla09";
     this.talla09.Size = new System.Drawing.Size(26, 20);
     this.talla09.TabIndex = 45;
     this.talla09.Text = "NN";
     this.talla09.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla09.TextChanged += new System.EventHandler(this.talla09_TextChanged);
     //
     // labelControl10
     //
     this.labelControl10.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl10.Location = new System.Drawing.Point(360, 71);
     this.labelControl10.Name = "labelControl10";
     this.labelControl10.Size = new System.Drawing.Size(21, 13);
     this.labelControl10.TabIndex = 44;
     this.labelControl10.Text = "T08";
     //
     // talla08
     //
     this.talla08.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla08.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla08.Location = new System.Drawing.Point(357, 87);
     this.talla08.MaxLength = 2;
     this.talla08.Name = "talla08";
     this.talla08.Size = new System.Drawing.Size(26, 20);
     this.talla08.TabIndex = 43;
     this.talla08.Text = "NN";
     this.talla08.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla08.TextChanged += new System.EventHandler(this.talla08_TextChanged);
     //
     // labelControl9
     //
     this.labelControl9.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl9.Location = new System.Drawing.Point(328, 71);
     this.labelControl9.Name = "labelControl9";
     this.labelControl9.Size = new System.Drawing.Size(21, 13);
     this.labelControl9.TabIndex = 42;
     this.labelControl9.Text = "T07";
     //
     // talla07
     //
     this.talla07.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla07.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla07.Location = new System.Drawing.Point(325, 87);
     this.talla07.MaxLength = 2;
     this.talla07.Name = "talla07";
     this.talla07.Size = new System.Drawing.Size(26, 20);
     this.talla07.TabIndex = 41;
     this.talla07.Text = "NN";
     this.talla07.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla07.TextChanged += new System.EventHandler(this.talla07_TextChanged);
     //
     // labelControl8
     //
     this.labelControl8.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl8.Location = new System.Drawing.Point(296, 71);
     this.labelControl8.Name = "labelControl8";
     this.labelControl8.Size = new System.Drawing.Size(21, 13);
     this.labelControl8.TabIndex = 40;
     this.labelControl8.Text = "T06";
     //
     // talla06
     //
     this.talla06.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla06.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla06.Location = new System.Drawing.Point(293, 87);
     this.talla06.MaxLength = 2;
     this.talla06.Name = "talla06";
     this.talla06.Size = new System.Drawing.Size(26, 20);
     this.talla06.TabIndex = 39;
     this.talla06.Text = "NN";
     this.talla06.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla06.TextChanged += new System.EventHandler(this.talla06_TextChanged);
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(264, 71);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(21, 13);
     this.labelControl7.TabIndex = 38;
     this.labelControl7.Text = "T05";
     //
     // talla05
     //
     this.talla05.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla05.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla05.Location = new System.Drawing.Point(261, 87);
     this.talla05.MaxLength = 2;
     this.talla05.Name = "talla05";
     this.talla05.Size = new System.Drawing.Size(26, 20);
     this.talla05.TabIndex = 37;
     this.talla05.Text = "NN";
     this.talla05.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla05.TextChanged += new System.EventHandler(this.talla05_TextChanged);
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Location = new System.Drawing.Point(232, 71);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(21, 13);
     this.labelControl6.TabIndex = 36;
     this.labelControl6.Text = "T04";
     //
     // talla04
     //
     this.talla04.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla04.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla04.Location = new System.Drawing.Point(229, 87);
     this.talla04.MaxLength = 2;
     this.talla04.Name = "talla04";
     this.talla04.Size = new System.Drawing.Size(26, 20);
     this.talla04.TabIndex = 35;
     this.talla04.Text = "NN";
     this.talla04.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla04.TextChanged += new System.EventHandler(this.talla04_TextChanged);
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(200, 71);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(21, 13);
     this.labelControl5.TabIndex = 34;
     this.labelControl5.Text = "T03";
     //
     // talla03
     //
     this.talla03.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla03.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla03.Location = new System.Drawing.Point(197, 87);
     this.talla03.MaxLength = 2;
     this.talla03.Name = "talla03";
     this.talla03.Size = new System.Drawing.Size(26, 20);
     this.talla03.TabIndex = 33;
     this.talla03.Text = "NN";
     this.talla03.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla03.TextChanged += new System.EventHandler(this.talla03_TextChanged);
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(168, 71);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(21, 13);
     this.labelControl4.TabIndex = 32;
     this.labelControl4.Text = "T02";
     //
     // talla02
     //
     this.talla02.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla02.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla02.Location = new System.Drawing.Point(165, 87);
     this.talla02.MaxLength = 2;
     this.talla02.Name = "talla02";
     this.talla02.Size = new System.Drawing.Size(26, 20);
     this.talla02.TabIndex = 31;
     this.talla02.Text = "NN";
     this.talla02.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla02.TextChanged += new System.EventHandler(this.talla02_TextChanged);
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(136, 71);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(21, 13);
     this.labelControl3.TabIndex = 30;
     this.labelControl3.Text = "T01";
     //
     // talla01
     //
     this.talla01.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.talla01.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.talla01.Location = new System.Drawing.Point(133, 87);
     this.talla01.MaxLength = 2;
     this.talla01.Name = "talla01";
     this.talla01.Size = new System.Drawing.Size(26, 20);
     this.talla01.TabIndex = 29;
     this.talla01.Text = "NN";
     this.talla01.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.talla01.TextChanged += new System.EventHandler(this.talla01_TextChanged);
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(10, 17);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(52, 13);
     this.labelControl2.TabIndex = 28;
     this.labelControl2.Text = "» Código:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(8, 37);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(79, 13);
     this.labelControl1.TabIndex = 27;
     this.labelControl1.Text = "» Descripción:";
     //
     // tallaid
     //
     this.tallaid.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tallaid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tallaid.Location = new System.Drawing.Point(91, 14);
     this.tallaid.MaxLength = 2;
     this.tallaid.Name = "tallaid";
     this.tallaid.Size = new System.Drawing.Size(26, 20);
     this.tallaid.TabIndex = 20;
     this.tallaid.Text = "NN";
     //
     // tallaname
     //
     this.tallaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.tallaname.Location = new System.Drawing.Point(91, 35);
     this.tallaname.Name = "tallaname";
     this.tallaname.Size = new System.Drawing.Size(303, 21);
     this.tallaname.TabIndex = 22;
     this.tallaname.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tallaname_KeyDown);
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(3, 17);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(614, 95);
     this.shapeContainer1.TabIndex = 53;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 119;
     this.lineShape1.X2 = 514;
     this.lineShape1.Y1 = 45;
     this.lineShape1.Y2 = 45;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(-3, 2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(651, 57);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(275, 30);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(65, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Tallas";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(627, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_busqueda
     //
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(483, 12);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(75, 33);
     this.btn_busqueda.TabIndex = 113;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // Frm_talla
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(627, 582);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.gridtalla);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.panel1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_talla";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Talla";
     this.Load += new System.EventHandler(this.Frm_talla_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_talla_KeyDown);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.gridtalla)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 14
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVblind));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this._frmMode_1      = new System.Windows.Forms.GroupBox();
     this.cmdProceed      = new System.Windows.Forms.Button();
     this.lblData         = new System.Windows.Forms.Label();
     this._lbl_4          = new System.Windows.Forms.Label();
     this.Line1           = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lblRepNumber    = new System.Windows.Forms.Label();
     this._lbl_1          = new System.Windows.Forms.Label();
     this.lblRepName      = new System.Windows.Forms.Label();
     this._lbl_0          = new System.Windows.Forms.Label();
     this.lblName         = new System.Windows.Forms.Label();
     this.cmdNext         = new System.Windows.Forms.Button();
     this.cmdBack         = new System.Windows.Forms.Button();
     this.ilHeading       = new System.Windows.Forms.ImageList();
     this._frmMode_0      = new System.Windows.Forms.GroupBox();
     this.lstSupplier     = new System.Windows.Forms.ListBox();
     this.Label1          = new System.Windows.Forms.Label();
     //Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this._frmMode_1.SuspendLayout();
     this._frmMode_0.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     this.ControlBox                  = false;
     this.BackColor                   = System.Drawing.Color.FromArgb(224, 224, 224);
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.ClientSize                  = new System.Drawing.Size(377, 434);
     this.Location                    = new System.Drawing.Point(3, 3);
     this.KeyPreview                  = true;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.Enabled                     = true;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmGRVblind";
     this._frmMode_1.Text             = "Supplier Details";
     this._frmMode_1.Font             = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._frmMode_1.Size             = new System.Drawing.Size(352, 349);
     this._frmMode_1.Location         = new System.Drawing.Point(12, 39);
     this._frmMode_1.TabIndex         = 3;
     this._frmMode_1.Visible          = false;
     this._frmMode_1.BackColor        = System.Drawing.SystemColors.Control;
     this._frmMode_1.Enabled          = true;
     this._frmMode_1.ForeColor        = System.Drawing.SystemColors.ControlText;
     this._frmMode_1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._frmMode_1.Padding          = new System.Windows.Forms.Padding(0);
     this._frmMode_1.Name             = "_frmMode_1";
     this.cmdProceed.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdProceed.Text             = "&Create Purchase Order";
     this.cmdProceed.Size             = new System.Drawing.Size(127, 28);
     this.cmdProceed.Location         = new System.Drawing.Point(216, 312);
     this.cmdProceed.TabIndex         = 12;
     this.cmdProceed.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdProceed.CausesValidation = true;
     this.cmdProceed.Enabled          = true;
     this.cmdProceed.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdProceed.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdProceed.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdProceed.TabStop          = true;
     this.cmdProceed.Name             = "cmdProceed";
     this.lblData.Text                = "By clicking the \"Create Purchase Order\" button, you will create a blank purchase order for the above supplier. You will then be prompted for the invoice details and proceed to the GRV product capture screen.";
     this.lblData.Size                = new System.Drawing.Size(334, 151);
     this.lblData.Location            = new System.Drawing.Point(3, 120);
     this.lblData.TabIndex            = 11;
     this.lblData.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblData.BackColor           = System.Drawing.SystemColors.Control;
     this.lblData.Enabled             = true;
     this.lblData.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.lblData.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblData.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblData.UseMnemonic         = true;
     this.lblData.Visible             = true;
     this.lblData.AutoSize            = false;
     this.lblData.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.lblData.Name                = "lblData";
     this._lbl_4.TextAlign            = System.Drawing.ContentAlignment.TopCenter;
     this._lbl_4.BackColor            = System.Drawing.Color.Blue;
     this._lbl_4.Text                 = "Create New Purchase Order";
     this._lbl_4.Font                 = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_4.ForeColor            = System.Drawing.Color.White;
     this._lbl_4.Size                 = new System.Drawing.Size(347, 17);
     this._lbl_4.Location             = new System.Drawing.Point(3, 93);
     this._lbl_4.TabIndex             = 10;
     this._lbl_4.Enabled              = true;
     this._lbl_4.Cursor               = System.Windows.Forms.Cursors.Default;
     this._lbl_4.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this._lbl_4.UseMnemonic          = true;
     this._lbl_4.Visible              = true;
     this._lbl_4.AutoSize             = false;
     this._lbl_4.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this._lbl_4.Name                 = "_lbl_4";
     this.Line1.X1                    = 342;
     this.Line1.X2                    = 12;
     this.Line1.Y1                    = 74;
     this.Line1.Y2                    = 74;
     this.Line1.BorderColor           = System.Drawing.SystemColors.WindowText;
     this.Line1.BorderStyle           = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Line1.BorderWidth           = 1;
     this.Line1.Visible               = true;
     this.Line1.Name                  = "Line1";
     this.lblRepNumber.BackColor      = System.Drawing.SystemColors.Window;
     this.lblRepNumber.Text           = "lblRepNumber";
     this.lblRepNumber.ForeColor      = System.Drawing.SystemColors.WindowText;
     this.lblRepNumber.Size           = new System.Drawing.Size(91, 16);
     this.lblRepNumber.Location       = new System.Drawing.Point(252, 63);
     this.lblRepNumber.TabIndex       = 9;
     this.lblRepNumber.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this.lblRepNumber.Enabled        = true;
     this.lblRepNumber.Cursor         = System.Windows.Forms.Cursors.Default;
     this.lblRepNumber.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.lblRepNumber.UseMnemonic    = true;
     this.lblRepNumber.Visible        = true;
     this.lblRepNumber.AutoSize       = false;
     this.lblRepNumber.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblRepNumber.Name           = "lblRepNumber";
     this._lbl_1.Text                 = "Representative Name";
     this._lbl_1.Size                 = new System.Drawing.Size(103, 13);
     this._lbl_1.Location             = new System.Drawing.Point(12, 51);
     this._lbl_1.TabIndex             = 8;
     this._lbl_1.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_1.BackColor            = System.Drawing.Color.Transparent;
     this._lbl_1.Enabled              = true;
     this._lbl_1.ForeColor            = System.Drawing.SystemColors.ControlText;
     this._lbl_1.Cursor               = System.Windows.Forms.Cursors.Default;
     this._lbl_1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this._lbl_1.UseMnemonic          = true;
     this._lbl_1.Visible              = true;
     this._lbl_1.AutoSize             = true;
     this._lbl_1.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this._lbl_1.Name                 = "_lbl_1";
     this.lblRepName.BackColor        = System.Drawing.SystemColors.Window;
     this.lblRepName.Text             = "lblRepName";
     this.lblRepName.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.lblRepName.Size             = new System.Drawing.Size(238, 16);
     this.lblRepName.Location         = new System.Drawing.Point(12, 63);
     this.lblRepName.TabIndex         = 7;
     this.lblRepName.TextAlign        = System.Drawing.ContentAlignment.TopLeft;
     this.lblRepName.Enabled          = true;
     this.lblRepName.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lblRepName.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lblRepName.UseMnemonic      = true;
     this.lblRepName.Visible          = true;
     this.lblRepName.AutoSize         = false;
     this.lblRepName.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblRepName.Name             = "lblRepName";
     this._lbl_0.Text                 = "Supplier Name";
     this._lbl_0.Size                 = new System.Drawing.Size(69, 13);
     this._lbl_0.Location             = new System.Drawing.Point(12, 15);
     this._lbl_0.TabIndex             = 6;
     this._lbl_0.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_0.BackColor            = System.Drawing.Color.Transparent;
     this._lbl_0.Enabled              = true;
     this._lbl_0.ForeColor            = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Cursor               = System.Windows.Forms.Cursors.Default;
     this._lbl_0.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.UseMnemonic          = true;
     this._lbl_0.Visible              = true;
     this._lbl_0.AutoSize             = true;
     this._lbl_0.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this._lbl_0.Name                 = "_lbl_0";
     this.lblName.BackColor           = System.Drawing.SystemColors.Window;
     this.lblName.Text                = "lblName";
     this.lblName.Font                = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblName.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.lblName.Size                = new System.Drawing.Size(268, 16);
     this.lblName.Location            = new System.Drawing.Point(12, 27);
     this.lblName.TabIndex            = 5;
     this.lblName.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblName.Enabled             = true;
     this.lblName.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblName.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblName.UseMnemonic         = true;
     this.lblName.Visible             = true;
     this.lblName.AutoSize            = false;
     this.lblName.BorderStyle         = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblName.Name                = "lblName";
     this.cmdNext.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text                = "&Next >>";
     this.cmdNext.Enabled             = false;
     this.cmdNext.Size                = new System.Drawing.Size(84, 25);
     this.cmdNext.Location            = new System.Drawing.Point(270, 396);
     this.cmdNext.TabIndex            = 1;
     this.cmdNext.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdNext.CausesValidation    = true;
     this.cmdNext.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdNext.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdNext.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdNext.TabStop             = true;
     this.cmdNext.Name                = "cmdNext";
     this.cmdBack.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBack.Text                = "&New Supplier";
     this.cmdBack.Size                = new System.Drawing.Size(85, 25);
     this.cmdBack.Location            = new System.Drawing.Point(18, 396);
     this.cmdBack.TabIndex            = 2;
     this.cmdBack.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdBack.CausesValidation    = true;
     this.cmdBack.Enabled             = true;
     this.cmdBack.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdBack.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdBack.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdBack.TabStop             = true;
     this.cmdBack.Name                = "cmdBack";
     this.ilHeading.ImageSize         = new System.Drawing.Size(32, 32);
     this.ilHeading.TransparentColor  = System.Drawing.Color.FromArgb(192, 192, 192);
     this.ilHeading.Images.SetKeyName(0, "");
     this.ilHeading.Images.SetKeyName(1, "");
     this.ilHeading.Images.SetKeyName(2, "");
     this._frmMode_0.Text              = "Select a supplier";
     this._frmMode_0.Font              = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._frmMode_0.Size              = new System.Drawing.Size(352, 349);
     this._frmMode_0.Location          = new System.Drawing.Point(12, 39);
     this._frmMode_0.TabIndex          = 4;
     this._frmMode_0.Visible           = false;
     this._frmMode_0.BackColor         = System.Drawing.SystemColors.Control;
     this._frmMode_0.Enabled           = true;
     this._frmMode_0.ForeColor         = System.Drawing.SystemColors.ControlText;
     this._frmMode_0.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this._frmMode_0.Padding           = new System.Windows.Forms.Padding(0);
     this._frmMode_0.Name              = "_frmMode_0";
     this.lstSupplier.Size             = new System.Drawing.Size(328, 319);
     this.lstSupplier.Location         = new System.Drawing.Point(12, 18);
     this.lstSupplier.TabIndex         = 0;
     this.lstSupplier.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lstSupplier.BackColor        = System.Drawing.SystemColors.Window;
     this.lstSupplier.CausesValidation = true;
     this.lstSupplier.Enabled          = true;
     this.lstSupplier.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.lstSupplier.IntegralHeight   = true;
     this.lstSupplier.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lstSupplier.SelectionMode    = System.Windows.Forms.SelectionMode.One;
     this.lstSupplier.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lstSupplier.Sorted           = false;
     this.lstSupplier.TabStop          = true;
     this.lstSupplier.Visible          = true;
     this.lstSupplier.MultiColumn      = false;
     this.lstSupplier.Name             = "lstSupplier";
     this.Label1.Text        = "This utility will create a blank \"Purchase Order\" so you can process a \"Goods Receiving Voucher\" for a supplier without creating an order first.";
     this.Label1.Size        = new System.Drawing.Size(352, 31);
     this.Label1.Location    = new System.Drawing.Point(12, 3);
     this.Label1.TabIndex    = 13;
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor   = System.Drawing.Color.Transparent;
     this.Label1.Enabled     = true;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic = true;
     this.Label1.Visible     = true;
     this.Label1.AutoSize    = false;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name        = "Label1";
     this.Controls.Add(_frmMode_1);
     this.Controls.Add(cmdNext);
     this.Controls.Add(cmdBack);
     this.Controls.Add(_frmMode_0);
     this.Controls.Add(Label1);
     this._frmMode_1.Controls.Add(cmdProceed);
     this._frmMode_1.Controls.Add(lblData);
     this._frmMode_1.Controls.Add(_lbl_4);
     this.ShapeContainer1.Shapes.Add(Line1);
     this._frmMode_1.Controls.Add(lblRepNumber);
     this._frmMode_1.Controls.Add(_lbl_1);
     this._frmMode_1.Controls.Add(lblRepName);
     this._frmMode_1.Controls.Add(_lbl_0);
     this._frmMode_1.Controls.Add(lblName);
     this._frmMode_1.Controls.Add(ShapeContainer1);
     this._frmMode_0.Controls.Add(lstSupplier);
     this._frmMode_0.TabIndex = 0;
     this._frmMode_1.TabIndex = 1;
     this._lbl_0.TabIndex     = 0;
     this._lbl_1.TabIndex     = 1;
     this._lbl_4.TabIndex     = 4;
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
     this._frmMode_1.ResumeLayout(false);
     this._frmMode_0.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 15
0
 /// <summary>
 /// Método necesario para admitir el Diseñador. No se puede modificar
 /// el contenido de este método con el editor de código.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PantallaLogin));
     this.panelLeft = new System.Windows.Forms.Panel();
     this.lblVersion = new System.Windows.Forms.Label();
     this.pbNombreEmpresa = new System.Windows.Forms.PictureBox();
     this.pbLogoEmpresa = new System.Windows.Forms.PictureBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lsPass = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lsUser = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.txtUser = new System.Windows.Forms.TextBox();
     this.txtPass = new System.Windows.Forms.TextBox();
     this.lblTitulo = new System.Windows.Forms.Label();
     this.btnAcceder = new System.Windows.Forms.Button();
     this.pbCerrar = new System.Windows.Forms.PictureBox();
     this.pbMinimizar = new System.Windows.Forms.PictureBox();
     this.lblDerechos = new System.Windows.Forms.Label();
     this.lblErrorMenssage = new System.Windows.Forms.Label();
     this.panelLeft.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbNombreEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbLogoEmpresa)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbCerrar)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbMinimizar)).BeginInit();
     this.SuspendLayout();
     //
     // panelLeft
     //
     this.panelLeft.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(122)))), ((int)(((byte)(204)))));
     this.panelLeft.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panelLeft.Controls.Add(this.lblVersion);
     this.panelLeft.Controls.Add(this.pbNombreEmpresa);
     this.panelLeft.Controls.Add(this.pbLogoEmpresa);
     this.panelLeft.Dock = System.Windows.Forms.DockStyle.Left;
     this.panelLeft.Location = new System.Drawing.Point(0, 0);
     this.panelLeft.Name = "panelLeft";
     this.panelLeft.Size = new System.Drawing.Size(250, 330);
     this.panelLeft.TabIndex = 0;
     this.panelLeft.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PanelLeft_MouseDown);
     //
     // lblVersion
     //
     this.lblVersion.AutoSize = true;
     this.lblVersion.Font = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblVersion.ForeColor = System.Drawing.SystemColors.Control;
     this.lblVersion.Location = new System.Drawing.Point(3, 304);
     this.lblVersion.Name = "lblVersion";
     this.lblVersion.Size = new System.Drawing.Size(33, 15);
     this.lblVersion.TabIndex = 10;
     this.lblVersion.Text = "V 1.3";
     //
     // pbNombreEmpresa
     //
     this.pbNombreEmpresa.Image = global::Process_APP_Desk.Properties.Resources.Process_font1_white;
     this.pbNombreEmpresa.Location = new System.Drawing.Point(54, 191);
     this.pbNombreEmpresa.Name = "pbNombreEmpresa";
     this.pbNombreEmpresa.Size = new System.Drawing.Size(142, 19);
     this.pbNombreEmpresa.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbNombreEmpresa.TabIndex = 1;
     this.pbNombreEmpresa.TabStop = false;
     //
     // pbLogoEmpresa
     //
     this.pbLogoEmpresa.Image = global::Process_APP_Desk.Properties.Resources.Logo_white;
     this.pbLogoEmpresa.Location = new System.Drawing.Point(88, 105);
     this.pbLogoEmpresa.Name = "pbLogoEmpresa";
     this.pbLogoEmpresa.Size = new System.Drawing.Size(68, 65);
     this.pbLogoEmpresa.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbLogoEmpresa.TabIndex = 0;
     this.pbLogoEmpresa.TabStop = false;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lsPass,
     this.lsUser});
     this.shapeContainer1.Size = new System.Drawing.Size(780, 330);
     this.shapeContainer1.TabIndex = 1;
     this.shapeContainer1.TabStop = false;
     //
     // lsPass
     //
     this.lsPass.BorderColor = System.Drawing.Color.DimGray;
     this.lsPass.Enabled = false;
     this.lsPass.Name = "lsPass";
     this.lsPass.X1 = 310;
     this.lsPass.X2 = 717;
     this.lsPass.Y1 = 192;
     this.lsPass.Y2 = 192;
     //
     // lsUser
     //
     this.lsUser.BorderColor = System.Drawing.Color.DimGray;
     this.lsUser.Enabled = false;
     this.lsUser.Name = "lsUser";
     this.lsUser.X1 = 309;
     this.lsUser.X2 = 716;
     this.lsUser.Y1 = 118;
     this.lsUser.Y2 = 118;
     //
     // txtUser
     //
     this.txtUser.BackColor = System.Drawing.SystemColors.Control;
     this.txtUser.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtUser.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtUser.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.txtUser.Location = new System.Drawing.Point(309, 95);
     this.txtUser.Name = "txtUser";
     this.txtUser.Size = new System.Drawing.Size(408, 20);
     this.txtUser.TabIndex = 1;
     this.txtUser.Text = "USUARIO";
     this.txtUser.Enter += new System.EventHandler(this.TxtUser_Enter);
     this.txtUser.Leave += new System.EventHandler(this.TxtUser_Leave);
     //
     // txtPass
     //
     this.txtPass.BackColor = System.Drawing.SystemColors.Control;
     this.txtPass.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.txtPass.Font = new System.Drawing.Font("Century Gothic", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtPass.ForeColor = System.Drawing.SystemColors.WindowFrame;
     this.txtPass.Location = new System.Drawing.Point(310, 169);
     this.txtPass.Name = "txtPass";
     this.txtPass.Size = new System.Drawing.Size(408, 20);
     this.txtPass.TabIndex = 2;
     this.txtPass.Text = "CONTRASEÑA";
     this.txtPass.Enter += new System.EventHandler(this.TxtPass_Enter);
     this.txtPass.Leave += new System.EventHandler(this.TxtPass_Leave);
     //
     // lblTitulo
     //
     this.lblTitulo.AutoSize = true;
     this.lblTitulo.Font = new System.Drawing.Font("Century Gothic", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblTitulo.ForeColor = System.Drawing.Color.DarkGray;
     this.lblTitulo.Location = new System.Drawing.Point(470, 20);
     this.lblTitulo.Name = "lblTitulo";
     this.lblTitulo.Size = new System.Drawing.Size(100, 33);
     this.lblTitulo.TabIndex = 4;
     this.lblTitulo.Text = "LOGIN";
     //
     // btnAcceder
     //
     this.btnAcceder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(40)))), ((int)(((byte)(40)))), ((int)(((byte)(40)))));
     this.btnAcceder.FlatAppearance.BorderSize = 0;
     this.btnAcceder.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(28)))), ((int)(((byte)(28)))), ((int)(((byte)(28)))));
     this.btnAcceder.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.btnAcceder.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btnAcceder.Font = new System.Drawing.Font("Century Gothic", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnAcceder.ForeColor = System.Drawing.SystemColors.Control;
     this.btnAcceder.Location = new System.Drawing.Point(310, 248);
     this.btnAcceder.Name = "btnAcceder";
     this.btnAcceder.Size = new System.Drawing.Size(408, 40);
     this.btnAcceder.TabIndex = 0;
     this.btnAcceder.Text = "ACCEDER";
     this.btnAcceder.UseVisualStyleBackColor = false;
     this.btnAcceder.Click += new System.EventHandler(this.BtnAcceder_Click);
     //
     // pbCerrar
     //
     this.pbCerrar.Image = global::Process_APP_Desk.Properties.Resources.icon_cerrar2;
     this.pbCerrar.Location = new System.Drawing.Point(762, 3);
     this.pbCerrar.Name = "pbCerrar";
     this.pbCerrar.Size = new System.Drawing.Size(15, 15);
     this.pbCerrar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbCerrar.TabIndex = 6;
     this.pbCerrar.TabStop = false;
     this.pbCerrar.Click += new System.EventHandler(this.PbCerrar_Click);
     //
     // pbMinimizar
     //
     this.pbMinimizar.Image = global::Process_APP_Desk.Properties.Resources.icon_minimizar;
     this.pbMinimizar.Location = new System.Drawing.Point(741, 3);
     this.pbMinimizar.Name = "pbMinimizar";
     this.pbMinimizar.Size = new System.Drawing.Size(15, 15);
     this.pbMinimizar.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pbMinimizar.TabIndex = 7;
     this.pbMinimizar.TabStop = false;
     this.pbMinimizar.Click += new System.EventHandler(this.PbMinimizar_Click);
     //
     // lblDerechos
     //
     this.lblDerechos.AutoSize = true;
     this.lblDerechos.Font = new System.Drawing.Font("Century Gothic", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblDerechos.ForeColor = System.Drawing.Color.DarkGray;
     this.lblDerechos.Location = new System.Drawing.Point(433, 305);
     this.lblDerechos.Name = "lblDerechos";
     this.lblDerechos.Size = new System.Drawing.Size(165, 16);
     this.lblDerechos.TabIndex = 0;
     this.lblDerechos.Text = "Copyright @ Process S.A. 2019";
     //
     // lblErrorMenssage
     //
     this.lblErrorMenssage.AutoSize = true;
     this.lblErrorMenssage.Font = new System.Drawing.Font("MS Reference Sans Serif", 10.05F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblErrorMenssage.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblErrorMenssage.Image = global::Process_APP_Desk.Properties.Resources._264_warning;
     this.lblErrorMenssage.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.lblErrorMenssage.Location = new System.Drawing.Point(309, 196);
     this.lblErrorMenssage.Name = "lblErrorMenssage";
     this.lblErrorMenssage.Size = new System.Drawing.Size(109, 18);
     this.lblErrorMenssage.TabIndex = 8;
     this.lblErrorMenssage.Text = "Error Message";
     this.lblErrorMenssage.Visible = false;
     //
     // PantallaLogin
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.Control;
     this.ClientSize = new System.Drawing.Size(780, 330);
     this.Controls.Add(this.lblErrorMenssage);
     this.Controls.Add(this.lblDerechos);
     this.Controls.Add(this.pbMinimizar);
     this.Controls.Add(this.pbCerrar);
     this.Controls.Add(this.btnAcceder);
     this.Controls.Add(this.lblTitulo);
     this.Controls.Add(this.txtPass);
     this.Controls.Add(this.txtUser);
     this.Controls.Add(this.panelLeft);
     this.Controls.Add(this.shapeContainer1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "PantallaLogin";
     this.Opacity = 0.92D;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "PROCESS";
     this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.PantallaLogin_MouseDown);
     this.panelLeft.ResumeLayout(false);
     this.panelLeft.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbNombreEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbLogoEmpresa)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbCerrar)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pbMinimizar)).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()
 {
     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_marca));
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.gridmarca = new System.Windows.Forms.DataGridView();
     this.gmarcaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.sigla = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gmarcaidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gmarcaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gmarcadescort = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gmarcapropia = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.labelControl7 = new DevExpress.XtraEditors.LabelControl();
     this.txtsigla = new System.Windows.Forms.TextBox();
     this.labelControl6 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.chkmarcapropia = new DevExpress.XtraEditors.CheckEdit();
     this.marcadescort = new System.Windows.Forms.TextBox();
     this.marcaidold = new System.Windows.Forms.TextBox();
     this.marcaid = new System.Windows.Forms.TextBox();
     this.marcaname = new System.Windows.Forms.TextBox();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_excel = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl5 = new DevExpress.XtraEditors.LabelControl();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridmarca)).BeginInit();
     this.groupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkmarcapropia.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(94, 168);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(248, 21);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // gridmarca
     //
     this.gridmarca.AllowUserToAddRows = false;
     this.gridmarca.AllowUserToDeleteRows = false;
     this.gridmarca.AllowUserToResizeColumns = false;
     this.gridmarca.AllowUserToResizeRows = false;
     this.gridmarca.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     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.gridmarca.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridmarca.ColumnHeadersHeight = 20;
     this.gridmarca.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gmarcaid,
     this.sigla,
     this.gmarcaidold,
     this.gmarcaname,
     this.gmarcadescort,
     this.usuar,
     this.fecre,
     this.feact,
     this.gmarcapropia});
     this.gridmarca.Location = new System.Drawing.Point(5, 198);
     this.gridmarca.MultiSelect = false;
     this.gridmarca.Name = "gridmarca";
     this.gridmarca.RowHeadersVisible = false;
     this.gridmarca.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridmarca.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.gridmarca.RowTemplate.Height = 20;
     this.gridmarca.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridmarca.Size = new System.Drawing.Size(419, 351);
     this.gridmarca.TabIndex = 19;
     this.gridmarca.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridmarca_CellClick);
     this.gridmarca.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridmarca_CellEnter);
     this.gridmarca.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridmarca_CellLeave);
     this.gridmarca.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridmarca_KeyUp);
     //
     // gmarcaid
     //
     this.gmarcaid.DataPropertyName = "marcaid";
     this.gmarcaid.HeaderText = "Código";
     this.gmarcaid.Name = "gmarcaid";
     this.gmarcaid.Width = 60;
     //
     // sigla
     //
     this.sigla.DataPropertyName = "sigla";
     this.sigla.HeaderText = "Sigla";
     this.sigla.Name = "sigla";
     this.sigla.Width = 40;
     //
     // gmarcaidold
     //
     this.gmarcaidold.DataPropertyName = "marcaidold";
     this.gmarcaidold.HeaderText = "marcaidold";
     this.gmarcaidold.Name = "gmarcaidold";
     this.gmarcaidold.Visible = false;
     //
     // gmarcaname
     //
     this.gmarcaname.DataPropertyName = "marcaname";
     this.gmarcaname.HeaderText = "Marca";
     this.gmarcaname.Name = "gmarcaname";
     this.gmarcaname.Width = 200;
     //
     // gmarcadescort
     //
     this.gmarcadescort.DataPropertyName = "marcadescort";
     this.gmarcadescort.HeaderText = "Desc-Corta";
     this.gmarcadescort.Name = "gmarcadescort";
     this.gmarcadescort.Width = 90;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // gmarcapropia
     //
     this.gmarcapropia.DataPropertyName = "marcapropia";
     this.gmarcapropia.HeaderText = "marcapropia";
     this.gmarcapropia.Name = "gmarcapropia";
     this.gmarcapropia.Visible = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.labelControl7);
     this.groupBox1.Controls.Add(this.txtsigla);
     this.groupBox1.Controls.Add(this.labelControl6);
     this.groupBox1.Controls.Add(this.labelControl3);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.chkmarcapropia);
     this.groupBox1.Controls.Add(this.marcadescort);
     this.groupBox1.Controls.Add(this.marcaidold);
     this.groupBox1.Controls.Add(this.marcaid);
     this.groupBox1.Controls.Add(this.marcaname);
     this.groupBox1.Location = new System.Drawing.Point(4, 58);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(420, 84);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // labelControl7
     //
     this.labelControl7.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl7.Location = new System.Drawing.Point(242, 16);
     this.labelControl7.Name = "labelControl7";
     this.labelControl7.Size = new System.Drawing.Size(102, 13);
     this.labelControl7.TabIndex = 81;
     this.labelControl7.Text = "» Codigo Anterior:";
     //
     // txtsigla
     //
     this.txtsigla.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txtsigla.Location = new System.Drawing.Point(237, 59);
     this.txtsigla.MaxLength = 2;
     this.txtsigla.Name = "txtsigla";
     this.txtsigla.Size = new System.Drawing.Size(28, 21);
     this.txtsigla.TabIndex = 80;
     this.txtsigla.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // labelControl6
     //
     this.labelControl6.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl6.Location = new System.Drawing.Point(193, 64);
     this.labelControl6.Name = "labelControl6";
     this.labelControl6.Size = new System.Drawing.Size(41, 13);
     this.labelControl6.TabIndex = 79;
     this.labelControl6.Text = "» Sigla:";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(8, 62);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(71, 13);
     this.labelControl3.TabIndex = 78;
     this.labelControl3.Text = "» Des-Corta:";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(8, 39);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(49, 13);
     this.labelControl2.TabIndex = 77;
     this.labelControl2.Text = "» Marca:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(8, 20);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(52, 13);
     this.labelControl1.TabIndex = 76;
     this.labelControl1.Text = "» Codigo:";
     //
     // chkmarcapropia
     //
     this.chkmarcapropia.Location = new System.Drawing.Point(273, 60);
     this.chkmarcapropia.Name = "chkmarcapropia";
     this.chkmarcapropia.Properties.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.chkmarcapropia.Properties.Appearance.Options.UseFont = true;
     this.chkmarcapropia.Properties.Caption = "» Marca-Propia:";
     this.chkmarcapropia.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.chkmarcapropia.Size = new System.Drawing.Size(117, 19);
     this.chkmarcapropia.TabIndex = 75;
     //
     // marcadescort
     //
     this.marcadescort.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.marcadescort.Location = new System.Drawing.Point(85, 59);
     this.marcadescort.MaxLength = 10;
     this.marcadescort.Name = "marcadescort";
     this.marcadescort.Size = new System.Drawing.Size(102, 21);
     this.marcadescort.TabIndex = 18;
     //
     // marcaidold
     //
     this.marcaidold.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.marcaidold.Location = new System.Drawing.Point(347, 13);
     this.marcaidold.MaxLength = 3;
     this.marcaidold.Name = "marcaidold";
     this.marcaidold.Size = new System.Drawing.Size(27, 20);
     this.marcaidold.TabIndex = 16;
     this.marcaidold.Text = "00";
     this.marcaidold.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // marcaid
     //
     this.marcaid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.marcaid.Location = new System.Drawing.Point(85, 16);
     this.marcaid.MaxLength = 2;
     this.marcaid.Name = "marcaid";
     this.marcaid.Size = new System.Drawing.Size(28, 20);
     this.marcaid.TabIndex = 11;
     this.marcaid.Text = "00";
     this.marcaid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // marcaname
     //
     this.marcaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.marcaname.Location = new System.Drawing.Point(85, 37);
     this.marcaname.Name = "marcaname";
     this.marcaname.Size = new System.Drawing.Size(290, 21);
     this.marcaname.TabIndex = 12;
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_excel,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(426, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_excel
     //
     this.btn_excel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_excel.Image = global::BapFormulariosNet.Properties.Resources.btn_excel20;
     this.btn_excel.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_excel.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_excel.Name = "btn_excel";
     this.btn_excel.Size = new System.Drawing.Size(24, 26);
     this.btn_excel.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_excel.ToolTipText = "Exportar_Excel";
     this.btn_excel.Click += new System.EventHandler(this.btn_excel_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 15;
     this.lineShape1.X2 = 410;
     this.lineShape1.Y1 = 159;
     this.lineShape1.Y2 = 159;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(426, 552);
     this.shapeContainer1.TabIndex = 112;
     this.shapeContainer1.TabStop = false;
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(11, 142);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(69, 13);
     this.labelControl4.TabIndex = 113;
     this.labelControl4.Text = "» Busqueda:";
     //
     // labelControl5
     //
     this.labelControl5.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl5.Location = new System.Drawing.Point(11, 171);
     this.labelControl5.Name = "labelControl5";
     this.labelControl5.Size = new System.Drawing.Size(79, 13);
     this.labelControl5.TabIndex = 114;
     this.labelControl5.Text = "» Descripción:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 1);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(449, 57);
     this.panel1.TabIndex = 115;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(176, 29);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(67, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Marca";
     //
     // btn_busqueda
     //
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(348, 163);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(75, 33);
     this.btn_busqueda.TabIndex = 116;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // Frm_marca
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(426, 552);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.labelControl5);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.txt_criterio);
     this.Controls.Add(this.gridmarca);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_marca";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "»» Mantenimiento de Marcas ««";
     this.Load += new System.EventHandler(this.Frm_marcas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_marcas_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridmarca)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkmarcapropia.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 17
0
Archivo: Form1.cs Proyecto: Hernrup/PMI
        private void InitializeComponent()
        {
            this.btOk = new System.Windows.Forms.Button();
            this.tbToken = new System.Windows.Forms.TextBox();
            this.wbBrowser = new System.Windows.Forms.WebBrowser();
            this.label1 = new System.Windows.Forms.Label();
            this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
            this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.SuspendLayout();
            //
            // btOk
            //
            this.btOk.Enabled = false;
            this.btOk.Location = new System.Drawing.Point(897, 785);
            this.btOk.Name = "btOk";
            this.btOk.Size = new System.Drawing.Size(75, 23);
            this.btOk.TabIndex = 0;
            this.btOk.Text = "OK";
            this.btOk.UseVisualStyleBackColor = true;
            this.btOk.Click += new System.EventHandler(this.btOk_Click);
            //
            // tbToken
            //
            this.tbToken.Location = new System.Drawing.Point(57, 787);
            this.tbToken.Name = "tbToken";
            this.tbToken.Size = new System.Drawing.Size(834, 20);
            this.tbToken.TabIndex = 1;
            this.tbToken.TextChanged += new System.EventHandler(this.tbToken_TextChanged);
            //
            // wbBrowser
            //
            this.wbBrowser.Location = new System.Drawing.Point(-4, 0);
            this.wbBrowser.MinimumSize = new System.Drawing.Size(20, 20);
            this.wbBrowser.Name = "wbBrowser";
            this.wbBrowser.Size = new System.Drawing.Size(987, 744);
            this.wbBrowser.TabIndex = 2;

            //
            // label1
            //
            this.label1.AutoSize = true;
            this.label1.Location = new System.Drawing.Point(13, 790);
            this.label1.Name = "label1";
            this.label1.Size = new System.Drawing.Size(38, 13);
            this.label1.TabIndex = 3;
            this.label1.Text = "Token";
            //
            // shapeContainer1
            //
            this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
            this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
            this.shapeContainer1.Name = "shapeContainer1";
            this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
            this.lineShape1});
            this.shapeContainer1.Size = new System.Drawing.Size(983, 836);
            this.shapeContainer1.TabIndex = 4;
            this.shapeContainer1.TabStop = false;
            //
            // lineShape1
            //
            this.lineShape1.Name = "lineShape1";
            this.lineShape1.X1 = -1;
            this.lineShape1.X2 = 986;
            this.lineShape1.Y1 = 744;
            this.lineShape1.Y2 = 744;
            //
            // Authenticate
            //
            this.AccessibleName = "";
            this.ClientSize = new System.Drawing.Size(983, 836);
            this.Controls.Add(this.label1);
            this.Controls.Add(this.wbBrowser);
            this.Controls.Add(this.tbToken);
            this.Controls.Add(this.btOk);
            this.Controls.Add(this.shapeContainer1);
            this.Name = "Authenticate";
            this.Text = "Authenticate";
            this.ResumeLayout(false);
            this.PerformLayout();
        }
Ejemplo n.º 18
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVblind));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._frmMode_1 = new System.Windows.Forms.GroupBox();
			this.cmdProceed = new System.Windows.Forms.Button();
			this.lblData = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.lblRepNumber = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this.lblRepName = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblName = new System.Windows.Forms.Label();
			this.cmdNext = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this.ilHeading = new System.Windows.Forms.ImageList();
			this._frmMode_0 = new System.Windows.Forms.GroupBox();
			this.lstSupplier = new System.Windows.Forms.ListBox();
			this.Label1 = new System.Windows.Forms.Label();
			//Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this._frmMode_1.SuspendLayout();
			this._frmMode_0.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			this.ControlBox = false;
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.ClientSize = new System.Drawing.Size(377, 434);
			this.Location = new System.Drawing.Point(3, 3);
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmGRVblind";
			this._frmMode_1.Text = "Supplier Details";
			this._frmMode_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmMode_1.Size = new System.Drawing.Size(352, 349);
			this._frmMode_1.Location = new System.Drawing.Point(12, 39);
			this._frmMode_1.TabIndex = 3;
			this._frmMode_1.Visible = false;
			this._frmMode_1.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_1.Enabled = true;
			this._frmMode_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_1.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_1.Name = "_frmMode_1";
			this.cmdProceed.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdProceed.Text = "&Create Purchase Order";
			this.cmdProceed.Size = new System.Drawing.Size(127, 28);
			this.cmdProceed.Location = new System.Drawing.Point(216, 312);
			this.cmdProceed.TabIndex = 12;
			this.cmdProceed.BackColor = System.Drawing.SystemColors.Control;
			this.cmdProceed.CausesValidation = true;
			this.cmdProceed.Enabled = true;
			this.cmdProceed.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdProceed.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdProceed.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdProceed.TabStop = true;
			this.cmdProceed.Name = "cmdProceed";
			this.lblData.Text = "By clicking the \"Create Purchase Order\" button, you will create a blank purchase order for the above supplier. You will then be prompted for the invoice details and proceed to the GRV product capture screen.";
			this.lblData.Size = new System.Drawing.Size(334, 151);
			this.lblData.Location = new System.Drawing.Point(3, 120);
			this.lblData.TabIndex = 11;
			this.lblData.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblData.BackColor = System.Drawing.SystemColors.Control;
			this.lblData.Enabled = true;
			this.lblData.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblData.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblData.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblData.UseMnemonic = true;
			this.lblData.Visible = true;
			this.lblData.AutoSize = false;
			this.lblData.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblData.Name = "lblData";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this._lbl_4.BackColor = System.Drawing.Color.Blue;
			this._lbl_4.Text = "Create New Purchase Order";
			this._lbl_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_4.ForeColor = System.Drawing.Color.White;
			this._lbl_4.Size = new System.Drawing.Size(347, 17);
			this._lbl_4.Location = new System.Drawing.Point(3, 93);
			this._lbl_4.TabIndex = 10;
			this._lbl_4.Enabled = true;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.UseMnemonic = true;
			this._lbl_4.Visible = true;
			this._lbl_4.AutoSize = false;
			this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lbl_4.Name = "_lbl_4";
			this.Line1.X1 = 342;
			this.Line1.X2 = 12;
			this.Line1.Y1 = 74;
			this.Line1.Y2 = 74;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.BorderWidth = 1;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this.lblRepNumber.BackColor = System.Drawing.SystemColors.Window;
			this.lblRepNumber.Text = "lblRepNumber";
			this.lblRepNumber.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lblRepNumber.Size = new System.Drawing.Size(91, 16);
			this.lblRepNumber.Location = new System.Drawing.Point(252, 63);
			this.lblRepNumber.TabIndex = 9;
			this.lblRepNumber.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblRepNumber.Enabled = true;
			this.lblRepNumber.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblRepNumber.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblRepNumber.UseMnemonic = true;
			this.lblRepNumber.Visible = true;
			this.lblRepNumber.AutoSize = false;
			this.lblRepNumber.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lblRepNumber.Name = "lblRepNumber";
			this._lbl_1.Text = "Representative Name";
			this._lbl_1.Size = new System.Drawing.Size(103, 13);
			this._lbl_1.Location = new System.Drawing.Point(12, 51);
			this._lbl_1.TabIndex = 8;
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = true;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this.lblRepName.BackColor = System.Drawing.SystemColors.Window;
			this.lblRepName.Text = "lblRepName";
			this.lblRepName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lblRepName.Size = new System.Drawing.Size(238, 16);
			this.lblRepName.Location = new System.Drawing.Point(12, 63);
			this.lblRepName.TabIndex = 7;
			this.lblRepName.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblRepName.Enabled = true;
			this.lblRepName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblRepName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblRepName.UseMnemonic = true;
			this.lblRepName.Visible = true;
			this.lblRepName.AutoSize = false;
			this.lblRepName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lblRepName.Name = "lblRepName";
			this._lbl_0.Text = "Supplier Name";
			this._lbl_0.Size = new System.Drawing.Size(69, 13);
			this._lbl_0.Location = new System.Drawing.Point(12, 15);
			this._lbl_0.TabIndex = 6;
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this.lblName.BackColor = System.Drawing.SystemColors.Window;
			this.lblName.Text = "lblName";
			this.lblName.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lblName.Size = new System.Drawing.Size(268, 16);
			this.lblName.Location = new System.Drawing.Point(12, 27);
			this.lblName.TabIndex = 5;
			this.lblName.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblName.Enabled = true;
			this.lblName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblName.UseMnemonic = true;
			this.lblName.Visible = true;
			this.lblName.AutoSize = false;
			this.lblName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lblName.Name = "lblName";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Next >>";
			this.cmdNext.Enabled = false;
			this.cmdNext.Size = new System.Drawing.Size(84, 25);
			this.cmdNext.Location = new System.Drawing.Point(270, 396);
			this.cmdNext.TabIndex = 1;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.TabStop = true;
			this.cmdNext.Name = "cmdNext";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "&New Supplier";
			this.cmdBack.Size = new System.Drawing.Size(85, 25);
			this.cmdBack.Location = new System.Drawing.Point(18, 396);
			this.cmdBack.TabIndex = 2;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.TabStop = true;
			this.cmdBack.Name = "cmdBack";
			this.ilHeading.ImageSize = new System.Drawing.Size(32, 32);
			this.ilHeading.TransparentColor = System.Drawing.Color.FromArgb(192, 192, 192);
			this.ilHeading.Images.SetKeyName(0, "");
			this.ilHeading.Images.SetKeyName(1, "");
			this.ilHeading.Images.SetKeyName(2, "");
			this._frmMode_0.Text = "Select a supplier";
			this._frmMode_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmMode_0.Size = new System.Drawing.Size(352, 349);
			this._frmMode_0.Location = new System.Drawing.Point(12, 39);
			this._frmMode_0.TabIndex = 4;
			this._frmMode_0.Visible = false;
			this._frmMode_0.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_0.Enabled = true;
			this._frmMode_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_0.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_0.Name = "_frmMode_0";
			this.lstSupplier.Size = new System.Drawing.Size(328, 319);
			this.lstSupplier.Location = new System.Drawing.Point(12, 18);
			this.lstSupplier.TabIndex = 0;
			this.lstSupplier.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lstSupplier.BackColor = System.Drawing.SystemColors.Window;
			this.lstSupplier.CausesValidation = true;
			this.lstSupplier.Enabled = true;
			this.lstSupplier.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lstSupplier.IntegralHeight = true;
			this.lstSupplier.Cursor = System.Windows.Forms.Cursors.Default;
			this.lstSupplier.SelectionMode = System.Windows.Forms.SelectionMode.One;
			this.lstSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lstSupplier.Sorted = false;
			this.lstSupplier.TabStop = true;
			this.lstSupplier.Visible = true;
			this.lstSupplier.MultiColumn = false;
			this.lstSupplier.Name = "lstSupplier";
			this.Label1.Text = "This utility will create a blank \"Purchase Order\" so you can process a \"Goods Receiving Voucher\" for a supplier without creating an order first.";
			this.Label1.Size = new System.Drawing.Size(352, 31);
			this.Label1.Location = new System.Drawing.Point(12, 3);
			this.Label1.TabIndex = 13;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this.Controls.Add(_frmMode_1);
			this.Controls.Add(cmdNext);
			this.Controls.Add(cmdBack);
			this.Controls.Add(_frmMode_0);
			this.Controls.Add(Label1);
			this._frmMode_1.Controls.Add(cmdProceed);
			this._frmMode_1.Controls.Add(lblData);
			this._frmMode_1.Controls.Add(_lbl_4);
			this.ShapeContainer1.Shapes.Add(Line1);
			this._frmMode_1.Controls.Add(lblRepNumber);
			this._frmMode_1.Controls.Add(_lbl_1);
			this._frmMode_1.Controls.Add(lblRepName);
			this._frmMode_1.Controls.Add(_lbl_0);
			this._frmMode_1.Controls.Add(lblName);
			this._frmMode_1.Controls.Add(ShapeContainer1);
			this._frmMode_0.Controls.Add(lstSupplier);
			this._frmMode_0.TabIndex = 0;
			this._frmMode_1.TabIndex = 1;
			this._lbl_0.TabIndex = 0;
			this._lbl_1.TabIndex = 1;
			this._lbl_4.TabIndex = 4;
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
			this._frmMode_1.ResumeLayout(false);
			this._frmMode_0.ResumeLayout(false);
			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();
     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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_reporte_historialxproductos));
     this.Mensaje = new System.Windows.Forms.ToolTip(this.components);
     this.productid = new System.Windows.Forms.TextBox();
     this.productname = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.dgb_historial = new System.Windows.Forms.DataGridView();
     this._fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tipodoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.motivo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cencosname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.estacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.nombrelargo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glosa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dgb_stock = new System.Windows.Forms.DataGridView();
     this.fechdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tipodoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._serdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._numdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._motivo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._numfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.label3 = new System.Windows.Forms.Label();
     this.peso = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.unmedpeso = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.btn_print = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_historial)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_stock)).BeginInit();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // productid
     //
     this.productid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productid.Location = new System.Drawing.Point(81, 43);
     this.productid.MaxLength = 13;
     this.productid.Name = "productid";
     this.productid.Size = new System.Drawing.Size(105, 20);
     this.productid.TabIndex = 66;
     this.productid.TextChanged += new System.EventHandler(this.productid_TextChanged);
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     //
     // productname
     //
     this.productname.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productname.Location = new System.Drawing.Point(189, 43);
     this.productname.Multiline = true;
     this.productname.Name = "productname";
     this.productname.ReadOnly = true;
     this.productname.Size = new System.Drawing.Size(520, 21);
     this.productname.TabIndex = 67;
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(13, 85);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(152, 17);
     this.label2.TabIndex = 65;
     this.label2.Text = "Movimientos Fisicos";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.Black;
     this.label1.Location = new System.Drawing.Point(15, 321);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(181, 17);
     this.label1.TabIndex = 64;
     this.label1.Text = "Historial de Habilitación";
     //
     // dgb_historial
     //
     this.dgb_historial.AllowUserToAddRows = false;
     this.dgb_historial.AllowUserToDeleteRows = false;
     this.dgb_historial.AllowUserToResizeColumns = false;
     this.dgb_historial.AllowUserToResizeRows = false;
     this.dgb_historial.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_historial.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._fechdoc,
     this.tipodoc,
     this.serdoc,
     this.numdoc,
     this.cantidad,
     this.motivo,
     this.ctactename,
     this.cencosname,
     this.estacion,
     this.nombrelargo,
     this.glosa});
     this.dgb_historial.Location = new System.Drawing.Point(12, 348);
     this.dgb_historial.Name = "dgb_historial";
     this.dgb_historial.ReadOnly = true;
     this.dgb_historial.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgb_historial.Size = new System.Drawing.Size(1089, 197);
     this.dgb_historial.TabIndex = 63;
     //
     // _fechdoc
     //
     this._fechdoc.DataPropertyName = "fechdoc";
     this._fechdoc.HeaderText = "Fecha";
     this._fechdoc.Name = "_fechdoc";
     this._fechdoc.ReadOnly = true;
     this._fechdoc.Width = 90;
     //
     // tipodoc
     //
     this.tipodoc.DataPropertyName = "tipodoc";
     this.tipodoc.HeaderText = "TipDoc";
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.ReadOnly = true;
     this.tipodoc.Width = 50;
     //
     // serdoc
     //
     this.serdoc.DataPropertyName = "serdoc";
     this.serdoc.HeaderText = "SerDoc";
     this.serdoc.Name = "serdoc";
     this.serdoc.ReadOnly = true;
     this.serdoc.Width = 50;
     //
     // numdoc
     //
     this.numdoc.DataPropertyName = "numdoc";
     this.numdoc.HeaderText = "NumDoc";
     this.numdoc.Name = "numdoc";
     this.numdoc.ReadOnly = true;
     this.numdoc.Width = 80;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle4.Format = "N0";
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.ReadOnly = true;
     this.cantidad.Width = 60;
     //
     // motivo
     //
     this.motivo.DataPropertyName = "motivo";
     this.motivo.HeaderText = "Motivo";
     this.motivo.Name = "motivo";
     this.motivo.ReadOnly = true;
     this.motivo.Width = 150;
     //
     // ctactename
     //
     this.ctactename.DataPropertyName = "ctactename";
     this.ctactename.HeaderText = "Cliente/Proveedor";
     this.ctactename.Name = "ctactename";
     this.ctactename.ReadOnly = true;
     this.ctactename.Visible = false;
     this.ctactename.Width = 200;
     //
     // cencosname
     //
     this.cencosname.DataPropertyName = "cencosname";
     this.cencosname.HeaderText = "CentroCosto";
     this.cencosname.Name = "cencosname";
     this.cencosname.ReadOnly = true;
     //
     // estacion
     //
     this.estacion.DataPropertyName = "estacion";
     this.estacion.HeaderText = "Estacion";
     this.estacion.Name = "estacion";
     this.estacion.ReadOnly = true;
     this.estacion.Width = 60;
     //
     // nombrelargo
     //
     this.nombrelargo.DataPropertyName = "nombrelargo";
     this.nombrelargo.HeaderText = "Personal";
     this.nombrelargo.Name = "nombrelargo";
     this.nombrelargo.ReadOnly = true;
     this.nombrelargo.Width = 200;
     //
     // glosa
     //
     this.glosa.DataPropertyName = "glosa";
     this.glosa.HeaderText = "Glosa";
     this.glosa.Name = "glosa";
     this.glosa.ReadOnly = true;
     this.glosa.Width = 200;
     //
     // dgb_stock
     //
     this.dgb_stock.AllowUserToAddRows = false;
     this.dgb_stock.AllowUserToDeleteRows = false;
     this.dgb_stock.AllowUserToResizeColumns = false;
     this.dgb_stock.AllowUserToResizeRows = false;
     this.dgb_stock.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_stock.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.fechdoc,
     this._tipodoc,
     this._serdoc,
     this._numdoc,
     this._cantidad,
     this._motivo,
     this._precunit,
     this._numfac,
     this._ctactename});
     this.dgb_stock.Location = new System.Drawing.Point(12, 103);
     this.dgb_stock.Name = "dgb_stock";
     this.dgb_stock.ReadOnly = true;
     this.dgb_stock.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgb_stock.Size = new System.Drawing.Size(955, 203);
     this.dgb_stock.TabIndex = 60;
     this.dgb_stock.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_stock_CellClick);
     //
     // fechdoc
     //
     this.fechdoc.DataPropertyName = "fechdoc";
     this.fechdoc.HeaderText = "Fecha";
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.ReadOnly = true;
     this.fechdoc.Width = 90;
     //
     // _tipodoc
     //
     this._tipodoc.DataPropertyName = "tipodoc";
     this._tipodoc.HeaderText = "TipDoc";
     this._tipodoc.Name = "_tipodoc";
     this._tipodoc.ReadOnly = true;
     this._tipodoc.Width = 50;
     //
     // _serdoc
     //
     this._serdoc.DataPropertyName = "serdoc";
     this._serdoc.HeaderText = "SerDoc";
     this._serdoc.Name = "_serdoc";
     this._serdoc.ReadOnly = true;
     this._serdoc.Width = 50;
     //
     // _numdoc
     //
     this._numdoc.DataPropertyName = "numdoc";
     this._numdoc.HeaderText = "NumDoc";
     this._numdoc.Name = "_numdoc";
     this._numdoc.ReadOnly = true;
     this._numdoc.Width = 80;
     //
     // _cantidad
     //
     this._cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle5.Format = "N0";
     dataGridViewCellStyle5.NullValue = null;
     this._cantidad.DefaultCellStyle = dataGridViewCellStyle5;
     this._cantidad.HeaderText = "Cantidad";
     this._cantidad.Name = "_cantidad";
     this._cantidad.ReadOnly = true;
     this._cantidad.Width = 60;
     //
     // _motivo
     //
     this._motivo.DataPropertyName = "motivo";
     this._motivo.HeaderText = "Motivo";
     this._motivo.Name = "_motivo";
     this._motivo.ReadOnly = true;
     this._motivo.Width = 150;
     //
     // _precunit
     //
     this._precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this._precunit.DefaultCellStyle = dataGridViewCellStyle6;
     this._precunit.HeaderText = "PrecUnit";
     this._precunit.Name = "_precunit";
     this._precunit.ReadOnly = true;
     //
     // _numfac
     //
     this._numfac.DataPropertyName = "numfac";
     this._numfac.HeaderText = "Factura";
     this._numfac.Name = "_numfac";
     this._numfac.ReadOnly = true;
     this._numfac.Width = 80;
     //
     // _ctactename
     //
     this._ctactename.DataPropertyName = "ctactename";
     this._ctactename.HeaderText = "Cliente/Proveedor";
     this._ctactename.Name = "_ctactename";
     this._ctactename.ReadOnly = true;
     this._ctactename.Width = 200;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(22, 46);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(53, 13);
     this.label3.TabIndex = 16;
     this.label3.Text = "Producto:";
     //
     // peso
     //
     this.peso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.peso.Location = new System.Drawing.Point(366, 650);
     this.peso.Name = "peso";
     this.peso.Size = new System.Drawing.Size(124, 20);
     this.peso.TabIndex = 49;
     this.peso.Text = "ventas al exterior";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(299, 650);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(61, 13);
     this.label30.TabIndex = 59;
     this.label30.Text = "Med. Peso:";
     //
     // unmedpeso
     //
     this.unmedpeso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.unmedpeso.Location = new System.Drawing.Point(112, 650);
     this.unmedpeso.Name = "unmedpeso";
     this.unmedpeso.Size = new System.Drawing.Size(148, 20);
     this.unmedpeso.TabIndex = 48;
     this.unmedpeso.Text = "ventas al exterior";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, -23);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1106, 56);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(445, 23);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(202, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Historial x Productos";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(28, 650);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(62, 13);
     this.label31.TabIndex = 57;
     this.label31.Text = "Unid. Peso:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2,
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1106, 548);
     this.shapeContainer1.TabIndex = 62;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.X1 = 14;
     this.lineShape2.X2 = 1038;
     this.lineShape2.Y1 = 319;
     this.lineShape2.Y2 = 319;
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 15;
     this.lineShape1.X2 = 954;
     this.lineShape1.Y1 = 80;
     this.lineShape1.Y2 = 80;
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.Color.Transparent;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(719, 37);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(95, 32);
     this.btn_busqueda.TabIndex = 68;
     this.btn_busqueda.Text = "&Consultar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // btn_print
     //
     this.btn_print.Image = ((System.Drawing.Image)(resources.GetObject("btn_print.Image")));
     this.btn_print.Location = new System.Drawing.Point(973, 271);
     this.btn_print.Name = "btn_print";
     this.btn_print.Size = new System.Drawing.Size(41, 36);
     this.btn_print.TabIndex = 69;
     this.btn_print.Click += new System.EventHandler(this.btn_print_Click);
     //
     // Frm_reporte_historialxproductos
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1106, 548);
     this.Controls.Add(this.btn_print);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.productid);
     this.Controls.Add(this.productname);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.dgb_historial);
     this.Controls.Add(this.dgb_stock);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.peso);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.unmedpeso);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_reporte_historialxproductos";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Historial x Productos";
     this.Load += new System.EventHandler(this.Frm_reporte_historialxestacion_Load);
     ((System.ComponentModel.ISupportInitialize)(this.dgb_historial)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_stock)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 20
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmGestionEleves));
     this.titreGestionInfirmerie = new System.Windows.Forms.Label();
     this.lblClasse       = new System.Windows.Forms.Label();
     this.lblEleve        = new System.Windows.Forms.Label();
     this.btnValider      = new System.Windows.Forms.Button();
     this.btnRetour       = new System.Windows.Forms.Button();
     this.btnImportCSV    = new System.Windows.Forms.Button();
     this.btnCreerEleve   = new System.Windows.Forms.Button();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1      = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.logoStVincent   = new System.Windows.Forms.PictureBox();
     this.listeClasses    = new System.Windows.Forms.ComboBox();
     this.listeEleves     = new System.Windows.Forms.ComboBox();
     this.comboBoxPrenoms = new System.Windows.Forms.ComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.logoStVincent)).BeginInit();
     this.SuspendLayout();
     //
     // titreGestionInfirmerie
     //
     this.titreGestionInfirmerie.AutoSize = true;
     this.titreGestionInfirmerie.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F);
     this.titreGestionInfirmerie.Location = new System.Drawing.Point(137, 59);
     this.titreGestionInfirmerie.Name     = "titreGestionInfirmerie";
     this.titreGestionInfirmerie.Size     = new System.Drawing.Size(144, 20);
     this.titreGestionInfirmerie.TabIndex = 8;
     this.titreGestionInfirmerie.Text     = "Gestion des élèves";
     //
     // lblClasse
     //
     this.lblClasse.AutoSize  = true;
     this.lblClasse.ForeColor = System.Drawing.SystemColors.ControlText;
     this.lblClasse.Location  = new System.Drawing.Point(35, 111);
     this.lblClasse.Name      = "lblClasse";
     this.lblClasse.Size      = new System.Drawing.Size(44, 13);
     this.lblClasse.TabIndex  = 9;
     this.lblClasse.Text      = "Classe :";
     this.lblClasse.Click    += new System.EventHandler(this.lblClasse_Click);
     //
     // lblEleve
     //
     this.lblEleve.AutoSize = true;
     this.lblEleve.Location = new System.Drawing.Point(39, 171);
     this.lblEleve.Name     = "lblEleve";
     this.lblEleve.Size     = new System.Drawing.Size(40, 13);
     this.lblEleve.TabIndex = 10;
     this.lblEleve.Text     = "Elève :";
     //
     // btnValider
     //
     this.btnValider.Location = new System.Drawing.Point(105, 225);
     this.btnValider.Name     = "btnValider";
     this.btnValider.Size     = new System.Drawing.Size(90, 41);
     this.btnValider.TabIndex = 13;
     this.btnValider.Text     = "Rechercher";
     this.btnValider.UseVisualStyleBackColor = true;
     this.btnValider.Click += new System.EventHandler(this.btnValider_Click);
     //
     // btnRetour
     //
     this.btnRetour.Location = new System.Drawing.Point(299, 12);
     this.btnRetour.Name     = "btnRetour";
     this.btnRetour.Size     = new System.Drawing.Size(75, 23);
     this.btnRetour.TabIndex = 14;
     this.btnRetour.Text     = "Retour";
     this.btnRetour.UseVisualStyleBackColor = true;
     this.btnRetour.Click += new System.EventHandler(this.btnRetour_Click);
     //
     // btnImportCSV
     //
     this.btnImportCSV.Location = new System.Drawing.Point(294, 259);
     this.btnImportCSV.Name     = "btnImportCSV";
     this.btnImportCSV.Size     = new System.Drawing.Size(84, 26);
     this.btnImportCSV.TabIndex = 15;
     this.btnImportCSV.Text     = "Import .CSV";
     this.btnImportCSV.UseVisualStyleBackColor = true;
     //
     // btnCreerEleve
     //
     this.btnCreerEleve.Location = new System.Drawing.Point(250, 140);
     this.btnCreerEleve.Name     = "btnCreerEleve";
     this.btnCreerEleve.Size     = new System.Drawing.Size(119, 38);
     this.btnCreerEleve.TabIndex = 16;
     this.btnCreerEleve.Text     = "Créer un élève";
     this.btnCreerEleve.UseVisualStyleBackColor = true;
     this.btnCreerEleve.Click += new System.EventHandler(this.btnCreerEleve_Click);
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name     = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
         this.lineShape1
     });
     this.shapeContainer1.Size     = new System.Drawing.Size(383, 291);
     this.shapeContainer1.TabIndex = 18;
     this.shapeContainer1.TabStop  = false;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1   = 223;
     this.lineShape1.X2   = 223;
     this.lineShape1.Y1   = 91;
     this.lineShape1.Y2   = 241;
     //
     // logoStVincent
     //
     this.logoStVincent.ErrorImage   = null;
     this.logoStVincent.Image        = global::InfirmerieGUI.Properties.Resources.logo;
     this.logoStVincent.InitialImage = ((System.Drawing.Image)(resources.GetObject("logoStVincent.InitialImage")));
     this.logoStVincent.Location     = new System.Drawing.Point(175, 12);
     this.logoStVincent.Name         = "logoStVincent";
     this.logoStVincent.Size         = new System.Drawing.Size(42, 44);
     this.logoStVincent.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.logoStVincent.TabIndex     = 6;
     this.logoStVincent.TabStop      = false;
     //
     // listeClasses
     //
     this.listeClasses.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.listeClasses.FormattingEnabled = true;
     this.listeClasses.Location          = new System.Drawing.Point(90, 109);
     this.listeClasses.Name                  = "listeClasses";
     this.listeClasses.Size                  = new System.Drawing.Size(121, 21);
     this.listeClasses.TabIndex              = 20;
     this.listeClasses.SelectedIndexChanged += new System.EventHandler(this.listeClasses_SelectedIndexChanged);
     //
     // listeEleves
     //
     this.listeEleves.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.listeEleves.FormattingEnabled = true;
     this.listeEleves.Location          = new System.Drawing.Point(90, 169);
     this.listeEleves.Name     = "listeEleves";
     this.listeEleves.Size     = new System.Drawing.Size(121, 21);
     this.listeEleves.TabIndex = 21;
     //
     // comboBoxPrenoms
     //
     this.comboBoxPrenoms.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBoxPrenoms.FormattingEnabled = true;
     this.comboBoxPrenoms.Location          = new System.Drawing.Point(90, 197);
     this.comboBoxPrenoms.Name     = "comboBoxPrenoms";
     this.comboBoxPrenoms.Size     = new System.Drawing.Size(121, 21);
     this.comboBoxPrenoms.TabIndex = 22;
     //
     // FrmGestionEleves
     //
     this.ClientSize = new System.Drawing.Size(383, 291);
     this.Controls.Add(this.comboBoxPrenoms);
     this.Controls.Add(this.listeEleves);
     this.Controls.Add(this.listeClasses);
     this.Controls.Add(this.btnCreerEleve);
     this.Controls.Add(this.btnImportCSV);
     this.Controls.Add(this.btnRetour);
     this.Controls.Add(this.btnValider);
     this.Controls.Add(this.lblEleve);
     this.Controls.Add(this.lblClasse);
     this.Controls.Add(this.titreGestionInfirmerie);
     this.Controls.Add(this.logoStVincent);
     this.Controls.Add(this.shapeContainer1);
     this.Name  = "FrmGestionEleves";
     this.Load += new System.EventHandler(this.FrmGestionEleves_Load);
     ((System.ComponentModel.ISupportInitialize)(this.logoStVincent)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmExport));
     this.ToolTip1        = new System.Windows.Forms.ToolTip(this.components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.Line1           = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.lblHeading      = new System.Windows.Forms.Label();
     this.prgUpdate       = new System.Windows.Forms.ProgressBar();
     this.Command3        = new System.Windows.Forms.Button();
     this.txtFile         = new System.Windows.Forms.TextBox();
     this.cmdDlgOpen      = new System.Windows.Forms.OpenFileDialog();
     this.Label2          = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     //
     //ShapeContainer1
     //
     this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.ShapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
     this.ShapeContainer1.Name     = "ShapeContainer1";
     this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Line1 });
     this.ShapeContainer1.Size     = new System.Drawing.Size(512, 114);
     this.ShapeContainer1.TabIndex = 5;
     this.ShapeContainer1.TabStop  = false;
     //
     //Line1
     //
     this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Line1.BorderWidth = 2;
     this.Line1.Name        = "Line1";
     this.Line1.X1          = 4;
     this.Line1.X2          = 504;
     this.Line1.Y1          = 44;
     this.Line1.Y2          = 44;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.cmdClose);
     this.picButtons.Controls.Add(this.lblHeading);
     this.picButtons.Cursor      = System.Windows.Forms.Cursors.Default;
     this.picButtons.Dock        = System.Windows.Forms.DockStyle.Top;
     this.picButtons.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.picButtons.Location    = new System.Drawing.Point(0, 0);
     this.picButtons.Name        = "picButtons";
     this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Size        = new System.Drawing.Size(512, 38);
     this.picButtons.TabIndex    = 4;
     //
     //cmdClose
     //
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(432, 2);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(73, 29);
     this.cmdClose.TabIndex                = 5;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "E&xit";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //lblHeading
     //
     this.lblHeading.BackColor   = System.Drawing.Color.Transparent;
     this.lblHeading.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblHeading.Font        = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblHeading.ForeColor   = System.Drawing.Color.White;
     this.lblHeading.Location    = new System.Drawing.Point(12, 8);
     this.lblHeading.Name        = "lblHeading";
     this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.Size        = new System.Drawing.Size(407, 21);
     this.lblHeading.TabIndex    = 6;
     this.lblHeading.Text        = "HandHeld StockTake: (Item Barcode, Item Quantity)";
     //
     //prgUpdate
     //
     this.prgUpdate.Location = new System.Drawing.Point(84, 72);
     this.prgUpdate.Maximum  = 1;
     this.prgUpdate.Name     = "prgUpdate";
     this.prgUpdate.Size     = new System.Drawing.Size(373, 33);
     this.prgUpdate.TabIndex = 3;
     //
     //Command3
     //
     this.Command3.BackColor               = System.Drawing.SystemColors.Control;
     this.Command3.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.Command3.Font                    = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.Command3.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.Command3.Location                = new System.Drawing.Point(472, 52);
     this.Command3.Name                    = "Command3";
     this.Command3.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command3.Size                    = new System.Drawing.Size(35, 15);
     this.Command3.TabIndex                = 2;
     this.Command3.Text                    = "...";
     this.Command3.UseVisualStyleBackColor = false;
     //
     //txtFile
     //
     this.txtFile.AcceptsReturn = true;
     this.txtFile.BackColor     = System.Drawing.SystemColors.Window;
     this.txtFile.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFile.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtFile.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtFile.Location      = new System.Drawing.Point(84, 48);
     this.txtFile.MaxLength     = 0;
     this.txtFile.Name          = "txtFile";
     this.txtFile.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtFile.Size          = new System.Drawing.Size(371, 17);
     this.txtFile.TabIndex      = 0;
     //
     //Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(8, 50);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(65, 15);
     this.Label2.TabIndex    = 1;
     this.Label2.Text        = "File path";
     //
     //frmExport
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(512, 114);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this.prgUpdate);
     this.Controls.Add(this.Command3);
     this.Controls.Add(this.txtFile);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Icon            = (System.Drawing.Icon)resources.GetObject("$this.Icon");
     this.Location        = new System.Drawing.Point(3, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmExport";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Import";
     this.picButtons.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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_sys_local));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.mensaje = new System.Windows.Forms.Label();
     this.localname = new System.Windows.Forms.TextBox();
     this.item = new System.Windows.Forms.TextBox();
     this.dgb_local = new System.Windows.Forms.DataGridView();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.moduloname = new System.Windows.Forms.TextBox();
     this.moduloid = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.dominioname = new System.Windows.Forms.TextBox();
     this.dominioid = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.canalventaid = new System.Windows.Forms.TextBox();
     this.canalventaname = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.btn_agregar = new System.Windows.Forms.Button();
     this.direcnume = new System.Windows.Forms.TextBox();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txt_busqueda = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.email = new System.Windows.Forms.TextBox();
     this.Label18 = new System.Windows.Forms.Label();
     this.rpc = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.telf = new System.Windows.Forms.TextBox();
     this.label9 = new System.Windows.Forms.Label();
     this.estabsunat = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.gdominioname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.modulon = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.locnam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gdominioid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gmoduloid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.loc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direcnum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ruc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctactenam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._estabsunat = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._email = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._telef = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._rpc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._perimeslocal = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._localfeuiv = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._diasdevol = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._cubitaje = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._zonaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tipoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._categoriaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._chkaud = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._chkmayor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._chkajustar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._usuar_ajustar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._feact_ajustar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._zona1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._zona2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._zona3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._zona4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._vtaperson_chk = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._vtaperson_solofechas = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._vtaperson_fechini = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._vtaperson_fechfin = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._vtaperson_soloconceptos = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._manejalistprec = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._novalidastock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._editnumdoc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._canalventaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._canalventaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_local)).BeginInit();
     this.panel1.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.panel2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.SuspendLayout();
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(1198, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // mensaje
     //
     this.mensaje.AutoSize = true;
     this.mensaje.BackColor = System.Drawing.Color.Transparent;
     this.mensaje.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mensaje.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
     this.mensaje.Location = new System.Drawing.Point(131, 67);
     this.mensaje.Name = "mensaje";
     this.mensaje.Size = new System.Drawing.Size(41, 13);
     this.mensaje.TabIndex = 26;
     this.mensaje.Text = "label3";
     //
     // localname
     //
     this.localname.Location = new System.Drawing.Point(137, 44);
     this.localname.Name = "localname";
     this.localname.Size = new System.Drawing.Size(259, 21);
     this.localname.TabIndex = 5;
     this.localname.Text = "ventas al exterior";
     //
     // item
     //
     this.item.Location = new System.Drawing.Point(86, 64);
     this.item.MaxLength = 4;
     this.item.Name = "item";
     this.item.Size = new System.Drawing.Size(40, 21);
     this.item.TabIndex = 4;
     this.item.Text = "ventas al exterior";
     //
     // dgb_local
     //
     this.dgb_local.AllowUserToAddRows = false;
     this.dgb_local.AllowUserToDeleteRows = false;
     this.dgb_local.AllowUserToResizeColumns = false;
     this.dgb_local.AllowUserToResizeRows = false;
     this.dgb_local.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.dgb_local.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.dgb_local.ColumnHeadersHeight = 20;
     this.dgb_local.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gdominioname,
     this.modulon,
     this.locnam,
     this.gdominioid,
     this.gmoduloid,
     this.loc,
     this.usuar,
     this.fecre,
     this.feact,
     this.ctact,
     this.direcnum,
     this.ruc,
     this.ctactenam,
     this._estabsunat,
     this._email,
     this._telef,
     this._rpc,
     this._perimeslocal,
     this._localfeuiv,
     this._diasdevol,
     this._cubitaje,
     this._zonaid,
     this._tipoid,
     this._categoriaid,
     this._chkaud,
     this._chkmayor,
     this._chkajustar,
     this._usuar_ajustar,
     this._feact_ajustar,
     this._zona1,
     this._zona2,
     this._zona3,
     this._zona4,
     this._vtaperson_chk,
     this._vtaperson_solofechas,
     this._vtaperson_fechini,
     this._vtaperson_fechfin,
     this._vtaperson_soloconceptos,
     this._manejalistprec,
     this._novalidastock,
     this._editnumdoc,
     this._canalventaid,
     this._canalventaname});
     this.dgb_local.Location = new System.Drawing.Point(470, 136);
     this.dgb_local.MultiSelect = false;
     this.dgb_local.Name = "dgb_local";
     this.dgb_local.RowHeadersVisible = false;
     this.dgb_local.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dgb_local.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.dgb_local.RowTemplate.Height = 20;
     this.dgb_local.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgb_local.Size = new System.Drawing.Size(725, 248);
     this.dgb_local.TabIndex = 7;
     this.dgb_local.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_local_CellClick);
     this.dgb_local.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_local_CellLeave);
     this.dgb_local.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_local_KeyUp);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1261, 32);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(443, 6);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(247, 24);
     this.label11.TabIndex = 31;
     this.label11.Text = "REGISTRO DE LOCALES";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     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.Black;
     this.label1.Location = new System.Drawing.Point(39, 47);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(42, 13);
     this.label1.TabIndex = 34;
     this.label1.Text = "Local:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.Black;
     this.label8.Location = new System.Drawing.Point(30, 66);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 33;
     this.label8.Text = "Código:";
     //
     // moduloname
     //
     this.moduloname.Location = new System.Drawing.Point(127, 40);
     this.moduloname.Name = "moduloname";
     this.moduloname.Size = new System.Drawing.Size(173, 21);
     this.moduloname.TabIndex = 39;
     this.moduloname.Text = "ventas al exterior";
     //
     // moduloid
     //
     this.moduloid.Location = new System.Drawing.Point(86, 40);
     this.moduloid.MaxLength = 4;
     this.moduloid.Name = "moduloid";
     this.moduloid.Size = new System.Drawing.Size(40, 21);
     this.moduloid.TabIndex = 38;
     this.moduloid.Text = "ventas al exterior";
     this.moduloid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.moduloid_KeyDown);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.Black;
     this.label6.Location = new System.Drawing.Point(28, 44);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(52, 13);
     this.label6.TabIndex = 43;
     this.label6.Text = "Módulo:";
     //
     // dominioname
     //
     this.dominioname.Location = new System.Drawing.Point(123, 19);
     this.dominioname.Name = "dominioname";
     this.dominioname.Size = new System.Drawing.Size(140, 21);
     this.dominioname.TabIndex = 37;
     this.dominioname.Text = "ventas al exterior";
     //
     // dominioid
     //
     this.dominioid.Location = new System.Drawing.Point(86, 19);
     this.dominioid.MaxLength = 2;
     this.dominioid.Name = "dominioid";
     this.dominioid.Size = new System.Drawing.Size(35, 21);
     this.dominioid.TabIndex = 36;
     this.dominioid.Text = "ventas al exterior";
     this.dominioid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dominioid_KeyDown);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(25, 22);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(56, 13);
     this.label5.TabIndex = 42;
     this.label5.Text = "Dominio:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.mensaje);
     this.groupBox1.Controls.Add(this.moduloname);
     this.groupBox1.Controls.Add(this.label8);
     this.groupBox1.Controls.Add(this.moduloid);
     this.groupBox1.Controls.Add(this.item);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.dominioid);
     this.groupBox1.Controls.Add(this.label5);
     this.groupBox1.Controls.Add(this.dominioname);
     this.groupBox1.Location = new System.Drawing.Point(9, 70);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(418, 90);
     this.groupBox1.TabIndex = 44;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Codigo:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.canalventaid);
     this.groupBox2.Controls.Add(this.canalventaname);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.btn_agregar);
     this.groupBox2.Controls.Add(this.direcnume);
     this.groupBox2.Controls.Add(this.ctacte);
     this.groupBox2.Controls.Add(this.ctactename);
     this.groupBox2.Controls.Add(this.label2);
     this.groupBox2.Controls.Add(this.localname);
     this.groupBox2.Controls.Add(this.label1);
     this.groupBox2.Location = new System.Drawing.Point(8, 166);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(453, 95);
     this.groupBox2.TabIndex = 45;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Cliente";
     //
     // canalventaid
     //
     this.canalventaid.Location = new System.Drawing.Point(87, 67);
     this.canalventaid.MaxLength = 4;
     this.canalventaid.Name = "canalventaid";
     this.canalventaid.Size = new System.Drawing.Size(48, 21);
     this.canalventaid.TabIndex = 71;
     this.canalventaid.Text = "ventas al exterior";
     this.canalventaid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.canalventaid_KeyDown);
     //
     // canalventaname
     //
     this.canalventaname.Enabled = false;
     this.canalventaname.Location = new System.Drawing.Point(137, 67);
     this.canalventaname.Name = "canalventaname";
     this.canalventaname.Size = new System.Drawing.Size(259, 21);
     this.canalventaname.TabIndex = 70;
     this.canalventaname.Text = "ventas al exterior";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     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.Black;
     this.label7.Location = new System.Drawing.Point(13, 70);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(69, 13);
     this.label7.TabIndex = 69;
     this.label7.Text = "Cnl_Venta:";
     //
     // btn_agregar
     //
     this.btn_agregar.BackColor = System.Drawing.Color.Transparent;
     this.btn_agregar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_agregar.FlatAppearance.BorderSize = 0;
     this.btn_agregar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn_agregar.Image = global::BapFormulariosNet.Properties.Resources.go_new1;
     this.btn_agregar.Location = new System.Drawing.Point(418, 18);
     this.btn_agregar.Name = "btn_agregar";
     this.btn_agregar.Size = new System.Drawing.Size(31, 27);
     this.btn_agregar.TabIndex = 68;
     this.btn_agregar.UseVisualStyleBackColor = false;
     this.btn_agregar.Click += new System.EventHandler(this.btn_agregar_Click);
     //
     // direcnume
     //
     this.direcnume.Location = new System.Drawing.Point(87, 44);
     this.direcnume.MaxLength = 4;
     this.direcnume.Name = "direcnume";
     this.direcnume.Size = new System.Drawing.Size(48, 21);
     this.direcnume.TabIndex = 45;
     this.direcnume.Text = "ventas al exterior";
     this.direcnume.KeyDown += new System.Windows.Forms.KeyEventHandler(this.direcnume_KeyDown);
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(87, 21);
     this.ctacte.MaxLength = 4;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(48, 21);
     this.ctacte.TabIndex = 44;
     this.ctacte.Text = "ventas al exterior";
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // ctactename
     //
     this.ctactename.Location = new System.Drawing.Point(137, 21);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(281, 21);
     this.ctactename.TabIndex = 36;
     this.ctactename.Text = "ventas al exterior";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.Black;
     this.label2.Location = new System.Drawing.Point(30, 24);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(50, 13);
     this.label2.TabIndex = 35;
     this.label2.Text = "Cliente:";
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.SystemColors.Control;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(584, 2);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(78, 30);
     this.btn_busqueda.TabIndex = 62;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txt_busqueda);
     this.panel2.Controls.Add(this.btn_busqueda);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Location = new System.Drawing.Point(470, 84);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(725, 35);
     this.panel2.TabIndex = 63;
     //
     // txt_busqueda
     //
     this.txt_busqueda.Location = new System.Drawing.Point(100, 7);
     this.txt_busqueda.MaxLength = 0;
     this.txt_busqueda.Name = "txt_busqueda";
     this.txt_busqueda.Size = new System.Drawing.Size(350, 21);
     this.txt_busqueda.TabIndex = 19;
     this.txt_busqueda.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyDown);
     this.txt_busqueda.KeyUp += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyUp);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(22, 11);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(78, 13);
     this.label3.TabIndex = 3;
     this.label3.Text = "Descripcion:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.email);
     this.groupBox3.Controls.Add(this.Label18);
     this.groupBox3.Controls.Add(this.rpc);
     this.groupBox3.Controls.Add(this.label10);
     this.groupBox3.Controls.Add(this.telf);
     this.groupBox3.Controls.Add(this.label9);
     this.groupBox3.Controls.Add(this.estabsunat);
     this.groupBox3.Controls.Add(this.label4);
     this.groupBox3.Location = new System.Drawing.Point(8, 263);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(453, 121);
     this.groupBox3.TabIndex = 69;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Información";
     //
     // email
     //
     this.email.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.email.Location = new System.Drawing.Point(87, 44);
     this.email.MaxLength = 50;
     this.email.Name = "email";
     this.email.Size = new System.Drawing.Size(336, 21);
     this.email.TabIndex = 53;
     this.email.KeyDown += new System.Windows.Forms.KeyEventHandler(this.email_KeyDown);
     //
     // Label18
     //
     this.Label18.AutoSize = true;
     this.Label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label18.ForeColor = System.Drawing.Color.Black;
     this.Label18.Location = new System.Drawing.Point(37, 47);
     this.Label18.Name = "Label18";
     this.Label18.Size = new System.Drawing.Size(46, 13);
     this.Label18.TabIndex = 52;
     this.Label18.Text = "E-Mail:";
     //
     // rpc
     //
     this.rpc.Location = new System.Drawing.Point(87, 92);
     this.rpc.MaxLength = 9;
     this.rpc.Name = "rpc";
     this.rpc.Size = new System.Drawing.Size(86, 21);
     this.rpc.TabIndex = 49;
     this.rpc.Text = "ventas al exterior";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.Black;
     this.label10.Location = new System.Drawing.Point(49, 95);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(34, 13);
     this.label10.TabIndex = 50;
     this.label10.Text = "Rpc:";
     //
     // telf
     //
     this.telf.Location = new System.Drawing.Point(87, 68);
     this.telf.MaxLength = 9;
     this.telf.Name = "telf";
     this.telf.Size = new System.Drawing.Size(86, 21);
     this.telf.TabIndex = 46;
     this.telf.Text = "ventas al exterior";
     this.telf.KeyDown += new System.Windows.Forms.KeyEventHandler(this.telf_KeyDown);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.Black;
     this.label9.Location = new System.Drawing.Point(22, 70);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(61, 13);
     this.label9.TabIndex = 47;
     this.label9.Text = "Telefono:";
     //
     // estabsunat
     //
     this.estabsunat.Location = new System.Drawing.Point(87, 21);
     this.estabsunat.MaxLength = 4;
     this.estabsunat.Name = "estabsunat";
     this.estabsunat.Size = new System.Drawing.Size(48, 21);
     this.estabsunat.TabIndex = 44;
     this.estabsunat.Text = "ventas al exterior";
     this.estabsunat.KeyDown += new System.Windows.Forms.KeyEventHandler(this.estabsunat_KeyDown);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(17, 24);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 35;
     this.label4.Text = "Est-Sunat:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1198, 386);
     this.shapeContainer1.TabIndex = 70;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 462;
     this.lineShape1.X2 = 462;
     this.lineShape1.Y1 = 69;
     this.lineShape1.Y2 = 375;
     //
     // gdominioname
     //
     this.gdominioname.DataPropertyName = "dominioname";
     this.gdominioname.HeaderText = "Dominio";
     this.gdominioname.Name = "gdominioname";
     //
     // modulon
     //
     this.modulon.DataPropertyName = "moduloname";
     this.modulon.HeaderText = "Modulo";
     this.modulon.Name = "modulon";
     //
     // locnam
     //
     this.locnam.DataPropertyName = "localname";
     this.locnam.HeaderText = "Local";
     this.locnam.Name = "locnam";
     this.locnam.Width = 150;
     //
     // gdominioid
     //
     this.gdominioid.DataPropertyName = "dominioid";
     this.gdominioid.HeaderText = "dominioid";
     this.gdominioid.Name = "gdominioid";
     this.gdominioid.Visible = false;
     this.gdominioid.Width = 10;
     //
     // gmoduloid
     //
     this.gmoduloid.DataPropertyName = "moduloid";
     this.gmoduloid.HeaderText = "moduloid";
     this.gmoduloid.Name = "gmoduloid";
     this.gmoduloid.Visible = false;
     this.gmoduloid.Width = 30;
     //
     // loc
     //
     this.loc.DataPropertyName = "local";
     this.loc.HeaderText = "localid";
     this.loc.Name = "loc";
     this.loc.Visible = false;
     this.loc.Width = 20;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.usuar.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.usuar.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.fecre.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.fecre.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.feact.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.feact.Visible = false;
     //
     // ctact
     //
     this.ctact.DataPropertyName = "ctacte";
     this.ctact.HeaderText = "ctacte";
     this.ctact.Name = "ctact";
     this.ctact.Visible = false;
     //
     // direcnum
     //
     this.direcnum.DataPropertyName = "direcnume";
     this.direcnum.HeaderText = "direcnume";
     this.direcnum.Name = "direcnum";
     this.direcnum.Visible = false;
     //
     // ruc
     //
     this.ruc.DataPropertyName = "nmruc";
     this.ruc.HeaderText = "Ruc";
     this.ruc.Name = "ruc";
     this.ruc.Width = 80;
     //
     // ctactenam
     //
     this.ctactenam.DataPropertyName = "ctactename";
     this.ctactenam.HeaderText = "Cliente";
     this.ctactenam.Name = "ctactenam";
     this.ctactenam.Width = 200;
     //
     // _estabsunat
     //
     this._estabsunat.DataPropertyName = "estabsunat";
     this._estabsunat.HeaderText = "estabsunat";
     this._estabsunat.Name = "_estabsunat";
     this._estabsunat.Visible = false;
     //
     // _email
     //
     this._email.DataPropertyName = "email";
     this._email.HeaderText = "email";
     this._email.Name = "_email";
     this._email.Visible = false;
     //
     // _telef
     //
     this._telef.DataPropertyName = "telef";
     this._telef.HeaderText = "telef";
     this._telef.Name = "_telef";
     this._telef.Visible = false;
     //
     // _rpc
     //
     this._rpc.DataPropertyName = "rpc";
     this._rpc.HeaderText = "rpc";
     this._rpc.Name = "_rpc";
     this._rpc.Visible = false;
     //
     // _perimeslocal
     //
     this._perimeslocal.DataPropertyName = "perimeslocal";
     this._perimeslocal.HeaderText = "perimeslocal";
     this._perimeslocal.Name = "_perimeslocal";
     this._perimeslocal.Visible = false;
     //
     // _localfeuiv
     //
     this._localfeuiv.DataPropertyName = "localfeuiv";
     this._localfeuiv.HeaderText = "localfeuiv";
     this._localfeuiv.Name = "_localfeuiv";
     this._localfeuiv.Visible = false;
     //
     // _diasdevol
     //
     this._diasdevol.DataPropertyName = "diasdevol";
     this._diasdevol.HeaderText = "diasdevol";
     this._diasdevol.Name = "_diasdevol";
     this._diasdevol.Visible = false;
     //
     // _cubitaje
     //
     this._cubitaje.DataPropertyName = "cubitaje";
     this._cubitaje.HeaderText = "cubitaje";
     this._cubitaje.Name = "_cubitaje";
     this._cubitaje.Visible = false;
     //
     // _zonaid
     //
     this._zonaid.DataPropertyName = "zonaid";
     this._zonaid.HeaderText = "zonaid";
     this._zonaid.Name = "_zonaid";
     this._zonaid.Visible = false;
     //
     // _tipoid
     //
     this._tipoid.DataPropertyName = "tipoid";
     this._tipoid.HeaderText = "tipoid";
     this._tipoid.Name = "_tipoid";
     this._tipoid.Visible = false;
     //
     // _categoriaid
     //
     this._categoriaid.DataPropertyName = "categoriaid";
     this._categoriaid.HeaderText = "categoriaid";
     this._categoriaid.Name = "_categoriaid";
     this._categoriaid.Visible = false;
     //
     // _chkaud
     //
     this._chkaud.DataPropertyName = "chkaud";
     this._chkaud.HeaderText = "chkaud";
     this._chkaud.Name = "_chkaud";
     this._chkaud.Visible = false;
     //
     // _chkmayor
     //
     this._chkmayor.DataPropertyName = "chkmayor";
     this._chkmayor.HeaderText = "chkmayor";
     this._chkmayor.Name = "_chkmayor";
     this._chkmayor.Visible = false;
     //
     // _chkajustar
     //
     this._chkajustar.DataPropertyName = "chkajustar";
     this._chkajustar.HeaderText = "chkajustar";
     this._chkajustar.Name = "_chkajustar";
     this._chkajustar.Visible = false;
     //
     // _usuar_ajustar
     //
     this._usuar_ajustar.DataPropertyName = "usuar_ajustar";
     this._usuar_ajustar.HeaderText = "usuar_ajustar";
     this._usuar_ajustar.Name = "_usuar_ajustar";
     this._usuar_ajustar.Visible = false;
     //
     // _feact_ajustar
     //
     this._feact_ajustar.DataPropertyName = "feact_ajustar";
     this._feact_ajustar.HeaderText = "feact_ajustar";
     this._feact_ajustar.Name = "_feact_ajustar";
     this._feact_ajustar.Visible = false;
     //
     // _zona1
     //
     this._zona1.DataPropertyName = "zona1";
     this._zona1.HeaderText = "zona1";
     this._zona1.Name = "_zona1";
     this._zona1.Visible = false;
     //
     // _zona2
     //
     this._zona2.DataPropertyName = "zona2";
     this._zona2.HeaderText = "zona2";
     this._zona2.Name = "_zona2";
     this._zona2.Visible = false;
     //
     // _zona3
     //
     this._zona3.DataPropertyName = "zona3";
     this._zona3.HeaderText = "zona3";
     this._zona3.Name = "_zona3";
     this._zona3.Visible = false;
     //
     // _zona4
     //
     this._zona4.DataPropertyName = "zona4";
     this._zona4.HeaderText = "zona4";
     this._zona4.Name = "_zona4";
     this._zona4.Visible = false;
     //
     // _vtaperson_chk
     //
     this._vtaperson_chk.DataPropertyName = "vtaperson_chk";
     this._vtaperson_chk.HeaderText = "vtaperson_chk";
     this._vtaperson_chk.Name = "_vtaperson_chk";
     this._vtaperson_chk.Visible = false;
     //
     // _vtaperson_solofechas
     //
     this._vtaperson_solofechas.DataPropertyName = "vtaperson_solofechas";
     this._vtaperson_solofechas.HeaderText = "vtaperson_solofechas";
     this._vtaperson_solofechas.Name = "_vtaperson_solofechas";
     this._vtaperson_solofechas.Visible = false;
     //
     // _vtaperson_fechini
     //
     this._vtaperson_fechini.DataPropertyName = "vtaperson_fechini";
     this._vtaperson_fechini.HeaderText = "vtaperson_fechini";
     this._vtaperson_fechini.Name = "_vtaperson_fechini";
     this._vtaperson_fechini.Visible = false;
     //
     // _vtaperson_fechfin
     //
     this._vtaperson_fechfin.DataPropertyName = "vtaperson_fechfin";
     this._vtaperson_fechfin.HeaderText = "vtaperson_fechfin";
     this._vtaperson_fechfin.Name = "_vtaperson_fechfin";
     this._vtaperson_fechfin.Visible = false;
     //
     // _vtaperson_soloconceptos
     //
     this._vtaperson_soloconceptos.DataPropertyName = "vtaperson_soloconceptos";
     this._vtaperson_soloconceptos.HeaderText = "vtaperson_soloconceptos";
     this._vtaperson_soloconceptos.Name = "_vtaperson_soloconceptos";
     this._vtaperson_soloconceptos.Visible = false;
     //
     // _manejalistprec
     //
     this._manejalistprec.DataPropertyName = "manejalistprec";
     this._manejalistprec.HeaderText = "manejalistprec";
     this._manejalistprec.Name = "_manejalistprec";
     this._manejalistprec.Visible = false;
     //
     // _novalidastock
     //
     this._novalidastock.DataPropertyName = "novalidastock";
     this._novalidastock.HeaderText = "novalidastock";
     this._novalidastock.Name = "_novalidastock";
     this._novalidastock.Visible = false;
     //
     // _editnumdoc
     //
     this._editnumdoc.DataPropertyName = "editnumdoc";
     this._editnumdoc.HeaderText = "editnumdoc";
     this._editnumdoc.Name = "_editnumdoc";
     this._editnumdoc.Visible = false;
     //
     // _canalventaid
     //
     this._canalventaid.DataPropertyName = "canalventaid";
     this._canalventaid.HeaderText = "canalventaid";
     this._canalventaid.Name = "_canalventaid";
     this._canalventaid.Visible = false;
     //
     // _canalventaname
     //
     this._canalventaname.DataPropertyName = "canalventaname";
     this._canalventaname.HeaderText = "canalventaname";
     this._canalventaname.Name = "_canalventaname";
     this._canalventaname.Visible = false;
     //
     // Frm_sys_local
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1198, 386);
     this.Controls.Add(this.groupBox3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.dgb_local);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_sys_local";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento De local";
     this.Load += new System.EventHandler(this.Frm_sys_local_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_sys_modulo_KeyDown);
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_local)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox3.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 23
0
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.Line2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.tmrAutoGRV = new System.Windows.Forms.Timer(this.components);
			this.Picture2 = new System.Windows.Forms.Panel();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this.frmProcess = new System.Windows.Forms.GroupBox();
			this.txtNotes = new System.Windows.Forms.TextBox();
			this.cmdNext = new System.Windows.Forms.Button();
			this._optClose_0 = new System.Windows.Forms.RadioButton();
			this.Label3 = new System.Windows.Forms.Label();
			this.frmMain = new System.Windows.Forms.GroupBox();
			this._Frame1_5 = new System.Windows.Forms.GroupBox();
			this.lblDepositReturnIn = new System.Windows.Forms.Label();
			this._lbl_35 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatIn = new System.Windows.Forms.Label();
			this._lbl_34 = new System.Windows.Forms.Label();
			this.lblDepositReturnInclusiveIn = new System.Windows.Forms.Label();
			this._lbl_33 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatRateIn = new System.Windows.Forms.Label();
			this._Frame1_3 = new System.Windows.Forms.GroupBox();
			this.lblContentOut = new System.Windows.Forms.Label();
			this.lblDiscountLineOut = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this.lblExclusiveOut = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this.lblVATout = new System.Windows.Forms.Label();
			this._lbl_12 = new System.Windows.Forms.Label();
			this.lblInclusiveOut = new System.Windows.Forms.Label();
			this.lblVatRateOut = new System.Windows.Forms.Label();
			this._lbl_37 = new System.Windows.Forms.Label();
			this.lblLinesOut = new System.Windows.Forms.Label();
			this._Frame1_4 = new System.Windows.Forms.GroupBox();
			this.lblDepositVatRateOut = new System.Windows.Forms.Label();
			this.lblDepositOut = new System.Windows.Forms.Label();
			this._lbl_9 = new System.Windows.Forms.Label();
			this.lblDepositVatOut = new System.Windows.Forms.Label();
			this._lbl_23 = new System.Windows.Forms.Label();
			this.lblDepositInclusiveOut = new System.Windows.Forms.Label();
			this._lbl_24 = new System.Windows.Forms.Label();
			this._Frame1_2 = new System.Windows.Forms.GroupBox();
			this.lblDepositReturnVatRateOut = new System.Windows.Forms.Label();
			this._lbl_15 = new System.Windows.Forms.Label();
			this.lblDepositReturnInclusiveOut = new System.Windows.Forms.Label();
			this._lbl_16 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatOut = new System.Windows.Forms.Label();
			this._lbl_17 = new System.Windows.Forms.Label();
			this.lblDepositReturnOut = new System.Windows.Forms.Label();
			this._Frame1_0 = new System.Windows.Forms.GroupBox();
			this.cmbPayment = new System.Windows.Forms.ComboBox();
			this.txtUllage = new System.Windows.Forms.TextBox();
			this.txtDiscount = new System.Windows.Forms.TextBox();
			this.txtMinus = new System.Windows.Forms.TextBox();
			this.txtPlus = new System.Windows.Forms.TextBox();
			this.lblContentIn = new System.Windows.Forms.Label();
			this.lblDiscountLineIn = new System.Windows.Forms.Label();
			this._lbl_20 = new System.Windows.Forms.Label();
			this._lbl_21 = new System.Windows.Forms.Label();
			this.lblExclusiveIn = new System.Windows.Forms.Label();
			this._lbl_22 = new System.Windows.Forms.Label();
			this._lbl_29 = new System.Windows.Forms.Label();
			this.lblVATin = new System.Windows.Forms.Label();
			this._lbl_30 = new System.Windows.Forms.Label();
			this.lblInclusiveIn = new System.Windows.Forms.Label();
			this.lblVatRateIn = new System.Windows.Forms.Label();
			this._lbl_19 = new System.Windows.Forms.Label();
			this._Label1_1 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this._Label1_0 = new System.Windows.Forms.Label();
			this.lblDiscount = new System.Windows.Forms.Label();
			this.lblUllage = new System.Windows.Forms.Label();
			this.lblDiscountName = new System.Windows.Forms.Label();
			this._lbl_31 = new System.Windows.Forms.Label();
			this.lblContentExclusiveIn = new System.Windows.Forms.Label();
			this._lbl_11 = new System.Windows.Forms.Label();
			this._lbl_10 = new System.Windows.Forms.Label();
			this._lbl_32 = new System.Windows.Forms.Label();
			this.lblLinesIn = new System.Windows.Forms.Label();
			this._Frame1_1 = new System.Windows.Forms.GroupBox();
			this.lblDepositVatRateIn = new System.Windows.Forms.Label();
			this.lblDepositIn = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this.lblDepositVatIn = new System.Windows.Forms.Label();
			this._lbl_13 = new System.Windows.Forms.Label();
			this.lblDepositInclusiveIn = new System.Windows.Forms.Label();
			this._lbl_14 = new System.Windows.Forms.Label();
			this._lbl_28 = new System.Windows.Forms.Label();
			this.lblInBoundVat = new System.Windows.Forms.Label();
			this._lbl_27 = new System.Windows.Forms.Label();
			this.lblInBound = new System.Windows.Forms.Label();
			this._lbl_26 = new System.Windows.Forms.Label();
			this.lblCreditVat = new System.Windows.Forms.Label();
			this._lbl_25 = new System.Windows.Forms.Label();
			this.lblCredit = new System.Windows.Forms.Label();
			this._lbl_8 = new System.Windows.Forms.Label();
			this.lblOutBoundVat = new System.Windows.Forms.Label();
			this.lblOutBound = new System.Windows.Forms.Label();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblTotal = new System.Windows.Forms.Label();
			this._lbl_7 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblTotalOriginal = new System.Windows.Forms.Label();
			this.lblDifference = new System.Windows.Forms.Label();
			this._lbl_18 = new System.Windows.Forms.Label();
			this.Picture1 = new System.Windows.Forms.Panel();
			this.lblSupplier = new System.Windows.Forms.Label();
			this.Picture2.SuspendLayout();
			this.frmProcess.SuspendLayout();
			this.frmMain.SuspendLayout();
			this._Frame1_5.SuspendLayout();
			this._Frame1_3.SuspendLayout();
			this._Frame1_4.SuspendLayout();
			this._Frame1_2.SuspendLayout();
			this._Frame1_0.SuspendLayout();
			this._Frame1_1.SuspendLayout();
			this.Picture1.SuspendLayout();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 13);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
				this.Line2,
				this.Line1
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(631, 537);
			this.ShapeContainer1.TabIndex = 95;
			this.ShapeContainer1.TabStop = false;
			//
			//Line2
			//
			this.Line2.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line2.Name = "Line2";
			this.Line2.X1 = 620;
			this.Line2.X2 = 24;
			this.Line2.Y1 = 485;
			this.Line2.Y2 = 485;
			//
			//Line1
			//
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.Name = "Line1";
			this.Line1.X1 = 620;
			this.Line1.X2 = 24;
			this.Line1.Y1 = 482;
			this.Line1.Y2 = 482;
			//
			//tmrAutoGRV
			//
			this.tmrAutoGRV.Interval = 10;
			//
			//Picture2
			//
			this.Picture2.BackColor = System.Drawing.Color.Blue;
			this.Picture2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture2.Controls.Add(this.cmdExit);
			this.Picture2.Controls.Add(this.cmdBack);
			this.Picture2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture2.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture2.Location = new System.Drawing.Point(0, 25);
			this.Picture2.Name = "Picture2";
			this.Picture2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture2.Size = new System.Drawing.Size(760, 49);
			this.Picture2.TabIndex = 102;
			//
			//cmdExit
			//
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Location = new System.Drawing.Point(627, 3);
			this.cmdExit.Name = "cmdExit";
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Size = new System.Drawing.Size(73, 40);
			this.cmdExit.TabIndex = 104;
			this.cmdExit.TabStop = false;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.UseVisualStyleBackColor = false;
			//
			//cmdBack
			//
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Location = new System.Drawing.Point(426, 3);
			this.cmdBack.Name = "cmdBack";
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.Size = new System.Drawing.Size(73, 40);
			this.cmdBack.TabIndex = 103;
			this.cmdBack.TabStop = false;
			this.cmdBack.Text = "<< &Back";
			this.cmdBack.UseVisualStyleBackColor = false;
			//
			//frmProcess
			//
			this.frmProcess.BackColor = System.Drawing.SystemColors.Control;
			this.frmProcess.Controls.Add(this.txtNotes);
			this.frmProcess.Controls.Add(this.cmdNext);
			this.frmProcess.Controls.Add(this._optClose_0);
			this.frmProcess.Controls.Add(this.Label3);
			this.frmProcess.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.frmProcess.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmProcess.Location = new System.Drawing.Point(657, 363);
			this.frmProcess.Name = "frmProcess";
			this.frmProcess.Padding = new System.Windows.Forms.Padding(0);
			this.frmProcess.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmProcess.Size = new System.Drawing.Size(343, 271);
			this.frmProcess.TabIndex = 3;
			this.frmProcess.TabStop = false;
			this.frmProcess.Text = "Process this 'Goods Receiving Voucher'";
			//
			//txtNotes
			//
			this.txtNotes.AcceptsReturn = true;
			this.txtNotes.BackColor = System.Drawing.SystemColors.Window;
			this.txtNotes.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtNotes.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtNotes.Location = new System.Drawing.Point(21, 102);
			this.txtNotes.MaxLength = 255;
			this.txtNotes.Multiline = true;
			this.txtNotes.Name = "txtNotes";
			this.txtNotes.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtNotes.Size = new System.Drawing.Size(301, 85);
			this.txtNotes.TabIndex = 6;
			this.txtNotes.Text = "txtNotes";
			//
			//cmdNext
			//
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Location = new System.Drawing.Point(183, 198);
			this.cmdNext.Name = "cmdNext";
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.Size = new System.Drawing.Size(139, 55);
			this.cmdNext.TabIndex = 7;
			this.cmdNext.Text = "P&rocess";
			this.cmdNext.UseVisualStyleBackColor = false;
			//
			//_optClose_0
			//
			this._optClose_0.BackColor = System.Drawing.SystemColors.Control;
			this._optClose_0.Checked = true;
			this._optClose_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._optClose_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optClose_0.Location = new System.Drawing.Point(18, 18);
			this._optClose_0.Name = "_optClose_0";
			this._optClose_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optClose_0.Size = new System.Drawing.Size(310, 19);
			this._optClose_0.TabIndex = 4;
			this._optClose_0.TabStop = true;
			this._optClose_0.Text = "This Purchase Order has been delivered in full.";
			this._optClose_0.UseVisualStyleBackColor = false;
			//
			//Label3
			//
			this.Label3.AutoSize = true;
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Location = new System.Drawing.Point(21, 84);
			this.Label3.Name = "Label3";
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.Size = new System.Drawing.Size(42, 14);
			this.Label3.TabIndex = 5;
			this.Label3.Text = "Notes:";
			//
			//frmMain
			//
			this.frmMain.BackColor = System.Drawing.SystemColors.Control;
			this.frmMain.Controls.Add(this._Frame1_5);
			this.frmMain.Controls.Add(this._Frame1_3);
			this.frmMain.Controls.Add(this._Frame1_4);
			this.frmMain.Controls.Add(this._Frame1_2);
			this.frmMain.Controls.Add(this._Frame1_0);
			this.frmMain.Controls.Add(this._Frame1_1);
			this.frmMain.Controls.Add(this._lbl_28);
			this.frmMain.Controls.Add(this.lblInBoundVat);
			this.frmMain.Controls.Add(this._lbl_27);
			this.frmMain.Controls.Add(this.lblInBound);
			this.frmMain.Controls.Add(this._lbl_26);
			this.frmMain.Controls.Add(this.lblCreditVat);
			this.frmMain.Controls.Add(this._lbl_25);
			this.frmMain.Controls.Add(this.lblCredit);
			this.frmMain.Controls.Add(this._lbl_8);
			this.frmMain.Controls.Add(this.lblOutBoundVat);
			this.frmMain.Controls.Add(this.lblOutBound);
			this.frmMain.Controls.Add(this._lbl_6);
			this.frmMain.Controls.Add(this.lblTotal);
			this.frmMain.Controls.Add(this._lbl_7);
			this.frmMain.Controls.Add(this._lbl_0);
			this.frmMain.Controls.Add(this.lblTotalOriginal);
			this.frmMain.Controls.Add(this.lblDifference);
			this.frmMain.Controls.Add(this._lbl_18);
			this.frmMain.Controls.Add(this.ShapeContainer1);
			this.frmMain.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.frmMain.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmMain.Location = new System.Drawing.Point(3, 84);
			this.frmMain.Name = "frmMain";
			this.frmMain.Padding = new System.Windows.Forms.Padding(0);
			this.frmMain.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmMain.Size = new System.Drawing.Size(631, 550);
			this.frmMain.TabIndex = 11;
			this.frmMain.TabStop = false;
			this.frmMain.Text = "fmHeading";
			//
			//_Frame1_5
			//
			this._Frame1_5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Frame1_5.Controls.Add(this.lblDepositReturnIn);
			this._Frame1_5.Controls.Add(this._lbl_35);
			this._Frame1_5.Controls.Add(this.lblDepositReturnVatIn);
			this._Frame1_5.Controls.Add(this._lbl_34);
			this._Frame1_5.Controls.Add(this.lblDepositReturnInclusiveIn);
			this._Frame1_5.Controls.Add(this._lbl_33);
			this._Frame1_5.Controls.Add(this.lblDepositReturnVatRateIn);
			this._Frame1_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_5.Location = new System.Drawing.Point(9, 375);
			this._Frame1_5.Name = "_Frame1_5";
			this._Frame1_5.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_5.Size = new System.Drawing.Size(301, 79);
			this._Frame1_5.TabIndex = 94;
			this._Frame1_5.TabStop = false;
			this._Frame1_5.Text = "Purchased Deposits";
			//
			//lblDepositReturnIn
			//
			this.lblDepositReturnIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositReturnIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnIn.Location = new System.Drawing.Point(150, 18);
			this.lblDepositReturnIn.Name = "lblDepositReturnIn";
			this.lblDepositReturnIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnIn.TabIndex = 101;
			this.lblDepositReturnIn.Text = "0.00";
			this.lblDepositReturnIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_35
			//
			this._lbl_35.BackColor = System.Drawing.Color.Transparent;
			this._lbl_35.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_35.ForeColor = System.Drawing.Color.Black;
			this._lbl_35.Location = new System.Drawing.Point(16, 21);
			this._lbl_35.Name = "_lbl_35";
			this._lbl_35.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_35.Size = new System.Drawing.Size(133, 13);
			this._lbl_35.TabIndex = 100;
			this._lbl_35.Text = "Deposit Value:";
			this._lbl_35.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositReturnVatIn
			//
			this.lblDepositReturnVatIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositReturnVatIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnVatIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnVatIn.Location = new System.Drawing.Point(150, 36);
			this.lblDepositReturnVatIn.Name = "lblDepositReturnVatIn";
			this.lblDepositReturnVatIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnVatIn.TabIndex = 99;
			this.lblDepositReturnVatIn.Text = "0.00";
			this.lblDepositReturnVatIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_34
			//
			this._lbl_34.BackColor = System.Drawing.Color.Transparent;
			this._lbl_34.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_34.ForeColor = System.Drawing.Color.Black;
			this._lbl_34.Location = new System.Drawing.Point(16, 39);
			this._lbl_34.Name = "_lbl_34";
			this._lbl_34.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_34.Size = new System.Drawing.Size(133, 13);
			this._lbl_34.TabIndex = 98;
			this._lbl_34.Text = "VAT:";
			this._lbl_34.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositReturnInclusiveIn
			//
			this.lblDepositReturnInclusiveIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositReturnInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositReturnInclusiveIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnInclusiveIn.Location = new System.Drawing.Point(150, 54);
			this.lblDepositReturnInclusiveIn.Name = "lblDepositReturnInclusiveIn";
			this.lblDepositReturnInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblDepositReturnInclusiveIn.TabIndex = 97;
			this.lblDepositReturnInclusiveIn.Text = "0.00";
			this.lblDepositReturnInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_33
			//
			this._lbl_33.BackColor = System.Drawing.Color.Transparent;
			this._lbl_33.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_33.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_33.ForeColor = System.Drawing.Color.Black;
			this._lbl_33.Location = new System.Drawing.Point(16, 57);
			this._lbl_33.Name = "_lbl_33";
			this._lbl_33.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_33.Size = new System.Drawing.Size(133, 13);
			this._lbl_33.TabIndex = 96;
			this._lbl_33.Text = "Inclusive:";
			this._lbl_33.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositReturnVatRateIn
			//
			this.lblDepositReturnVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositReturnVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositReturnVatRateIn.Location = new System.Drawing.Point(243, 39);
			this.lblDepositReturnVatRateIn.Name = "lblDepositReturnVatRateIn";
			this.lblDepositReturnVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblDepositReturnVatRateIn.TabIndex = 95;
			this.lblDepositReturnVatRateIn.Text = "0.00";
			//
			//_Frame1_3
			//
			this._Frame1_3.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(255)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)));
			this._Frame1_3.Controls.Add(this.lblContentOut);
			this._Frame1_3.Controls.Add(this.lblDiscountLineOut);
			this._Frame1_3.Controls.Add(this._lbl_1);
			this._Frame1_3.Controls.Add(this._lbl_3);
			this._Frame1_3.Controls.Add(this.lblExclusiveOut);
			this._Frame1_3.Controls.Add(this._lbl_4);
			this._Frame1_3.Controls.Add(this._lbl_5);
			this._Frame1_3.Controls.Add(this.lblVATout);
			this._Frame1_3.Controls.Add(this._lbl_12);
			this._Frame1_3.Controls.Add(this.lblInclusiveOut);
			this._Frame1_3.Controls.Add(this.lblVatRateOut);
			this._Frame1_3.Controls.Add(this._lbl_37);
			this._Frame1_3.Controls.Add(this.lblLinesOut);
			this._Frame1_3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_3.Location = new System.Drawing.Point(318, 18);
			this._Frame1_3.Name = "_Frame1_3";
			this._Frame1_3.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_3.Size = new System.Drawing.Size(301, 145);
			this._Frame1_3.TabIndex = 69;
			this._Frame1_3.TabStop = false;
			this._Frame1_3.Text = "Credited Content / Liquid";
			//
			//lblContentOut
			//
			this.lblContentOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblContentOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentOut.Location = new System.Drawing.Point(153, 33);
			this.lblContentOut.Name = "lblContentOut";
			this.lblContentOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentOut.Size = new System.Drawing.Size(91, 19);
			this.lblContentOut.TabIndex = 82;
			this.lblContentOut.Text = "0.00";
			this.lblContentOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDiscountLineOut
			//
			this.lblDiscountLineOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDiscountLineOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscountLineOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountLineOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDiscountLineOut.Location = new System.Drawing.Point(153, 54);
			this.lblDiscountLineOut.Name = "lblDiscountLineOut";
			this.lblDiscountLineOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountLineOut.Size = new System.Drawing.Size(91, 19);
			this.lblDiscountLineOut.TabIndex = 81;
			this.lblDiscountLineOut.Text = "0.00";
			this.lblDiscountLineOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_1
			//
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			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(18, 36);
			this._lbl_1.Name = "_lbl_1";
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.Size = new System.Drawing.Size(133, 13);
			this._lbl_1.TabIndex = 80;
			this._lbl_1.Text = "Contents Value :";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_3
			//
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			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(18, 57);
			this._lbl_3.Name = "_lbl_3";
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.Size = new System.Drawing.Size(133, 13);
			this._lbl_3.TabIndex = 79;
			this._lbl_3.Text = "Line Item Discount :";
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblExclusiveOut
			//
			this.lblExclusiveOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblExclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblExclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblExclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblExclusiveOut.Location = new System.Drawing.Point(153, 75);
			this.lblExclusiveOut.Name = "lblExclusiveOut";
			this.lblExclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblExclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblExclusiveOut.TabIndex = 78;
			this.lblExclusiveOut.Text = "0.00";
			this.lblExclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_4
			//
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			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(18, 78);
			this._lbl_4.Name = "_lbl_4";
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.Size = new System.Drawing.Size(133, 13);
			this._lbl_4.TabIndex = 77;
			this._lbl_4.Text = "Exclusive:";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Location = new System.Drawing.Point(18, 99);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(133, 13);
			this._lbl_5.TabIndex = 76;
			this._lbl_5.Text = "VAT :";
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblVATout
			//
			this.lblVATout.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblVATout.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblVATout.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVATout.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVATout.Location = new System.Drawing.Point(153, 96);
			this.lblVATout.Name = "lblVATout";
			this.lblVATout.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVATout.Size = new System.Drawing.Size(91, 19);
			this.lblVATout.TabIndex = 75;
			this.lblVATout.Text = "0.00";
			this.lblVATout.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_12
			//
			this._lbl_12.BackColor = System.Drawing.Color.Transparent;
			this._lbl_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_12.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_12.Location = new System.Drawing.Point(18, 120);
			this._lbl_12.Name = "_lbl_12";
			this._lbl_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_12.Size = new System.Drawing.Size(133, 13);
			this._lbl_12.TabIndex = 74;
			this._lbl_12.Text = "Inclusive:";
			this._lbl_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblInclusiveOut
			//
			this.lblInclusiveOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInclusiveOut.Location = new System.Drawing.Point(153, 117);
			this.lblInclusiveOut.Name = "lblInclusiveOut";
			this.lblInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblInclusiveOut.TabIndex = 73;
			this.lblInclusiveOut.Text = "0.00";
			this.lblInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblVatRateOut
			//
			this.lblVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatRateOut.Location = new System.Drawing.Point(246, 99);
			this.lblVatRateOut.Name = "lblVatRateOut";
			this.lblVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblVatRateOut.TabIndex = 72;
			this.lblVatRateOut.Text = "lblVatRateOut";
			//
			//_lbl_37
			//
			this._lbl_37.BackColor = System.Drawing.Color.Transparent;
			this._lbl_37.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_37.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_37.Location = new System.Drawing.Point(18, 15);
			this._lbl_37.Name = "_lbl_37";
			this._lbl_37.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_37.Size = new System.Drawing.Size(133, 13);
			this._lbl_37.TabIndex = 71;
			this._lbl_37.Text = "No Of Lines :";
			this._lbl_37.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblLinesOut
			//
			this.lblLinesOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblLinesOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblLinesOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblLinesOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblLinesOut.Location = new System.Drawing.Point(153, 12);
			this.lblLinesOut.Name = "lblLinesOut";
			this.lblLinesOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblLinesOut.Size = new System.Drawing.Size(91, 19);
			this.lblLinesOut.TabIndex = 70;
			this.lblLinesOut.Text = "0.00";
			this.lblLinesOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_Frame1_4
			//
			this._Frame1_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(255)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)));
			this._Frame1_4.Controls.Add(this.lblDepositVatRateOut);
			this._Frame1_4.Controls.Add(this.lblDepositOut);
			this._Frame1_4.Controls.Add(this._lbl_9);
			this._Frame1_4.Controls.Add(this.lblDepositVatOut);
			this._Frame1_4.Controls.Add(this._lbl_23);
			this._Frame1_4.Controls.Add(this.lblDepositInclusiveOut);
			this._Frame1_4.Controls.Add(this._lbl_24);
			this._Frame1_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_4.Location = new System.Drawing.Point(318, 162);
			this._Frame1_4.Name = "_Frame1_4";
			this._Frame1_4.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_4.Size = new System.Drawing.Size(301, 82);
			this._Frame1_4.TabIndex = 61;
			this._Frame1_4.TabStop = false;
			this._Frame1_4.Text = "Deposits with Credits";
			//
			//lblDepositVatRateOut
			//
			this.lblDepositVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatRateOut.Location = new System.Drawing.Point(243, 39);
			this.lblDepositVatRateOut.Name = "lblDepositVatRateOut";
			this.lblDepositVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblDepositVatRateOut.TabIndex = 68;
			this.lblDepositVatRateOut.Text = "0.00";
			//
			//lblDepositOut
			//
			this.lblDepositOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositOut.Location = new System.Drawing.Point(150, 18);
			this.lblDepositOut.Name = "lblDepositOut";
			this.lblDepositOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositOut.TabIndex = 67;
			this.lblDepositOut.Text = "0.00";
			this.lblDepositOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_9
			//
			this._lbl_9.BackColor = System.Drawing.Color.Transparent;
			this._lbl_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_9.Location = new System.Drawing.Point(16, 21);
			this._lbl_9.Name = "_lbl_9";
			this._lbl_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_9.Size = new System.Drawing.Size(133, 13);
			this._lbl_9.TabIndex = 66;
			this._lbl_9.Text = "Deposit Value:";
			this._lbl_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositVatOut
			//
			this.lblDepositVatOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositVatOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositVatOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatOut.Location = new System.Drawing.Point(150, 36);
			this.lblDepositVatOut.Name = "lblDepositVatOut";
			this.lblDepositVatOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositVatOut.TabIndex = 65;
			this.lblDepositVatOut.Text = "0.00";
			this.lblDepositVatOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_23
			//
			this._lbl_23.BackColor = System.Drawing.Color.Transparent;
			this._lbl_23.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_23.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_23.Location = new System.Drawing.Point(16, 39);
			this._lbl_23.Name = "_lbl_23";
			this._lbl_23.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_23.Size = new System.Drawing.Size(133, 13);
			this._lbl_23.TabIndex = 64;
			this._lbl_23.Text = "VAT:";
			this._lbl_23.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositInclusiveOut
			//
			this.lblDepositInclusiveOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositInclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositInclusiveOut.Location = new System.Drawing.Point(150, 54);
			this.lblDepositInclusiveOut.Name = "lblDepositInclusiveOut";
			this.lblDepositInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblDepositInclusiveOut.TabIndex = 63;
			this.lblDepositInclusiveOut.Text = "0.00";
			this.lblDepositInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_24
			//
			this._lbl_24.BackColor = System.Drawing.Color.Transparent;
			this._lbl_24.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_24.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_24.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_24.Location = new System.Drawing.Point(16, 57);
			this._lbl_24.Name = "_lbl_24";
			this._lbl_24.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_24.Size = new System.Drawing.Size(133, 13);
			this._lbl_24.TabIndex = 62;
			this._lbl_24.Text = "Inclusive:";
			this._lbl_24.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_Frame1_2
			//
			this._Frame1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(255)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)));
			this._Frame1_2.Controls.Add(this.lblDepositReturnVatRateOut);
			this._Frame1_2.Controls.Add(this._lbl_15);
			this._Frame1_2.Controls.Add(this.lblDepositReturnInclusiveOut);
			this._Frame1_2.Controls.Add(this._lbl_16);
			this._Frame1_2.Controls.Add(this.lblDepositReturnVatOut);
			this._Frame1_2.Controls.Add(this._lbl_17);
			this._Frame1_2.Controls.Add(this.lblDepositReturnOut);
			this._Frame1_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_2.Location = new System.Drawing.Point(321, 375);
			this._Frame1_2.Name = "_Frame1_2";
			this._Frame1_2.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_2.Size = new System.Drawing.Size(301, 79);
			this._Frame1_2.TabIndex = 22;
			this._Frame1_2.TabStop = false;
			this._Frame1_2.Text = "Returned Deposits";
			//
			//lblDepositReturnVatRateOut
			//
			this.lblDepositReturnVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositReturnVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositReturnVatRateOut.Location = new System.Drawing.Point(243, 39);
			this.lblDepositReturnVatRateOut.Name = "lblDepositReturnVatRateOut";
			this.lblDepositReturnVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblDepositReturnVatRateOut.TabIndex = 83;
			this.lblDepositReturnVatRateOut.Text = "0.00";
			//
			//_lbl_15
			//
			this._lbl_15.BackColor = System.Drawing.Color.Transparent;
			this._lbl_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_15.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_15.ForeColor = System.Drawing.Color.Black;
			this._lbl_15.Location = new System.Drawing.Point(16, 57);
			this._lbl_15.Name = "_lbl_15";
			this._lbl_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_15.Size = new System.Drawing.Size(133, 13);
			this._lbl_15.TabIndex = 27;
			this._lbl_15.Text = "Inclusive:";
			this._lbl_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositReturnInclusiveOut
			//
			this.lblDepositReturnInclusiveOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositReturnInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositReturnInclusiveOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnInclusiveOut.Location = new System.Drawing.Point(150, 54);
			this.lblDepositReturnInclusiveOut.Name = "lblDepositReturnInclusiveOut";
			this.lblDepositReturnInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblDepositReturnInclusiveOut.TabIndex = 28;
			this.lblDepositReturnInclusiveOut.Text = "0.00";
			this.lblDepositReturnInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_16
			//
			this._lbl_16.BackColor = System.Drawing.Color.Transparent;
			this._lbl_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_16.ForeColor = System.Drawing.Color.Black;
			this._lbl_16.Location = new System.Drawing.Point(16, 39);
			this._lbl_16.Name = "_lbl_16";
			this._lbl_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_16.Size = new System.Drawing.Size(133, 13);
			this._lbl_16.TabIndex = 25;
			this._lbl_16.Text = "VAT:";
			this._lbl_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositReturnVatOut
			//
			this.lblDepositReturnVatOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositReturnVatOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnVatOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnVatOut.Location = new System.Drawing.Point(150, 36);
			this.lblDepositReturnVatOut.Name = "lblDepositReturnVatOut";
			this.lblDepositReturnVatOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnVatOut.TabIndex = 26;
			this.lblDepositReturnVatOut.Text = "0.00";
			this.lblDepositReturnVatOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_17
			//
			this._lbl_17.BackColor = System.Drawing.Color.Transparent;
			this._lbl_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_17.ForeColor = System.Drawing.Color.Black;
			this._lbl_17.Location = new System.Drawing.Point(16, 21);
			this._lbl_17.Name = "_lbl_17";
			this._lbl_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_17.Size = new System.Drawing.Size(133, 13);
			this._lbl_17.TabIndex = 23;
			this._lbl_17.Text = "Deposit Value:";
			this._lbl_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositReturnOut
			//
			this.lblDepositReturnOut.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositReturnOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnOut.Location = new System.Drawing.Point(150, 18);
			this.lblDepositReturnOut.Name = "lblDepositReturnOut";
			this.lblDepositReturnOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnOut.TabIndex = 24;
			this.lblDepositReturnOut.Text = "0.00";
			this.lblDepositReturnOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_Frame1_0
			//
			this._Frame1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Frame1_0.Controls.Add(this.cmbPayment);
			this._Frame1_0.Controls.Add(this.txtUllage);
			this._Frame1_0.Controls.Add(this.txtDiscount);
			this._Frame1_0.Controls.Add(this.txtMinus);
			this._Frame1_0.Controls.Add(this.txtPlus);
			this._Frame1_0.Controls.Add(this.lblContentIn);
			this._Frame1_0.Controls.Add(this.lblDiscountLineIn);
			this._Frame1_0.Controls.Add(this._lbl_20);
			this._Frame1_0.Controls.Add(this._lbl_21);
			this._Frame1_0.Controls.Add(this.lblExclusiveIn);
			this._Frame1_0.Controls.Add(this._lbl_22);
			this._Frame1_0.Controls.Add(this._lbl_29);
			this._Frame1_0.Controls.Add(this.lblVATin);
			this._Frame1_0.Controls.Add(this._lbl_30);
			this._Frame1_0.Controls.Add(this.lblInclusiveIn);
			this._Frame1_0.Controls.Add(this.lblVatRateIn);
			this._Frame1_0.Controls.Add(this._lbl_19);
			this._Frame1_0.Controls.Add(this._Label1_1);
			this._Frame1_0.Controls.Add(this.Label2);
			this._Frame1_0.Controls.Add(this._Label1_0);
			this._Frame1_0.Controls.Add(this.lblDiscount);
			this._Frame1_0.Controls.Add(this.lblUllage);
			this._Frame1_0.Controls.Add(this.lblDiscountName);
			this._Frame1_0.Controls.Add(this._lbl_31);
			this._Frame1_0.Controls.Add(this.lblContentExclusiveIn);
			this._Frame1_0.Controls.Add(this._lbl_11);
			this._Frame1_0.Controls.Add(this._lbl_10);
			this._Frame1_0.Controls.Add(this._lbl_32);
			this._Frame1_0.Controls.Add(this.lblLinesIn);
			this._Frame1_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_0.Location = new System.Drawing.Point(9, 18);
			this._Frame1_0.Name = "_Frame1_0";
			this._Frame1_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_0.Size = new System.Drawing.Size(301, 268);
			this._Frame1_0.TabIndex = 12;
			this._Frame1_0.TabStop = false;
			this._Frame1_0.Text = "Purchased Content / Liquid";
			//
			//cmbPayment
			//
			this.cmbPayment.BackColor = System.Drawing.SystemColors.Window;
			this.cmbPayment.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbPayment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbPayment.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbPayment.Items.AddRange(new object[] {
				"C.O.D.",
				"15 Days",
				"30 Days",
				"60 Days",
				"90 Days",
				"120 Days",
				"Smart Card"
			});
			this.cmbPayment.Location = new System.Drawing.Point(153, 96);
			this.cmbPayment.Name = "cmbPayment";
			this.cmbPayment.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbPayment.Size = new System.Drawing.Size(91, 22);
			this.cmbPayment.TabIndex = 0;
			//
			//txtUllage
			//
			this.txtUllage.AcceptsReturn = true;
			this.txtUllage.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.txtUllage.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtUllage.Enabled = false;
			this.txtUllage.ForeColor = System.Drawing.Color.Red;
			this.txtUllage.Location = new System.Drawing.Point(99, 135);
			this.txtUllage.MaxLength = 0;
			this.txtUllage.Name = "txtUllage";
			this.txtUllage.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtUllage.Size = new System.Drawing.Size(40, 19);
			this.txtUllage.TabIndex = 8;
			this.txtUllage.Text = "0.20";
			this.txtUllage.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//txtDiscount
			//
			this.txtDiscount.AcceptsReturn = true;
			this.txtDiscount.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.txtDiscount.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtDiscount.Enabled = false;
			this.txtDiscount.ForeColor = System.Drawing.Color.Red;
			this.txtDiscount.Location = new System.Drawing.Point(99, 117);
			this.txtDiscount.MaxLength = 0;
			this.txtDiscount.Name = "txtDiscount";
			this.txtDiscount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtDiscount.Size = new System.Drawing.Size(40, 19);
			this.txtDiscount.TabIndex = 35;
			this.txtDiscount.TabStop = false;
			this.txtDiscount.Text = "2.00";
			this.txtDiscount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//txtMinus
			//
			this.txtMinus.AcceptsReturn = true;
			this.txtMinus.BackColor = System.Drawing.SystemColors.Window;
			this.txtMinus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtMinus.ForeColor = System.Drawing.Color.Red;
			this.txtMinus.Location = new System.Drawing.Point(153, 180);
			this.txtMinus.MaxLength = 0;
			this.txtMinus.Name = "txtMinus";
			this.txtMinus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtMinus.Size = new System.Drawing.Size(91, 19);
			this.txtMinus.TabIndex = 2;
			this.txtMinus.Text = "0.00";
			this.txtMinus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//txtPlus
			//
			this.txtPlus.AcceptsReturn = true;
			this.txtPlus.BackColor = System.Drawing.SystemColors.Window;
			this.txtPlus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPlus.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPlus.Location = new System.Drawing.Point(153, 159);
			this.txtPlus.MaxLength = 0;
			this.txtPlus.Name = "txtPlus";
			this.txtPlus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPlus.Size = new System.Drawing.Size(91, 19);
			this.txtPlus.TabIndex = 1;
			this.txtPlus.Text = "0.00";
			this.txtPlus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//lblContentIn
			//
			this.lblContentIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblContentIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentIn.Location = new System.Drawing.Point(153, 33);
			this.lblContentIn.Name = "lblContentIn";
			this.lblContentIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentIn.Size = new System.Drawing.Size(91, 19);
			this.lblContentIn.TabIndex = 59;
			this.lblContentIn.Text = "0.00";
			this.lblContentIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDiscountLineIn
			//
			this.lblDiscountLineIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDiscountLineIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscountLineIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountLineIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDiscountLineIn.Location = new System.Drawing.Point(153, 54);
			this.lblDiscountLineIn.Name = "lblDiscountLineIn";
			this.lblDiscountLineIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountLineIn.Size = new System.Drawing.Size(91, 19);
			this.lblDiscountLineIn.TabIndex = 58;
			this.lblDiscountLineIn.Text = "0.00";
			this.lblDiscountLineIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_20
			//
			this._lbl_20.BackColor = System.Drawing.Color.Transparent;
			this._lbl_20.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_20.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_20.Location = new System.Drawing.Point(18, 36);
			this._lbl_20.Name = "_lbl_20";
			this._lbl_20.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_20.Size = new System.Drawing.Size(133, 13);
			this._lbl_20.TabIndex = 57;
			this._lbl_20.Text = "Contents Value :";
			this._lbl_20.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_21
			//
			this._lbl_21.BackColor = System.Drawing.Color.Transparent;
			this._lbl_21.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_21.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_21.Location = new System.Drawing.Point(18, 57);
			this._lbl_21.Name = "_lbl_21";
			this._lbl_21.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_21.Size = new System.Drawing.Size(133, 13);
			this._lbl_21.TabIndex = 56;
			this._lbl_21.Text = "Line Item Discount :";
			this._lbl_21.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblExclusiveIn
			//
			this.lblExclusiveIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblExclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblExclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblExclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblExclusiveIn.Location = new System.Drawing.Point(153, 201);
			this.lblExclusiveIn.Name = "lblExclusiveIn";
			this.lblExclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblExclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblExclusiveIn.TabIndex = 55;
			this.lblExclusiveIn.Text = "0.00";
			this.lblExclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_22
			//
			this._lbl_22.BackColor = System.Drawing.Color.Transparent;
			this._lbl_22.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_22.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_22.Location = new System.Drawing.Point(18, 204);
			this._lbl_22.Name = "_lbl_22";
			this._lbl_22.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_22.Size = new System.Drawing.Size(133, 13);
			this._lbl_22.TabIndex = 54;
			this._lbl_22.Text = "Exclusive:";
			this._lbl_22.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_29
			//
			this._lbl_29.BackColor = System.Drawing.Color.Transparent;
			this._lbl_29.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_29.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_29.Location = new System.Drawing.Point(18, 225);
			this._lbl_29.Name = "_lbl_29";
			this._lbl_29.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_29.Size = new System.Drawing.Size(133, 13);
			this._lbl_29.TabIndex = 53;
			this._lbl_29.Text = "VAT :";
			this._lbl_29.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblVATin
			//
			this.lblVATin.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblVATin.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblVATin.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVATin.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVATin.Location = new System.Drawing.Point(153, 222);
			this.lblVATin.Name = "lblVATin";
			this.lblVATin.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVATin.Size = new System.Drawing.Size(91, 19);
			this.lblVATin.TabIndex = 52;
			this.lblVATin.Text = "0.00";
			this.lblVATin.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_30
			//
			this._lbl_30.BackColor = System.Drawing.Color.Transparent;
			this._lbl_30.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_30.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_30.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_30.Location = new System.Drawing.Point(18, 246);
			this._lbl_30.Name = "_lbl_30";
			this._lbl_30.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_30.Size = new System.Drawing.Size(133, 13);
			this._lbl_30.TabIndex = 51;
			this._lbl_30.Text = "Inclusive:";
			this._lbl_30.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblInclusiveIn
			//
			this.lblInclusiveIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInclusiveIn.Location = new System.Drawing.Point(153, 243);
			this.lblInclusiveIn.Name = "lblInclusiveIn";
			this.lblInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblInclusiveIn.TabIndex = 50;
			this.lblInclusiveIn.Text = "0.00";
			this.lblInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblVatRateIn
			//
			this.lblVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatRateIn.Location = new System.Drawing.Point(246, 225);
			this.lblVatRateIn.Name = "lblVatRateIn";
			this.lblVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblVatRateIn.TabIndex = 49;
			this.lblVatRateIn.Text = "0.00";
			//
			//_lbl_19
			//
			this._lbl_19.BackColor = System.Drawing.Color.Transparent;
			this._lbl_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_19.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_19.Location = new System.Drawing.Point(18, 99);
			this._lbl_19.Name = "_lbl_19";
			this._lbl_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_19.Size = new System.Drawing.Size(133, 13);
			this._lbl_19.TabIndex = 48;
			this._lbl_19.Text = "Payment Terms";
			this._lbl_19.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_Label1_1
			//
			this._Label1_1.AutoSize = true;
			this._Label1_1.BackColor = System.Drawing.Color.Transparent;
			this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_1.ForeColor = System.Drawing.Color.Red;
			this._Label1_1.Location = new System.Drawing.Point(138, 138);
			this._Label1_1.Name = "_Label1_1";
			this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_1.Size = new System.Drawing.Size(19, 14);
			this._Label1_1.TabIndex = 47;
			this._Label1_1.Text = "%:";
			this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label2
			//
			this.Label2.BackColor = System.Drawing.Color.Transparent;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.ForeColor = System.Drawing.Color.Red;
			this.Label2.Location = new System.Drawing.Point(-36, 138);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(133, 13);
			this.Label2.TabIndex = 46;
			this.Label2.Text = "Ullage @";
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_Label1_0
			//
			this._Label1_0.AutoSize = true;
			this._Label1_0.BackColor = System.Drawing.Color.Transparent;
			this._Label1_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_0.ForeColor = System.Drawing.Color.Red;
			this._Label1_0.Location = new System.Drawing.Point(138, 120);
			this._Label1_0.Name = "_Label1_0";
			this._Label1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_0.Size = new System.Drawing.Size(19, 14);
			this._Label1_0.TabIndex = 45;
			this._Label1_0.Text = "%:";
			this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDiscount
			//
			this.lblDiscount.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDiscount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscount.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscount.ForeColor = System.Drawing.Color.Red;
			this.lblDiscount.Location = new System.Drawing.Point(153, 117);
			this.lblDiscount.Name = "lblDiscount";
			this.lblDiscount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscount.Size = new System.Drawing.Size(91, 19);
			this.lblDiscount.TabIndex = 44;
			this.lblDiscount.Text = "0.00";
			this.lblDiscount.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblUllage
			//
			this.lblUllage.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblUllage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblUllage.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblUllage.ForeColor = System.Drawing.Color.Red;
			this.lblUllage.Location = new System.Drawing.Point(153, 138);
			this.lblUllage.Name = "lblUllage";
			this.lblUllage.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblUllage.Size = new System.Drawing.Size(91, 19);
			this.lblUllage.TabIndex = 43;
			this.lblUllage.Text = "0.00";
			this.lblUllage.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDiscountName
			//
			this.lblDiscountName.BackColor = System.Drawing.Color.Transparent;
			this.lblDiscountName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountName.ForeColor = System.Drawing.Color.Red;
			this.lblDiscountName.Location = new System.Drawing.Point(-42, 120);
			this.lblDiscountName.Name = "lblDiscountName";
			this.lblDiscountName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountName.Size = new System.Drawing.Size(133, 13);
			this.lblDiscountName.TabIndex = 42;
			this.lblDiscountName.Text = "Account Discount";
			this.lblDiscountName.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_31
			//
			this._lbl_31.BackColor = System.Drawing.Color.Transparent;
			this._lbl_31.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_31.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_31.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_31.Location = new System.Drawing.Point(18, 78);
			this._lbl_31.Name = "_lbl_31";
			this._lbl_31.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_31.Size = new System.Drawing.Size(133, 13);
			this._lbl_31.TabIndex = 41;
			this._lbl_31.Text = "Content Sub Total :";
			this._lbl_31.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblContentExclusiveIn
			//
			this.lblContentExclusiveIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblContentExclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentExclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentExclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblContentExclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentExclusiveIn.Location = new System.Drawing.Point(153, 75);
			this.lblContentExclusiveIn.Name = "lblContentExclusiveIn";
			this.lblContentExclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentExclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblContentExclusiveIn.TabIndex = 40;
			this.lblContentExclusiveIn.Text = "0.00";
			this.lblContentExclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_11
			//
			this._lbl_11.BackColor = System.Drawing.Color.Transparent;
			this._lbl_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_11.ForeColor = System.Drawing.Color.Red;
			this._lbl_11.Location = new System.Drawing.Point(18, 183);
			this._lbl_11.Name = "_lbl_11";
			this._lbl_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_11.Size = new System.Drawing.Size(133, 13);
			this._lbl_11.TabIndex = 39;
			this._lbl_11.Text = "Sundry Minuses:";
			this._lbl_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_10
			//
			this._lbl_10.BackColor = System.Drawing.Color.Transparent;
			this._lbl_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_10.Location = new System.Drawing.Point(18, 162);
			this._lbl_10.Name = "_lbl_10";
			this._lbl_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_10.Size = new System.Drawing.Size(133, 13);
			this._lbl_10.TabIndex = 38;
			this._lbl_10.Text = "Sundry Pluses:";
			this._lbl_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_32
			//
			this._lbl_32.BackColor = System.Drawing.Color.Transparent;
			this._lbl_32.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_32.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_32.Location = new System.Drawing.Point(18, 15);
			this._lbl_32.Name = "_lbl_32";
			this._lbl_32.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_32.Size = new System.Drawing.Size(133, 13);
			this._lbl_32.TabIndex = 37;
			this._lbl_32.Text = "No Of Lines :";
			this._lbl_32.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblLinesIn
			//
			this.lblLinesIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblLinesIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblLinesIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblLinesIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblLinesIn.Location = new System.Drawing.Point(153, 12);
			this.lblLinesIn.Name = "lblLinesIn";
			this.lblLinesIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblLinesIn.Size = new System.Drawing.Size(91, 19);
			this.lblLinesIn.TabIndex = 36;
			this.lblLinesIn.Text = "0";
			this.lblLinesIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_Frame1_1
			//
			this._Frame1_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Frame1_1.Controls.Add(this.lblDepositVatRateIn);
			this._Frame1_1.Controls.Add(this.lblDepositIn);
			this._Frame1_1.Controls.Add(this._lbl_2);
			this._Frame1_1.Controls.Add(this.lblDepositVatIn);
			this._Frame1_1.Controls.Add(this._lbl_13);
			this._Frame1_1.Controls.Add(this.lblDepositInclusiveIn);
			this._Frame1_1.Controls.Add(this._lbl_14);
			this._Frame1_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_1.Location = new System.Drawing.Point(9, 285);
			this._Frame1_1.Name = "_Frame1_1";
			this._Frame1_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_1.Size = new System.Drawing.Size(301, 82);
			this._Frame1_1.TabIndex = 13;
			this._Frame1_1.TabStop = false;
			this._Frame1_1.Text = "Deposits with Purchases";
			//
			//lblDepositVatRateIn
			//
			this.lblDepositVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatRateIn.Location = new System.Drawing.Point(243, 39);
			this.lblDepositVatRateIn.Name = "lblDepositVatRateIn";
			this.lblDepositVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblDepositVatRateIn.TabIndex = 60;
			this.lblDepositVatRateIn.Text = "0.00";
			//
			//lblDepositIn
			//
			this.lblDepositIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositIn.Location = new System.Drawing.Point(150, 18);
			this.lblDepositIn.Name = "lblDepositIn";
			this.lblDepositIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositIn.TabIndex = 15;
			this.lblDepositIn.Text = "0.00";
			this.lblDepositIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_2
			//
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			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, 21);
			this._lbl_2.Name = "_lbl_2";
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.Size = new System.Drawing.Size(133, 13);
			this._lbl_2.TabIndex = 14;
			this._lbl_2.Text = "Deposit Value:";
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositVatIn
			//
			this.lblDepositVatIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositVatIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositVatIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatIn.Location = new System.Drawing.Point(150, 36);
			this.lblDepositVatIn.Name = "lblDepositVatIn";
			this.lblDepositVatIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositVatIn.TabIndex = 17;
			this.lblDepositVatIn.Text = "0.00";
			this.lblDepositVatIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_13
			//
			this._lbl_13.BackColor = System.Drawing.Color.Transparent;
			this._lbl_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_13.Location = new System.Drawing.Point(16, 39);
			this._lbl_13.Name = "_lbl_13";
			this._lbl_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_13.Size = new System.Drawing.Size(133, 13);
			this._lbl_13.TabIndex = 16;
			this._lbl_13.Text = "VAT:";
			this._lbl_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDepositInclusiveIn
			//
			this.lblDepositInclusiveIn.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDepositInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositInclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositInclusiveIn.Location = new System.Drawing.Point(150, 54);
			this.lblDepositInclusiveIn.Name = "lblDepositInclusiveIn";
			this.lblDepositInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblDepositInclusiveIn.TabIndex = 19;
			this.lblDepositInclusiveIn.Text = "0.00";
			this.lblDepositInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_14
			//
			this._lbl_14.BackColor = System.Drawing.Color.Transparent;
			this._lbl_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_14.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_14.Location = new System.Drawing.Point(16, 57);
			this._lbl_14.Name = "_lbl_14";
			this._lbl_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_14.Size = new System.Drawing.Size(133, 13);
			this._lbl_14.TabIndex = 18;
			this._lbl_14.Text = "Inclusive:";
			this._lbl_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_28
			//
			this._lbl_28.BackColor = System.Drawing.Color.Transparent;
			this._lbl_28.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_28.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_28.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_28.Location = new System.Drawing.Point(336, 456);
			this._lbl_28.Name = "_lbl_28";
			this._lbl_28.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_28.Size = new System.Drawing.Size(133, 13);
			this._lbl_28.TabIndex = 93;
			this._lbl_28.Text = "In Bound VAT:";
			this._lbl_28.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblInBoundVat
			//
			this.lblInBoundVat.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(255)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)));
			this.lblInBoundVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInBoundVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInBoundVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInBoundVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInBoundVat.Location = new System.Drawing.Point(470, 453);
			this.lblInBoundVat.Name = "lblInBoundVat";
			this.lblInBoundVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInBoundVat.Size = new System.Drawing.Size(91, 19);
			this.lblInBoundVat.TabIndex = 92;
			this.lblInBoundVat.Text = "0.00";
			this.lblInBoundVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_27
			//
			this._lbl_27.BackColor = System.Drawing.Color.Transparent;
			this._lbl_27.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_27.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_27.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_27.Location = new System.Drawing.Point(337, 477);
			this._lbl_27.Name = "_lbl_27";
			this._lbl_27.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_27.Size = new System.Drawing.Size(133, 13);
			this._lbl_27.TabIndex = 91;
			this._lbl_27.Text = "Credit Inclusive:";
			this._lbl_27.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblInBound
			//
			this.lblInBound.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(255)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)));
			this.lblInBound.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInBound.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInBound.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInBound.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInBound.Location = new System.Drawing.Point(471, 474);
			this.lblInBound.Name = "lblInBound";
			this.lblInBound.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInBound.Size = new System.Drawing.Size(91, 19);
			this.lblInBound.TabIndex = 90;
			this.lblInBound.Text = "0.00";
			this.lblInBound.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_26
			//
			this._lbl_26.BackColor = System.Drawing.Color.Transparent;
			this._lbl_26.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_26.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_26.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_26.Location = new System.Drawing.Point(336, 246);
			this._lbl_26.Name = "_lbl_26";
			this._lbl_26.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_26.Size = new System.Drawing.Size(133, 13);
			this._lbl_26.TabIndex = 89;
			this._lbl_26.Text = "Credits VAT:";
			this._lbl_26.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblCreditVat
			//
			this.lblCreditVat.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblCreditVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblCreditVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblCreditVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblCreditVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblCreditVat.Location = new System.Drawing.Point(470, 243);
			this.lblCreditVat.Name = "lblCreditVat";
			this.lblCreditVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblCreditVat.Size = new System.Drawing.Size(91, 19);
			this.lblCreditVat.TabIndex = 88;
			this.lblCreditVat.Text = "0.00";
			this.lblCreditVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_25
			//
			this._lbl_25.BackColor = System.Drawing.Color.Transparent;
			this._lbl_25.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_25.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_25.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_25.Location = new System.Drawing.Point(337, 267);
			this._lbl_25.Name = "_lbl_25";
			this._lbl_25.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_25.Size = new System.Drawing.Size(133, 13);
			this._lbl_25.TabIndex = 87;
			this._lbl_25.Text = "Credits Inclusive:";
			this._lbl_25.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblCredit
			//
			this.lblCredit.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblCredit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblCredit.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblCredit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblCredit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblCredit.Location = new System.Drawing.Point(471, 264);
			this.lblCredit.Name = "lblCredit";
			this.lblCredit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblCredit.Size = new System.Drawing.Size(91, 19);
			this.lblCredit.TabIndex = 86;
			this.lblCredit.Text = "0.00";
			this.lblCredit.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_8
			//
			this._lbl_8.BackColor = System.Drawing.Color.Transparent;
			this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_8.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_8.Location = new System.Drawing.Point(24, 456);
			this._lbl_8.Name = "_lbl_8";
			this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_8.Size = new System.Drawing.Size(133, 13);
			this._lbl_8.TabIndex = 85;
			this._lbl_8.Text = "Out Bound VAT:";
			this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblOutBoundVat
			//
			this.lblOutBoundVat.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.lblOutBoundVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblOutBoundVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblOutBoundVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblOutBoundVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblOutBoundVat.Location = new System.Drawing.Point(158, 453);
			this.lblOutBoundVat.Name = "lblOutBoundVat";
			this.lblOutBoundVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblOutBoundVat.Size = new System.Drawing.Size(91, 19);
			this.lblOutBoundVat.TabIndex = 84;
			this.lblOutBoundVat.Text = "0.00";
			this.lblOutBoundVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblOutBound
			//
			this.lblOutBound.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.lblOutBound.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblOutBound.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblOutBound.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblOutBound.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblOutBound.Location = new System.Drawing.Point(159, 474);
			this.lblOutBound.Name = "lblOutBound";
			this.lblOutBound.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblOutBound.Size = new System.Drawing.Size(91, 19);
			this.lblOutBound.TabIndex = 21;
			this.lblOutBound.Text = "0.00";
			this.lblOutBound.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_6
			//
			this._lbl_6.BackColor = System.Drawing.Color.Transparent;
			this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_6.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_6.Location = new System.Drawing.Point(25, 477);
			this._lbl_6.Name = "_lbl_6";
			this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_6.Size = new System.Drawing.Size(133, 13);
			this._lbl_6.TabIndex = 20;
			this._lbl_6.Text = "Purchases Inclusive:";
			this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblTotal
			//
			this.lblTotal.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotal.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblTotal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotal.Location = new System.Drawing.Point(531, 522);
			this.lblTotal.Name = "lblTotal";
			this.lblTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotal.Size = new System.Drawing.Size(91, 19);
			this.lblTotal.TabIndex = 10;
			this.lblTotal.Text = "0.00";
			this.lblTotal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_7
			//
			this._lbl_7.BackColor = System.Drawing.Color.Transparent;
			this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_7.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_7.Location = new System.Drawing.Point(396, 525);
			this._lbl_7.Name = "_lbl_7";
			this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_7.Size = new System.Drawing.Size(133, 13);
			this._lbl_7.TabIndex = 9;
			this._lbl_7.Text = "Nett Invoice Value:";
			this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_0
			//
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Location = new System.Drawing.Point(24, 504);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(133, 13);
			this._lbl_0.TabIndex = 29;
			this._lbl_0.Text = "Desired Invoice Value:";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblTotalOriginal
			//
			this.lblTotalOriginal.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblTotalOriginal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalOriginal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalOriginal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalOriginal.Location = new System.Drawing.Point(159, 501);
			this.lblTotalOriginal.Name = "lblTotalOriginal";
			this.lblTotalOriginal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalOriginal.Size = new System.Drawing.Size(91, 19);
			this.lblTotalOriginal.TabIndex = 30;
			this.lblTotalOriginal.Text = "0.00";
			this.lblTotalOriginal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblDifference
			//
			this.lblDifference.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.lblDifference.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDifference.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDifference.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDifference.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDifference.Location = new System.Drawing.Point(159, 522);
			this.lblDifference.Name = "lblDifference";
			this.lblDifference.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDifference.Size = new System.Drawing.Size(91, 19);
			this.lblDifference.TabIndex = 32;
			this.lblDifference.Text = "0.00";
			this.lblDifference.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_18
			//
			this._lbl_18.BackColor = System.Drawing.Color.Transparent;
			this._lbl_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_18.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_18.Location = new System.Drawing.Point(24, 525);
			this._lbl_18.Name = "_lbl_18";
			this._lbl_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_18.Size = new System.Drawing.Size(133, 13);
			this._lbl_18.TabIndex = 31;
			this._lbl_18.Text = "Difference:";
			this._lbl_18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Picture1
			//
			this.Picture1.BackColor = System.Drawing.Color.Red;
			this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture1.Controls.Add(this.lblSupplier);
			this.Picture1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture1.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture1.Location = new System.Drawing.Point(0, 0);
			this.Picture1.Name = "Picture1";
			this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture1.Size = new System.Drawing.Size(760, 25);
			this.Picture1.TabIndex = 33;
			//
			//lblSupplier
			//
			this.lblSupplier.AutoSize = true;
			this.lblSupplier.BackColor = System.Drawing.Color.Transparent;
			this.lblSupplier.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblSupplier.Font = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblSupplier.ForeColor = System.Drawing.Color.White;
			this.lblSupplier.Location = new System.Drawing.Point(0, 0);
			this.lblSupplier.Name = "lblSupplier";
			this.lblSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblSupplier.Size = new System.Drawing.Size(91, 19);
			this.lblSupplier.TabIndex = 34;
			this.lblSupplier.Text = "lblSupplier";
			//
			//frmGRVSummary
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.ClientSize = new System.Drawing.Size(760, 684);
			this.ControlBox = false;
			this.Controls.Add(this.Picture2);
			this.Controls.Add(this.frmProcess);
			this.Controls.Add(this.frmMain);
			this.Controls.Add(this.Picture1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.Location = new System.Drawing.Point(4, 23);
			this.Name = "frmGRVSummary";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "GRV Summary and Process";
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.Picture2.ResumeLayout(false);
			this.frmProcess.ResumeLayout(false);
			this.frmProcess.PerformLayout();
			this.frmMain.ResumeLayout(false);
			this._Frame1_5.ResumeLayout(false);
			this._Frame1_3.ResumeLayout(false);
			this._Frame1_4.ResumeLayout(false);
			this._Frame1_2.ResumeLayout(false);
			this._Frame1_0.ResumeLayout(false);
			this._Frame1_0.PerformLayout();
			this._Frame1_1.ResumeLayout(false);
			this.Picture1.ResumeLayout(false);
			this.Picture1.PerformLayout();
			this.ResumeLayout(false);

		}
Ejemplo n.º 24
0
 private void InitializeComponent()
 {
     this.components        = new System.ComponentModel.Container();
     this.ToolTip1          = new System.Windows.Forms.ToolTip(this.components);
     this.ShapeContainer1   = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.Line3             = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.Line2             = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.Line1             = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.Frame3            = new System.Windows.Forms.GroupBox();
     this.cmdUndo           = new System.Windows.Forms.Button();
     this.chkUndoPosOveride = new System.Windows.Forms.CheckBox();
     this.picButtons        = new System.Windows.Forms.Panel();
     this.Command2          = new System.Windows.Forms.Button();
     this.Command1          = new System.Windows.Forms.Button();
     this.Frame2            = new System.Windows.Forms.GroupBox();
     this.cmdUpdate         = new System.Windows.Forms.Button();
     this.chkDiscontinued   = new System.Windows.Forms.CheckBox();
     this.chkDisable        = new System.Windows.Forms.CheckBox();
     this._OprBarcode_1     = new System.Windows.Forms.RadioButton();
     this._OprBarcode_0     = new System.Windows.Forms.RadioButton();
     this._OprBarcode_2     = new System.Windows.Forms.RadioButton();
     this.chkSerialTracking = new System.Windows.Forms.CheckBox();
     this.chkPosOveride     = new System.Windows.Forms.CheckBox();
     this.chkAllowFractions = new System.Windows.Forms.CheckBox();
     this.chkNonWeigted     = new System.Windows.Forms.CheckBox();
     this.chkScale          = new System.Windows.Forms.CheckBox();
     this.cmbUpPrinting     = new _4PosBackOffice.NET.myDataGridView();
     this.cmpUpSupplier     = new _4PosBackOffice.NET.myDataGridView();
     this.cmbUpPricing      = new _4PosBackOffice.NET.myDataGridView();
     this.cmbReportGroups   = new _4PosBackOffice.NET.myDataGridView();
     this.Label1            = new System.Windows.Forms.Label();
     this.Label6            = new System.Windows.Forms.Label();
     this.Label5            = new System.Windows.Forms.Label();
     this.Label4            = new System.Windows.Forms.Label();
     this.Label3            = new System.Windows.Forms.Label();
     this.Frame1            = new System.Windows.Forms.GroupBox();
     this.Command3          = new System.Windows.Forms.Button();
     this.lblChanges        = new System.Windows.Forms.Label();
     this.lblHeading        = new System.Windows.Forms.Label();
     this.Frame3.SuspendLayout();
     this.picButtons.SuspendLayout();
     this.Frame2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.cmbUpPrinting).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmpUpSupplier).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbUpPricing).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbReportGroups).BeginInit();
     this.Frame1.SuspendLayout();
     this.SuspendLayout();
     //
     //ShapeContainer1
     //
     this.ShapeContainer1.Location = new System.Drawing.Point(0, 13);
     this.ShapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
     this.ShapeContainer1.Name     = "ShapeContainer1";
     this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
         this.Line3,
         this.Line2,
         this.Line1
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(441, 312);
     this.ShapeContainer1.TabIndex = 28;
     this.ShapeContainer1.TabStop  = false;
     //
     //Line3
     //
     this.Line3.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Line3.BorderWidth = 2;
     this.Line3.Name        = "Line3";
     this.Line3.X1          = 6;
     this.Line3.X2          = 432;
     this.Line3.Y1          = 251;
     this.Line3.Y2          = 251;
     //
     //Line2
     //
     this.Line2.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Line2.BorderWidth = 2;
     this.Line2.Name        = "Line2";
     this.Line2.X1          = 8;
     this.Line2.X2          = 434;
     this.Line2.Y1          = 96;
     this.Line2.Y2          = 96;
     //
     //Line1
     //
     this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Line1.BorderWidth = 2;
     this.Line1.Name        = "Line1";
     this.Line1.X1          = 6;
     this.Line1.X2          = 434;
     this.Line1.Y1          = 139;
     this.Line1.Y2          = 139;
     //
     //Frame3
     //
     this.Frame3.BackColor = System.Drawing.SystemColors.Control;
     this.Frame3.Controls.Add(this.cmdUndo);
     this.Frame3.Controls.Add(this.chkUndoPosOveride);
     this.Frame3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame3.Location    = new System.Drawing.Point(6, 496);
     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(441, 49);
     this.Frame3.TabIndex    = 28;
     this.Frame3.TabStop     = false;
     this.Frame3.Text        = "Undo Changes";
     //
     //cmdUndo
     //
     this.cmdUndo.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdUndo.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdUndo.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdUndo.Location                = new System.Drawing.Point(184, 16);
     this.cmdUndo.Name                    = "cmdUndo";
     this.cmdUndo.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdUndo.Size                    = new System.Drawing.Size(95, 27);
     this.cmdUndo.TabIndex                = 30;
     this.cmdUndo.Text                    = "Undo Update";
     this.cmdUndo.UseVisualStyleBackColor = false;
     //
     //chkUndoPosOveride
     //
     this.chkUndoPosOveride.BackColor               = System.Drawing.SystemColors.Control;
     this.chkUndoPosOveride.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkUndoPosOveride.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkUndoPosOveride.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkUndoPosOveride.Location                = new System.Drawing.Point(8, 21);
     this.chkUndoPosOveride.Name                    = "chkUndoPosOveride";
     this.chkUndoPosOveride.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkUndoPosOveride.Size                    = new System.Drawing.Size(171, 16);
     this.chkUndoPosOveride.TabIndex                = 29;
     this.chkUndoPosOveride.Text                    = "Undo POS Price Overide (SQ)";
     this.chkUndoPosOveride.UseVisualStyleBackColor = false;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.Command2);
     this.picButtons.Controls.Add(this.Command1);
     this.picButtons.Cursor      = System.Windows.Forms.Cursors.Default;
     this.picButtons.Dock        = System.Windows.Forms.DockStyle.Top;
     this.picButtons.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.picButtons.Location    = new System.Drawing.Point(0, 0);
     this.picButtons.Name        = "picButtons";
     this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Size        = new System.Drawing.Size(452, 38);
     this.picButtons.TabIndex    = 20;
     //
     //Command2
     //
     this.Command2.BackColor               = System.Drawing.SystemColors.Control;
     this.Command2.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.Command2.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.Command2.Location                = new System.Drawing.Point(360, 4);
     this.Command2.Name                    = "Command2";
     this.Command2.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command2.Size                    = new System.Drawing.Size(83, 27);
     this.Command2.TabIndex                = 22;
     this.Command2.Text                    = "&Exit";
     this.Command2.UseVisualStyleBackColor = false;
     //
     //Command1
     //
     this.Command1.BackColor               = System.Drawing.SystemColors.Control;
     this.Command1.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.Command1.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.Command1.Location                = new System.Drawing.Point(4, 4);
     this.Command1.Name                    = "Command1";
     this.Command1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command1.Size                    = new System.Drawing.Size(83, 27);
     this.Command1.TabIndex                = 21;
     this.Command1.Text                    = "Global Cost";
     this.Command1.UseVisualStyleBackColor = false;
     //
     //Frame2
     //
     this.Frame2.BackColor = System.Drawing.SystemColors.Control;
     this.Frame2.Controls.Add(this.cmdUpdate);
     this.Frame2.Controls.Add(this.chkDiscontinued);
     this.Frame2.Controls.Add(this.chkDisable);
     this.Frame2.Controls.Add(this._OprBarcode_1);
     this.Frame2.Controls.Add(this._OprBarcode_0);
     this.Frame2.Controls.Add(this._OprBarcode_2);
     this.Frame2.Controls.Add(this.chkSerialTracking);
     this.Frame2.Controls.Add(this.chkPosOveride);
     this.Frame2.Controls.Add(this.chkAllowFractions);
     this.Frame2.Controls.Add(this.chkNonWeigted);
     this.Frame2.Controls.Add(this.chkScale);
     this.Frame2.Controls.Add(this.cmbUpPrinting);
     this.Frame2.Controls.Add(this.cmpUpSupplier);
     this.Frame2.Controls.Add(this.cmbUpPricing);
     this.Frame2.Controls.Add(this.cmbReportGroups);
     this.Frame2.Controls.Add(this.Label1);
     this.Frame2.Controls.Add(this.Label6);
     this.Frame2.Controls.Add(this.Label5);
     this.Frame2.Controls.Add(this.Label4);
     this.Frame2.Controls.Add(this.Label3);
     this.Frame2.Controls.Add(this.ShapeContainer1);
     this.Frame2.Enabled     = false;
     this.Frame2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame2.Location    = new System.Drawing.Point(6, 166);
     this.Frame2.Name        = "Frame2";
     this.Frame2.Padding     = new System.Windows.Forms.Padding(0);
     this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Size        = new System.Drawing.Size(441, 325);
     this.Frame2.TabIndex    = 12;
     this.Frame2.TabStop     = false;
     this.Frame2.Text        = "Field(s) To Update";
     //
     //cmdUpdate
     //
     this.cmdUpdate.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdUpdate.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdUpdate.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdUpdate.Location                = new System.Drawing.Point(184, 280);
     this.cmdUpdate.Name                    = "cmdUpdate";
     this.cmdUpdate.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdUpdate.Size                    = new System.Drawing.Size(95, 27);
     this.cmdUpdate.TabIndex                = 19;
     this.cmdUpdate.Text                    = "Update";
     this.cmdUpdate.UseVisualStyleBackColor = false;
     //
     //chkDiscontinued
     //
     this.chkDiscontinued.BackColor               = System.Drawing.SystemColors.Control;
     this.chkDiscontinued.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkDiscontinued.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkDiscontinued.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkDiscontinued.Location                = new System.Drawing.Point(348, 272);
     this.chkDiscontinued.Name                    = "chkDiscontinued";
     this.chkDiscontinued.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkDiscontinued.Size                    = new System.Drawing.Size(83, 17);
     this.chkDiscontinued.TabIndex                = 11;
     this.chkDiscontinued.Text                    = "Discontinued";
     this.chkDiscontinued.UseVisualStyleBackColor = false;
     //
     //chkDisable
     //
     this.chkDisable.BackColor               = System.Drawing.SystemColors.Control;
     this.chkDisable.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkDisable.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkDisable.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkDisable.Location                = new System.Drawing.Point(6, 272);
     this.chkDisable.Name                    = "chkDisable";
     this.chkDisable.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkDisable.Size                    = new System.Drawing.Size(71, 17);
     this.chkDisable.TabIndex                = 10;
     this.chkDisable.Text                    = "Disabled";
     this.chkDisable.UseVisualStyleBackColor = false;
     //
     //_OprBarcode_1
     //
     this._OprBarcode_1.BackColor               = System.Drawing.SystemColors.Control;
     this._OprBarcode_1.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._OprBarcode_1.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._OprBarcode_1.Location                = new System.Drawing.Point(128, 130);
     this._OprBarcode_1.Name                    = "_OprBarcode_1";
     this._OprBarcode_1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._OprBarcode_1.Size                    = new System.Drawing.Size(71, 19);
     this._OprBarcode_1.TabIndex                = 7;
     this._OprBarcode_1.TabStop                 = true;
     this._OprBarcode_1.Text                    = "Barcode";
     this._OprBarcode_1.UseVisualStyleBackColor = false;
     //
     //_OprBarcode_0
     //
     this._OprBarcode_0.BackColor               = System.Drawing.SystemColors.Control;
     this._OprBarcode_0.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._OprBarcode_0.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._OprBarcode_0.Location                = new System.Drawing.Point(6, 130);
     this._OprBarcode_0.Name                    = "_OprBarcode_0";
     this._OprBarcode_0.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._OprBarcode_0.Size                    = new System.Drawing.Size(69, 19);
     this._OprBarcode_0.TabIndex                = 6;
     this._OprBarcode_0.TabStop                 = true;
     this._OprBarcode_0.Text                    = "Shelf";
     this._OprBarcode_0.UseVisualStyleBackColor = false;
     //
     //_OprBarcode_2
     //
     this._OprBarcode_2.BackColor               = System.Drawing.SystemColors.Control;
     this._OprBarcode_2.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._OprBarcode_2.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._OprBarcode_2.Location                = new System.Drawing.Point(252, 130);
     this._OprBarcode_2.Name                    = "_OprBarcode_2";
     this._OprBarcode_2.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._OprBarcode_2.Size                    = new System.Drawing.Size(47, 19);
     this._OprBarcode_2.TabIndex                = 5;
     this._OprBarcode_2.TabStop                 = true;
     this._OprBarcode_2.Text                    = "None";
     this._OprBarcode_2.UseVisualStyleBackColor = false;
     //
     //chkSerialTracking
     //
     this.chkSerialTracking.BackColor               = System.Drawing.SystemColors.Control;
     this.chkSerialTracking.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkSerialTracking.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkSerialTracking.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkSerialTracking.Location                = new System.Drawing.Point(8, 86);
     this.chkSerialTracking.Name                    = "chkSerialTracking";
     this.chkSerialTracking.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkSerialTracking.Size                    = new System.Drawing.Size(211, 21);
     this.chkSerialTracking.TabIndex                = 4;
     this.chkSerialTracking.Text                    = "Serial Tracking ";
     this.chkSerialTracking.UseVisualStyleBackColor = false;
     //
     //chkPosOveride
     //
     this.chkPosOveride.BackColor               = System.Drawing.SystemColors.Control;
     this.chkPosOveride.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkPosOveride.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkPosOveride.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkPosOveride.Location                = new System.Drawing.Point(8, 68);
     this.chkPosOveride.Name                    = "chkPosOveride";
     this.chkPosOveride.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkPosOveride.Size                    = new System.Drawing.Size(211, 21);
     this.chkPosOveride.TabIndex                = 3;
     this.chkPosOveride.Text                    = "POS Price Overide (SQ)";
     this.chkPosOveride.UseVisualStyleBackColor = false;
     //
     //chkAllowFractions
     //
     this.chkAllowFractions.BackColor               = System.Drawing.SystemColors.Control;
     this.chkAllowFractions.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkAllowFractions.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkAllowFractions.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkAllowFractions.Location                = new System.Drawing.Point(8, 52);
     this.chkAllowFractions.Name                    = "chkAllowFractions";
     this.chkAllowFractions.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkAllowFractions.Size                    = new System.Drawing.Size(211, 20);
     this.chkAllowFractions.TabIndex                = 2;
     this.chkAllowFractions.Text                    = "Allow Fractions";
     this.chkAllowFractions.UseVisualStyleBackColor = false;
     //
     //chkNonWeigted
     //
     this.chkNonWeigted.BackColor               = System.Drawing.SystemColors.Control;
     this.chkNonWeigted.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkNonWeigted.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkNonWeigted.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkNonWeigted.Location                = new System.Drawing.Point(8, 34);
     this.chkNonWeigted.Name                    = "chkNonWeigted";
     this.chkNonWeigted.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkNonWeigted.Size                    = new System.Drawing.Size(211, 17);
     this.chkNonWeigted.TabIndex                = 1;
     this.chkNonWeigted.Text                    = "This is a scale item Non-Weigted";
     this.chkNonWeigted.UseVisualStyleBackColor = false;
     //
     //chkScale
     //
     this.chkScale.BackColor               = System.Drawing.SystemColors.Control;
     this.chkScale.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkScale.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkScale.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkScale.Location                = new System.Drawing.Point(8, 16);
     this.chkScale.Name                    = "chkScale";
     this.chkScale.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkScale.Size                    = new System.Drawing.Size(211, 18);
     this.chkScale.TabIndex                = 0;
     this.chkScale.Text                    = "This Is a Scale Product ";
     this.chkScale.UseVisualStyleBackColor = false;
     //
     //cmbUpPrinting
     //
     this.cmbUpPrinting.AllowAddNew   = true;
     this.cmbUpPrinting.BoundText     = "";
     this.cmbUpPrinting.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.cmbUpPrinting.Col           = 0;
     this.cmbUpPrinting.CtlText       = "";
     this.cmbUpPrinting.DataField     = null;
     this.cmbUpPrinting.Location      = new System.Drawing.Point(156, 210);
     this.cmbUpPrinting.Name          = "cmbUpPrinting";
     this.cmbUpPrinting.row           = 0;
     this.cmbUpPrinting.Size          = new System.Drawing.Size(275, 21);
     this.cmbUpPrinting.TabIndex      = 8;
     this.cmbUpPrinting.TopRow        = 0;
     //
     //cmpUpSupplier
     //
     this.cmpUpSupplier.AllowAddNew   = true;
     this.cmpUpSupplier.BoundText     = "";
     this.cmpUpSupplier.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.cmpUpSupplier.Col           = 0;
     this.cmpUpSupplier.CtlText       = "";
     this.cmpUpSupplier.DataField     = null;
     this.cmpUpSupplier.Location      = new System.Drawing.Point(156, 162);
     this.cmpUpSupplier.Name          = "cmpUpSupplier";
     this.cmpUpSupplier.row           = 0;
     this.cmpUpSupplier.Size          = new System.Drawing.Size(275, 21);
     this.cmpUpSupplier.TabIndex      = 15;
     this.cmpUpSupplier.TopRow        = 0;
     //
     //cmbUpPricing
     //
     this.cmbUpPricing.AllowAddNew   = true;
     this.cmbUpPricing.BoundText     = "";
     this.cmbUpPricing.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.cmbUpPricing.Col           = 0;
     this.cmbUpPricing.CtlText       = "";
     this.cmbUpPricing.DataField     = null;
     this.cmbUpPricing.Location      = new System.Drawing.Point(156, 186);
     this.cmbUpPricing.Name          = "cmbUpPricing";
     this.cmbUpPricing.row           = 0;
     this.cmbUpPricing.Size          = new System.Drawing.Size(275, 21);
     this.cmbUpPricing.TabIndex      = 17;
     this.cmbUpPricing.TopRow        = 0;
     //
     //cmbReportGroups
     //
     this.cmbReportGroups.AllowAddNew   = true;
     this.cmbReportGroups.BoundText     = "";
     this.cmbReportGroups.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.cmbReportGroups.Col           = 0;
     this.cmbReportGroups.CtlText       = "";
     this.cmbReportGroups.DataField     = null;
     this.cmbReportGroups.Location      = new System.Drawing.Point(156, 234);
     this.cmbReportGroups.Name          = "cmbReportGroups";
     this.cmbReportGroups.row           = 0;
     this.cmbReportGroups.Size          = new System.Drawing.Size(275, 21);
     this.cmbReportGroups.TabIndex      = 26;
     this.cmbReportGroups.TopRow        = 0;
     //
     //Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(38, 238);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(113, 13);
     this.Label1.TabIndex    = 27;
     this.Label1.Text        = "Report Groups:";
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //Label6
     //
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(38, 164);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(113, 17);
     this.Label6.TabIndex    = 18;
     this.Label6.Text        = "New Supplier :";
     this.Label6.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //Label5
     //
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(38, 188);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(113, 17);
     this.Label5.TabIndex    = 16;
     this.Label5.Text        = "New Pricing Group :";
     this.Label5.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(8, 112);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(147, 13);
     this.Label4.TabIndex    = 14;
     this.Label4.Text        = "Shelf && Barcode Printing";
     //
     //Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(38, 214);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(113, 13);
     this.Label3.TabIndex    = 13;
     this.Label3.Text        = "New Printing Location :";
     this.Label3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //Frame1
     //
     this.Frame1.BackColor = System.Drawing.SystemColors.Control;
     this.Frame1.Controls.Add(this.Command3);
     this.Frame1.Controls.Add(this.lblChanges);
     this.Frame1.Controls.Add(this.lblHeading);
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(6, 44);
     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(441, 119);
     this.Frame1.TabIndex    = 9;
     this.Frame1.TabStop     = false;
     this.Frame1.Text        = "1. Filter";
     //
     //Command3
     //
     this.Command3.BackColor               = System.Drawing.SystemColors.Control;
     this.Command3.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.Command3.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.Command3.Location                = new System.Drawing.Point(356, 16);
     this.Command3.Name                    = "Command3";
     this.Command3.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command3.Size                    = new System.Drawing.Size(79, 37);
     this.Command3.TabIndex                = 23;
     this.Command3.Text                    = "Filter";
     this.Command3.UseVisualStyleBackColor = false;
     //
     //lblChanges
     //
     this.lblChanges.BackColor   = System.Drawing.SystemColors.Window;
     this.lblChanges.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblChanges.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblChanges.ForeColor   = System.Drawing.Color.Red;
     this.lblChanges.Location    = new System.Drawing.Point(12, 94);
     this.lblChanges.Name        = "lblChanges";
     this.lblChanges.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChanges.Size        = new System.Drawing.Size(339, 19);
     this.lblChanges.TabIndex    = 25;
     this.lblChanges.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     //
     //lblHeading
     //
     this.lblHeading.BackColor   = System.Drawing.SystemColors.Control;
     this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblHeading.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblHeading.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblHeading.Location    = new System.Drawing.Point(12, 16);
     this.lblHeading.Name        = "lblHeading";
     this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.Size        = new System.Drawing.Size(339, 76);
     this.lblHeading.TabIndex    = 24;
     this.lblHeading.Text        = "Using the \"Stock Item Selector\" .....";
     //
     //frmGlobalFilter
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(452, 545);
     this.ControlBox          = false;
     this.Controls.Add(this.Frame3);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this.Frame2);
     this.Controls.Add(this.Frame1);
     this.Cursor        = System.Windows.Forms.Cursors.Default;
     this.ForeColor     = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(128)), Convert.ToInt32(Convert.ToByte(128)), Convert.ToInt32(Convert.ToByte(128)));
     this.KeyPreview    = true;
     this.Location      = new System.Drawing.Point(4, 23);
     this.Name          = "frmGlobalFilter";
     this.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text          = "Global Update";
     this.Frame3.ResumeLayout(false);
     this.picButtons.ResumeLayout(false);
     this.Frame2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.cmbUpPrinting).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmpUpSupplier).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbUpPricing).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbReportGroups).EndInit();
     this.Frame1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 25
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmBrokenPack));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cmdPrint        = new System.Windows.Forms.Button();
     this.cmbSize         = new System.Windows.Forms.ComboBox();
     this.cmdFilter       = new System.Windows.Forms.Button();
     this.cmdBuild        = new System.Windows.Forms.Button();
     this.Picture1        = new System.Windows.Forms.PictureBox();
     this._Line1_1        = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this._Line1_0        = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this._Label2_1       = new System.Windows.Forms.Label();
     this.lblHeading      = new System.Windows.Forms.Label();
     this._Label2_0       = new System.Windows.Forms.Label();
     //Me.Label2 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Line1 = new LineShapeArray(components);
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.Label2, System.ComponentModel.ISupportInitialize).BeginInit()
     ((System.ComponentModel.ISupportInitialize) this.Line1).BeginInit();
     this.FormBorderStyle           = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                      = " ";
     this.ClientSize                = new System.Drawing.Size(515, 332);
     this.Location                  = new System.Drawing.Point(3, 29);
     this.KeyPreview                = true;
     this.MaximizeBox               = false;
     this.MinimizeBox               = false;
     this.ShowInTaskbar             = false;
     this.StartPosition             = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode             = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                 = System.Drawing.SystemColors.Control;
     this.ControlBox                = true;
     this.Enabled                   = true;
     this.Cursor                    = System.Windows.Forms.Cursors.Default;
     this.RightToLeft               = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                = false;
     this.WindowState               = System.Windows.Forms.FormWindowState.Normal;
     this.Name                      = "frmBrokenPack";
     this.cmdPrint.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text             = "&Print";
     this.cmdPrint.Size             = new System.Drawing.Size(106, 46);
     this.cmdPrint.Location         = new System.Drawing.Point(276, 273);
     this.cmdPrint.TabIndex         = 5;
     this.cmdPrint.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation = true;
     this.cmdPrint.Enabled          = true;
     this.cmdPrint.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.TabStop          = true;
     this.cmdPrint.Name             = "cmdPrint";
     this.cmbSize.Size              = new System.Drawing.Size(229, 21);
     this.cmbSize.Location          = new System.Drawing.Point(21, 225);
     this.cmbSize.Items.AddRange(new object[] {
         "Rebuild all broken packs",
         "1 case",
         "3/4 of a case",
         "2/3 of a case",
         "1/2 a case",
         "1/3 of a case",
         "1/4 of a case"
     });
     this.cmbSize.DropDownStyle      = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSize.TabIndex           = 4;
     this.cmbSize.BackColor          = System.Drawing.SystemColors.Window;
     this.cmbSize.CausesValidation   = true;
     this.cmbSize.Enabled            = true;
     this.cmbSize.ForeColor          = System.Drawing.SystemColors.WindowText;
     this.cmbSize.IntegralHeight     = true;
     this.cmbSize.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmbSize.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmbSize.Sorted             = false;
     this.cmbSize.TabStop            = true;
     this.cmbSize.Visible            = true;
     this.cmbSize.Name               = "cmbSize";
     this.cmdFilter.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdFilter.Text             = "&Filter";
     this.cmdFilter.Size             = new System.Drawing.Size(79, 49);
     this.cmdFilter.Location         = new System.Drawing.Point(423, 123);
     this.cmdFilter.TabIndex         = 2;
     this.cmdFilter.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdFilter.CausesValidation = true;
     this.cmdFilter.Enabled          = true;
     this.cmdFilter.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdFilter.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdFilter.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdFilter.TabStop          = true;
     this.cmdFilter.Name             = "cmdFilter";
     this.cmdBuild.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBuild.Text              = "&Execute";
     this.cmdBuild.Size              = new System.Drawing.Size(106, 46);
     this.cmdBuild.Location          = new System.Drawing.Point(396, 273);
     this.cmdBuild.TabIndex          = 6;
     this.cmdBuild.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdBuild.CausesValidation  = true;
     this.cmdBuild.Enabled           = true;
     this.cmdBuild.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdBuild.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdBuild.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdBuild.TabStop           = true;
     this.cmdBuild.Name              = "cmdBuild";
     this.Picture1.Dock              = System.Windows.Forms.DockStyle.Top;
     this.Picture1.BackColor         = System.Drawing.SystemColors.Window;
     this.Picture1.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.Picture1.Size              = new System.Drawing.Size(515, 76);
     this.Picture1.Location          = new System.Drawing.Point(0, 0);
     this.Picture1.Image             = (System.Drawing.Image)resources.GetObject("Picture1.Image");
     this.Picture1.TabIndex          = 7;
     this.Picture1.TabStop           = false;
     this.Picture1.CausesValidation  = true;
     this.Picture1.Enabled           = true;
     this.Picture1.Cursor            = System.Windows.Forms.Cursors.Default;
     this.Picture1.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.Picture1.Visible           = true;
     this.Picture1.SizeMode          = System.Windows.Forms.PictureBoxSizeMode.Normal;
     this.Picture1.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Picture1.Name              = "Picture1";
     this._Line1_1.X1            = 21;
     this._Line1_1.X2            = 505;
     this._Line1_1.Y1            = 255;
     this._Line1_1.Y2            = 255;
     this._Line1_1.BorderColor   = System.Drawing.SystemColors.WindowText;
     this._Line1_1.BorderStyle   = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Line1_1.BorderWidth   = 1;
     this._Line1_1.Visible       = true;
     this._Line1_1.Name          = "_Line1_1";
     this._Line1_0.X1            = 21;
     this._Line1_0.X2            = 505;
     this._Line1_0.Y1            = 186;
     this._Line1_0.Y2            = 186;
     this._Line1_0.BorderColor   = System.Drawing.SystemColors.WindowText;
     this._Line1_0.BorderStyle   = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Line1_0.BorderWidth   = 1;
     this._Line1_0.Visible       = true;
     this._Line1_0.Name          = "_Line1_0";
     this._Label2_1.Text         = "If you have not sold what proportion of a case in the last ten days then break the case so as to order as single unit ...";
     this._Label2_1.Size         = new System.Drawing.Size(478, 40);
     this._Label2_1.Location     = new System.Drawing.Point(21, 195);
     this._Label2_1.TabIndex     = 3;
     this._Label2_1.TextAlign    = System.Drawing.ContentAlignment.TopLeft;
     this._Label2_1.BackColor    = System.Drawing.Color.Transparent;
     this._Label2_1.Enabled      = true;
     this._Label2_1.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._Label2_1.Cursor       = System.Windows.Forms.Cursors.Default;
     this._Label2_1.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._Label2_1.UseMnemonic  = true;
     this._Label2_1.Visible      = true;
     this._Label2_1.AutoSize     = false;
     this._Label2_1.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._Label2_1.Name         = "_Label2_1";
     this.lblHeading.BackColor   = System.Drawing.Color.White;
     this.lblHeading.Size        = new System.Drawing.Size(391, 49);
     this.lblHeading.Location    = new System.Drawing.Point(21, 123);
     this.lblHeading.TabIndex    = 1;
     this.lblHeading.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.lblHeading.Enabled     = true;
     this.lblHeading.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblHeading.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.UseMnemonic = true;
     this.lblHeading.Visible     = true;
     this.lblHeading.AutoSize    = false;
     this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblHeading.Name        = "lblHeading";
     this._Label2_0.Text         = "Some suppliers do not allow you to order \"broken packs\". For example you may not order a single unit of \"Coca-cola 340ml can\". To allow liquid to assist in determining which stock items you require as a single order quantity, click on the \"Filter\" button to create an exclusion list.";
     this._Label2_0.Size         = new System.Drawing.Size(478, 40);
     this._Label2_0.Location     = new System.Drawing.Point(21, 81);
     this._Label2_0.TabIndex     = 0;
     this._Label2_0.TextAlign    = System.Drawing.ContentAlignment.TopLeft;
     this._Label2_0.BackColor    = System.Drawing.Color.Transparent;
     this._Label2_0.Enabled      = true;
     this._Label2_0.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._Label2_0.Cursor       = System.Windows.Forms.Cursors.Default;
     this._Label2_0.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._Label2_0.UseMnemonic  = true;
     this._Label2_0.Visible      = true;
     this._Label2_0.AutoSize     = false;
     this._Label2_0.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._Label2_0.Name         = "_Label2_0";
     this.Controls.Add(cmdPrint);
     this.Controls.Add(cmbSize);
     this.Controls.Add(cmdFilter);
     this.Controls.Add(cmdBuild);
     this.Controls.Add(Picture1);
     this.ShapeContainer1.Shapes.Add(_Line1_1);
     this.ShapeContainer1.Shapes.Add(_Line1_0);
     this.Controls.Add(_Label2_1);
     this.Controls.Add(lblHeading);
     this.Controls.Add(_Label2_0);
     this.Controls.Add(ShapeContainer1);
     //Me.Label2.SetIndex(_Label2_1, CType(1, Short))
     //Me.Label2.SetIndex(_Label2_0, CType(0, Short))
     this.Line1.SetIndex(_Line1_1, Convert.ToInt16(1));
     this.Line1.SetIndex(_Line1_0, Convert.ToInt16(0));
     ((System.ComponentModel.ISupportInitialize) this.Line1).EndInit();
     //CType(Me.Label2, System.ComponentModel.ISupportInitialize).EndInit()
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSerialNumber));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.Frame1          = new System.Windows.Forms.GroupBox();
     this.txtRtd          = new System.Windows.Forms.TextBox();
     this.txtItem         = new System.Windows.Forms.TextBox();
     this.txtCode         = new System.Windows.Forms.TextBox();
     this.txtQty          = new System.Windows.Forms.TextBox();
     this.cmdUpdate       = new System.Windows.Forms.Button();
     this.cmdRemove       = new System.Windows.Forms.Button();
     this.lstSerial       = new System.Windows.Forms.CheckedListBox();
     this.cmdAdd          = new System.Windows.Forms.Button();
     this.txtSerialNbr    = new System.Windows.Forms.TextBox();
     this.Label8          = new System.Windows.Forms.Label();
     this.Label7          = new System.Windows.Forms.Label();
     this.Label6          = new System.Windows.Forms.Label();
     this.Label5          = new System.Windows.Forms.Label();
     this.Label4          = new System.Windows.Forms.Label();
     this.Label3          = new System.Windows.Forms.Label();
     this.Line1           = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.Label2          = new System.Windows.Forms.Label();
     this.Label1          = new System.Windows.Forms.Label();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.Command1        = new System.Windows.Forms.Button();
     this.cmdBack         = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.Frame1.SuspendLayout();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active               = true;
     this.FormBorderStyle               = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Text                          = "Serial Number Entry";
     this.ClientSize                    = new System.Drawing.Size(322, 457);
     this.Location                      = new System.Drawing.Point(3, 22);
     this.ControlBox                    = false;
     this.MaximizeBox                   = false;
     this.MinimizeBox                   = false;
     this.StartPosition                 = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode                 = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                     = System.Drawing.SystemColors.Control;
     this.Enabled                       = true;
     this.KeyPreview                    = false;
     this.Cursor                        = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar                 = true;
     this.HelpButton                    = false;
     this.WindowState                   = System.Windows.Forms.FormWindowState.Normal;
     this.Name                          = "frmSerialNumber";
     this.Frame1.Size                   = new System.Drawing.Size(313, 415);
     this.Frame1.Location               = new System.Drawing.Point(4, 40);
     this.Frame1.TabIndex               = 2;
     this.Frame1.BackColor              = System.Drawing.SystemColors.Control;
     this.Frame1.Enabled                = true;
     this.Frame1.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Frame1.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Visible                = true;
     this.Frame1.Padding                = new System.Windows.Forms.Padding(0);
     this.Frame1.Name                   = "Frame1";
     this.txtRtd.AutoSize               = false;
     this.txtRtd.TextAlign              = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtRtd.Enabled                = false;
     this.txtRtd.Size                   = new System.Drawing.Size(39, 19);
     this.txtRtd.Location               = new System.Drawing.Point(262, 76);
     this.txtRtd.TabIndex               = 17;
     this.txtRtd.AcceptsReturn          = true;
     this.txtRtd.BackColor              = System.Drawing.SystemColors.Window;
     this.txtRtd.CausesValidation       = true;
     this.txtRtd.ForeColor              = System.Drawing.SystemColors.WindowText;
     this.txtRtd.HideSelection          = true;
     this.txtRtd.ReadOnly               = false;
     this.txtRtd.MaxLength              = 0;
     this.txtRtd.Cursor                 = System.Windows.Forms.Cursors.IBeam;
     this.txtRtd.Multiline              = false;
     this.txtRtd.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.txtRtd.ScrollBars             = System.Windows.Forms.ScrollBars.None;
     this.txtRtd.TabStop                = true;
     this.txtRtd.Visible                = true;
     this.txtRtd.BorderStyle            = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtRtd.Name                   = "txtRtd";
     this.txtItem.AutoSize              = false;
     this.txtItem.Size                  = new System.Drawing.Size(195, 19);
     this.txtItem.Location              = new System.Drawing.Point(106, 16);
     this.txtItem.TabIndex              = 15;
     this.txtItem.AcceptsReturn         = true;
     this.txtItem.TextAlign             = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtItem.BackColor             = System.Drawing.SystemColors.Window;
     this.txtItem.CausesValidation      = true;
     this.txtItem.Enabled               = true;
     this.txtItem.ForeColor             = System.Drawing.SystemColors.WindowText;
     this.txtItem.HideSelection         = true;
     this.txtItem.ReadOnly              = false;
     this.txtItem.MaxLength             = 0;
     this.txtItem.Cursor                = System.Windows.Forms.Cursors.IBeam;
     this.txtItem.Multiline             = false;
     this.txtItem.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.txtItem.ScrollBars            = System.Windows.Forms.ScrollBars.None;
     this.txtItem.TabStop               = true;
     this.txtItem.Visible               = true;
     this.txtItem.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtItem.Name                  = "txtItem";
     this.txtCode.AutoSize              = false;
     this.txtCode.TextAlign             = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtCode.Enabled               = false;
     this.txtCode.Size                  = new System.Drawing.Size(39, 19);
     this.txtCode.Location              = new System.Drawing.Point(106, 36);
     this.txtCode.TabIndex              = 13;
     this.txtCode.AcceptsReturn         = true;
     this.txtCode.BackColor             = System.Drawing.SystemColors.Window;
     this.txtCode.CausesValidation      = true;
     this.txtCode.ForeColor             = System.Drawing.SystemColors.WindowText;
     this.txtCode.HideSelection         = true;
     this.txtCode.ReadOnly              = false;
     this.txtCode.MaxLength             = 0;
     this.txtCode.Cursor                = System.Windows.Forms.Cursors.IBeam;
     this.txtCode.Multiline             = false;
     this.txtCode.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.txtCode.ScrollBars            = System.Windows.Forms.ScrollBars.None;
     this.txtCode.TabStop               = true;
     this.txtCode.Visible               = true;
     this.txtCode.BorderStyle           = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCode.Name                  = "txtCode";
     this.txtQty.AutoSize               = false;
     this.txtQty.TextAlign              = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQty.Enabled                = false;
     this.txtQty.Size                   = new System.Drawing.Size(39, 19);
     this.txtQty.Location               = new System.Drawing.Point(106, 76);
     this.txtQty.TabIndex               = 10;
     this.txtQty.AcceptsReturn          = true;
     this.txtQty.BackColor              = System.Drawing.SystemColors.Window;
     this.txtQty.CausesValidation       = true;
     this.txtQty.ForeColor              = System.Drawing.SystemColors.WindowText;
     this.txtQty.HideSelection          = true;
     this.txtQty.ReadOnly               = false;
     this.txtQty.MaxLength              = 0;
     this.txtQty.Cursor                 = System.Windows.Forms.Cursors.IBeam;
     this.txtQty.Multiline              = false;
     this.txtQty.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.txtQty.ScrollBars             = System.Windows.Forms.ScrollBars.None;
     this.txtQty.TabStop                = true;
     this.txtQty.Visible                = true;
     this.txtQty.BorderStyle            = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtQty.Name                   = "txtQty";
     this.cmdUpdate.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdUpdate.Text                = "Update";
     this.cmdUpdate.Size                = new System.Drawing.Size(83, 21);
     this.cmdUpdate.Location            = new System.Drawing.Point(226, 388);
     this.cmdUpdate.TabIndex            = 9;
     this.cmdUpdate.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdUpdate.CausesValidation    = true;
     this.cmdUpdate.Enabled             = true;
     this.cmdUpdate.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdUpdate.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdUpdate.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdUpdate.TabStop             = true;
     this.cmdUpdate.Name                = "cmdUpdate";
     this.cmdRemove.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdRemove.Text                = "Remove";
     this.cmdRemove.Size                = new System.Drawing.Size(83, 25);
     this.cmdRemove.Location            = new System.Drawing.Point(226, 360);
     this.cmdRemove.TabIndex            = 8;
     this.cmdRemove.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdRemove.CausesValidation    = true;
     this.cmdRemove.Enabled             = true;
     this.cmdRemove.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdRemove.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdRemove.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdRemove.TabStop             = true;
     this.cmdRemove.Name                = "cmdRemove";
     this.lstSerial.Size                = new System.Drawing.Size(159, 238);
     this.lstSerial.Location            = new System.Drawing.Point(4, 170);
     this.lstSerial.TabIndex            = 6;
     this.lstSerial.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lstSerial.BackColor           = System.Drawing.SystemColors.Window;
     this.lstSerial.CausesValidation    = true;
     this.lstSerial.Enabled             = true;
     this.lstSerial.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.lstSerial.IntegralHeight      = true;
     this.lstSerial.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lstSerial.SelectionMode       = System.Windows.Forms.SelectionMode.One;
     this.lstSerial.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lstSerial.Sorted              = false;
     this.lstSerial.TabStop             = true;
     this.lstSerial.Visible             = true;
     this.lstSerial.MultiColumn         = false;
     this.lstSerial.Name                = "lstSerial";
     this.cmdAdd.TextAlign              = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdAdd.Text                   = "Add";
     this.cmdAdd.Size                   = new System.Drawing.Size(83, 23);
     this.cmdAdd.Location               = new System.Drawing.Point(220, 122);
     this.cmdAdd.TabIndex               = 5;
     this.cmdAdd.BackColor              = System.Drawing.SystemColors.Control;
     this.cmdAdd.CausesValidation       = true;
     this.cmdAdd.Enabled                = true;
     this.cmdAdd.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.cmdAdd.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.cmdAdd.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.cmdAdd.TabStop                = true;
     this.cmdAdd.Name                   = "cmdAdd";
     this.txtSerialNbr.AutoSize         = false;
     this.txtSerialNbr.Size             = new System.Drawing.Size(195, 19);
     this.txtSerialNbr.Location         = new System.Drawing.Point(106, 98);
     this.txtSerialNbr.TabIndex         = 4;
     this.txtSerialNbr.AcceptsReturn    = true;
     this.txtSerialNbr.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtSerialNbr.BackColor        = System.Drawing.SystemColors.Window;
     this.txtSerialNbr.CausesValidation = true;
     this.txtSerialNbr.Enabled          = true;
     this.txtSerialNbr.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtSerialNbr.HideSelection    = true;
     this.txtSerialNbr.ReadOnly         = false;
     this.txtSerialNbr.MaxLength        = 0;
     this.txtSerialNbr.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtSerialNbr.Multiline        = false;
     this.txtSerialNbr.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtSerialNbr.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtSerialNbr.TabStop          = true;
     this.txtSerialNbr.Visible          = true;
     this.txtSerialNbr.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtSerialNbr.Name             = "txtSerialNbr";
     this.Label8.TextAlign              = System.Drawing.ContentAlignment.TopCenter;
     this.Label8.Text                   = "All Items that are being returned should be checked";
     this.Label8.Size                   = new System.Drawing.Size(141, 31);
     this.Label8.Location               = new System.Drawing.Point(168, 170);
     this.Label8.TabIndex               = 20;
     this.Label8.BackColor              = System.Drawing.SystemColors.Control;
     this.Label8.Enabled                = true;
     this.Label8.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label8.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label8.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label8.UseMnemonic            = true;
     this.Label8.Visible                = true;
     this.Label8.AutoSize               = false;
     this.Label8.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label8.Name                   = "Label8";
     this.Label7.Text                   = "Returned";
     this.Label7.Size                   = new System.Drawing.Size(59, 17);
     this.Label7.Location               = new System.Drawing.Point(202, 78);
     this.Label7.TabIndex               = 19;
     this.Label7.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label7.BackColor              = System.Drawing.SystemColors.Control;
     this.Label7.Enabled                = true;
     this.Label7.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label7.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label7.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label7.UseMnemonic            = true;
     this.Label7.Visible                = true;
     this.Label7.AutoSize               = false;
     this.Label7.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label7.Name                   = "Label7";
     this.Label6.Text                   = "Recieved";
     this.Label6.Size                   = new System.Drawing.Size(59, 17);
     this.Label6.Location               = new System.Drawing.Point(44, 78);
     this.Label6.TabIndex               = 18;
     this.Label6.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label6.BackColor              = System.Drawing.SystemColors.Control;
     this.Label6.Enabled                = true;
     this.Label6.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label6.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label6.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label6.UseMnemonic            = true;
     this.Label6.Visible                = true;
     this.Label6.AutoSize               = false;
     this.Label6.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label6.Name                   = "Label6";
     this.Label5.Text                   = "Item Name";
     this.Label5.Size                   = new System.Drawing.Size(83, 17);
     this.Label5.Location               = new System.Drawing.Point(4, 18);
     this.Label5.TabIndex               = 14;
     this.Label5.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label5.BackColor              = System.Drawing.SystemColors.Control;
     this.Label5.Enabled                = true;
     this.Label5.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label5.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label5.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label5.UseMnemonic            = true;
     this.Label5.Visible                = true;
     this.Label5.AutoSize               = false;
     this.Label5.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label5.Name                   = "Label5";
     this.Label4.Text                   = "Item Code";
     this.Label4.Size                   = new System.Drawing.Size(93, 17);
     this.Label4.Location               = new System.Drawing.Point(4, 38);
     this.Label4.TabIndex               = 12;
     this.Label4.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label4.BackColor              = System.Drawing.SystemColors.Control;
     this.Label4.Enabled                = true;
     this.Label4.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label4.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label4.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label4.UseMnemonic            = true;
     this.Label4.Visible                = true;
     this.Label4.AutoSize               = false;
     this.Label4.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label4.Name                   = "Label4";
     this.Label3.Text                   = "Quantity";
     this.Label3.Size                   = new System.Drawing.Size(71, 17);
     this.Label3.Location               = new System.Drawing.Point(4, 58);
     this.Label3.TabIndex               = 11;
     this.Label3.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label3.BackColor              = System.Drawing.SystemColors.Control;
     this.Label3.Enabled                = true;
     this.Label3.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label3.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label3.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label3.UseMnemonic            = true;
     this.Label3.Visible                = true;
     this.Label3.AutoSize               = false;
     this.Label3.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label3.Name                   = "Label3";
     this.Line1.BorderWidth             = 2;
     this.Line1.X1                      = 4;
     this.Line1.X2                      = 306;
     this.Line1.Y1                      = 137;
     this.Line1.Y2                      = 137;
     this.Line1.BorderColor             = System.Drawing.SystemColors.WindowText;
     this.Line1.BorderStyle             = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Line1.Visible                 = true;
     this.Line1.Name                    = "Line1";
     this.Label2.Text                   = "List Of Serial Number";
     this.Label2.Size                   = new System.Drawing.Size(159, 17);
     this.Label2.Location               = new System.Drawing.Point(4, 154);
     this.Label2.TabIndex               = 7;
     this.Label2.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor              = System.Drawing.SystemColors.Control;
     this.Label2.Enabled                = true;
     this.Label2.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label2.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label2.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label2.UseMnemonic            = true;
     this.Label2.Visible                = true;
     this.Label2.AutoSize               = false;
     this.Label2.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label2.Name                   = "Label2";
     this.Label1.Text                   = "Serial Number";
     this.Label1.Size                   = new System.Drawing.Size(91, 17);
     this.Label1.Location               = new System.Drawing.Point(4, 100);
     this.Label1.TabIndex               = 3;
     this.Label1.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor              = System.Drawing.SystemColors.Control;
     this.Label1.Enabled                = true;
     this.Label1.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic            = true;
     this.Label1.Visible                = true;
     this.Label1.AutoSize               = false;
     this.Label1.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name                   = "Label1";
     this.picButtons.Dock               = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor          = System.Drawing.Color.Blue;
     this.picButtons.Size               = new System.Drawing.Size(322, 38);
     this.picButtons.Location           = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex           = 0;
     this.picButtons.TabStop            = false;
     this.picButtons.CausesValidation   = true;
     this.picButtons.Enabled            = true;
     this.picButtons.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor             = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible            = true;
     this.picButtons.BorderStyle        = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name               = "picButtons";
     this.Command1.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.Command1.Text                 = "IMPORT >> ";
     this.Command1.Size                 = new System.Drawing.Size(91, 27);
     this.Command1.Location             = new System.Drawing.Point(8, 4);
     this.Command1.TabIndex             = 21;
     this.Command1.BackColor            = System.Drawing.SystemColors.Control;
     this.Command1.CausesValidation     = true;
     this.Command1.Enabled              = true;
     this.Command1.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Command1.Cursor               = System.Windows.Forms.Cursors.Default;
     this.Command1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.Command1.TabStop              = true;
     this.Command1.Name                 = "Command1";
     this.cmdBack.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBack.Text                  = "<< BACK ";
     this.cmdBack.Size                  = new System.Drawing.Size(91, 27);
     this.cmdBack.Location              = new System.Drawing.Point(222, 4);
     this.cmdBack.TabIndex              = 16;
     this.cmdBack.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdBack.CausesValidation      = true;
     this.cmdBack.Enabled               = true;
     this.cmdBack.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdBack.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdBack.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdBack.TabStop               = true;
     this.cmdBack.Name                  = "cmdBack";
     this.cmdClose.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text                 = "E&xit";
     this.cmdClose.Size                 = new System.Drawing.Size(73, 29);
     this.cmdClose.Location             = new System.Drawing.Point(576, 3);
     this.cmdClose.TabIndex             = 1;
     this.cmdClose.TabStop              = false;
     this.cmdClose.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation     = true;
     this.cmdClose.Enabled              = true;
     this.cmdClose.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Name                 = "cmdClose";
     this.Controls.Add(Frame1);
     this.Controls.Add(picButtons);
     this.Frame1.Controls.Add(txtRtd);
     this.Frame1.Controls.Add(txtItem);
     this.Frame1.Controls.Add(txtCode);
     this.Frame1.Controls.Add(txtQty);
     this.Frame1.Controls.Add(cmdUpdate);
     this.Frame1.Controls.Add(cmdRemove);
     this.Frame1.Controls.Add(lstSerial);
     this.Frame1.Controls.Add(cmdAdd);
     this.Frame1.Controls.Add(txtSerialNbr);
     this.Frame1.Controls.Add(Label8);
     this.Frame1.Controls.Add(Label7);
     this.Frame1.Controls.Add(Label6);
     this.Frame1.Controls.Add(Label5);
     this.Frame1.Controls.Add(Label4);
     this.Frame1.Controls.Add(Label3);
     this.ShapeContainer1.Shapes.Add(Line1);
     this.Frame1.Controls.Add(Label2);
     this.Frame1.Controls.Add(Label1);
     this.Frame1.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(Command1);
     this.picButtons.Controls.Add(cmdBack);
     this.picButtons.Controls.Add(cmdClose);
     this.Frame1.ResumeLayout(false);
     this.picButtons.ResumeLayout(false);
     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.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_familiatelas));
     this.label4 = new System.Windows.Forms.Label();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.gridfamiliatelas = new System.Windows.Forms.DataGridView();
     this.gestructuraname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glineaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gfamiliatelaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gfamiliatelaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glineaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gestructuraid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.cboModuloID = new System.Windows.Forms.ComboBox();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.tejidoid = new System.Windows.Forms.ComboBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.estructuraid = new System.Windows.Forms.ComboBox();
     this.familiatelasid = new System.Windows.Forms.TextBox();
     this.familiatelasname = new System.Windows.Forms.TextBox();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridfamiliatelas)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.panel1.SuspendLayout();
     this.SuspendLayout();
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(12, 188);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(82, 13);
     this.label4.TabIndex = 109;
     this.label4.Text = "» Busqueda :";
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(104, 215);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(236, 20);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(12, 218);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(89, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "» Descripción:";
     //
     // gridfamiliatelas
     //
     this.gridfamiliatelas.AllowUserToAddRows = false;
     this.gridfamiliatelas.AllowUserToDeleteRows = false;
     this.gridfamiliatelas.AllowUserToResizeColumns = false;
     this.gridfamiliatelas.AllowUserToResizeRows = false;
     this.gridfamiliatelas.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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.gridfamiliatelas.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridfamiliatelas.ColumnHeadersHeight = 20;
     this.gridfamiliatelas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gestructuraname,
     this.glineaname,
     this.gfamiliatelaid,
     this.gfamiliatelaname,
     this.glineaid,
     this.gestructuraid,
     this.usuar,
     this.feact,
     this.fecre});
     this.gridfamiliatelas.Location = new System.Drawing.Point(4, 248);
     this.gridfamiliatelas.MultiSelect = false;
     this.gridfamiliatelas.Name = "gridfamiliatelas";
     this.gridfamiliatelas.RowHeadersVisible = false;
     this.gridfamiliatelas.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridfamiliatelas.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.gridfamiliatelas.RowTemplate.Height = 20;
     this.gridfamiliatelas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridfamiliatelas.Size = new System.Drawing.Size(422, 323);
     this.gridfamiliatelas.TabIndex = 19;
     this.gridfamiliatelas.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridfamiliatelas_CellClick);
     this.gridfamiliatelas.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridfamiliatelas_CellEnter);
     this.gridfamiliatelas.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridfamiliatelas_CellLeave);
     this.gridfamiliatelas.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridfamiliatelas_KeyUp);
     //
     // gestructuraname
     //
     this.gestructuraname.DataPropertyName = "estructuraname";
     this.gestructuraname.HeaderText = "Estructura";
     this.gestructuraname.Name = "gestructuraname";
     this.gestructuraname.Width = 70;
     //
     // glineaname
     //
     this.glineaname.DataPropertyName = "lineaname";
     this.glineaname.HeaderText = "Tejido";
     this.glineaname.Name = "glineaname";
     this.glineaname.Width = 70;
     //
     // gfamiliatelaid
     //
     this.gfamiliatelaid.DataPropertyName = "familiatelaid";
     this.gfamiliatelaid.HeaderText = "Cód";
     this.gfamiliatelaid.Name = "gfamiliatelaid";
     this.gfamiliatelaid.Width = 40;
     //
     // gfamiliatelaname
     //
     this.gfamiliatelaname.DataPropertyName = "familiatelaname";
     this.gfamiliatelaname.HeaderText = "Familia-Telas";
     this.gfamiliatelaname.Name = "gfamiliatelaname";
     this.gfamiliatelaname.Width = 280;
     //
     // glineaid
     //
     this.glineaid.DataPropertyName = "lineaid";
     this.glineaid.HeaderText = "lineaid";
     this.glineaid.Name = "glineaid";
     this.glineaid.Visible = false;
     //
     // gestructuraid
     //
     this.gestructuraid.DataPropertyName = "estructuraid";
     this.gestructuraid.HeaderText = "estructuraid";
     this.gestructuraid.Name = "gestructuraid";
     this.gestructuraid.Visible = false;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.cboModuloID);
     this.groupBox1.Controls.Add(this.labelControl4);
     this.groupBox1.Controls.Add(this.labelControl3);
     this.groupBox1.Controls.Add(this.tejidoid);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.estructuraid);
     this.groupBox1.Controls.Add(this.familiatelasid);
     this.groupBox1.Controls.Add(this.familiatelasname);
     this.groupBox1.Location = new System.Drawing.Point(3, 63);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(422, 116);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // cboModuloID
     //
     this.cboModuloID.BackColor = System.Drawing.Color.White;
     this.cboModuloID.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cboModuloID.FormattingEnabled = true;
     this.cboModuloID.Location = new System.Drawing.Point(101, 14);
     this.cboModuloID.Name = "cboModuloID";
     this.cboModuloID.Size = new System.Drawing.Size(222, 22);
     this.cboModuloID.TabIndex = 34;
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(20, 18);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(55, 13);
     this.labelControl4.TabIndex = 33;
     this.labelControl4.Text = "» Modulo:";
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(20, 90);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(54, 13);
     this.labelControl3.TabIndex = 22;
     this.labelControl3.Text = "» Familia:";
     //
     // tejidoid
     //
     this.tejidoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tejidoid.FormattingEnabled = true;
     this.tejidoid.Location = new System.Drawing.Point(101, 63);
     this.tejidoid.Name = "tejidoid";
     this.tejidoid.Size = new System.Drawing.Size(130, 22);
     this.tejidoid.TabIndex = 21;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(20, 43);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(73, 13);
     this.labelControl2.TabIndex = 20;
     this.labelControl2.Text = "» Estructura:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(20, 69);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(44, 13);
     this.labelControl1.TabIndex = 19;
     this.labelControl1.Text = "» Linea:";
     //
     // estructuraid
     //
     this.estructuraid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.estructuraid.FormattingEnabled = true;
     this.estructuraid.Location = new System.Drawing.Point(101, 38);
     this.estructuraid.Name = "estructuraid";
     this.estructuraid.Size = new System.Drawing.Size(130, 22);
     this.estructuraid.TabIndex = 18;
     this.estructuraid.SelectedIndexChanged += new System.EventHandler(this.estructuraid_SelectedIndexChanged);
     //
     // familiatelasid
     //
     this.familiatelasid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.familiatelasid.Location = new System.Drawing.Point(101, 88);
     this.familiatelasid.MaxLength = 3;
     this.familiatelasid.Name = "familiatelasid";
     this.familiatelasid.Size = new System.Drawing.Size(32, 20);
     this.familiatelasid.TabIndex = 11;
     this.familiatelasid.Text = "NNN";
     this.familiatelasid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // familiatelasname
     //
     this.familiatelasname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.familiatelasname.Location = new System.Drawing.Point(134, 88);
     this.familiatelasname.Name = "familiatelasname";
     this.familiatelasname.Size = new System.Drawing.Size(279, 20);
     this.familiatelasname.TabIndex = 12;
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(430, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(449, 57);
     this.panel1.TabIndex = 110;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(137, 29);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(147, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Familia - Telas";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(430, 575);
     this.shapeContainer1.TabIndex = 108;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 12;
     this.lineShape1.X2 = 407;
     this.lineShape1.Y1 = 204;
     this.lineShape1.Y2 = 204;
     //
     // btn_busqueda
     //
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(346, 210);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(75, 33);
     this.btn_busqueda.TabIndex = 113;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // Frm_familiatelas
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(430, 575);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.txt_criterio);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.gridfamiliatelas);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_familiatelas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Familia - Telas";
     this.Load += new System.EventHandler(this.Frm_familiatelas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_familiatelas_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridfamiliatelas)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_producto_merc));
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.nserie = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.cenestado = new System.Windows.Forms.RadioListBox();
     this.btn_actualizar = new System.Windows.Forms.Button();
     this.unmedenvase = new System.Windows.Forms.ComboBox();
     this.unidenvase = new System.Windows.Forms.TextBox();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.precioenvase = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.unmed = new System.Windows.Forms.ComboBox();
     this.productid = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.productname = new System.Windows.Forms.TextBox();
     this.peso = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.unmedpeso = new System.Windows.Forms.TextBox();
     this.label31 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.item = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.moduloid = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.gruponame = new System.Windows.Forms.TextBox();
     this.grupoid = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.lineaname = new System.Windows.Forms.TextBox();
     this.lineaid = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.subgrupoid = new System.Windows.Forms.TextBox();
     this.subgruponame = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.fechadoc = new System.Windows.Forms.DateTimePicker();
     this.label11 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_foto = new System.Windows.Forms.ToolStripButton();
     this.dgb_productos = new System.Windows.Forms.DataGridView();
     this.codigo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.producto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mcompra = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mconsumo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mod = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.pes = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioenvas = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colorid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.colorname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.marcaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.coleccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.temporadaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.categoriaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.generoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tejidoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.telaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.coltalla = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.coltallaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.moneda = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmedpes = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unidenvas = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.etiquetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tallaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precvent2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precvent3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precvent4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precvent5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventant = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.conce = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.diluc = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ctacte = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.compo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.titulo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.foto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lineai = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.grupoi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.subgrupoi = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ite = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codctadebe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codctahaber = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fepialmac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feuialmac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gruponam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.lineanam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.subgruponam = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.marcaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.coleccionname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.generoname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.temporadaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.categorianame = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.tallaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._procedenciaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._nserie = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox4 = new System.Windows.Forms.GroupBox();
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.label5 = new System.Windows.Forms.Label();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.go_foto = new System.Windows.Forms.PictureBox();
     this.groupBox2.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_productos)).BeginInit();
     this.groupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.go_foto)).BeginInit();
     this.SuspendLayout();
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.nserie);
     this.groupBox2.Controls.Add(this.label7);
     this.groupBox2.Controls.Add(this.groupBox3);
     this.groupBox2.Controls.Add(this.btn_actualizar);
     this.groupBox2.Controls.Add(this.unmedenvase);
     this.groupBox2.Controls.Add(this.unidenvase);
     this.groupBox2.Controls.Add(this.label29);
     this.groupBox2.Controls.Add(this.label28);
     this.groupBox2.Controls.Add(this.precioenvase);
     this.groupBox2.Controls.Add(this.label27);
     this.groupBox2.Controls.Add(this.label26);
     this.groupBox2.Controls.Add(this.unmed);
     this.groupBox2.Controls.Add(this.productid);
     this.groupBox2.Controls.Add(this.label14);
     this.groupBox2.Controls.Add(this.productname);
     this.groupBox2.Location = new System.Drawing.Point(8, 194);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(623, 206);
     this.groupBox2.TabIndex = 23;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Datos";
     this.groupBox2.Enter += new System.EventHandler(this.groupBox2_Enter);
     //
     // nserie
     //
     this.nserie.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.nserie.Location = new System.Drawing.Point(89, 64);
     this.nserie.MaxLength = 50;
     this.nserie.Name = "nserie";
     this.nserie.Size = new System.Drawing.Size(226, 20);
     this.nserie.TabIndex = 67;
     this.nserie.TextChanged += new System.EventHandler(this.nserie_TextChanged);
     //
     // 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(39, 66);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(40, 13);
     this.label7.TabIndex = 66;
     this.label7.Text = "Serie:";
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.cenestado);
     this.groupBox3.Location = new System.Drawing.Point(78, 128);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(146, 62);
     this.groupBox3.TabIndex = 65;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "Procedencia";
     //
     // cenestado
     //
     this.cenestado.BackColor = System.Drawing.Color.Transparent;
     this.cenestado.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.cenestado.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.cenestado.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cenestado.FormattingEnabled = true;
     this.cenestado.ItemHeight = 16;
     this.cenestado.Location = new System.Drawing.Point(15, 20);
     this.cenestado.Name = "cenestado";
     this.cenestado.Size = new System.Drawing.Size(108, 32);
     this.cenestado.TabIndex = 62;
     //
     // btn_actualizar
     //
     this.btn_actualizar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_actualizar.FlatAppearance.BorderSize = 0;
     this.btn_actualizar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn_actualizar.Image = global::BapFormulariosNet.Properties.Resources.go_update2;
     this.btn_actualizar.ImageAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.btn_actualizar.Location = new System.Drawing.Point(589, 98);
     this.btn_actualizar.Name = "btn_actualizar";
     this.btn_actualizar.Size = new System.Drawing.Size(22, 23);
     this.btn_actualizar.TabIndex = 61;
     this.btn_actualizar.UseVisualStyleBackColor = true;
     this.btn_actualizar.Click += new System.EventHandler(this.btn_actualizar_Click);
     //
     // unmedenvase
     //
     this.unmedenvase.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.unmedenvase.FormattingEnabled = true;
     this.unmedenvase.Location = new System.Drawing.Point(435, 98);
     this.unmedenvase.Name = "unmedenvase";
     this.unmedenvase.Size = new System.Drawing.Size(148, 21);
     this.unmedenvase.TabIndex = 60;
     this.unmedenvase.SelectedIndexChanged += new System.EventHandler(this.unmedenvase_SelectedIndexChanged);
     //
     // unidenvase
     //
     this.unidenvase.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.unidenvase.Location = new System.Drawing.Point(509, 148);
     this.unidenvase.Name = "unidenvase";
     this.unidenvase.Size = new System.Drawing.Size(74, 20);
     this.unidenvase.TabIndex = 47;
     this.unidenvase.Text = "Equivalente";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(426, 151);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(78, 13);
     this.label29.TabIndex = 55;
     this.label29.Text = "Equivalente:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(333, 102);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(99, 13);
     this.label28.TabIndex = 53;
     this.label28.Text = "Se Consume en:";
     //
     // precioenvase
     //
     this.precioenvase.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.precioenvase.Location = new System.Drawing.Point(509, 125);
     this.precioenvase.Name = "precioenvase";
     this.precioenvase.Size = new System.Drawing.Size(74, 20);
     this.precioenvase.TabIndex = 45;
     this.precioenvase.Text = "S/.";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(412, 128);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(93, 13);
     this.label27.TabIndex = 51;
     this.label27.Text = "Precio Compra:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(73, 102);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(90, 13);
     this.label26.TabIndex = 50;
     this.label26.Text = "Se Compra en:";
     //
     // unmed
     //
     this.unmed.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.unmed.FormattingEnabled = true;
     this.unmed.Location = new System.Drawing.Point(167, 99);
     this.unmed.Name = "unmed";
     this.unmed.Size = new System.Drawing.Size(148, 21);
     this.unmed.TabIndex = 44;
     this.unmed.SelectedIndexChanged += new System.EventHandler(this.unmed_SelectedIndexChanged);
     //
     // productid
     //
     this.productid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productid.Location = new System.Drawing.Point(89, 14);
     this.productid.MaxLength = 13;
     this.productid.Name = "productid";
     this.productid.Size = new System.Drawing.Size(105, 20);
     this.productid.TabIndex = 24;
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     this.productid.KeyUp += new System.Windows.Forms.KeyEventHandler(this.productid_KeyUp);
     //
     // label14
     //
     this.label14.AutoSize = true;
     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(19, 29);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(62, 13);
     this.label14.TabIndex = 23;
     this.label14.Text = "Producto:";
     //
     // productname
     //
     this.productname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.productname.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productname.Location = new System.Drawing.Point(89, 36);
     this.productname.Multiline = true;
     this.productname.Name = "productname";
     this.productname.Size = new System.Drawing.Size(520, 22);
     this.productname.TabIndex = 25;
     this.productname.TextChanged += new System.EventHandler(this.productname_TextChanged);
     //
     // peso
     //
     this.peso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.peso.Location = new System.Drawing.Point(366, 650);
     this.peso.Name = "peso";
     this.peso.Size = new System.Drawing.Size(124, 20);
     this.peso.TabIndex = 49;
     this.peso.Text = "ventas al exterior";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(299, 650);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(61, 13);
     this.label30.TabIndex = 59;
     this.label30.Text = "Med. Peso:";
     //
     // unmedpeso
     //
     this.unmedpeso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.unmedpeso.Location = new System.Drawing.Point(112, 650);
     this.unmedpeso.Name = "unmedpeso";
     this.unmedpeso.Size = new System.Drawing.Size(148, 20);
     this.unmedpeso.TabIndex = 48;
     this.unmedpeso.Text = "ventas al exterior";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(28, 650);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(62, 13);
     this.label31.TabIndex = 57;
     this.label31.Text = "Unid. Peso:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.item);
     this.groupBox1.Controls.Add(this.label4);
     this.groupBox1.Controls.Add(this.moduloid);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.gruponame);
     this.groupBox1.Controls.Add(this.grupoid);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.lineaname);
     this.groupBox1.Controls.Add(this.lineaid);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.subgrupoid);
     this.groupBox1.Controls.Add(this.subgruponame);
     this.groupBox1.Controls.Add(this.label2);
     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(9, 69);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(391, 122);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Codigo";
     //
     // item
     //
     this.item.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.item.Location = new System.Drawing.Point(92, 98);
     this.item.Name = "item";
     this.item.Size = new System.Drawing.Size(46, 20);
     this.item.TabIndex = 19;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(47, 101);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(35, 13);
     this.label4.TabIndex = 25;
     this.label4.Text = "Item:";
     //
     // moduloid
     //
     this.moduloid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moduloid.Location = new System.Drawing.Point(92, 13);
     this.moduloid.Name = "moduloid";
     this.moduloid.Size = new System.Drawing.Size(48, 20);
     this.moduloid.TabIndex = 10;
     //
     // 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.Location = new System.Drawing.Point(23, 16);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(59, 13);
     this.label1.TabIndex = 9;
     this.label1.Text = "Almacén:";
     //
     // gruponame
     //
     this.gruponame.Location = new System.Drawing.Point(142, 55);
     this.gruponame.Name = "gruponame";
     this.gruponame.Size = new System.Drawing.Size(191, 20);
     this.gruponame.TabIndex = 16;
     //
     // grupoid
     //
     this.grupoid.Location = new System.Drawing.Point(92, 55);
     this.grupoid.Name = "grupoid";
     this.grupoid.Size = new System.Drawing.Size(48, 20);
     this.grupoid.TabIndex = 15;
     //
     // 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(36, 58);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(46, 13);
     this.label6.TabIndex = 14;
     this.label6.Text = "Marca:";
     //
     // lineaname
     //
     this.lineaname.Location = new System.Drawing.Point(142, 34);
     this.lineaname.Name = "lineaname";
     this.lineaname.Size = new System.Drawing.Size(150, 20);
     this.lineaname.TabIndex = 13;
     //
     // lineaid
     //
     this.lineaid.Location = new System.Drawing.Point(92, 34);
     this.lineaid.Name = "lineaid";
     this.lineaid.Size = new System.Drawing.Size(48, 20);
     this.lineaid.TabIndex = 12;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(38, 37);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 11;
     this.label3.Text = "Línea:";
     //
     // subgrupoid
     //
     this.subgrupoid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.subgrupoid.Location = new System.Drawing.Point(92, 76);
     this.subgrupoid.MaxLength = 3;
     this.subgrupoid.Name = "subgrupoid";
     this.subgrupoid.Size = new System.Drawing.Size(47, 20);
     this.subgrupoid.TabIndex = 17;
     this.subgrupoid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.subgrupoid_KeyDown);
     //
     // subgruponame
     //
     this.subgruponame.Location = new System.Drawing.Point(142, 76);
     this.subgruponame.Name = "subgruponame";
     this.subgruponame.Size = new System.Drawing.Size(243, 20);
     this.subgruponame.TabIndex = 18;
     //
     // label2
     //
     this.label2.AutoSize = true;
     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(30, 79);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(52, 13);
     this.label2.TabIndex = 19;
     this.label2.Text = "Modelo:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.White;
     this.panel1.BackgroundImage = global::BapFormulariosNet.Properties.Resources.bannerblue2;
     this.panel1.Controls.Add(this.fechadoc);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1286, 34);
     this.panel1.TabIndex = 2;
     //
     // fechadoc
     //
     this.fechadoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechadoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechadoc.Location = new System.Drawing.Point(1194, 8);
     this.fechadoc.Name = "fechadoc";
     this.fechadoc.Size = new System.Drawing.Size(80, 20);
     this.fechadoc.TabIndex = 4;
     this.fechadoc.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(562, 4);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(137, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "PRODUCTOS";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(1149, 12);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 3;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir,
     this.btn_foto});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(1286, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first2;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous2;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next2;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last2;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_foto
     //
     this.btn_foto.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_foto.Image = global::BapFormulariosNet.Properties.Resources.Camera__3_;
     this.btn_foto.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_foto.Name = "btn_foto";
     this.btn_foto.Size = new System.Drawing.Size(26, 26);
     this.btn_foto.Text = "toolStripButton1";
     this.btn_foto.Click += new System.EventHandler(this.btn_foto_Click);
     //
     // dgb_productos
     //
     this.dgb_productos.AllowUserToAddRows = false;
     this.dgb_productos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgb_productos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.codigo,
     this.producto,
     this.mcompra,
     this.mconsumo,
     this.mod,
     this.status,
     this.pes,
     this.precioenvas,
     this.colorid,
     this.colorname,
     this.marcaid,
     this.coleccionid,
     this.temporadaid,
     this.categoriaid,
     this.generoid,
     this.tejidoid,
     this.telaid,
     this.coltalla,
     this.coltallaname,
     this.moneda,
     this.unmedpes,
     this.unidenvas,
     this.etiquetaname,
     this.tallaid,
     this.precventa,
     this.precvent2,
     this.precvent3,
     this.precvent4,
     this.precvent5,
     this.precventant,
     this.conce,
     this.diluc,
     this.ctacte,
     this.compo,
     this.titulo,
     this.foto,
     this.productidold,
     this.lineai,
     this.grupoi,
     this.subgrupoi,
     this.ite,
     this.codctadebe,
     this.codctahaber,
     this.usuar,
     this.fepialmac,
     this.feuialmac,
     this.gruponam,
     this.lineanam,
     this.subgruponam,
     this.marcaname,
     this.coleccionname,
     this.generoname,
     this.temporadaname,
     this.categorianame,
     this.tallaname,
     this._procedenciaid,
     this._nserie});
     this.dgb_productos.Location = new System.Drawing.Point(652, 157);
     this.dgb_productos.Name = "dgb_productos";
     this.dgb_productos.ReadOnly = true;
     this.dgb_productos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgb_productos.Size = new System.Drawing.Size(623, 257);
     this.dgb_productos.TabIndex = 60;
     this.dgb_productos.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgb_productos_CellClick);
     this.dgb_productos.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgb_productos_KeyUp);
     //
     // codigo
     //
     this.codigo.DataPropertyName = "productid";
     this.codigo.HeaderText = "Codigo";
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     //
     // producto
     //
     this.producto.DataPropertyName = "productname";
     this.producto.HeaderText = "Producto";
     this.producto.Name = "producto";
     this.producto.ReadOnly = true;
     this.producto.Width = 280;
     //
     // mcompra
     //
     this.mcompra.DataPropertyName = "unmed";
     this.mcompra.HeaderText = "M-Compra";
     this.mcompra.Name = "mcompra";
     this.mcompra.ReadOnly = true;
     //
     // mconsumo
     //
     this.mconsumo.DataPropertyName = "unmedenvase";
     this.mconsumo.HeaderText = "M-Consumo";
     this.mconsumo.Name = "mconsumo";
     this.mconsumo.ReadOnly = true;
     //
     // mod
     //
     this.mod.DataPropertyName = "moduloid";
     this.mod.HeaderText = "Modulo";
     this.mod.Name = "mod";
     this.mod.ReadOnly = true;
     this.mod.Visible = false;
     //
     // status
     //
     this.status.DataPropertyName = "status";
     this.status.HeaderText = "status";
     this.status.Name = "status";
     this.status.ReadOnly = true;
     this.status.Visible = false;
     //
     // pes
     //
     this.pes.DataPropertyName = "peso";
     this.pes.HeaderText = "Peso";
     this.pes.Name = "pes";
     this.pes.ReadOnly = true;
     this.pes.Visible = false;
     //
     // precioenvas
     //
     this.precioenvas.DataPropertyName = "precioenvase";
     this.precioenvas.HeaderText = "presioenvase";
     this.precioenvas.Name = "precioenvas";
     this.precioenvas.ReadOnly = true;
     this.precioenvas.Visible = false;
     //
     // colorid
     //
     this.colorid.DataPropertyName = "colorid";
     this.colorid.HeaderText = "colorid";
     this.colorid.Name = "colorid";
     this.colorid.ReadOnly = true;
     this.colorid.Visible = false;
     //
     // colorname
     //
     this.colorname.DataPropertyName = "colorname";
     this.colorname.HeaderText = "colorname";
     this.colorname.Name = "colorname";
     this.colorname.ReadOnly = true;
     this.colorname.Visible = false;
     //
     // marcaid
     //
     this.marcaid.DataPropertyName = "marcaid";
     this.marcaid.HeaderText = "marcaid";
     this.marcaid.Name = "marcaid";
     this.marcaid.ReadOnly = true;
     this.marcaid.Visible = false;
     //
     // coleccionid
     //
     this.coleccionid.DataPropertyName = "coleccionid";
     this.coleccionid.HeaderText = "coleccionid";
     this.coleccionid.Name = "coleccionid";
     this.coleccionid.ReadOnly = true;
     this.coleccionid.Visible = false;
     //
     // temporadaid
     //
     this.temporadaid.DataPropertyName = "temporadaid";
     this.temporadaid.HeaderText = "temporadaid";
     this.temporadaid.Name = "temporadaid";
     this.temporadaid.ReadOnly = true;
     this.temporadaid.Visible = false;
     //
     // categoriaid
     //
     this.categoriaid.DataPropertyName = "categoriaid";
     this.categoriaid.HeaderText = "categoriaid";
     this.categoriaid.Name = "categoriaid";
     this.categoriaid.ReadOnly = true;
     this.categoriaid.Visible = false;
     //
     // generoid
     //
     this.generoid.DataPropertyName = "generoid";
     this.generoid.HeaderText = "generoid";
     this.generoid.Name = "generoid";
     this.generoid.ReadOnly = true;
     this.generoid.Visible = false;
     //
     // tejidoid
     //
     this.tejidoid.DataPropertyName = "tejidoid";
     this.tejidoid.HeaderText = "tejidoid";
     this.tejidoid.Name = "tejidoid";
     this.tejidoid.ReadOnly = true;
     this.tejidoid.Visible = false;
     //
     // telaid
     //
     this.telaid.DataPropertyName = "telaid";
     this.telaid.HeaderText = "telaid";
     this.telaid.Name = "telaid";
     this.telaid.ReadOnly = true;
     this.telaid.Visible = false;
     //
     // coltalla
     //
     this.coltalla.DataPropertyName = "coltalla";
     this.coltalla.HeaderText = "coltalla";
     this.coltalla.Name = "coltalla";
     this.coltalla.ReadOnly = true;
     this.coltalla.Visible = false;
     //
     // coltallaname
     //
     this.coltallaname.DataPropertyName = "coltallaname";
     this.coltallaname.HeaderText = "coltallaname";
     this.coltallaname.Name = "coltallaname";
     this.coltallaname.ReadOnly = true;
     this.coltallaname.Visible = false;
     //
     // moneda
     //
     this.moneda.DataPropertyName = "moneda";
     this.moneda.HeaderText = "moneda";
     this.moneda.Name = "moneda";
     this.moneda.ReadOnly = true;
     this.moneda.Visible = false;
     //
     // unmedpes
     //
     this.unmedpes.DataPropertyName = "unmedpeso";
     this.unmedpes.HeaderText = "unmedpeso";
     this.unmedpes.Name = "unmedpes";
     this.unmedpes.ReadOnly = true;
     this.unmedpes.Visible = false;
     //
     // unidenvas
     //
     this.unidenvas.DataPropertyName = "unidenvase";
     this.unidenvas.HeaderText = "unidenvase";
     this.unidenvas.Name = "unidenvas";
     this.unidenvas.ReadOnly = true;
     this.unidenvas.Visible = false;
     //
     // etiquetaname
     //
     this.etiquetaname.DataPropertyName = "etiquetaname";
     this.etiquetaname.HeaderText = "etiquetaname";
     this.etiquetaname.Name = "etiquetaname";
     this.etiquetaname.ReadOnly = true;
     this.etiquetaname.Visible = false;
     //
     // tallaid
     //
     this.tallaid.DataPropertyName = "tallaid";
     this.tallaid.HeaderText = "tallaid";
     this.tallaid.Name = "tallaid";
     this.tallaid.ReadOnly = true;
     this.tallaid.Visible = false;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.ReadOnly = true;
     this.precventa.Visible = false;
     //
     // precvent2
     //
     this.precvent2.DataPropertyName = "precvent2";
     this.precvent2.HeaderText = "precvent2";
     this.precvent2.Name = "precvent2";
     this.precvent2.ReadOnly = true;
     this.precvent2.Visible = false;
     //
     // precvent3
     //
     this.precvent3.DataPropertyName = "precvent3";
     this.precvent3.HeaderText = "precvent3";
     this.precvent3.Name = "precvent3";
     this.precvent3.ReadOnly = true;
     this.precvent3.Visible = false;
     //
     // precvent4
     //
     this.precvent4.DataPropertyName = "precvent4";
     this.precvent4.HeaderText = "precvent4";
     this.precvent4.Name = "precvent4";
     this.precvent4.ReadOnly = true;
     this.precvent4.Visible = false;
     //
     // precvent5
     //
     this.precvent5.DataPropertyName = "precvent5";
     this.precvent5.HeaderText = "precvent5";
     this.precvent5.Name = "precvent5";
     this.precvent5.ReadOnly = true;
     this.precvent5.Visible = false;
     //
     // precventant
     //
     this.precventant.DataPropertyName = "precventant";
     this.precventant.HeaderText = "precventtant";
     this.precventant.Name = "precventant";
     this.precventant.ReadOnly = true;
     this.precventant.Visible = false;
     //
     // conce
     //
     this.conce.DataPropertyName = "conce";
     this.conce.HeaderText = "conce";
     this.conce.Name = "conce";
     this.conce.ReadOnly = true;
     this.conce.Visible = false;
     //
     // diluc
     //
     this.diluc.DataPropertyName = "diluc";
     this.diluc.HeaderText = "diluc";
     this.diluc.Name = "diluc";
     this.diluc.ReadOnly = true;
     this.diluc.Visible = false;
     //
     // ctacte
     //
     this.ctacte.DataPropertyName = "ctacte";
     this.ctacte.HeaderText = "ctacte";
     this.ctacte.Name = "ctacte";
     this.ctacte.ReadOnly = true;
     this.ctacte.Visible = false;
     //
     // compo
     //
     this.compo.DataPropertyName = "compo";
     this.compo.HeaderText = "compo";
     this.compo.Name = "compo";
     this.compo.ReadOnly = true;
     this.compo.Visible = false;
     //
     // titulo
     //
     this.titulo.DataPropertyName = "titulo";
     this.titulo.HeaderText = "titulo";
     this.titulo.Name = "titulo";
     this.titulo.ReadOnly = true;
     this.titulo.Visible = false;
     //
     // foto
     //
     this.foto.DataPropertyName = "foto";
     this.foto.HeaderText = "foto";
     this.foto.Name = "foto";
     this.foto.ReadOnly = true;
     this.foto.Visible = false;
     //
     // productidold
     //
     this.productidold.DataPropertyName = "productidold";
     this.productidold.HeaderText = "productidold";
     this.productidold.Name = "productidold";
     this.productidold.ReadOnly = true;
     this.productidold.Visible = false;
     //
     // lineai
     //
     this.lineai.DataPropertyName = "lineaid";
     this.lineai.HeaderText = "lineaid";
     this.lineai.Name = "lineai";
     this.lineai.ReadOnly = true;
     this.lineai.Visible = false;
     //
     // grupoi
     //
     this.grupoi.DataPropertyName = "grupoid";
     this.grupoi.HeaderText = "grupoid";
     this.grupoi.Name = "grupoi";
     this.grupoi.ReadOnly = true;
     this.grupoi.Visible = false;
     //
     // subgrupoi
     //
     this.subgrupoi.DataPropertyName = "subgrupoid";
     this.subgrupoi.HeaderText = "subgrupoid";
     this.subgrupoi.Name = "subgrupoi";
     this.subgrupoi.ReadOnly = true;
     this.subgrupoi.Visible = false;
     //
     // ite
     //
     this.ite.DataPropertyName = "item";
     this.ite.HeaderText = "item";
     this.ite.Name = "ite";
     this.ite.ReadOnly = true;
     this.ite.Visible = false;
     //
     // codctadebe
     //
     this.codctadebe.DataPropertyName = "codctadebe";
     this.codctadebe.HeaderText = "codctadebe";
     this.codctadebe.Name = "codctadebe";
     this.codctadebe.ReadOnly = true;
     this.codctadebe.Visible = false;
     //
     // codctahaber
     //
     this.codctahaber.DataPropertyName = "codctahaber";
     this.codctahaber.HeaderText = "codctahaber";
     this.codctahaber.Name = "codctahaber";
     this.codctahaber.ReadOnly = true;
     this.codctahaber.Visible = false;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.ReadOnly = true;
     this.usuar.Visible = false;
     //
     // fepialmac
     //
     this.fepialmac.DataPropertyName = "fepialmac";
     this.fepialmac.HeaderText = "fepialmac";
     this.fepialmac.Name = "fepialmac";
     this.fepialmac.ReadOnly = true;
     this.fepialmac.Visible = false;
     //
     // feuialmac
     //
     this.feuialmac.DataPropertyName = "feuialmac";
     this.feuialmac.HeaderText = "feuialmac";
     this.feuialmac.Name = "feuialmac";
     this.feuialmac.ReadOnly = true;
     this.feuialmac.Visible = false;
     //
     // gruponam
     //
     this.gruponam.DataPropertyName = "gruponame";
     this.gruponam.HeaderText = "gruponame";
     this.gruponam.Name = "gruponam";
     this.gruponam.ReadOnly = true;
     this.gruponam.Visible = false;
     //
     // lineanam
     //
     this.lineanam.DataPropertyName = "lineaname";
     this.lineanam.HeaderText = "lineaname";
     this.lineanam.Name = "lineanam";
     this.lineanam.ReadOnly = true;
     this.lineanam.Visible = false;
     //
     // subgruponam
     //
     this.subgruponam.DataPropertyName = "subgruponame";
     this.subgruponam.HeaderText = "subgruponame";
     this.subgruponam.Name = "subgruponam";
     this.subgruponam.ReadOnly = true;
     this.subgruponam.Visible = false;
     //
     // marcaname
     //
     this.marcaname.DataPropertyName = "marcaname";
     this.marcaname.HeaderText = "marcaname";
     this.marcaname.Name = "marcaname";
     this.marcaname.ReadOnly = true;
     this.marcaname.Visible = false;
     //
     // coleccionname
     //
     this.coleccionname.DataPropertyName = "coleccionname";
     this.coleccionname.HeaderText = "coleccionname";
     this.coleccionname.Name = "coleccionname";
     this.coleccionname.ReadOnly = true;
     this.coleccionname.Visible = false;
     //
     // generoname
     //
     this.generoname.DataPropertyName = "generoname";
     this.generoname.HeaderText = "generoname";
     this.generoname.Name = "generoname";
     this.generoname.ReadOnly = true;
     this.generoname.Visible = false;
     //
     // temporadaname
     //
     this.temporadaname.DataPropertyName = "temporadaname";
     this.temporadaname.HeaderText = "temporadaname";
     this.temporadaname.Name = "temporadaname";
     this.temporadaname.ReadOnly = true;
     this.temporadaname.Visible = false;
     //
     // categorianame
     //
     this.categorianame.DataPropertyName = "categorianame";
     this.categorianame.HeaderText = "categorianame";
     this.categorianame.Name = "categorianame";
     this.categorianame.ReadOnly = true;
     this.categorianame.Visible = false;
     //
     // tallaname
     //
     this.tallaname.DataPropertyName = "tallaname";
     this.tallaname.HeaderText = "tallaname";
     this.tallaname.Name = "tallaname";
     this.tallaname.ReadOnly = true;
     this.tallaname.Visible = false;
     //
     // _procedenciaid
     //
     this._procedenciaid.DataPropertyName = "procedenciaid";
     this._procedenciaid.HeaderText = "procedenciaid";
     this._procedenciaid.Name = "_procedenciaid";
     this._procedenciaid.ReadOnly = true;
     this._procedenciaid.Visible = false;
     //
     // _nserie
     //
     this._nserie.DataPropertyName = "nserie";
     this._nserie.HeaderText = "nserie";
     this._nserie.Name = "_nserie";
     this._nserie.ReadOnly = true;
     this._nserie.Visible = false;
     //
     // groupBox4
     //
     this.groupBox4.Controls.Add(this.btn_busqueda);
     this.groupBox4.Controls.Add(this.label5);
     this.groupBox4.Controls.Add(this.txt_criterio);
     this.groupBox4.Location = new System.Drawing.Point(652, 85);
     this.groupBox4.Name = "groupBox4";
     this.groupBox4.Size = new System.Drawing.Size(420, 49);
     this.groupBox4.TabIndex = 61;
     this.groupBox4.TabStop = false;
     this.groupBox4.Text = "Buscar";
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.Color.Transparent;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(324, 12);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(79, 33);
     this.btn_busqueda.TabIndex = 18;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(8, 22);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "Descripción:";
     //
     // txt_criterio
     //
     this.txt_criterio.Location = new System.Drawing.Point(75, 19);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(242, 20);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1286, 425);
     this.shapeContainer1.TabIndex = 62;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 640;
     this.lineShape1.X2 = 640;
     this.lineShape1.Y1 = 76;
     this.lineShape1.Y2 = 418;
     //
     // go_foto
     //
     this.go_foto.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(37)))), ((int)(((byte)(37)))), ((int)(((byte)(37)))));
     this.go_foto.ErrorImage = global::BapFormulariosNet.Properties.Resources.error;
     this.go_foto.InitialImage = global::BapFormulariosNet.Properties.Resources.error;
     this.go_foto.Location = new System.Drawing.Point(423, 69);
     this.go_foto.Name = "go_foto";
     this.go_foto.Size = new System.Drawing.Size(99, 128);
     this.go_foto.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.go_foto.TabIndex = 63;
     this.go_foto.TabStop = false;
     this.go_foto.DoubleClick += new System.EventHandler(this.go_foto_DoubleClick);
     //
     // Frm_producto
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1286, 425);
     this.Controls.Add(this.go_foto);
     this.Controls.Add(this.groupBox4);
     this.Controls.Add(this.dgb_productos);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.peso);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.unmedpeso);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.shapeContainer1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_producto";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Productos";
     this.Activated += new System.EventHandler(this.Frm_productos_Activated);
     this.Load += new System.EventHandler(this.Frm_productos_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_productos_KeyDown);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     this.groupBox3.ResumeLayout(false);
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_productos)).EndInit();
     this.groupBox4.ResumeLayout(false);
     this.groupBox4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.go_foto)).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()
 {
     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_diseñador));
     this.label5 = new System.Windows.Forms.Label();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.griddiseñador = new System.Windows.Forms.DataGridView();
     this.gdisenadorid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gdisenadorname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gstatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.mensaje = new System.Windows.Forms.Label();
     this.diseñadorid = new System.Windows.Forms.TextBox();
     this.disenadorname = new System.Windows.Forms.TextBox();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.label4 = new System.Windows.Forms.Label();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     this.panelControl1 = new DevExpress.XtraEditors.PanelControl();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     ((System.ComponentModel.ISupportInitialize)(this.griddiseñador)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).BeginInit();
     this.panelControl1.SuspendLayout();
     this.SuspendLayout();
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(11, 161);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(89, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "» Descripción:";
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(106, 159);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(246, 21);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // griddiseñador
     //
     this.griddiseñador.AllowUserToAddRows = false;
     this.griddiseñador.AllowUserToDeleteRows = false;
     this.griddiseñador.AllowUserToResizeColumns = false;
     this.griddiseñador.AllowUserToResizeRows = false;
     this.griddiseñador.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     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.griddiseñador.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddiseñador.ColumnHeadersHeight = 20;
     this.griddiseñador.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gdisenadorid,
     this.gdisenadorname,
     this.usuar,
     this.gstatus,
     this.fecre,
     this.feact});
     this.griddiseñador.Location = new System.Drawing.Point(4, 188);
     this.griddiseñador.MultiSelect = false;
     this.griddiseñador.Name = "griddiseñador";
     this.griddiseñador.RowHeadersVisible = false;
     this.griddiseñador.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.griddiseñador.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.griddiseñador.RowTemplate.Height = 20;
     this.griddiseñador.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddiseñador.Size = new System.Drawing.Size(445, 356);
     this.griddiseñador.TabIndex = 19;
     this.griddiseñador.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddiseñador_CellClick);
     this.griddiseñador.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddiseñador_CellEnter);
     this.griddiseñador.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddiseñador_CellLeave);
     this.griddiseñador.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddiseñador_KeyUp);
     //
     // gdisenadorid
     //
     this.gdisenadorid.DataPropertyName = "disenadorid";
     this.gdisenadorid.HeaderText = "Código";
     this.gdisenadorid.Name = "gdisenadorid";
     this.gdisenadorid.Width = 60;
     //
     // gdisenadorname
     //
     this.gdisenadorname.DataPropertyName = "disenadorname";
     this.gdisenadorname.HeaderText = "Diseñador";
     this.gdisenadorname.Name = "gdisenadorname";
     this.gdisenadorname.Width = 350;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // gstatus
     //
     this.gstatus.DataPropertyName = "status";
     this.gstatus.HeaderText = "status";
     this.gstatus.Name = "gstatus";
     this.gstatus.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // mensaje
     //
     this.mensaje.AutoSize = true;
     this.mensaje.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.mensaje.ForeColor = System.Drawing.Color.Yellow;
     this.mensaje.Location = new System.Drawing.Point(142, 43);
     this.mensaje.Name = "mensaje";
     this.mensaje.Size = new System.Drawing.Size(41, 13);
     this.mensaje.TabIndex = 13;
     this.mensaje.Text = "label3";
     //
     // diseñadorid
     //
     this.diseñadorid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.diseñadorid.Location = new System.Drawing.Point(100, 40);
     this.diseñadorid.MaxLength = 3;
     this.diseñadorid.Name = "diseñadorid";
     this.diseñadorid.Size = new System.Drawing.Size(38, 20);
     this.diseñadorid.TabIndex = 11;
     this.diseñadorid.Text = "0000";
     this.diseñadorid.KeyUp += new System.Windows.Forms.KeyEventHandler(this.diseñadorid_KeyUp);
     //
     // disenadorname
     //
     this.disenadorname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.disenadorname.Location = new System.Drawing.Point(100, 61);
     this.disenadorname.Name = "disenadorname";
     this.disenadorname.Size = new System.Drawing.Size(269, 21);
     this.disenadorname.TabIndex = 12;
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_clave,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(453, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl+N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl+G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(11, 134);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(82, 13);
     this.label4.TabIndex = 111;
     this.label4.Text = "» Busqueda :";
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 13;
     this.lineShape1.X2 = 408;
     this.lineShape1.Y1 = 151;
     this.lineShape1.Y2 = 151;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(453, 547);
     this.shapeContainer1.TabIndex = 112;
     this.shapeContainer1.TabStop = false;
     //
     // btn_busqueda
     //
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(358, 154);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(75, 33);
     this.btn_busqueda.TabIndex = 114;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // panelControl1
     //
     this.panelControl1.Appearance.BackColor = System.Drawing.Color.Teal;
     this.panelControl1.Appearance.ForeColor = System.Drawing.Color.White;
     this.panelControl1.Appearance.Options.UseBackColor = true;
     this.panelControl1.Appearance.Options.UseForeColor = true;
     this.panelControl1.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.panelControl1.Controls.Add(this.labelControl3);
     this.panelControl1.Controls.Add(this.labelControl2);
     this.panelControl1.Controls.Add(this.disenadorname);
     this.panelControl1.Controls.Add(this.labelControl1);
     this.panelControl1.Controls.Add(this.diseñadorid);
     this.panelControl1.Controls.Add(this.mensaje);
     this.panelControl1.Location = new System.Drawing.Point(4, 32);
     this.panelControl1.Name = "panelControl1";
     this.panelControl1.Size = new System.Drawing.Size(445, 89);
     this.panelControl1.TabIndex = 115;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 14F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(125, 5);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(182, 23);
     this.labelControl3.TabIndex = 118;
     this.labelControl3.Text = "»» DISEÑADOR ««";
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(16, 66);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(74, 13);
     this.labelControl2.TabIndex = 117;
     this.labelControl2.Text = "» Diseñador :";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(17, 46);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(55, 13);
     this.labelControl1.TabIndex = 116;
     this.labelControl1.Text = "» Código :";
     //
     // Frm_diseñador
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(453, 547);
     this.Controls.Add(this.panelControl1);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.txt_criterio);
     this.Controls.Add(this.griddiseñador);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_diseñador";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "»» Diseñadores";
     this.Load += new System.EventHandler(this.Frm_diseñador_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_diseñador_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.griddiseñador)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.panelControl1)).EndInit();
     this.panelControl1.ResumeLayout(false);
     this.panelControl1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 30
0
 private void InitializeComponent()
 {
     this._ButtonDefault      = new System.Windows.Forms.Button();
     this._TextUsername       = new Shellscape.UI.Controls.InputBufferedTextBox();
     this._LabelPassword      = new System.Windows.Forms.Label();
     this._LabelUsername      = new System.Windows.Forms.Label();
     this._LabelAccountTitle  = new System.Windows.Forms.Label();
     this._LabelError         = new System.Windows.Forms.Label();
     this._PictureExclamation = new System.Windows.Forms.PictureBox();
     this._TextPassword       = new Shellscape.UI.Controls.InputBufferedTextBox();
     this._ButtonRemove       = new System.Windows.Forms.Button();
     this.lineShape1          = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.shapeContainer1     = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     ((System.ComponentModel.ISupportInitialize)(this._PictureExclamation)).BeginInit();
     this.SuspendLayout();
     //
     // _ButtonDefault
     //
     this._ButtonDefault.AutoSize                = true;
     this._ButtonDefault.Enabled                 = false;
     this._ButtonDefault.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this._ButtonDefault.Location                = new System.Drawing.Point(100, 219);
     this._ButtonDefault.MinimumSize             = new System.Drawing.Size(65, 23);
     this._ButtonDefault.Name                    = "_ButtonDefault";
     this._ButtonDefault.Size                    = new System.Drawing.Size(173, 30);
     this._ButtonDefault.TabIndex                = 3;
     this._ButtonDefault.Text                    = "Make Default";
     this._ButtonDefault.UseVisualStyleBackColor = true;
     this._ButtonDefault.Click                  += new System.EventHandler(this._ButtonDefault_Click);
     //
     // _TextUsername
     //
     this._TextUsername.Location = new System.Drawing.Point(100, 80);
     this._TextUsername.Name     = "_TextUsername";
     this._TextUsername.Size     = new System.Drawing.Size(249, 23);
     this._TextUsername.TabIndex = 0;
     //
     // _LabelPassword
     //
     this._LabelPassword.AutoSize = true;
     this._LabelPassword.Location = new System.Drawing.Point(12, 110);
     this._LabelPassword.Name     = "_LabelPassword";
     this._LabelPassword.Size     = new System.Drawing.Size(60, 15);
     this._LabelPassword.TabIndex = 46;
     this._LabelPassword.Text     = "Password:"******"_LabelUsername";
     this._LabelUsername.Size     = new System.Drawing.Size(63, 15);
     this._LabelUsername.TabIndex = 45;
     this._LabelUsername.Text     = "Username:"******"Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LabelAccountTitle.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(51)))), ((int)(((byte)(153)))));
     this._LabelAccountTitle.Location  = new System.Drawing.Point(8, 48);
     this._LabelAccountTitle.Name      = "_LabelAccountTitle";
     this._LabelAccountTitle.Size      = new System.Drawing.Size(39, 21);
     this._LabelAccountTitle.TabIndex  = 47;
     this._LabelAccountTitle.Text      = "Title";
     //
     // _LabelError
     //
     this._LabelError.Font      = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this._LabelError.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(38)))), ((int)(((byte)(30)))));
     this._LabelError.Location  = new System.Drawing.Point(120, 138);
     this._LabelError.Name      = "_LabelError";
     this._LabelError.Size      = new System.Drawing.Size(229, 26);
     this._LabelError.TabIndex  = 48;
     this._LabelError.Text      = "An account with this username already exists. Please enter a different username.";
     //
     // _PictureExclamation
     //
     this._PictureExclamation.Location    = new System.Drawing.Point(100, 138);
     this._PictureExclamation.MinimumSize = new System.Drawing.Size(16, 16);
     this._PictureExclamation.Name        = "_PictureExclamation";
     this._PictureExclamation.Size        = new System.Drawing.Size(16, 16);
     this._PictureExclamation.SizeMode    = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this._PictureExclamation.TabIndex    = 49;
     this._PictureExclamation.TabStop     = false;
     //
     // _TextPassword
     //
     this._TextPassword.Location = new System.Drawing.Point(100, 110);
     this._TextPassword.Name     = "_TextPassword";
     this._TextPassword.Size     = new System.Drawing.Size(249, 23);
     this._TextPassword.TabIndex = 1;
     this._TextPassword.UseSystemPasswordChar = true;
     //
     // _ButtonRemove
     //
     this._ButtonRemove.AutoSize                = true;
     this._ButtonRemove.FlatStyle               = System.Windows.Forms.FlatStyle.System;
     this._ButtonRemove.Location                = new System.Drawing.Point(100, 183);
     this._ButtonRemove.MinimumSize             = new System.Drawing.Size(65, 23);
     this._ButtonRemove.Name                    = "_ButtonRemove";
     this._ButtonRemove.Size                    = new System.Drawing.Size(173, 30);
     this._ButtonRemove.TabIndex                = 2;
     this._ButtonRemove.Text                    = "Remove Account";
     this._ButtonRemove.UseVisualStyleBackColor = true;
     this._ButtonRemove.Click                  += new System.EventHandler(this._ButtonRemove_Click);
     //
     // lineShape1
     //
     this.lineShape1.BorderColor = System.Drawing.Color.Red;
     this.lineShape1.Name        = "lineShape1";
     this.lineShape1.X1          = 0;
     this.lineShape1.X2          = 300;
     this.lineShape1.Y1          = 128;
     this.lineShape1.Y2          = 128;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(2, 45);
     this.shapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name     = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
         this.lineShape1
     });
     this.shapeContainer1.Size     = new System.Drawing.Size(933, 759);
     this.shapeContainer1.TabIndex = 56;
     this.shapeContainer1.TabStop  = false;
     //
     // AccountPanel
     //
     this.Controls.Add(this._ButtonDefault);
     this.Controls.Add(this._ButtonRemove);
     this.Controls.Add(this._TextPassword);
     this.Controls.Add(this._PictureExclamation);
     this.Controls.Add(this._LabelAccountTitle);
     this.Controls.Add(this._LabelError);
     this.Controls.Add(this._TextUsername);
     this.Controls.Add(this._LabelPassword);
     this.Controls.Add(this._LabelUsername);
     this.Controls.Add(this.shapeContainer1);
     this.Name    = "AccountPanel";
     this.Padding = new System.Windows.Forms.Padding(2, 45, 2, 2);
     this.Size    = new System.Drawing.Size(937, 806);
     ((System.ComponentModel.ISupportInitialize)(this._PictureExclamation)).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.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_producto_est));
     this.Mensaje = new System.Windows.Forms.ToolTip(this.components);
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txt_busqueda = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.dgbproductos = new System.Windows.Forms.DataGridView();
     this.peso = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.btn_siguiente = new System.Windows.Forms.Button();
     this.cbo_estado = new System.Windows.Forms.ComboBox();
     this.label1 = new System.Windows.Forms.Label();
     this.panel3 = new System.Windows.Forms.Panel();
     this.btn_agregar = new System.Windows.Forms.Button();
     this.productid = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.productname = new System.Windows.Forms.TextBox();
     this.shapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pnl_codigo = new System.Windows.Forms.Panel();
     this.lblnombre = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.item = new System.Windows.Forms.TextBox();
     this.cencosid = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.cencosname = new System.Windows.Forms.TextBox();
     this.estacion = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.btn_fijar = new System.Windows.Forms.Button();
     this.unmedpeso = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.fechadoc = new System.Windows.Forms.DateTimePicker();
     this.label11 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.codigo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.name = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.area = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.codigo2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productidold = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.status = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbproductos)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.pnl_codigo.SuspendLayout();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.SuspendLayout();
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.SystemColors.Control;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(489, 247);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(78, 30);
     this.btn_busqueda.TabIndex = 20;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txt_busqueda);
     this.panel2.Controls.Add(this.label2);
     this.panel2.Location = new System.Drawing.Point(3, 244);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(621, 35);
     this.panel2.TabIndex = 61;
     //
     // txt_busqueda
     //
     this.txt_busqueda.Location = new System.Drawing.Point(100, 7);
     this.txt_busqueda.MaxLength = 0;
     this.txt_busqueda.Name = "txt_busqueda";
     this.txt_busqueda.Size = new System.Drawing.Size(350, 21);
     this.txt_busqueda.TabIndex = 19;
     this.txt_busqueda.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_busqueda_KeyDown);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(22, 10);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(78, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Descripcion:";
     //
     // dgbproductos
     //
     this.dgbproductos.AllowUserToAddRows = false;
     this.dgbproductos.AllowUserToDeleteRows = false;
     this.dgbproductos.AllowUserToResizeColumns = false;
     this.dgbproductos.AllowUserToResizeRows = false;
     this.dgbproductos.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbproductos.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.codigo,
     this.name,
     this.area,
     this.codigo2,
     this.productidold,
     this.status});
     this.dgbproductos.Location = new System.Drawing.Point(1, 281);
     this.dgbproductos.Name = "dgbproductos";
     this.dgbproductos.ReadOnly = true;
     this.dgbproductos.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.dgbproductos.Size = new System.Drawing.Size(626, 239);
     this.dgbproductos.TabIndex = 60;
     this.dgbproductos.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgbproductos_CellClick);
     this.dgbproductos.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgbproductos_CellEnter);
     this.dgbproductos.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgbproductos_CellLeave);
     this.dgbproductos.KeyUp += new System.Windows.Forms.KeyEventHandler(this.dgbproductos_KeyUp);
     //
     // peso
     //
     this.peso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.peso.Location = new System.Drawing.Point(366, 650);
     this.peso.Name = "peso";
     this.peso.Size = new System.Drawing.Size(124, 20);
     this.peso.TabIndex = 49;
     this.peso.Text = "ventas al exterior";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(299, 650);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(61, 13);
     this.label30.TabIndex = 59;
     this.label30.Text = "Med. Peso:";
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.btn_siguiente);
     this.groupBox1.Controls.Add(this.cbo_estado);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.panel3);
     this.groupBox1.Controls.Add(this.pnl_codigo);
     this.groupBox1.Controls.Add(this.btn_fijar);
     this.groupBox1.Location = new System.Drawing.Point(4, 67);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(623, 175);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Codigo";
     //
     // btn_siguiente
     //
     this.btn_siguiente.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_siguiente.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.Forward;
     this.btn_siguiente.Location = new System.Drawing.Point(455, 67);
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(45, 26);
     this.btn_siguiente.TabIndex = 71;
     this.Mensaje.SetToolTip(this.btn_siguiente, "Click - Generar Guia ");
     this.btn_siguiente.UseVisualStyleBackColor = true;
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // cbo_estado
     //
     this.cbo_estado.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_estado.FormattingEnabled = true;
     this.cbo_estado.Location = new System.Drawing.Point(492, 40);
     this.cbo_estado.Name = "cbo_estado";
     this.cbo_estado.Size = new System.Drawing.Size(95, 21);
     this.cbo_estado.TabIndex = 70;
     //
     // 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.Location = new System.Drawing.Point(436, 43);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(50, 13);
     this.label1.TabIndex = 69;
     this.label1.Text = "Estado:";
     //
     // panel3
     //
     this.panel3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.panel3.Controls.Add(this.btn_agregar);
     this.panel3.Controls.Add(this.productid);
     this.panel3.Controls.Add(this.label14);
     this.panel3.Controls.Add(this.productname);
     this.panel3.Controls.Add(this.shapeContainer2);
     this.panel3.Location = new System.Drawing.Point(13, 98);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(604, 66);
     this.panel3.TabIndex = 68;
     //
     // btn_agregar
     //
     this.btn_agregar.BackColor = System.Drawing.Color.Transparent;
     this.btn_agregar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_agregar.FlatAppearance.BorderSize = 0;
     this.btn_agregar.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.btn_agregar.Image = global::BapFormulariosNet.Properties.Resources.go_new1;
     this.btn_agregar.Location = new System.Drawing.Point(207, 11);
     this.btn_agregar.Name = "btn_agregar";
     this.btn_agregar.Size = new System.Drawing.Size(31, 27);
     this.btn_agregar.TabIndex = 67;
     this.Mensaje.SetToolTip(this.btn_agregar, "Agregar Nuevo Producto");
     this.btn_agregar.UseVisualStyleBackColor = false;
     this.btn_agregar.Click += new System.EventHandler(this.btn_agregar_Click);
     //
     // productid
     //
     this.productid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productid.Location = new System.Drawing.Point(77, 18);
     this.productid.MaxLength = 13;
     this.productid.Name = "productid";
     this.productid.Size = new System.Drawing.Size(105, 20);
     this.productid.TabIndex = 24;
     this.productid.Text = "ventas al exterior";
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     this.productid.KeyUp += new System.Windows.Forms.KeyEventHandler(this.productid_KeyUp);
     //
     // label14
     //
     this.label14.AutoSize = true;
     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(6, 31);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(62, 13);
     this.label14.TabIndex = 23;
     this.label14.Text = "Producto:";
     //
     // productname
     //
     this.productname.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productname.Location = new System.Drawing.Point(77, 40);
     this.productname.Name = "productname";
     this.productname.Size = new System.Drawing.Size(520, 20);
     this.productname.TabIndex = 25;
     this.productname.TextChanged += new System.EventHandler(this.productname_TextChanged);
     //
     // shapeContainer2
     //
     this.shapeContainer2.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer2.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer2.Name = "shapeContainer2";
     this.shapeContainer2.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer2.Size = new System.Drawing.Size(602, 64);
     this.shapeContainer2.TabIndex = 68;
     this.shapeContainer2.TabStop = false;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 63;
     this.lineShape1.X2 = 63;
     this.lineShape1.Y1 = 19;
     this.lineShape1.Y2 = 55;
     //
     // pnl_codigo
     //
     this.pnl_codigo.Controls.Add(this.lblnombre);
     this.pnl_codigo.Controls.Add(this.label3);
     this.pnl_codigo.Controls.Add(this.item);
     this.pnl_codigo.Controls.Add(this.cencosid);
     this.pnl_codigo.Controls.Add(this.label4);
     this.pnl_codigo.Controls.Add(this.cencosname);
     this.pnl_codigo.Controls.Add(this.estacion);
     this.pnl_codigo.Controls.Add(this.label6);
     this.pnl_codigo.Location = new System.Drawing.Point(15, 19);
     this.pnl_codigo.Name = "pnl_codigo";
     this.pnl_codigo.Size = new System.Drawing.Size(340, 78);
     this.pnl_codigo.TabIndex = 66;
     //
     // lblnombre
     //
     this.lblnombre.AutoSize = true;
     this.lblnombre.Location = new System.Drawing.Point(127, 35);
     this.lblnombre.Name = "lblnombre";
     this.lblnombre.Size = new System.Drawing.Size(0, 13);
     this.lblnombre.TabIndex = 65;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(2, 14);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(68, 13);
     this.label3.TabIndex = 16;
     this.label3.Text = "CentroCosto:";
     //
     // item
     //
     this.item.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.item.Location = new System.Drawing.Point(78, 53);
     this.item.Name = "item";
     this.item.Size = new System.Drawing.Size(40, 20);
     this.item.TabIndex = 63;
     this.item.Text = "ventas al exterior";
     //
     // cencosid
     //
     this.cencosid.Location = new System.Drawing.Point(78, 9);
     this.cencosid.MaxLength = 5;
     this.cencosid.Name = "cencosid";
     this.cencosid.Size = new System.Drawing.Size(39, 21);
     this.cencosid.TabIndex = 17;
     this.cencosid.Text = "ventas al exterior";
     this.cencosid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.cencosid_KeyDown);
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(36, 56);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(35, 13);
     this.label4.TabIndex = 64;
     this.label4.Text = "Item:";
     //
     // cencosname
     //
     this.cencosname.Location = new System.Drawing.Point(120, 9);
     this.cencosname.Name = "cencosname";
     this.cencosname.ReadOnly = true;
     this.cencosname.Size = new System.Drawing.Size(191, 21);
     this.cencosname.TabIndex = 18;
     this.cencosname.Text = "ventas al exterior";
     //
     // estacion
     //
     this.estacion.Location = new System.Drawing.Point(78, 30);
     this.estacion.MaxLength = 3;
     this.estacion.Name = "estacion";
     this.estacion.Size = new System.Drawing.Size(36, 21);
     this.estacion.TabIndex = 20;
     this.estacion.Text = "ventas al exterior";
     this.estacion.KeyDown += new System.Windows.Forms.KeyEventHandler(this.estacion_KeyDown);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(9, 35);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(61, 13);
     this.label6.TabIndex = 19;
     this.label6.Text = "Estacion-T:";
     //
     // btn_fijar
     //
     this.btn_fijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_fijar.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_fijar.Image = global::BapFormulariosNet.Properties.Resources.go_check;
     this.btn_fijar.Location = new System.Drawing.Point(361, 19);
     this.btn_fijar.Name = "btn_fijar";
     this.btn_fijar.Size = new System.Drawing.Size(30, 26);
     this.btn_fijar.TabIndex = 65;
     this.btn_fijar.UseVisualStyleBackColor = true;
     this.btn_fijar.Click += new System.EventHandler(this.btn_fijar_Click);
     //
     // unmedpeso
     //
     this.unmedpeso.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.unmedpeso.Location = new System.Drawing.Point(112, 650);
     this.unmedpeso.Name = "unmedpeso";
     this.unmedpeso.Size = new System.Drawing.Size(148, 20);
     this.unmedpeso.TabIndex = 48;
     this.unmedpeso.Text = "ventas al exterior";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.fechadoc);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(627, 33);
     this.panel1.TabIndex = 2;
     //
     // fechadoc
     //
     this.fechadoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechadoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechadoc.Location = new System.Drawing.Point(544, 6);
     this.fechadoc.Name = "fechadoc";
     this.fechadoc.Size = new System.Drawing.Size(80, 20);
     this.fechadoc.TabIndex = 4;
     this.fechadoc.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(157, 4);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(295, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "PRODUCTOS X ESTACIONES";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(497, 7);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 3;
     this.label16.Text = "Fecha";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(28, 650);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(62, 13);
     this.label31.TabIndex = 57;
     this.label31.Text = "Unid. Peso:";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_clave,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(629, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // codigo
     //
     this.codigo.DataPropertyName = "productid";
     this.codigo.HeaderText = "Codigo";
     this.codigo.Name = "codigo";
     this.codigo.ReadOnly = true;
     //
     // name
     //
     this.name.DataPropertyName = "productname";
     this.name.HeaderText = "Producto";
     this.name.Name = "name";
     this.name.ReadOnly = true;
     this.name.Width = 300;
     //
     // area
     //
     this.area.DataPropertyName = "cencosname";
     this.area.HeaderText = "Area";
     this.area.Name = "area";
     this.area.ReadOnly = true;
     //
     // codigo2
     //
     this.codigo2.DataPropertyName = "estacion";
     this.codigo2.HeaderText = "Estacion";
     this.codigo2.Name = "codigo2";
     this.codigo2.ReadOnly = true;
     this.codigo2.Width = 75;
     //
     // productidold
     //
     this.productidold.DataPropertyName = "productidold";
     this.productidold.HeaderText = "CodigoOLD";
     this.productidold.Name = "productidold";
     this.productidold.ReadOnly = true;
     this.productidold.Visible = false;
     //
     // status
     //
     this.status.DataPropertyName = "status";
     this.status.HeaderText = "Status";
     this.status.Name = "status";
     this.status.ReadOnly = true;
     this.status.Visible = false;
     //
     // Frm_producto_est
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(629, 521);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.dgbproductos);
     this.Controls.Add(this.peso);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.unmedpeso);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.Botonera);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_producto_est";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Productos";
     this.Activated += new System.EventHandler(this.Frm_productos_est_Activated);
     this.Load += new System.EventHandler(this.Frm_productos_est_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_productos_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbproductos)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.pnl_codigo.ResumeLayout(false);
     this.pnl_codigo.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.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.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ordencompra));
     this.ctacte = new System.Windows.Forms.TextBox();
     this.condpagoid = new System.Windows.Forms.ComboBox();
     this.label34 = new System.Windows.Forms.Label();
     this.puntollegada = new System.Windows.Forms.TextBox();
     this.label12 = new System.Windows.Forms.Label();
     this.atencion = new System.Windows.Forms.TextBox();
     this.label27 = new System.Windows.Forms.Label();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.afecdetraccion = new DevExpress.XtraEditors.CheckEdit();
     this.detraccionid = new System.Windows.Forms.ComboBox();
     this.pdetraccion = new System.Windows.Forms.TextBox();
     this.label33 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.compradorname = new System.Windows.Forms.TextBox();
     this.compradorid = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.shapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.fechpago = new System.Windows.Forms.DateTimePicker();
     this.panel3 = new System.Windows.Forms.Panel();
     this.label16 = new System.Windows.Forms.Label();
     this.fechentrega = new System.Windows.Forms.DateTimePicker();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.fechaulting = new System.Windows.Forms.DateTimePicker();
     this.label26 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label17 = new System.Windows.Forms.Label();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.numdoc2 = new System.Windows.Forms.TextBox();
     this.label8 = new System.Windows.Forms.Label();
     this.panel2 = new System.Windows.Forms.Panel();
     this.label40 = new System.Windows.Forms.Label();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.griddetalleocompra = new System.Windows.Forms.DataGridView();
     this.itemref = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.equiv_id = new System.Windows.Forms.DataGridViewComboBoxColumn();
     this.dfechentrega = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.aniosemana = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.aniosemanaconfirm = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.generar = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_c = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit_c = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta_c = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.label25 = new System.Windows.Forms.Label();
     this.numped = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.serped = new System.Windows.Forms.TextBox();
     this.label22 = new System.Windows.Forms.Label();
     this.fechref = new System.Windows.Forms.DateTimePicker();
     this.numref = new System.Windows.Forms.TextBox();
     this.label32 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.serref = new System.Windows.Forms.TextBox();
     this.label30 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.tipref = new System.Windows.Forms.ComboBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.direc = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.localdes = new System.Windows.Forms.ComboBox();
     this.moduloiddes = new System.Windows.Forms.ComboBox();
     this.label9 = new System.Windows.Forms.Label();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label11 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimiraux = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_actualizar = new System.Windows.Forms.ToolStripButton();
     this.btn_canculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_attachedfile = new System.Windows.Forms.ToolStripButton();
     this.btn_GenerarOrden = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label23 = new System.Windows.Forms.Label();
     this.glosa = new System.Windows.Forms.TextBox();
     this.pictureEdit1 = new DevExpress.XtraEditors.PictureEdit();
     this.groupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.afecdetraccion.Properties)).BeginInit();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetalleocompra)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).BeginInit();
     this.SuspendLayout();
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(60, 110);
     this.ctacte.MaxLength = 11;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(55, 21);
     this.ctacte.TabIndex = 74;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // condpagoid
     //
     this.condpagoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.condpagoid.FormattingEnabled = true;
     this.condpagoid.Location = new System.Drawing.Point(808, 109);
     this.condpagoid.Name = "condpagoid";
     this.condpagoid.Size = new System.Drawing.Size(188, 21);
     this.condpagoid.TabIndex = 17;
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(732, 113);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(66, 13);
     this.label34.TabIndex = 31;
     this.label34.Text = "Cond. Pago:";
     //
     // puntollegada
     //
     this.puntollegada.Location = new System.Drawing.Point(437, 237);
     this.puntollegada.Name = "puntollegada";
     this.puntollegada.Size = new System.Drawing.Size(293, 21);
     this.puntollegada.TabIndex = 31;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(344, 240);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(91, 13);
     this.label12.TabIndex = 62;
     this.label12.Text = "Lugar de entrega:";
     //
     // atencion
     //
     this.atencion.Location = new System.Drawing.Point(66, 237);
     this.atencion.Name = "atencion";
     this.atencion.Size = new System.Drawing.Size(276, 21);
     this.atencion.TabIndex = 30;
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(4, 240);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(62, 13);
     this.label27.TabIndex = 60;
     this.label27.Text = "Referencia:";
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.afecdetraccion);
     this.groupBox2.Controls.Add(this.detraccionid);
     this.groupBox2.Controls.Add(this.pdetraccion);
     this.groupBox2.Controls.Add(this.label33);
     this.groupBox2.Controls.Add(this.label28);
     this.groupBox2.Controls.Add(this.compradorname);
     this.groupBox2.Controls.Add(this.compradorid);
     this.groupBox2.Controls.Add(this.label19);
     this.groupBox2.Controls.Add(this.shapeContainer2);
     this.groupBox2.Location = new System.Drawing.Point(347, 131);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(383, 106);
     this.groupBox2.TabIndex = 47;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Datos generales";
     //
     // afecdetraccion
     //
     this.afecdetraccion.Location = new System.Drawing.Point(8, 54);
     this.afecdetraccion.Name = "afecdetraccion";
     this.afecdetraccion.Properties.Caption = "Afecta Detracción:";
     this.afecdetraccion.Properties.CheckStyle = DevExpress.XtraEditors.Controls.CheckStyles.Style2;
     this.afecdetraccion.Properties.GlyphAlignment = DevExpress.Utils.HorzAlignment.Far;
     this.afecdetraccion.Size = new System.Drawing.Size(117, 22);
     this.afecdetraccion.TabIndex = 74;
     //
     // detraccionid
     //
     this.detraccionid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.detraccionid.FormattingEnabled = true;
     this.detraccionid.Location = new System.Drawing.Point(84, 81);
     this.detraccionid.Name = "detraccionid";
     this.detraccionid.Size = new System.Drawing.Size(240, 21);
     this.detraccionid.TabIndex = 27;
     this.detraccionid.SelectedIndexChanged += new System.EventHandler(this.detraccionid_SelectedIndexChanged);
     //
     // pdetraccion
     //
     this.pdetraccion.Location = new System.Drawing.Point(340, 82);
     this.pdetraccion.MaxLength = 4;
     this.pdetraccion.Name = "pdetraccion";
     this.pdetraccion.Size = new System.Drawing.Size(35, 21);
     this.pdetraccion.TabIndex = 28;
     this.pdetraccion.Text = "2012";
     this.pdetraccion.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(326, 85);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(15, 13);
     this.label33.TabIndex = 57;
     this.label33.Text = "%";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(13, 85);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(62, 13);
     this.label28.TabIndex = 55;
     this.label28.Text = "Detracción:";
     //
     // compradorname
     //
     this.compradorname.Location = new System.Drawing.Point(123, 16);
     this.compradorname.Name = "compradorname";
     this.compradorname.Size = new System.Drawing.Size(252, 21);
     this.compradorname.TabIndex = 25;
     //
     // compradorid
     //
     this.compradorid.Location = new System.Drawing.Point(84, 16);
     this.compradorid.MaxLength = 4;
     this.compradorid.Name = "compradorid";
     this.compradorid.Size = new System.Drawing.Size(37, 21);
     this.compradorid.TabIndex = 24;
     this.compradorid.Text = " ";
     this.compradorid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.compradorid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.compradorid_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(13, 19);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(61, 13);
     this.label19.TabIndex = 51;
     this.label19.Text = "Comprador:";
     //
     // shapeContainer2
     //
     this.shapeContainer2.Location = new System.Drawing.Point(3, 17);
     this.shapeContainer2.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer2.Name = "shapeContainer2";
     this.shapeContainer2.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer2.Size = new System.Drawing.Size(377, 86);
     this.shapeContainer2.TabIndex = 73;
     this.shapeContainer2.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lineShape4.Enabled = false;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 0;
     this.lineShape4.X2 = 383;
     this.lineShape4.Y1 = 32;
     this.lineShape4.Y2 = 32;
     //
     // lineShape3
     //
     this.lineShape3.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.lineShape3.Enabled = false;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 0;
     this.lineShape3.X2 = 383;
     this.lineShape3.Y1 = 33;
     this.lineShape3.Y2 = 33;
     //
     // fechpago
     //
     this.fechpago.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechpago.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechpago.Location = new System.Drawing.Point(955, 85);
     this.fechpago.Name = "fechpago";
     this.fechpago.Size = new System.Drawing.Size(80, 20);
     this.fechpago.TabIndex = 13;
     this.fechpago.ValueChanged += new System.EventHandler(this.fechpago_ValueChanged);
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Teal;
     this.panel3.Controls.Add(this.label16);
     this.panel3.Controls.Add(this.fechentrega);
     this.panel3.Controls.Add(this.fechdoc);
     this.panel3.Controls.Add(this.fechaulting);
     this.panel3.Controls.Add(this.label26);
     this.panel3.Controls.Add(this.label18);
     this.panel3.Controls.Add(this.label17);
     this.panel3.Controls.Add(this.serdoc);
     this.panel3.Controls.Add(this.label6);
     this.panel3.Controls.Add(this.numdoc);
     this.panel3.Controls.Add(this.numdoc2);
     this.panel3.Controls.Add(this.label8);
     this.panel3.Location = new System.Drawing.Point(0, 82);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(1044, 27);
     this.panel3.TabIndex = 16;
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(270, 8);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(46, 13);
     this.label16.TabIndex = 90;
     this.label16.Text = "Fecha:";
     //
     // fechentrega
     //
     this.fechentrega.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechentrega.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechentrega.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.fechentrega.Location = new System.Drawing.Point(789, 4);
     this.fechentrega.Name = "fechentrega";
     this.fechentrega.Size = new System.Drawing.Size(84, 20);
     this.fechentrega.TabIndex = 89;
     this.fechentrega.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     //
     // fechdoc
     //
     this.fechdoc.Enabled = false;
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.fechdoc.Location = new System.Drawing.Point(320, 4);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 20;
     this.fechdoc.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     //
     // fechaulting
     //
     this.fechaulting.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechaulting.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechaulting.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.fechaulting.Location = new System.Drawing.Point(527, 2);
     this.fechaulting.Name = "fechaulting";
     this.fechaulting.Size = new System.Drawing.Size(84, 20);
     this.fechaulting.TabIndex = 7;
     this.fechaulting.Value = new System.DateTime(2012, 12, 19, 0, 0, 0, 0);
     this.fechaulting.Visible = false;
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.BackColor = System.Drawing.Color.Transparent;
     this.label26.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.ForeColor = System.Drawing.Color.White;
     this.label26.Location = new System.Drawing.Point(434, 6);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(91, 13);
     this.label26.TabIndex = 88;
     this.label26.Text = "Fecha Ult_Ing:";
     this.label26.Visible = false;
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(879, 7);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(79, 13);
     this.label18.TabIndex = 86;
     this.label18.Text = "Fecha Pago:";
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(697, 7);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(94, 13);
     this.label17.TabIndex = 20;
     this.label17.Text = "Fecha Entrega:";
     //
     // serdoc
     //
     this.serdoc.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.serdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(55, 8);
     this.serdoc.MaxLength = 4;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(37, 13);
     this.serdoc.TabIndex = 10;
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(4, 7);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(52, 13);
     this.label6.TabIndex = 3;
     this.label6.Text = "Modulo:";
     //
     // numdoc
     //
     this.numdoc.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.numdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(181, 8);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(44, 13);
     this.numdoc.TabIndex = 11;
     this.numdoc.Text = "000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // numdoc2
     //
     this.numdoc2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.numdoc2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc2.Location = new System.Drawing.Point(150, 8);
     this.numdoc2.MaxLength = 10;
     this.numdoc2.Name = "numdoc2";
     this.numdoc2.Size = new System.Drawing.Size(31, 13);
     this.numdoc2.TabIndex = 87;
     this.numdoc2.Text = "2013";
     this.numdoc2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(98, 7);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(54, 13);
     this.label8.TabIndex = 4;
     this.label8.Text = "Número:";
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Location = new System.Drawing.Point(0, 544);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(1045, 48);
     this.panel2.TabIndex = 65;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(542, 28);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(40, 13);
     this.label40.TabIndex = 80;
     this.label40.Text = "Stock";
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(519, 6);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 38;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(450, 28);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(15, 13);
     this.lbl_valor.TabIndex = 79;
     this.lbl_valor.Text = "V";
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(442, 6);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 37;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(215, 27);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(68, 13);
     this.label39.TabIndex = 78;
     this.label39.Text = "Descuento";
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(208, 5);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 36;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(139, 27);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(63, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(132, 5);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 35;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     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(62, 27);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(60, 13);
     this.label7.TabIndex = 76;
     this.label7.Text = "T. Piezas";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(56, 5);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 34;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     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.White;
     this.label1.Location = new System.Drawing.Point(10, 27);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(37, 13);
     this.label1.TabIndex = 75;
     this.label1.Text = "Items";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(4, 5);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 33;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(799, 27);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(66, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta";
     //
     // valventa
     //
     this.valventa.Location = new System.Drawing.Point(794, 5);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 21);
     this.valventa.TabIndex = 39;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(881, 27);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(58, 13);
     this.label4.TabIndex = 82;
     this.label4.Text = "Impuesto";
     //
     // totimpto
     //
     this.totimpto.Location = new System.Drawing.Point(871, 5);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 21);
     this.totimpto.TabIndex = 40;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(971, 27);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(36, 13);
     this.label3.TabIndex = 83;
     this.label3.Text = "Total";
     //
     // totimporte
     //
     this.totimporte.Location = new System.Drawing.Point(948, 5);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 41;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // griddetalleocompra
     //
     this.griddetalleocompra.AllowUserToAddRows = false;
     this.griddetalleocompra.AllowUserToDeleteRows = false;
     this.griddetalleocompra.AllowUserToResizeColumns = false;
     this.griddetalleocompra.AllowUserToResizeRows = false;
     this.griddetalleocompra.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     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.griddetalleocompra.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetalleocompra.ColumnHeadersHeight = 20;
     this.griddetalleocompra.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.itemref,
     this.stock_old,
     this.cantidad_old,
     this.item,
     this.productid,
     this.productname,
     this.equiv_id,
     this.dfechentrega,
     this.aniosemana,
     this.aniosemanaconfirm,
     this.precioanterior,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.valor,
     this.importe,
     this.precunit,
     this.importfac,
     this.generar,
     this.dtotimpto,
     this.cantidad_c,
     this.precunit_c,
     this.dalmacaccionid,
     this.cantidadcta,
     this.cantidadcta_c});
     this.griddetalleocompra.Location = new System.Drawing.Point(0, 260);
     this.griddetalleocompra.MultiSelect = false;
     this.griddetalleocompra.Name = "griddetalleocompra";
     this.griddetalleocompra.RowHeadersVisible = false;
     this.griddetalleocompra.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.griddetalleocompra.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetalleocompra.RowTemplate.Height = 20;
     this.griddetalleocompra.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetalleocompra.Size = new System.Drawing.Size(1044, 284);
     this.griddetalleocompra.TabIndex = 32;
     this.griddetalleocompra.CellBeginEdit += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.griddetalleocompra_CellBeginEdit);
     this.griddetalleocompra.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetalleocompra_CellClick);
     this.griddetalleocompra.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetalleocompra_CellContentClick);
     this.griddetalleocompra.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetalleocompra_CellEndEdit);
     this.griddetalleocompra.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetalleocompra_CellEnter);
     this.griddetalleocompra.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetalleocompra_CellLeave);
     this.griddetalleocompra.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetalleocompra_CellValueChanged);
     this.griddetalleocompra.ColumnDataPropertyNameChanged += new System.Windows.Forms.DataGridViewColumnEventHandler(this.griddetalleocompra_ColumnDataPropertyNameChanged);
     this.griddetalleocompra.CurrentCellDirtyStateChanged += new System.EventHandler(this.griddetalleocompra_CurrentCellDirtyStateChanged);
     this.griddetalleocompra.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.griddetalleocompra_DataError);
     this.griddetalleocompra.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetalleocompra_EditingControlShowing);
     this.griddetalleocompra.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetalleocompra_KeyDown);
     this.griddetalleocompra.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetalleocompra_KeyUp);
     //
     // itemref
     //
     this.itemref.DataPropertyName = "itemref";
     this.itemref.HeaderText = "itemref";
     this.itemref.Name = "itemref";
     this.itemref.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.itemref.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.HeaderText = "Stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.HeaderText = "Cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productid.Width = 90;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 280;
     //
     // equiv_id
     //
     this.equiv_id.DataPropertyName = "equiv_id";
     this.equiv_id.HeaderText = "Conver.Med";
     this.equiv_id.Name = "equiv_id";
     this.equiv_id.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.equiv_id.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     //
     // dfechentrega
     //
     this.dfechentrega.DataPropertyName = "fechentrega";
     dataGridViewCellStyle2.NullValue = null;
     this.dfechentrega.DefaultCellStyle = dataGridViewCellStyle2;
     this.dfechentrega.HeaderText = "F. Entrega";
     this.dfechentrega.MaxInputLength = 10;
     this.dfechentrega.Name = "dfechentrega";
     this.dfechentrega.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.dfechentrega.Width = 80;
     //
     // aniosemana
     //
     this.aniosemana.DataPropertyName = "aniosemana";
     this.aniosemana.HeaderText = "aniosemana";
     this.aniosemana.Name = "aniosemana";
     this.aniosemana.Visible = false;
     //
     // aniosemanaconfirm
     //
     this.aniosemanaconfirm.DataPropertyName = "aniosemanaconfirm";
     this.aniosemanaconfirm.HeaderText = "aniosemanaconfirm";
     this.aniosemanaconfirm.Name = "aniosemanaconfirm";
     this.aniosemanaconfirm.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.Format = "N2";
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     this.importe.HeaderText = "importe";
     this.importe.Name = "importe";
     this.importe.Visible = false;
     this.importe.Width = 80;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N6";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle6;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importfac.Width = 80;
     //
     // generar
     //
     this.generar.HeaderText = "↓";
     this.generar.Name = "generar";
     this.generar.Width = 20;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // cantidad_c
     //
     this.cantidad_c.DataPropertyName = "cantidad_c";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle7.Format = "N6";
     dataGridViewCellStyle7.NullValue = null;
     this.cantidad_c.DefaultCellStyle = dataGridViewCellStyle7;
     this.cantidad_c.HeaderText = "Cantidad_C";
     this.cantidad_c.Name = "cantidad_c";
     this.cantidad_c.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad_c.Visible = false;
     this.cantidad_c.Width = 80;
     //
     // precunit_c
     //
     this.precunit_c.DataPropertyName = "precunit_c";
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle8.Format = "N6";
     dataGridViewCellStyle8.NullValue = null;
     this.precunit_c.DefaultCellStyle = dataGridViewCellStyle8;
     this.precunit_c.HeaderText = "Precio_C";
     this.precunit_c.Name = "precunit_c";
     this.precunit_c.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit_c.Visible = false;
     this.precunit_c.Width = 75;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // cantidadcta_c
     //
     this.cantidadcta_c.DataPropertyName = "cantidadcta_c";
     this.cantidadcta_c.HeaderText = "cantidadcta_c";
     this.cantidadcta_c.Name = "cantidadcta_c";
     this.cantidadcta_c.Visible = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.label25);
     this.groupBox1.Controls.Add(this.numped);
     this.groupBox1.Controls.Add(this.label20);
     this.groupBox1.Controls.Add(this.serped);
     this.groupBox1.Controls.Add(this.label22);
     this.groupBox1.Controls.Add(this.fechref);
     this.groupBox1.Controls.Add(this.numref);
     this.groupBox1.Controls.Add(this.label32);
     this.groupBox1.Controls.Add(this.label31);
     this.groupBox1.Controls.Add(this.serref);
     this.groupBox1.Controls.Add(this.label30);
     this.groupBox1.Controls.Add(this.label29);
     this.groupBox1.Controls.Add(this.tipref);
     this.groupBox1.Controls.Add(this.shapeContainer1);
     this.groupBox1.Location = new System.Drawing.Point(7, 131);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(335, 106);
     this.groupBox1.TabIndex = 33;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Doc. Referencia";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.BackColor = System.Drawing.Color.Transparent;
     this.label25.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(7, 63);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(40, 13);
     this.label25.TabIndex = 42;
     this.label25.Text = "Pedido";
     //
     // numped
     //
     this.numped.Location = new System.Drawing.Point(136, 82);
     this.numped.MaxLength = 10;
     this.numped.Name = "numped";
     this.numped.Size = new System.Drawing.Size(79, 21);
     this.numped.TabIndex = 23;
     this.numped.Text = "0000000001";
     this.numped.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numped.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numped_KeyPress);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(95, 85);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(47, 13);
     this.label20.TabIndex = 45;
     this.label20.Text = "Número:";
     //
     // serped
     //
     this.serped.Location = new System.Drawing.Point(57, 82);
     this.serped.MaxLength = 4;
     this.serped.Name = "serped";
     this.serped.Size = new System.Drawing.Size(37, 21);
     this.serped.TabIndex = 22;
     this.serped.Text = "2012";
     this.serped.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serped.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serped_KeyPress);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(22, 85);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(34, 13);
     this.label22.TabIndex = 43;
     this.label22.Text = "Serie:";
     //
     // fechref
     //
     this.fechref.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechref.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechref.Location = new System.Drawing.Point(250, 41);
     this.fechref.Name = "fechref";
     this.fechref.Size = new System.Drawing.Size(80, 20);
     this.fechref.TabIndex = 21;
     this.fechref.ValueChanged += new System.EventHandler(this.fechref_ValueChanged);
     //
     // numref
     //
     this.numref.Location = new System.Drawing.Point(136, 40);
     this.numref.MaxLength = 10;
     this.numref.Name = "numref";
     this.numref.Size = new System.Drawing.Size(79, 21);
     this.numref.TabIndex = 20;
     this.numref.Text = "0000000001";
     this.numref.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numref.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numref_KeyPress);
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(213, 43);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(40, 13);
     this.label32.TabIndex = 40;
     this.label32.Text = "Fecha:";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(95, 43);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(44, 13);
     this.label31.TabIndex = 38;
     this.label31.Text = "Número";
     //
     // serref
     //
     this.serref.Location = new System.Drawing.Point(57, 40);
     this.serref.MaxLength = 4;
     this.serref.Name = "serref";
     this.serref.Size = new System.Drawing.Size(37, 21);
     this.serref.TabIndex = 19;
     this.serref.Text = "2012";
     this.serref.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serref.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serref_KeyPress);
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(22, 43);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(34, 13);
     this.label30.TabIndex = 36;
     this.label30.Text = "Serie:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(22, 19);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(31, 13);
     this.label29.TabIndex = 34;
     this.label29.Text = "Tipo:";
     //
     // tipref
     //
     this.tipref.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipref.FormattingEnabled = true;
     this.tipref.Location = new System.Drawing.Point(57, 16);
     this.tipref.Name = "tipref";
     this.tipref.Size = new System.Drawing.Size(273, 21);
     this.tipref.TabIndex = 18;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(3, 17);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2,
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(329, 86);
     this.shapeContainer1.TabIndex = 47;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderColor = System.Drawing.SystemColors.InactiveCaption;
     this.lineShape2.Enabled = false;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.X1 = -3;
     this.lineShape2.X2 = 331;
     this.lineShape2.Y1 = 54;
     this.lineShape2.Y2 = 54;
     //
     // lineShape1
     //
     this.lineShape1.BorderColor = System.Drawing.SystemColors.ButtonHighlight;
     this.lineShape1.Enabled = false;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 1;
     this.lineShape1.X2 = 335;
     this.lineShape1.Y1 = 53;
     this.lineShape1.Y2 = 53;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(510, 110);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(212, 21);
     this.direc.TabIndex = 16;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(457, 113);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 29;
     this.label24.Text = "Dirección:";
     //
     // ctactename
     //
     this.ctactename.Location = new System.Drawing.Point(271, 110);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(185, 21);
     this.ctactename.TabIndex = 15;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(145, 110);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(80, 21);
     this.nmruc.TabIndex = 14;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.localdes);
     this.panel1.Controls.Add(this.moduloiddes);
     this.panel1.Controls.Add(this.label9);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label11);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Location = new System.Drawing.Point(0, 32);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(1044, 50);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(815, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 20;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(1017, 23);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 19;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(977, 21);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 18;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // localdes
     //
     this.localdes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.localdes.DropDownWidth = 170;
     this.localdes.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.localdes.FormattingEnabled = true;
     this.localdes.Location = new System.Drawing.Point(216, 23);
     this.localdes.Name = "localdes";
     this.localdes.Size = new System.Drawing.Size(147, 21);
     this.localdes.TabIndex = 11;
     this.localdes.SelectedIndexChanged += new System.EventHandler(this.localdes_SelectedIndexChanged);
     //
     // moduloiddes
     //
     this.moduloiddes.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moduloiddes.DropDownWidth = 200;
     this.moduloiddes.Font = new System.Drawing.Font("Microsoft Sans Serif", 8F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moduloiddes.FormattingEnabled = true;
     this.moduloiddes.Location = new System.Drawing.Point(6, 23);
     this.moduloiddes.Name = "moduloiddes";
     this.moduloiddes.Size = new System.Drawing.Size(196, 21);
     this.moduloiddes.TabIndex = 10;
     this.moduloiddes.SelectedIndexChanged += new System.EventHandler(this.moduloiddes_SelectedIndexChanged);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(272, 8);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(38, 13);
     this.label9.TabIndex = 19;
     this.label9.Text = "Local";
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.DropDownWidth = 250;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(845, 21);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 7;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(474, 22);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(211, 24);
     this.label11.TabIndex = 6;
     this.label11.Text = "ORDEN DE COMPRA";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(43, 8);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(114, 13);
     this.label2.TabIndex = 17;
     this.label2.Text = "Destino :: Almacén";
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(917, 21);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 8;
     this.tcamb.Text = "8";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(850, 6);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 7;
     this.label21.Text = "Moneda";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(972, 6);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 9;
     this.label13.Text = "Impuesto";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(915, 6);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 8;
     this.label15.Text = "T Cambio";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btn_imprimiraux,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_actualizar,
     this.btn_canculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_attachedfile,
     this.btn_GenerarOrden,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.Botonera.Size = new System.Drawing.Size(1045, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = ((System.Drawing.Image)(resources.GetObject("btn_editar.Image")));
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir Resumido";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btn_imprimiraux
     //
     this.btn_imprimiraux.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimiraux.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimiraux.Image")));
     this.btn_imprimiraux.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimiraux.Name = "btn_imprimiraux";
     this.btn_imprimiraux.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimiraux.Text = "Imprimir Completo";
     this.btn_imprimiraux.Click += new System.EventHandler(this.btn_imprimiraux_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = ((System.Drawing.Image)(resources.GetObject("btn_primero.Image")));
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = ((System.Drawing.Image)(resources.GetObject("btn_anterior.Image")));
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = ((System.Drawing.Image)(resources.GetObject("btn_siguiente.Image")));
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = ((System.Drawing.Image)(resources.GetObject("btn_ultimo.Image")));
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = ((System.Drawing.Image)(resources.GetObject("btn_detanadir.Image")));
     this.btn_detanadir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(24, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_deteliminar.Image")));
     this.btn_deteliminar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(24, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_actualizar
     //
     this.btn_actualizar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_actualizar.Image = global::BapFormulariosNet.Properties.Resources.actualizar1;
     this.btn_actualizar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_actualizar.Name = "btn_actualizar";
     this.btn_actualizar.Size = new System.Drawing.Size(26, 26);
     this.btn_actualizar.Text = "Actualizar Unidad de Medida";
     this.btn_actualizar.Click += new System.EventHandler(this.btn_actualizar_Click);
     //
     // btn_canculadora
     //
     this.btn_canculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_canculadora.Image = ((System.Drawing.Image)(resources.GetObject("btn_canculadora.Image")));
     this.btn_canculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_canculadora.Name = "btn_canculadora";
     this.btn_canculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_canculadora.Text = "calculadora";
     this.btn_canculadora.Click += new System.EventHandler(this.btn_buscar_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = ((System.Drawing.Image)(resources.GetObject("btn_clave.Image")));
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_attachedfile
     //
     this.btn_attachedfile.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_attachedfile.Image = ((System.Drawing.Image)(resources.GetObject("btn_attachedfile.Image")));
     this.btn_attachedfile.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_attachedfile.Name = "btn_attachedfile";
     this.btn_attachedfile.Size = new System.Drawing.Size(26, 26);
     this.btn_attachedfile.Text = "Adjuntar Archivos";
     this.btn_attachedfile.Click += new System.EventHandler(this.btn_attachedfile_Click);
     //
     // btn_GenerarOrden
     //
     this.btn_GenerarOrden.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_GenerarOrden.Image = global::BapFormulariosNet.Properties.Resources.btn_generated;
     this.btn_GenerarOrden.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_GenerarOrden.Name = "btn_GenerarOrden";
     this.btn_GenerarOrden.Size = new System.Drawing.Size(26, 26);
     this.btn_GenerarOrden.Text = "Generar Orden Detallado";
     this.btn_GenerarOrden.Click += new System.EventHandler(this.btn_GenerarOrden_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = ((System.Drawing.Image)(resources.GetObject("btn_salir.Image")));
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(4, 113);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(59, 13);
     this.tipoclieprov.TabIndex = 25;
     this.tipoclieprov.Text = "Proveedor:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(114, 113);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(33, 13);
     this.label14.TabIndex = 75;
     this.label14.Text = "RUC:";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.Location = new System.Drawing.Point(225, 113);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 27;
     this.label23.Text = "R Social:";
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(742, 134);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(291, 121);
     this.glosa.TabIndex = 86;
     this.glosa.KeyDown += new System.Windows.Forms.KeyEventHandler(this.glosa_KeyDown);
     //
     // pictureEdit1
     //
     this.pictureEdit1.EditValue = ((object)(resources.GetObject("pictureEdit1.EditValue")));
     this.pictureEdit1.Location = new System.Drawing.Point(400, 281);
     this.pictureEdit1.Name = "pictureEdit1";
     this.pictureEdit1.Properties.Appearance.BackColor = System.Drawing.Color.Transparent;
     this.pictureEdit1.Properties.Appearance.Options.UseBackColor = true;
     this.pictureEdit1.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
     this.pictureEdit1.Size = new System.Drawing.Size(252, 140);
     this.pictureEdit1.TabIndex = 109;
     //
     // Frm_ordencompra
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(1045, 592);
     this.Controls.Add(this.pictureEdit1);
     this.Controls.Add(this.glosa);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.condpagoid);
     this.Controls.Add(this.label34);
     this.Controls.Add(this.puntollegada);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.atencion);
     this.Controls.Add(this.label27);
     this.Controls.Add(this.groupBox2);
     this.Controls.Add(this.fechpago);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetalleocompra);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label23);
     this.DoubleBuffered = true;
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ordencompra";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Registro de Ordenes de Compra";
     this.Activated += new System.EventHandler(this.Frm_ordencompra_Activated);
     this.Load += new System.EventHandler(this.Frm_ordencompra_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_ordencompra_KeyDown);
     this.groupBox2.ResumeLayout(false);
     this.groupBox2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.afecdetraccion.Properties)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetalleocompra)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureEdit1.Properties)).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.EnterPatiendId = new System.Windows.Forms.TextBox();
     this.EnterPatientFirstName = new System.Windows.Forms.TextBox();
     this.EnterpatientLastName = new System.Windows.Forms.TextBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.Wrist = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.label1 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.EnterPatientPhoneNumber = new System.Windows.Forms.TextBox();
     this.label41 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.patient = new System.Windows.Forms.Label();
     this.label45 = new System.Windows.Forms.Label();
     this.EnterPatientAddress = new System.Windows.Forms.TextBox();
     this.label46 = new System.Windows.Forms.Label();
     this.EnterCheckId = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.BloodResultType = new System.Windows.Forms.TextBox();
     this.BloodTypeType = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.PressureResultType = new System.Windows.Forms.TextBox();
     this.label13 = new System.Windows.Forms.Label();
     this.Fourth = new System.Windows.Forms.TextBox();
     this.label15 = new System.Windows.Forms.Label();
     this.PulseRateType = new System.Windows.Forms.TextBox();
     this.Chest = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.Head = new System.Windows.Forms.TextBox();
     this.label20 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.PressureResult = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.XrayResultsType = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.FifthCost = new System.Windows.Forms.TextBox();
     this.Fifth = new System.Windows.Forms.TextBox();
     this.PulseRate = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.PatientPhoneNumber = new System.Windows.Forms.TextBox();
     this.PatientProfileLastName = new System.Windows.Forms.TextBox();
     this.PatientProfileFirstName = new System.Windows.Forms.TextBox();
     this.PatientProfilePatientId = new System.Windows.Forms.TextBox();
     this.label16 = new System.Windows.Forms.Label();
     this.Third = new System.Windows.Forms.TextBox();
     this.XrayResults = new System.Windows.Forms.Label();
     this.label3 = new System.Windows.Forms.Label();
     this.Second = new System.Windows.Forms.TextBox();
     this.BloodResult = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.First = new System.Windows.Forms.TextBox();
     this.BloodType = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.Hand = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.Stomach = new System.Windows.Forms.Label();
     this.label37 = new System.Windows.Forms.Label();
     this.Feet = new System.Windows.Forms.Label();
     this.textBox1 = new System.Windows.Forms.TextBox();
     this.textBox2 = new System.Windows.Forms.TextBox();
     this.textBox3 = new System.Windows.Forms.TextBox();
     this.Leg = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.textBox5 = new System.Windows.Forms.TextBox();
     this.Shoulder = new System.Windows.Forms.Label();
     this.Knee = new System.Windows.Forms.Label();
     this.textBox6 = new System.Windows.Forms.TextBox();
     this.textBox7 = new System.Windows.Forms.TextBox();
     this.label47 = new System.Windows.Forms.Label();
     this.DoctorNotes = new System.Windows.Forms.TextBox();
     this.textBox9 = new System.Windows.Forms.TextBox();
     this.DoctorNotesInXrayResultSection = new System.Windows.Forms.Label();
     this.CheckXrayfullBody = new System.Windows.Forms.Button();
     this.textBox10 = new System.Windows.Forms.TextBox();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.generalResultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.xRayResultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // EnterPatiendId
     //
     this.EnterPatiendId.Location = new System.Drawing.Point(231, 80);
     this.EnterPatiendId.Name = "EnterPatiendId";
     this.EnterPatiendId.Size = new System.Drawing.Size(135, 22);
     this.EnterPatiendId.TabIndex = 1;
     //
     // EnterPatientFirstName
     //
     this.EnterPatientFirstName.Location = new System.Drawing.Point(231, 160);
     this.EnterPatientFirstName.Name = "EnterPatientFirstName";
     this.EnterPatientFirstName.Size = new System.Drawing.Size(135, 22);
     this.EnterPatientFirstName.TabIndex = 3;
     //
     // EnterpatientLastName
     //
     this.EnterpatientLastName.Location = new System.Drawing.Point(231, 233);
     this.EnterpatientLastName.Name = "EnterpatientLastName";
     this.EnterpatientLastName.Size = new System.Drawing.Size(135, 22);
     this.EnterpatientLastName.TabIndex = 4;
     this.EnterpatientLastName.TextChanged += new System.EventHandler(this.NumberOfBedsInTheRoom_TextChanged);
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.Wrist,
     this.rectangleShape3,
     this.rectangleShape2,
     this.rectangleShape1,
     this.lineShape2,
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1008, 682);
     this.shapeContainer1.TabIndex = 12;
     this.shapeContainer1.TabStop = false;
     //
     // Wrist
     //
     this.Wrist.Location = new System.Drawing.Point(434, 340);
     this.Wrist.Name = "Wrist";
     this.Wrist.Size = new System.Drawing.Size(572, 341);
     this.Wrist.Click += new System.EventHandler(this.rectangleShape4_Click);
     //
     // rectangleShape3
     //
     this.rectangleShape3.Location = new System.Drawing.Point(673, 751);
     this.rectangleShape3.Name = "rectangleShape3";
     this.rectangleShape3.Size = new System.Drawing.Size(329, 1);
     //
     // rectangleShape2
     //
     this.rectangleShape2.Location = new System.Drawing.Point(414, 748);
     this.rectangleShape2.Name = "rectangleShape2";
     this.rectangleShape2.Size = new System.Drawing.Size(224, 1);
     //
     // rectangleShape1
     //
     this.rectangleShape1.Location = new System.Drawing.Point(2, 456);
     this.rectangleShape1.Name = "rectangleShape1";
     this.rectangleShape1.Size = new System.Drawing.Size(429, 298);
     //
     // lineShape2
     //
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.X1 = 430;
     this.lineShape2.X2 = 431;
     this.lineShape2.Y1 = -1;
     this.lineShape2.Y2 = 455;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 1223;
     this.lineShape1.X2 = 1207;
     this.lineShape1.Y1 = 499;
     this.lineShape1.Y2 = 443;
     this.lineShape1.Click += new System.EventHandler(this.lineShape1_Click);
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(710, 26);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(135, 23);
     this.label1.TabIndex = 13;
     this.label1.Text = "General results";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(10, 80);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(106, 19);
     this.label28.TabIndex = 79;
     this.label28.Text = "Enter Patient ID";
     this.label28.Click += new System.EventHandler(this.label28_Click);
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(12, 163);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(122, 19);
     this.label29.TabIndex = 80;
     this.label29.Text = "Patient First Name";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(12, 315);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(141, 19);
     this.label30.TabIndex = 81;
     this.label30.Text = "Patient Phone number";
     this.label30.Click += new System.EventHandler(this.label30_Click);
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(15, 388);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(101, 19);
     this.label31.TabIndex = 82;
     this.label31.Text = "Patient address";
     this.label31.Click += new System.EventHandler(this.label31_Click);
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(12, 363);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(0, 19);
     this.label32.TabIndex = 83;
     //
     // EnterPatientPhoneNumber
     //
     this.EnterPatientPhoneNumber.Location = new System.Drawing.Point(231, 315);
     this.EnterPatientPhoneNumber.Name = "EnterPatientPhoneNumber";
     this.EnterPatientPhoneNumber.Size = new System.Drawing.Size(135, 22);
     this.EnterPatientPhoneNumber.TabIndex = 10;
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.Location = new System.Drawing.Point(36, 123);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(31, 19);
     this.label41.TabIndex = 115;
     this.label41.Text = "OR";
     this.label41.Click += new System.EventHandler(this.label41_Click);
     //
     // label42
     //
     this.label42.AutoSize = true;
     this.label42.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label42.Location = new System.Drawing.Point(36, 203);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(31, 19);
     this.label42.TabIndex = 116;
     this.label42.Text = "OR";
     //
     // label43
     //
     this.label43.AutoSize = true;
     this.label43.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label43.Location = new System.Drawing.Point(36, 275);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(31, 19);
     this.label43.TabIndex = 117;
     this.label43.Text = "OR";
     //
     // patient
     //
     this.patient.AutoSize = true;
     this.patient.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.patient.Location = new System.Drawing.Point(12, 233);
     this.patient.Name = "patient";
     this.patient.Size = new System.Drawing.Size(121, 19);
     this.patient.TabIndex = 118;
     this.patient.Text = "Patient Last Name";
     //
     // label45
     //
     this.label45.AutoSize = true;
     this.label45.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label45.Location = new System.Drawing.Point(36, 358);
     this.label45.Name = "label45";
     this.label45.Size = new System.Drawing.Size(31, 19);
     this.label45.TabIndex = 119;
     this.label45.Text = "OR";
     //
     // EnterPatientAddress
     //
     this.EnterPatientAddress.Location = new System.Drawing.Point(231, 385);
     this.EnterPatientAddress.Name = "EnterPatientAddress";
     this.EnterPatientAddress.Size = new System.Drawing.Size(135, 22);
     this.EnterPatientAddress.TabIndex = 120;
     this.EnterPatientAddress.TextChanged += new System.EventHandler(this.textBox1_TextChanged);
     //
     // label46
     //
     this.label46.AutoSize = true;
     this.label46.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label46.Location = new System.Drawing.Point(112, 38);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(129, 23);
     this.label46.TabIndex = 121;
     this.label46.Text = "Check identity";
     //
     // EnterCheckId
     //
     this.EnterCheckId.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.EnterCheckId.Location = new System.Drawing.Point(299, 427);
     this.EnterCheckId.Name = "EnterCheckId";
     this.EnterCheckId.Size = new System.Drawing.Size(122, 28);
     this.EnterCheckId.TabIndex = 134;
     this.EnterCheckId.Text = "Enter";
     this.EnterCheckId.UseVisualStyleBackColor = true;
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(751, 124);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(94, 19);
     this.label12.TabIndex = 146;
     this.label12.Text = "Type of illness";
     this.label12.Click += new System.EventHandler(this.label12_Click);
     //
     // BloodResultType
     //
     this.BloodResultType.Location = new System.Drawing.Point(900, 127);
     this.BloodResultType.Name = "BloodResultType";
     this.BloodResultType.Size = new System.Drawing.Size(95, 22);
     this.BloodResultType.TabIndex = 145;
     //
     // BloodTypeType
     //
     this.BloodTypeType.Location = new System.Drawing.Point(900, 79);
     this.BloodTypeType.Name = "BloodTypeType";
     this.BloodTypeType.Size = new System.Drawing.Size(95, 22);
     this.BloodTypeType.TabIndex = 139;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(751, 220);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(94, 19);
     this.label5.TabIndex = 156;
     this.label5.Text = "Type of illness";
     //
     // PressureResultType
     //
     this.PressureResultType.Location = new System.Drawing.Point(900, 223);
     this.PressureResultType.Name = "PressureResultType";
     this.PressureResultType.Size = new System.Drawing.Size(95, 22);
     this.PressureResultType.TabIndex = 155;
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(595, 223);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(0, 19);
     this.label13.TabIndex = 154;
     //
     // Fourth
     //
     this.Fourth.Location = new System.Drawing.Point(595, 220);
     this.Fourth.Name = "Fourth";
     this.Fourth.Size = new System.Drawing.Size(150, 22);
     this.Fourth.TabIndex = 153;
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(751, 172);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(94, 19);
     this.label15.TabIndex = 151;
     this.label15.Text = "Type of illness";
     //
     // PulseRateType
     //
     this.PulseRateType.Location = new System.Drawing.Point(900, 175);
     this.PulseRateType.Name = "PulseRateType";
     this.PulseRateType.Size = new System.Drawing.Size(95, 22);
     this.PulseRateType.TabIndex = 149;
     //
     // Chest
     //
     this.Chest.Location = new System.Drawing.Point(539, 433);
     this.Chest.Name = "Chest";
     this.Chest.Size = new System.Drawing.Size(150, 22);
     this.Chest.TabIndex = 175;
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(596, 411);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(0, 19);
     this.label19.TabIndex = 174;
     //
     // Head
     //
     this.Head.Location = new System.Drawing.Point(539, 385);
     this.Head.Name = "Head";
     this.Head.Size = new System.Drawing.Size(150, 22);
     this.Head.TabIndex = 173;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(436, 436);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(99, 19);
     this.label20.TabIndex = 172;
     this.label20.Text = "2. X Ray chest";
     this.label20.Click += new System.EventHandler(this.label20_Click);
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(596, 363);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(0, 19);
     this.label22.TabIndex = 170;
     //
     // PressureResult
     //
     this.PressureResult.AutoSize = true;
     this.PressureResult.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PressureResult.Location = new System.Drawing.Point(432, 220);
     this.PressureResult.Name = "PressureResult";
     this.PressureResult.Size = new System.Drawing.Size(112, 19);
     this.PressureResult.TabIndex = 167;
     this.PressureResult.Text = "4. pressure result";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(596, 335);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(0, 19);
     this.label26.TabIndex = 164;
     //
     // XrayResultsType
     //
     this.XrayResultsType.AutoSize = true;
     this.XrayResultsType.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.XrayResultsType.Location = new System.Drawing.Point(751, 271);
     this.XrayResultsType.Name = "XrayResultsType";
     this.XrayResultsType.Size = new System.Drawing.Size(94, 19);
     this.XrayResultsType.TabIndex = 161;
     this.XrayResultsType.Text = "Type of illness";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(595, 274);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(0, 19);
     this.label35.TabIndex = 160;
     //
     // FifthCost
     //
     this.FifthCost.Location = new System.Drawing.Point(900, 274);
     this.FifthCost.Name = "FifthCost";
     this.FifthCost.Size = new System.Drawing.Size(95, 22);
     this.FifthCost.TabIndex = 159;
     //
     // Fifth
     //
     this.Fifth.Location = new System.Drawing.Point(595, 265);
     this.Fifth.Name = "Fifth";
     this.Fifth.Size = new System.Drawing.Size(150, 22);
     this.Fifth.TabIndex = 158;
     //
     // PulseRate
     //
     this.PulseRate.AutoSize = true;
     this.PulseRate.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.PulseRate.Location = new System.Drawing.Point(432, 178);
     this.PulseRate.Name = "PulseRate";
     this.PulseRate.Size = new System.Drawing.Size(84, 19);
     this.PulseRate.TabIndex = 157;
     this.PulseRate.Text = "3. Pulse rate";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(10, 462);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(131, 23);
     this.label6.TabIndex = 36;
     this.label6.Text = "Patient Profile";
     this.label6.Click += new System.EventHandler(this.label6_Click);
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(15, 496);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(73, 19);
     this.label9.TabIndex = 111;
     this.label9.Text = "Patient ID:";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(15, 530);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(122, 19);
     this.label7.TabIndex = 113;
     this.label7.Text = "Patient First Name";
     this.label7.Click += new System.EventHandler(this.label7_Click);
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(15, 570);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(121, 19);
     this.label10.TabIndex = 110;
     this.label10.Text = "Patient Last Name";
     this.label10.Click += new System.EventHandler(this.label10_Click);
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(15, 607);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(141, 19);
     this.label8.TabIndex = 112;
     this.label8.Text = "Patient Phone number";
     this.label8.Click += new System.EventHandler(this.label8_Click);
     //
     // PatientPhoneNumber
     //
     this.PatientPhoneNumber.Location = new System.Drawing.Point(231, 607);
     this.PatientPhoneNumber.Name = "PatientPhoneNumber";
     this.PatientPhoneNumber.Size = new System.Drawing.Size(135, 22);
     this.PatientPhoneNumber.TabIndex = 108;
     //
     // PatientProfileLastName
     //
     this.PatientProfileLastName.Location = new System.Drawing.Point(231, 570);
     this.PatientProfileLastName.Name = "PatientProfileLastName";
     this.PatientProfileLastName.Size = new System.Drawing.Size(135, 22);
     this.PatientProfileLastName.TabIndex = 107;
     //
     // PatientProfileFirstName
     //
     this.PatientProfileFirstName.Location = new System.Drawing.Point(231, 527);
     this.PatientProfileFirstName.Name = "PatientProfileFirstName";
     this.PatientProfileFirstName.Size = new System.Drawing.Size(135, 22);
     this.PatientProfileFirstName.TabIndex = 106;
     this.PatientProfileFirstName.TextChanged += new System.EventHandler(this.textBox15_TextChanged);
     //
     // PatientProfilePatientId
     //
     this.PatientProfilePatientId.Location = new System.Drawing.Point(231, 493);
     this.PatientProfilePatientId.Name = "PatientProfilePatientId";
     this.PatientProfilePatientId.Size = new System.Drawing.Size(135, 22);
     this.PatientProfilePatientId.TabIndex = 105;
     this.PatientProfilePatientId.TextChanged += new System.EventHandler(this.vip1RoomIdText_TextChanged);
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(595, 178);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(0, 19);
     this.label16.TabIndex = 192;
     //
     // Third
     //
     this.Third.Location = new System.Drawing.Point(595, 175);
     this.Third.Name = "Third";
     this.Third.Size = new System.Drawing.Size(150, 22);
     this.Third.TabIndex = 191;
     //
     // XrayResults
     //
     this.XrayResults.AutoSize = true;
     this.XrayResults.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.XrayResults.Location = new System.Drawing.Point(435, 268);
     this.XrayResults.Name = "XrayResults";
     this.XrayResults.Size = new System.Drawing.Size(106, 19);
     this.XrayResults.TabIndex = 190;
     this.XrayResults.Text = "5. X Ray results";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(595, 130);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(0, 19);
     this.label3.TabIndex = 189;
     //
     // Second
     //
     this.Second.Location = new System.Drawing.Point(595, 127);
     this.Second.Name = "Second";
     this.Second.Size = new System.Drawing.Size(150, 22);
     this.Second.TabIndex = 188;
     //
     // BloodResult
     //
     this.BloodResult.AutoSize = true;
     this.BloodResult.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BloodResult.Location = new System.Drawing.Point(432, 130);
     this.BloodResult.Name = "BloodResult";
     this.BloodResult.Size = new System.Drawing.Size(103, 19);
     this.BloodResult.TabIndex = 187;
     this.BloodResult.Text = "2. Blood Result";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(595, 82);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(0, 19);
     this.label24.TabIndex = 186;
     //
     // First
     //
     this.First.Location = new System.Drawing.Point(595, 79);
     this.First.Name = "First";
     this.First.Size = new System.Drawing.Size(150, 22);
     this.First.TabIndex = 185;
     //
     // BloodType
     //
     this.BloodType.AutoSize = true;
     this.BloodType.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.BloodType.Location = new System.Drawing.Point(432, 82);
     this.BloodType.Name = "BloodType";
     this.BloodType.Size = new System.Drawing.Size(96, 19);
     this.BloodType.TabIndex = 184;
     this.BloodType.Text = "1. Blood Type";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(751, 76);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(94, 19);
     this.label33.TabIndex = 141;
     this.label33.Text = "Type of illness";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(711, 343);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(114, 23);
     this.label11.TabIndex = 193;
     this.label11.Text = "X ray results";
     //
     // Hand
     //
     this.Hand.AutoSize = true;
     this.Hand.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Hand.Location = new System.Drawing.Point(711, 538);
     this.Hand.Name = "Hand";
     this.Hand.Size = new System.Drawing.Size(97, 19);
     this.Hand.TabIndex = 195;
     this.Hand.Text = "9. X Ray hand";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(436, 388);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(97, 19);
     this.label25.TabIndex = 196;
     this.label25.Text = "1. X Ray head";
     this.label25.Click += new System.EventHandler(this.label25_Click);
     //
     // Stomach
     //
     this.Stomach.AutoSize = true;
     this.Stomach.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Stomach.Location = new System.Drawing.Point(711, 488);
     this.Stomach.Name = "Stomach";
     this.Stomach.Size = new System.Drawing.Size(121, 19);
     this.Stomach.TabIndex = 197;
     this.Stomach.Text = "8. X Ray Stomach";
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label37.Location = new System.Drawing.Point(711, 436);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(85, 19);
     this.label37.TabIndex = 198;
     this.label37.Text = "7. X Ray leg";
     //
     // Feet
     //
     this.Feet.AutoSize = true;
     this.Feet.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Feet.Location = new System.Drawing.Point(436, 587);
     this.Feet.Name = "Feet";
     this.Feet.Size = new System.Drawing.Size(98, 19);
     this.Feet.TabIndex = 199;
     this.Feet.Text = "10. X Ray feet";
     //
     // textBox1
     //
     this.textBox1.Location = new System.Drawing.Point(853, 587);
     this.textBox1.Name = "textBox1";
     this.textBox1.Size = new System.Drawing.Size(150, 22);
     this.textBox1.TabIndex = 200;
     //
     // textBox2
     //
     this.textBox2.Location = new System.Drawing.Point(853, 485);
     this.textBox2.Name = "textBox2";
     this.textBox2.Size = new System.Drawing.Size(150, 22);
     this.textBox2.TabIndex = 201;
     //
     // textBox3
     //
     this.textBox3.Location = new System.Drawing.Point(853, 388);
     this.textBox3.Name = "textBox3";
     this.textBox3.Size = new System.Drawing.Size(150, 22);
     this.textBox3.TabIndex = 202;
     //
     // Leg
     //
     this.Leg.Location = new System.Drawing.Point(853, 436);
     this.Leg.Name = "Leg";
     this.Leg.Size = new System.Drawing.Size(150, 22);
     this.Leg.TabIndex = 203;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.Location = new System.Drawing.Point(437, 488);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(100, 19);
     this.label39.TabIndex = 204;
     this.label39.Text = "4. X Ray Wrist";
     //
     // textBox5
     //
     this.textBox5.Location = new System.Drawing.Point(539, 535);
     this.textBox5.Name = "textBox5";
     this.textBox5.Size = new System.Drawing.Size(150, 22);
     this.textBox5.TabIndex = 205;
     //
     // Shoulder
     //
     this.Shoulder.AutoSize = true;
     this.Shoulder.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Shoulder.Location = new System.Drawing.Point(711, 388);
     this.Shoulder.Name = "Shoulder";
     this.Shoulder.Size = new System.Drawing.Size(122, 19);
     this.Shoulder.TabIndex = 206;
     this.Shoulder.Text = "6. X Ray Shoulder";
     //
     // Knee
     //
     this.Knee.AutoSize = true;
     this.Knee.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Knee.Location = new System.Drawing.Point(436, 537);
     this.Knee.Name = "Knee";
     this.Knee.Size = new System.Drawing.Size(101, 19);
     this.Knee.TabIndex = 207;
     this.Knee.Text = "5. X Ray Knee";
     //
     // textBox6
     //
     this.textBox6.Location = new System.Drawing.Point(539, 537);
     this.textBox6.Name = "textBox6";
     this.textBox6.Size = new System.Drawing.Size(150, 22);
     this.textBox6.TabIndex = 208;
     //
     // textBox7
     //
     this.textBox7.Location = new System.Drawing.Point(853, 538);
     this.textBox7.Name = "textBox7";
     this.textBox7.Size = new System.Drawing.Size(150, 22);
     this.textBox7.TabIndex = 209;
     //
     // label47
     //
     this.label47.AutoSize = true;
     this.label47.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label47.Location = new System.Drawing.Point(435, 310);
     this.label47.Name = "label47";
     this.label47.Size = new System.Drawing.Size(109, 19);
     this.label47.TabIndex = 152;
     this.label47.Text = "6. Doctor Notes";
     //
     // DoctorNotes
     //
     this.DoctorNotes.Location = new System.Drawing.Point(595, 310);
     this.DoctorNotes.Name = "DoctorNotes";
     this.DoctorNotes.Size = new System.Drawing.Size(400, 22);
     this.DoctorNotes.TabIndex = 163;
     //
     // textBox9
     //
     this.textBox9.Location = new System.Drawing.Point(539, 587);
     this.textBox9.Name = "textBox9";
     this.textBox9.Size = new System.Drawing.Size(150, 22);
     this.textBox9.TabIndex = 211;
     //
     // DoctorNotesInXrayResultSection
     //
     this.DoctorNotesInXrayResultSection.AutoSize = true;
     this.DoctorNotesInXrayResultSection.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.DoctorNotesInXrayResultSection.Location = new System.Drawing.Point(709, 590);
     this.DoctorNotesInXrayResultSection.Name = "DoctorNotesInXrayResultSection";
     this.DoctorNotesInXrayResultSection.Size = new System.Drawing.Size(116, 19);
     this.DoctorNotesInXrayResultSection.TabIndex = 210;
     this.DoctorNotesInXrayResultSection.Text = "11. Doctor Notes";
     //
     // CheckXrayfullBody
     //
     this.CheckXrayfullBody.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.CheckXrayfullBody.Location = new System.Drawing.Point(646, 634);
     this.CheckXrayfullBody.Name = "CheckXrayfullBody";
     this.CheckXrayfullBody.Size = new System.Drawing.Size(238, 36);
     this.CheckXrayfullBody.TabIndex = 212;
     this.CheckXrayfullBody.Text = "Check X ray in full body";
     this.CheckXrayfullBody.UseVisualStyleBackColor = true;
     this.CheckXrayfullBody.Click += new System.EventHandler(this.CheckXrayfullBody_Click);
     //
     // textBox10
     //
     this.textBox10.Location = new System.Drawing.Point(539, 485);
     this.textBox10.Name = "textBox10";
     this.textBox10.Size = new System.Drawing.Size(150, 22);
     this.textBox10.TabIndex = 205;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.updateToolStripMenuItem,
     this.exitToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1008, 24);
     this.menuStrip1.TabIndex = 213;
     this.menuStrip1.Text = "menuStrip1";
     //
     // updateToolStripMenuItem
     //
     this.updateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.generalResultsToolStripMenuItem,
     this.xRayResultsToolStripMenuItem});
     this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
     this.updateToolStripMenuItem.Size = new System.Drawing.Size(57, 20);
     this.updateToolStripMenuItem.Text = "Update";
     //
     // generalResultsToolStripMenuItem
     //
     this.generalResultsToolStripMenuItem.Name = "generalResultsToolStripMenuItem";
     this.generalResultsToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     this.generalResultsToolStripMenuItem.Text = "General results";
     //
     // xRayResultsToolStripMenuItem
     //
     this.xRayResultsToolStripMenuItem.Name = "xRayResultsToolStripMenuItem";
     this.xRayResultsToolStripMenuItem.Size = new System.Drawing.Size(151, 22);
     this.xRayResultsToolStripMenuItem.Text = "X ray results";
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // MedTech
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1008, 682);
     this.Controls.Add(this.textBox10);
     this.Controls.Add(this.CheckXrayfullBody);
     this.Controls.Add(this.textBox9);
     this.Controls.Add(this.DoctorNotesInXrayResultSection);
     this.Controls.Add(this.DoctorNotes);
     this.Controls.Add(this.label47);
     this.Controls.Add(this.textBox7);
     this.Controls.Add(this.textBox6);
     this.Controls.Add(this.Knee);
     this.Controls.Add(this.Shoulder);
     this.Controls.Add(this.textBox5);
     this.Controls.Add(this.label39);
     this.Controls.Add(this.Leg);
     this.Controls.Add(this.textBox3);
     this.Controls.Add(this.textBox2);
     this.Controls.Add(this.textBox1);
     this.Controls.Add(this.Feet);
     this.Controls.Add(this.label37);
     this.Controls.Add(this.Stomach);
     this.Controls.Add(this.label25);
     this.Controls.Add(this.Hand);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.Third);
     this.Controls.Add(this.XrayResults);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.Second);
     this.Controls.Add(this.BloodResult);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.First);
     this.Controls.Add(this.BloodType);
     this.Controls.Add(this.Chest);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.Head);
     this.Controls.Add(this.label20);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.PressureResult);
     this.Controls.Add(this.label26);
     this.Controls.Add(this.XrayResultsType);
     this.Controls.Add(this.label35);
     this.Controls.Add(this.FifthCost);
     this.Controls.Add(this.Fifth);
     this.Controls.Add(this.PulseRate);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.PressureResultType);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.Fourth);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.PulseRateType);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.BloodResultType);
     this.Controls.Add(this.label33);
     this.Controls.Add(this.BloodTypeType);
     this.Controls.Add(this.EnterCheckId);
     this.Controls.Add(this.label46);
     this.Controls.Add(this.EnterPatientAddress);
     this.Controls.Add(this.label45);
     this.Controls.Add(this.patient);
     this.Controls.Add(this.label43);
     this.Controls.Add(this.label42);
     this.Controls.Add(this.label41);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.PatientPhoneNumber);
     this.Controls.Add(this.PatientProfileLastName);
     this.Controls.Add(this.PatientProfileFirstName);
     this.Controls.Add(this.PatientProfilePatientId);
     this.Controls.Add(this.label32);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.label29);
     this.Controls.Add(this.label28);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.EnterPatientPhoneNumber);
     this.Controls.Add(this.EnterpatientLastName);
     this.Controls.Add(this.EnterPatientFirstName);
     this.Controls.Add(this.EnterPatiendId);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.shapeContainer1);
     this.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "MedTech";
     this.Text = "Medical techintion ";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.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(login));
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.loginbtn = new System.Windows.Forms.Button();
     this.pwdtxt = new System.Windows.Forms.TextBox();
     this.unametxt = new System.Windows.Forms.TextBox();
     this.label6 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.panel3 = new System.Windows.Forms.Panel();
     this.softlogiclink = new System.Windows.Forms.LinkLabel();
     this.userstatuspic = new System.Windows.Forms.PictureBox();
     this.loginloadingindicator = new MRG.Controls.UI.LoadingCircle();
     this.panel4 = new System.Windows.Forms.Panel();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.userstatuspic)).BeginInit();
     this.panel4.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.loginbtn);
     this.groupBox1.Controls.Add(this.pwdtxt);
     this.groupBox1.Controls.Add(this.unametxt);
     this.groupBox1.Controls.Add(this.label6);
     this.groupBox1.Controls.Add(this.label7);
     this.groupBox1.ForeColor = System.Drawing.Color.White;
     this.groupBox1.Location = new System.Drawing.Point(1, 54);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(412, 166);
     this.groupBox1.TabIndex = 2;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Enter your credentials";
     //
     // loginbtn
     //
     this.loginbtn.BackColor = System.Drawing.Color.Gainsboro;
     this.loginbtn.ForeColor = System.Drawing.SystemColors.ControlText;
     this.loginbtn.Location = new System.Drawing.Point(151, 109);
     this.loginbtn.Name = "loginbtn";
     this.loginbtn.Size = new System.Drawing.Size(75, 23);
     this.loginbtn.TabIndex = 9;
     this.loginbtn.Text = "LOGIN";
     this.loginbtn.UseVisualStyleBackColor = false;
     this.loginbtn.Click += new System.EventHandler(this.loginbtn_Click);
     //
     // pwdtxt
     //
     this.pwdtxt.Location = new System.Drawing.Point(152, 71);
     this.pwdtxt.Name = "pwdtxt";
     this.pwdtxt.Size = new System.Drawing.Size(163, 20);
     this.pwdtxt.TabIndex = 8;
     this.pwdtxt.UseSystemPasswordChar = true;
     //
     // unametxt
     //
     this.unametxt.Location = new System.Drawing.Point(152, 40);
     this.unametxt.Name = "unametxt";
     this.unametxt.Size = new System.Drawing.Size(163, 20);
     this.unametxt.TabIndex = 7;
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.label6.Location = new System.Drawing.Point(67, 74);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(70, 13);
     this.label6.TabIndex = 6;
     this.label6.Text = "PASSWORD";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.ForeColor = System.Drawing.SystemColors.ControlLightLight;
     this.label7.Location = new System.Drawing.Point(67, 43);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 5;
     this.label7.Text = "USERNAME";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Helvetica-Condensed", 21.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.ForeColor = System.Drawing.Color.DimGray;
     this.label1.Location = new System.Drawing.Point(98, 8);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(213, 36);
     this.label1.TabIndex = 4;
     this.label1.Text = "AUDIO GALLERY";
     this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.LightSteelBlue;
     this.panel1.Controls.Add(this.label1);
     this.panel1.Location = new System.Drawing.Point(1, 0);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(411, 52);
     this.panel1.TabIndex = 5;
     //
     // pictureBox1
     //
     this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBox1.Image = global::audiogallery.Properties.Resources.sl_logo;
     this.pictureBox1.Location = new System.Drawing.Point(376, 0);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(37, 32);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox1.TabIndex = 5;
     this.pictureBox1.TabStop = false;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2,
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(413, 285);
     this.shapeContainer1.TabIndex = 6;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderColor = System.Drawing.Color.White;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.X1 = 1;
     this.lineShape2.X2 = 412;
     this.lineShape2.Y1 = 253;
     this.lineShape2.Y2 = 253;
     //
     // lineShape1
     //
     this.lineShape1.BorderColor = System.Drawing.Color.White;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 0;
     this.lineShape1.X2 = 411;
     this.lineShape1.Y1 = 52;
     this.lineShape1.Y2 = 52;
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.DimGray;
     this.panel3.Controls.Add(this.pictureBox1);
     this.panel3.Controls.Add(this.softlogiclink);
     this.panel3.Location = new System.Drawing.Point(0, 254);
     this.panel3.Name = "panel3";
     this.panel3.Size = new System.Drawing.Size(413, 32);
     this.panel3.TabIndex = 7;
     //
     // softlogiclink
     //
     this.softlogiclink.ActiveLinkColor = System.Drawing.Color.LightBlue;
     this.softlogiclink.AutoSize = true;
     this.softlogiclink.DisabledLinkColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(35)))));
     this.softlogiclink.Font = new System.Drawing.Font("Agency FB", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.softlogiclink.ForeColor = System.Drawing.SystemColors.ControlText;
     this.softlogiclink.LinkArea = new System.Windows.Forms.LinkArea(0, 0);
     this.softlogiclink.LinkBehavior = System.Windows.Forms.LinkBehavior.NeverUnderline;
     this.softlogiclink.LinkColor = System.Drawing.SystemColors.ControlText;
     this.softlogiclink.Location = new System.Drawing.Point(95, 1);
     this.softlogiclink.Name = "softlogiclink";
     this.softlogiclink.Size = new System.Drawing.Size(221, 28);
     this.softlogiclink.TabIndex = 1;
     this.softlogiclink.Text = " DEVELOPED BY ROBIN (SOFTLOGIC)";
     this.softlogiclink.TextAlign = System.Drawing.ContentAlignment.BottomCenter;
     this.softlogiclink.UseCompatibleTextRendering = true;
     this.softlogiclink.VisitedLinkColor = System.Drawing.SystemColors.ControlText;
     this.softlogiclink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.softlogiclink_LinkClicked);
     //
     // userstatuspic
     //
     this.userstatuspic.Image = global::audiogallery.Properties.Resources.user_remove;
     this.userstatuspic.Location = new System.Drawing.Point(168, 0);
     this.userstatuspic.Name = "userstatuspic";
     this.userstatuspic.Size = new System.Drawing.Size(37, 31);
     this.userstatuspic.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.userstatuspic.TabIndex = 8;
     this.userstatuspic.TabStop = false;
     //
     // loginloadingindicator
     //
     this.loginloadingindicator.Active = false;
     this.loginloadingindicator.Color = System.Drawing.Color.DarkGray;
     this.loginloadingindicator.InnerCircleRadius = 5;
     this.loginloadingindicator.Location = new System.Drawing.Point(168, 1);
     this.loginloadingindicator.Name = "loginloadingindicator";
     this.loginloadingindicator.NumberSpoke = 12;
     this.loginloadingindicator.OuterCircleRadius = 11;
     this.loginloadingindicator.RotationSpeed = 100;
     this.loginloadingindicator.Size = new System.Drawing.Size(37, 31);
     this.loginloadingindicator.SpokeThickness = 2;
     this.loginloadingindicator.StylePreset = MRG.Controls.UI.LoadingCircle.StylePresets.MacOSX;
     this.loginloadingindicator.TabIndex = 9;
     this.loginloadingindicator.Text = "loadingCircle1";
     this.loginloadingindicator.Visible = false;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.DimGray;
     this.panel4.Controls.Add(this.loginloadingindicator);
     this.panel4.Controls.Add(this.userstatuspic);
     this.panel4.Location = new System.Drawing.Point(0, 221);
     this.panel4.Name = "panel4";
     this.panel4.Size = new System.Drawing.Size(413, 32);
     this.panel4.TabIndex = 8;
     //
     // login
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.Color.SlateGray;
     this.ClientSize = new System.Drawing.Size(413, 285);
     this.Controls.Add(this.panel4);
     this.Controls.Add(this.panel3);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.shapeContainer1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "login";
     this.ShowInTaskbar = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Audio Gallery Management";
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.userstatuspic)).EndInit();
     this.panel4.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Ejemplo n.º 35
0
        // Draw 4 Line for create a Vector by Arrow
        //                        
        //                                      O
        //                                       \
        // (Start Point)O-------------------------O (End Point)
        //                                       /
        //                                      O
        //
        public void DrawVectorArrow(Point StartPoint, Point EndPoint, Color color)
        {
            // Public Info
            // Line1 ========================================================================
            Line[CounterLine] = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.Line[CounterLine].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
            this.Line[CounterLine].BorderColor = color;
            this.Line[CounterLine].BorderWidth = 2;
            this.Line[CounterLine].Enabled = false;
            this.Line[CounterLine].X1 = StartPoint.X;
            this.Line[CounterLine].X2 = EndPoint.X;
            this.Line[CounterLine].Y1 = StartPoint.Y;
            this.Line[CounterLine].Y2 = StartPoint.Y;
            this.PointShape.Shapes.Add(Line[CounterLine]);
            CounterLine++; // go to create other line
            //===============================================================================
            // Line2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
            Line[CounterLine] = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.Line[CounterLine].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
            this.Line[CounterLine].BorderColor = color;
            this.Line[CounterLine].BorderWidth = 2;
            this.Line[CounterLine].Enabled = false;
            this.Line[CounterLine].X1 = EndPoint.X;
            this.Line[CounterLine].X2 = EndPoint.X;
            this.Line[CounterLine].Y1 = StartPoint.Y;
            this.Line[CounterLine].Y2 = EndPoint.Y;
            this.PointShape.Shapes.Add(Line[CounterLine]);
            CounterLine++; // go to create other line
            //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

            // Line1 (Start Point) O-------------------------O
            // Line2                                     O   |   O
            // Line3                                      \  |  /
            // Line4                                       \ | /
            //                                               O
            //                                          (End Point)
            #region DOWN Arrow
            if (StartPoint.Y < EndPoint.Y)
            {
                // Line3 ------------------------------------------------------------------------
                Line[CounterLine] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterLine].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterLine].BorderColor = color;
                this.Line[CounterLine].BorderWidth = 2;
                this.Line[CounterLine].Enabled = false;
                this.Line[CounterLine].X1 = EndPoint.X;
                this.Line[CounterLine].X2 = EndPoint.X - 5; // Left
                this.Line[CounterLine].Y1 = EndPoint.Y;
                this.Line[CounterLine].Y2 = EndPoint.Y - 10;
                this.PointShape.Shapes.Add(Line[CounterLine]);
                CounterLine++; // go to create other line
                //-------------------------------------------------------------------------------
                // Line4 ************************************************************************
                Line[CounterLine] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterLine].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterLine].BorderColor = color;
                this.Line[CounterLine].BorderWidth = 2;
                this.Line[CounterLine].Enabled = false;
                this.Line[CounterLine].X1 = EndPoint.X;
                this.Line[CounterLine].X2 = EndPoint.X + 5; // Right
                this.Line[CounterLine].Y1 = EndPoint.Y;
                this.Line[CounterLine].Y2 = EndPoint.Y - 10;
                this.PointShape.Shapes.Add(Line[CounterLine]);
                CounterLine++; // go to create other line
                //*******************************************************************************
            }
            #endregion

            //        (End Point)
            //             O
            // Line1     / | \
            // Line2    /  |  \
            // Line3   O   |   O
            // Line4       O-------------------------O (Start Point)
            #region UP Arrow
            else
            {
                // Line3 ------------------------------------------------------------------------
                Line[CounterLine] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterLine].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterLine].BorderColor = color;
                this.Line[CounterLine].BorderWidth = 2;
                this.Line[CounterLine].Enabled = false;
                this.Line[CounterLine].X1 = EndPoint.X;
                this.Line[CounterLine].X2 = EndPoint.X - 5; // Left
                this.Line[CounterLine].Y1 = EndPoint.Y;
                this.Line[CounterLine].Y2 = EndPoint.Y + 10;
                this.PointShape.Shapes.Add(Line[CounterLine]);
                CounterLine++; // go to create other line
                //-------------------------------------------------------------------------------
                // Line4 ************************************************************************
                Line[CounterLine] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterLine].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterLine].BorderColor = color;
                this.Line[CounterLine].BorderWidth = 2;
                this.Line[CounterLine].Enabled = false;
                this.Line[CounterLine].X1 = EndPoint.X;
                this.Line[CounterLine].X2 = EndPoint.X + 5; // Right
                this.Line[CounterLine].Y1 = EndPoint.Y;
                this.Line[CounterLine].Y2 = EndPoint.Y + 10;
                this.PointShape.Shapes.Add(Line[CounterLine]);
                CounterLine++; // go to create other line
                //*******************************************************************************
            }
            #endregion
        }
Ejemplo n.º 36
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSerialNumber));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.txtRtd = new System.Windows.Forms.TextBox();
			this.txtItem = new System.Windows.Forms.TextBox();
			this.txtCode = new System.Windows.Forms.TextBox();
			this.txtQty = new System.Windows.Forms.TextBox();
			this.cmdUpdate = new System.Windows.Forms.Button();
			this.cmdRemove = new System.Windows.Forms.Button();
			this.lstSerial = new System.Windows.Forms.CheckedListBox();
			this.cmdAdd = new System.Windows.Forms.Button();
			this.txtSerialNbr = new System.Windows.Forms.TextBox();
			this.Label8 = new System.Windows.Forms.Label();
			this.Label7 = new System.Windows.Forms.Label();
			this.Label6 = new System.Windows.Forms.Label();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.Label3 = new System.Windows.Forms.Label();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Label2 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this.picButtons = new System.Windows.Forms.Panel();
			this.Command1 = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.Frame1.SuspendLayout();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Text = "Serial Number Entry";
			this.ClientSize = new System.Drawing.Size(322, 457);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmSerialNumber";
			this.Frame1.Size = new System.Drawing.Size(313, 415);
			this.Frame1.Location = new System.Drawing.Point(4, 40);
			this.Frame1.TabIndex = 2;
			this.Frame1.BackColor = System.Drawing.SystemColors.Control;
			this.Frame1.Enabled = true;
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame1.Visible = true;
			this.Frame1.Padding = new System.Windows.Forms.Padding(0);
			this.Frame1.Name = "Frame1";
			this.txtRtd.AutoSize = false;
			this.txtRtd.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtRtd.Enabled = false;
			this.txtRtd.Size = new System.Drawing.Size(39, 19);
			this.txtRtd.Location = new System.Drawing.Point(262, 76);
			this.txtRtd.TabIndex = 17;
			this.txtRtd.AcceptsReturn = true;
			this.txtRtd.BackColor = System.Drawing.SystemColors.Window;
			this.txtRtd.CausesValidation = true;
			this.txtRtd.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtRtd.HideSelection = true;
			this.txtRtd.ReadOnly = false;
			this.txtRtd.MaxLength = 0;
			this.txtRtd.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtRtd.Multiline = false;
			this.txtRtd.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtRtd.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtRtd.TabStop = true;
			this.txtRtd.Visible = true;
			this.txtRtd.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtRtd.Name = "txtRtd";
			this.txtItem.AutoSize = false;
			this.txtItem.Size = new System.Drawing.Size(195, 19);
			this.txtItem.Location = new System.Drawing.Point(106, 16);
			this.txtItem.TabIndex = 15;
			this.txtItem.AcceptsReturn = true;
			this.txtItem.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtItem.BackColor = System.Drawing.SystemColors.Window;
			this.txtItem.CausesValidation = true;
			this.txtItem.Enabled = true;
			this.txtItem.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtItem.HideSelection = true;
			this.txtItem.ReadOnly = false;
			this.txtItem.MaxLength = 0;
			this.txtItem.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtItem.Multiline = false;
			this.txtItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtItem.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtItem.TabStop = true;
			this.txtItem.Visible = true;
			this.txtItem.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtItem.Name = "txtItem";
			this.txtCode.AutoSize = false;
			this.txtCode.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtCode.Enabled = false;
			this.txtCode.Size = new System.Drawing.Size(39, 19);
			this.txtCode.Location = new System.Drawing.Point(106, 36);
			this.txtCode.TabIndex = 13;
			this.txtCode.AcceptsReturn = true;
			this.txtCode.BackColor = System.Drawing.SystemColors.Window;
			this.txtCode.CausesValidation = true;
			this.txtCode.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCode.HideSelection = true;
			this.txtCode.ReadOnly = false;
			this.txtCode.MaxLength = 0;
			this.txtCode.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCode.Multiline = false;
			this.txtCode.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCode.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtCode.TabStop = true;
			this.txtCode.Visible = true;
			this.txtCode.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtCode.Name = "txtCode";
			this.txtQty.AutoSize = false;
			this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQty.Enabled = false;
			this.txtQty.Size = new System.Drawing.Size(39, 19);
			this.txtQty.Location = new System.Drawing.Point(106, 76);
			this.txtQty.TabIndex = 10;
			this.txtQty.AcceptsReturn = true;
			this.txtQty.BackColor = System.Drawing.SystemColors.Window;
			this.txtQty.CausesValidation = true;
			this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQty.HideSelection = true;
			this.txtQty.ReadOnly = false;
			this.txtQty.MaxLength = 0;
			this.txtQty.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQty.Multiline = false;
			this.txtQty.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQty.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQty.TabStop = true;
			this.txtQty.Visible = true;
			this.txtQty.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtQty.Name = "txtQty";
			this.cmdUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdUpdate.Text = "Update";
			this.cmdUpdate.Size = new System.Drawing.Size(83, 21);
			this.cmdUpdate.Location = new System.Drawing.Point(226, 388);
			this.cmdUpdate.TabIndex = 9;
			this.cmdUpdate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdUpdate.CausesValidation = true;
			this.cmdUpdate.Enabled = true;
			this.cmdUpdate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdUpdate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdUpdate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdUpdate.TabStop = true;
			this.cmdUpdate.Name = "cmdUpdate";
			this.cmdRemove.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdRemove.Text = "Remove";
			this.cmdRemove.Size = new System.Drawing.Size(83, 25);
			this.cmdRemove.Location = new System.Drawing.Point(226, 360);
			this.cmdRemove.TabIndex = 8;
			this.cmdRemove.BackColor = System.Drawing.SystemColors.Control;
			this.cmdRemove.CausesValidation = true;
			this.cmdRemove.Enabled = true;
			this.cmdRemove.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdRemove.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdRemove.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdRemove.TabStop = true;
			this.cmdRemove.Name = "cmdRemove";
			this.lstSerial.Size = new System.Drawing.Size(159, 238);
			this.lstSerial.Location = new System.Drawing.Point(4, 170);
			this.lstSerial.TabIndex = 6;
			this.lstSerial.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lstSerial.BackColor = System.Drawing.SystemColors.Window;
			this.lstSerial.CausesValidation = true;
			this.lstSerial.Enabled = true;
			this.lstSerial.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lstSerial.IntegralHeight = true;
			this.lstSerial.Cursor = System.Windows.Forms.Cursors.Default;
			this.lstSerial.SelectionMode = System.Windows.Forms.SelectionMode.One;
			this.lstSerial.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lstSerial.Sorted = false;
			this.lstSerial.TabStop = true;
			this.lstSerial.Visible = true;
			this.lstSerial.MultiColumn = false;
			this.lstSerial.Name = "lstSerial";
			this.cmdAdd.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdAdd.Text = "Add";
			this.cmdAdd.Size = new System.Drawing.Size(83, 23);
			this.cmdAdd.Location = new System.Drawing.Point(220, 122);
			this.cmdAdd.TabIndex = 5;
			this.cmdAdd.BackColor = System.Drawing.SystemColors.Control;
			this.cmdAdd.CausesValidation = true;
			this.cmdAdd.Enabled = true;
			this.cmdAdd.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdAdd.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdAdd.TabStop = true;
			this.cmdAdd.Name = "cmdAdd";
			this.txtSerialNbr.AutoSize = false;
			this.txtSerialNbr.Size = new System.Drawing.Size(195, 19);
			this.txtSerialNbr.Location = new System.Drawing.Point(106, 98);
			this.txtSerialNbr.TabIndex = 4;
			this.txtSerialNbr.AcceptsReturn = true;
			this.txtSerialNbr.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSerialNbr.BackColor = System.Drawing.SystemColors.Window;
			this.txtSerialNbr.CausesValidation = true;
			this.txtSerialNbr.Enabled = true;
			this.txtSerialNbr.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSerialNbr.HideSelection = true;
			this.txtSerialNbr.ReadOnly = false;
			this.txtSerialNbr.MaxLength = 0;
			this.txtSerialNbr.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSerialNbr.Multiline = false;
			this.txtSerialNbr.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSerialNbr.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSerialNbr.TabStop = true;
			this.txtSerialNbr.Visible = true;
			this.txtSerialNbr.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtSerialNbr.Name = "txtSerialNbr";
			this.Label8.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this.Label8.Text = "All Items that are being returned should be checked";
			this.Label8.Size = new System.Drawing.Size(141, 31);
			this.Label8.Location = new System.Drawing.Point(168, 170);
			this.Label8.TabIndex = 20;
			this.Label8.BackColor = System.Drawing.SystemColors.Control;
			this.Label8.Enabled = true;
			this.Label8.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label8.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label8.UseMnemonic = true;
			this.Label8.Visible = true;
			this.Label8.AutoSize = false;
			this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label8.Name = "Label8";
			this.Label7.Text = "Returned";
			this.Label7.Size = new System.Drawing.Size(59, 17);
			this.Label7.Location = new System.Drawing.Point(202, 78);
			this.Label7.TabIndex = 19;
			this.Label7.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label7.BackColor = System.Drawing.SystemColors.Control;
			this.Label7.Enabled = true;
			this.Label7.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label7.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label7.UseMnemonic = true;
			this.Label7.Visible = true;
			this.Label7.AutoSize = false;
			this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label7.Name = "Label7";
			this.Label6.Text = "Recieved";
			this.Label6.Size = new System.Drawing.Size(59, 17);
			this.Label6.Location = new System.Drawing.Point(44, 78);
			this.Label6.TabIndex = 18;
			this.Label6.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label6.BackColor = System.Drawing.SystemColors.Control;
			this.Label6.Enabled = true;
			this.Label6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label6.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label6.UseMnemonic = true;
			this.Label6.Visible = true;
			this.Label6.AutoSize = false;
			this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label6.Name = "Label6";
			this.Label5.Text = "Item Name";
			this.Label5.Size = new System.Drawing.Size(83, 17);
			this.Label5.Location = new System.Drawing.Point(4, 18);
			this.Label5.TabIndex = 14;
			this.Label5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.Enabled = true;
			this.Label5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.UseMnemonic = true;
			this.Label5.Visible = true;
			this.Label5.AutoSize = false;
			this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label5.Name = "Label5";
			this.Label4.Text = "Item Code";
			this.Label4.Size = new System.Drawing.Size(93, 17);
			this.Label4.Location = new System.Drawing.Point(4, 38);
			this.Label4.TabIndex = 12;
			this.Label4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.Enabled = true;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.UseMnemonic = true;
			this.Label4.Visible = true;
			this.Label4.AutoSize = false;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Name = "Label4";
			this.Label3.Text = "Quantity";
			this.Label3.Size = new System.Drawing.Size(71, 17);
			this.Label3.Location = new System.Drawing.Point(4, 58);
			this.Label3.TabIndex = 11;
			this.Label3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.Enabled = true;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.UseMnemonic = true;
			this.Label3.Visible = true;
			this.Label3.AutoSize = false;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Name = "Label3";
			this.Line1.BorderWidth = 2;
			this.Line1.X1 = 4;
			this.Line1.X2 = 306;
			this.Line1.Y1 = 137;
			this.Line1.Y2 = 137;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this.Label2.Text = "List Of Serial Number";
			this.Label2.Size = new System.Drawing.Size(159, 17);
			this.Label2.Location = new System.Drawing.Point(4, 154);
			this.Label2.TabIndex = 7;
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.Enabled = true;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.UseMnemonic = true;
			this.Label2.Visible = true;
			this.Label2.AutoSize = false;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Name = "Label2";
			this.Label1.Text = "Serial Number";
			this.Label1.Size = new System.Drawing.Size(91, 17);
			this.Label1.Location = new System.Drawing.Point(4, 100);
			this.Label1.TabIndex = 3;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(322, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 0;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command1.Text = "IMPORT >> ";
			this.Command1.Size = new System.Drawing.Size(91, 27);
			this.Command1.Location = new System.Drawing.Point(8, 4);
			this.Command1.TabIndex = 21;
			this.Command1.BackColor = System.Drawing.SystemColors.Control;
			this.Command1.CausesValidation = true;
			this.Command1.Enabled = true;
			this.Command1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command1.TabStop = true;
			this.Command1.Name = "Command1";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "<< BACK ";
			this.cmdBack.Size = new System.Drawing.Size(91, 27);
			this.cmdBack.Location = new System.Drawing.Point(222, 4);
			this.cmdBack.TabIndex = 16;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.TabStop = true;
			this.cmdBack.Name = "cmdBack";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(576, 3);
			this.cmdClose.TabIndex = 1;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			this.Controls.Add(Frame1);
			this.Controls.Add(picButtons);
			this.Frame1.Controls.Add(txtRtd);
			this.Frame1.Controls.Add(txtItem);
			this.Frame1.Controls.Add(txtCode);
			this.Frame1.Controls.Add(txtQty);
			this.Frame1.Controls.Add(cmdUpdate);
			this.Frame1.Controls.Add(cmdRemove);
			this.Frame1.Controls.Add(lstSerial);
			this.Frame1.Controls.Add(cmdAdd);
			this.Frame1.Controls.Add(txtSerialNbr);
			this.Frame1.Controls.Add(Label8);
			this.Frame1.Controls.Add(Label7);
			this.Frame1.Controls.Add(Label6);
			this.Frame1.Controls.Add(Label5);
			this.Frame1.Controls.Add(Label4);
			this.Frame1.Controls.Add(Label3);
			this.ShapeContainer1.Shapes.Add(Line1);
			this.Frame1.Controls.Add(Label2);
			this.Frame1.Controls.Add(Label1);
			this.Frame1.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(Command1);
			this.picButtons.Controls.Add(cmdBack);
			this.picButtons.Controls.Add(cmdClose);
			this.Frame1.ResumeLayout(false);
			this.picButtons.ResumeLayout(false);
			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.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_grupo));
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.gridgrupo = new System.Windows.Forms.DataGridView();
     this.ggrupoid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.ggruponame = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gctacte = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gctactename = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.grupoid = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.gruponame = new System.Windows.Forms.TextBox();
     this.label2 = new System.Windows.Forms.Label();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.btn_busqueda = new DevExpress.XtraEditors.SimpleButton();
     ((System.ComponentModel.ISupportInitialize)(this.gridgrupo)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.panel1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.SuspendLayout();
     //
     // txt_criterio
     //
     this.txt_criterio.Location = new System.Drawing.Point(99, 176);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(278, 20);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // gridgrupo
     //
     this.gridgrupo.AllowUserToAddRows = false;
     this.gridgrupo.AllowUserToDeleteRows = false;
     this.gridgrupo.AllowUserToResizeColumns = false;
     this.gridgrupo.AllowUserToResizeRows = false;
     this.gridgrupo.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle1.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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.gridgrupo.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.gridgrupo.ColumnHeadersHeight = 20;
     this.gridgrupo.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.ggrupoid,
     this.ggruponame,
     this.gctacte,
     this.gctactename,
     this.usuar,
     this.fecre,
     this.feact});
     this.gridgrupo.Location = new System.Drawing.Point(4, 211);
     this.gridgrupo.MultiSelect = false;
     this.gridgrupo.Name = "gridgrupo";
     this.gridgrupo.RowHeadersVisible = false;
     this.gridgrupo.RowHeadersWidth = 10;
     dataGridViewCellStyle2.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridgrupo.RowsDefaultCellStyle = dataGridViewCellStyle2;
     this.gridgrupo.RowTemplate.Height = 20;
     this.gridgrupo.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridgrupo.Size = new System.Drawing.Size(466, 336);
     this.gridgrupo.TabIndex = 19;
     this.gridgrupo.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgrupo_CellClick);
     this.gridgrupo.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgrupo_CellEnter);
     this.gridgrupo.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridgrupo_CellLeave);
     this.gridgrupo.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridgrupo_KeyUp);
     //
     // ggrupoid
     //
     this.ggrupoid.DataPropertyName = "grupoid";
     this.ggrupoid.HeaderText = "Código";
     this.ggrupoid.Name = "ggrupoid";
     this.ggrupoid.Width = 70;
     //
     // ggruponame
     //
     this.ggruponame.DataPropertyName = "gruponame";
     this.ggruponame.HeaderText = "Grupo";
     this.ggruponame.Name = "ggruponame";
     this.ggruponame.Width = 300;
     //
     // gctacte
     //
     this.gctacte.DataPropertyName = "ctacte";
     this.gctacte.HeaderText = "ctacte";
     this.gctacte.Name = "gctacte";
     this.gctacte.Width = 80;
     //
     // gctactename
     //
     this.gctactename.DataPropertyName = "ctactename";
     this.gctactename.HeaderText = "Cliente";
     this.gctactename.Name = "gctactename";
     this.gctactename.Visible = false;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.ctactename);
     this.groupBox1.Controls.Add(this.ctacte);
     this.groupBox1.Controls.Add(this.label3);
     this.groupBox1.Controls.Add(this.grupoid);
     this.groupBox1.Controls.Add(this.label1);
     this.groupBox1.Controls.Add(this.gruponame);
     this.groupBox1.Controls.Add(this.label2);
     this.groupBox1.Location = new System.Drawing.Point(4, 59);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(466, 84);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // ctactename
     //
     this.ctactename.Location = new System.Drawing.Point(141, 56);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(319, 20);
     this.ctactename.TabIndex = 15;
     this.ctactename.Text = "ventas al exterior";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(91, 56);
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(48, 20);
     this.ctacte.TabIndex = 14;
     this.ctacte.Text = "ventas al exterior";
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(17, 59);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(66, 13);
     this.label3.TabIndex = 13;
     this.label3.Text = "Client/Prov.:";
     //
     // grupoid
     //
     this.grupoid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.grupoid.Location = new System.Drawing.Point(91, 14);
     this.grupoid.MaxLength = 3;
     this.grupoid.Name = "grupoid";
     this.grupoid.Size = new System.Drawing.Size(38, 20);
     this.grupoid.TabIndex = 11;
     this.grupoid.Text = "0000";
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(44, 38);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(39, 13);
     this.label1.TabIndex = 10;
     this.label1.Text = "Grupo:";
     //
     // gruponame
     //
     this.gruponame.Location = new System.Drawing.Point(91, 35);
     this.gruponame.Name = "gruponame";
     this.gruponame.Size = new System.Drawing.Size(369, 20);
     this.gruponame.TabIndex = 12;
     this.gruponame.Text = "ventas al exterior";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(40, 17);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(43, 13);
     this.label2.TabIndex = 9;
     this.label2.Text = "Código:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(494, 57);
     this.panel1.TabIndex = 2;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(182, 28);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(82, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "GRUPO";
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(472, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(17, 152);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(69, 13);
     this.labelControl4.TabIndex = 114;
     this.labelControl4.Text = "» Busqueda:";
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 16;
     this.lineShape1.X2 = 411;
     this.lineShape1.Y1 = 167;
     this.lineShape1.Y2 = 167;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(472, 549);
     this.shapeContainer1.TabIndex = 115;
     this.shapeContainer1.TabStop = false;
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(14, 178);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(79, 13);
     this.labelControl1.TabIndex = 116;
     this.labelControl1.Text = "» Descripcion:";
     //
     // btn_busqueda
     //
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Image = ((System.Drawing.Image)(resources.GetObject("btn_busqueda.Image")));
     this.btn_busqueda.Location = new System.Drawing.Point(384, 172);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(75, 33);
     this.btn_busqueda.TabIndex = 117;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // Frm_grupo
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(472, 549);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.labelControl1);
     this.Controls.Add(this.labelControl4);
     this.Controls.Add(this.txt_criterio);
     this.Controls.Add(this.gridgrupo);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_grupo";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Grupo";
     this.Activated += new System.EventHandler(this.Frm_grupo_Activated);
     this.Load += new System.EventHandler(this.Frm_grupo_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_grupo_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridgrupo)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo 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(PatientRooms));
     this.RoomId = new System.Windows.Forms.TextBox();
     this.RoomNumber = new System.Windows.Forms.TextBox();
     this.NumberOfBedsInTheRoom = new System.Windows.Forms.TextBox();
     this.RoomIsAvailable = new System.Windows.Forms.CheckBox();
     this.RoomIsFull = new System.Windows.Forms.CheckBox();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.rectangleShape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.label1 = new System.Windows.Forms.Label();
     this.label2 = new System.Windows.Forms.Label();
     this.FirstPatientID = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.FourthPatientId = new System.Windows.Forms.TextBox();
     this.SecondPatientId = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.FourthPatientName = new System.Windows.Forms.TextBox();
     this.ThirdPatientId = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.ThirdPatientName = new System.Windows.Forms.TextBox();
     this.SecondPatientName = new System.Windows.Forms.TextBox();
     this.FirstPatientName = new System.Windows.Forms.TextBox();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.backToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.label6 = new System.Windows.Forms.Label();
     this.FourthPatientPhoto = new System.Windows.Forms.PictureBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label19 = new System.Windows.Forms.Label();
     this.label20 = new System.Windows.Forms.Label();
     this.label21 = new System.Windows.Forms.Label();
     this.label22 = new System.Windows.Forms.Label();
     this.Vip3PatientName = new System.Windows.Forms.TextBox();
     this.Vip3PatientID = new System.Windows.Forms.TextBox();
     this.Vip3RoomNumber = new System.Windows.Forms.TextBox();
     this.Vip3RoomID = new System.Windows.Forms.TextBox();
     this.label23 = new System.Windows.Forms.Label();
     this.Vip3Photo = new System.Windows.Forms.PictureBox();
     this.label24 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.label26 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label32 = new System.Windows.Forms.Label();
     this.label33 = new System.Windows.Forms.Label();
     this.label34 = new System.Windows.Forms.Label();
     this.label35 = new System.Windows.Forms.Label();
     this.label36 = new System.Windows.Forms.Label();
     this.NumberOfAvailableBeds = new System.Windows.Forms.TextBox();
     this.label37 = new System.Windows.Forms.Label();
     this.label38 = new System.Windows.Forms.Label();
     this.label39 = new System.Windows.Forms.Label();
     this.label40 = new System.Windows.Forms.Label();
     this.FirstPatientPhoto = new System.Windows.Forms.PictureBox();
     this.SecondPatientPhoto = new System.Windows.Forms.PictureBox();
     this.ThirdPatientPhoto = new System.Windows.Forms.PictureBox();
     this.Vip1photo = new System.Windows.Forms.PictureBox();
     this.label12 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label14 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Vip2PatientName = new System.Windows.Forms.TextBox();
     this.Vip2PatientID = new System.Windows.Forms.TextBox();
     this.Vip2RoomNumber = new System.Windows.Forms.TextBox();
     this.Vip2RoomId = new System.Windows.Forms.TextBox();
     this.label7 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.label11 = new System.Windows.Forms.Label();
     this.Vip1PatientName = new System.Windows.Forms.TextBox();
     this.Vip1PatientID = new System.Windows.Forms.TextBox();
     this.Vip1RoomNumber = new System.Windows.Forms.TextBox();
     this.vip1RoomIdText = new System.Windows.Forms.TextBox();
     this.Vip2Photo = new System.Windows.Forms.PictureBox();
     this.menuStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FourthPatientPhoto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip3Photo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.FirstPatientPhoto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.SecondPatientPhoto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThirdPatientPhoto)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip2Photo)).BeginInit();
     this.SuspendLayout();
     //
     // RoomId
     //
     this.RoomId.Location = new System.Drawing.Point(231, 42);
     this.RoomId.Name = "RoomId";
     this.RoomId.Size = new System.Drawing.Size(135, 22);
     this.RoomId.TabIndex = 1;
     //
     // RoomNumber
     //
     this.RoomNumber.Location = new System.Drawing.Point(231, 122);
     this.RoomNumber.Name = "RoomNumber";
     this.RoomNumber.Size = new System.Drawing.Size(135, 22);
     this.RoomNumber.TabIndex = 3;
     //
     // NumberOfBedsInTheRoom
     //
     this.NumberOfBedsInTheRoom.Location = new System.Drawing.Point(231, 207);
     this.NumberOfBedsInTheRoom.Name = "NumberOfBedsInTheRoom";
     this.NumberOfBedsInTheRoom.Size = new System.Drawing.Size(135, 22);
     this.NumberOfBedsInTheRoom.TabIndex = 4;
     //
     // RoomIsAvailable
     //
     this.RoomIsAvailable.AutoSize = true;
     this.RoomIsAvailable.Location = new System.Drawing.Point(203, 285);
     this.RoomIsAvailable.Name = "RoomIsAvailable";
     this.RoomIsAvailable.Size = new System.Drawing.Size(119, 19);
     this.RoomIsAvailable.TabIndex = 7;
     this.RoomIsAvailable.Text = "Room is available";
     this.RoomIsAvailable.UseVisualStyleBackColor = true;
     this.RoomIsAvailable.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
     //
     // RoomIsFull
     //
     this.RoomIsFull.AutoSize = true;
     this.RoomIsFull.Location = new System.Drawing.Point(338, 285);
     this.RoomIsFull.Name = "RoomIsFull";
     this.RoomIsFull.Size = new System.Drawing.Size(89, 19);
     this.RoomIsFull.TabIndex = 8;
     this.RoomIsFull.Text = "Room is full";
     this.RoomIsFull.UseVisualStyleBackColor = true;
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.rectangleShape3,
     this.rectangleShape2,
     this.rectangleShape1,
     this.lineShape2,
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1008, 730);
     this.shapeContainer1.TabIndex = 12;
     this.shapeContainer1.TabStop = false;
     //
     // rectangleShape3
     //
     this.rectangleShape3.Location = new System.Drawing.Point(673, 447);
     this.rectangleShape3.Name = "rectangleShape3";
     this.rectangleShape3.Size = new System.Drawing.Size(329, 304);
     //
     // rectangleShape2
     //
     this.rectangleShape2.Location = new System.Drawing.Point(338, 447);
     this.rectangleShape2.Name = "rectangleShape2";
     this.rectangleShape2.Size = new System.Drawing.Size(329, 304);
     //
     // rectangleShape1
     //
     this.rectangleShape1.Location = new System.Drawing.Point(2, 449);
     this.rectangleShape1.Name = "rectangleShape1";
     this.rectangleShape1.Size = new System.Drawing.Size(329, 304);
     //
     // lineShape2
     //
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.X1 = 430;
     this.lineShape2.X2 = 431;
     this.lineShape2.Y1 = -1;
     this.lineShape2.Y2 = 440;
     //
     // lineShape1
     //
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = -6;
     this.lineShape1.X2 = 1207;
     this.lineShape1.Y1 = 442;
     this.lineShape1.Y2 = 443;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label1.Location = new System.Drawing.Point(711, 39);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(228, 23);
     this.label1.TabIndex = 13;
     this.label1.Text = "Patient details in the room";
     this.label1.Click += new System.EventHandler(this.label1_Click);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(454, 88);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(125, 19);
     this.label2.TabIndex = 14;
     this.label2.Text = "First patient details:";
     this.label2.Click += new System.EventHandler(this.label2_Click);
     //
     // FirstPatientID
     //
     this.FirstPatientID.Location = new System.Drawing.Point(698, 85);
     this.FirstPatientID.Name = "FirstPatientID";
     this.FirstPatientID.Size = new System.Drawing.Size(51, 22);
     this.FirstPatientID.TabIndex = 15;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(454, 153);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(144, 19);
     this.label3.TabIndex = 18;
     this.label3.Text = "Second patient details:";
     //
     // FourthPatientId
     //
     this.FourthPatientId.Location = new System.Drawing.Point(698, 280);
     this.FourthPatientId.Name = "FourthPatientId";
     this.FourthPatientId.Size = new System.Drawing.Size(51, 22);
     this.FourthPatientId.TabIndex = 20;
     //
     // SecondPatientId
     //
     this.SecondPatientId.Location = new System.Drawing.Point(698, 150);
     this.SecondPatientId.Name = "SecondPatientId";
     this.SecondPatientId.Size = new System.Drawing.Size(51, 22);
     this.SecondPatientId.TabIndex = 22;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(454, 216);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(130, 19);
     this.label4.TabIndex = 23;
     this.label4.Text = "Third patient details:";
     //
     // FourthPatientName
     //
     this.FourthPatientName.Location = new System.Drawing.Point(868, 280);
     this.FourthPatientName.Name = "FourthPatientName";
     this.FourthPatientName.Size = new System.Drawing.Size(131, 22);
     this.FourthPatientName.TabIndex = 25;
     //
     // ThirdPatientId
     //
     this.ThirdPatientId.Location = new System.Drawing.Point(698, 216);
     this.ThirdPatientId.Name = "ThirdPatientId";
     this.ThirdPatientId.Size = new System.Drawing.Size(51, 22);
     this.ThirdPatientId.TabIndex = 27;
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(454, 280);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(138, 19);
     this.label5.TabIndex = 28;
     this.label5.Text = "Fourth patient details:";
     //
     // ThirdPatientName
     //
     this.ThirdPatientName.Location = new System.Drawing.Point(868, 216);
     this.ThirdPatientName.Name = "ThirdPatientName";
     this.ThirdPatientName.Size = new System.Drawing.Size(131, 22);
     this.ThirdPatientName.TabIndex = 32;
     //
     // SecondPatientName
     //
     this.SecondPatientName.Location = new System.Drawing.Point(868, 153);
     this.SecondPatientName.Name = "SecondPatientName";
     this.SecondPatientName.Size = new System.Drawing.Size(131, 22);
     this.SecondPatientName.TabIndex = 33;
     this.SecondPatientName.TextChanged += new System.EventHandler(this.textBox11_TextChanged);
     //
     // FirstPatientName
     //
     this.FirstPatientName.Location = new System.Drawing.Point(868, 88);
     this.FirstPatientName.Name = "FirstPatientName";
     this.FirstPatientName.Size = new System.Drawing.Size(131, 22);
     this.FirstPatientName.TabIndex = 34;
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.backToolStripMenuItem,
     this.updateToolStripMenuItem,
     this.exitToolStripMenuItem});
     this.menuStrip1.Location = new System.Drawing.Point(0, 0);
     this.menuStrip1.Name = "menuStrip1";
     this.menuStrip1.Size = new System.Drawing.Size(1008, 24);
     this.menuStrip1.TabIndex = 35;
     this.menuStrip1.Text = "menuStrip1";
     //
     // backToolStripMenuItem
     //
     this.backToolStripMenuItem.Name = "backToolStripMenuItem";
     this.backToolStripMenuItem.Size = new System.Drawing.Size(54, 20);
     this.backToolStripMenuItem.Text = "Return";
     this.backToolStripMenuItem.Click += new System.EventHandler(this.backToolStripMenuItem_Click);
     //
     // updateToolStripMenuItem
     //
     this.updateToolStripMenuItem.Name = "updateToolStripMenuItem";
     this.updateToolStripMenuItem.Size = new System.Drawing.Size(60, 20);
     this.updateToolStripMenuItem.Text = "Update ";
     this.updateToolStripMenuItem.Click += new System.EventHandler(this.updateToolStripMenuItem_Click);
     //
     // exitToolStripMenuItem
     //
     this.exitToolStripMenuItem.Name = "exitToolStripMenuItem";
     this.exitToolStripMenuItem.Size = new System.Drawing.Size(37, 20);
     this.exitToolStripMenuItem.Text = "Exit";
     this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click);
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(3, 455);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(322, 23);
     this.label6.TabIndex = 36;
     this.label6.Text = "VIP Patient Rooms Room number : 1";
     this.label6.Click += new System.EventHandler(this.label6_Click);
     //
     // FourthPatientPhoto
     //
     this.FourthPatientPhoto.Image = ((System.Drawing.Image)(resources.GetObject("FourthPatientPhoto.Image")));
     this.FourthPatientPhoto.Location = new System.Drawing.Point(912, 342);
     this.FourthPatientPhoto.Name = "FourthPatientPhoto";
     this.FourthPatientPhoto.Size = new System.Drawing.Size(84, 99);
     this.FourthPatientPhoto.TabIndex = 47;
     this.FourthPatientPhoto.TabStop = false;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.Location = new System.Drawing.Point(344, 455);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(322, 23);
     this.label17.TabIndex = 53;
     this.label17.Text = "VIP Patient Rooms Room number : 2";
     this.label17.Click += new System.EventHandler(this.label17_Click);
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(687, 530);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(103, 19);
     this.label18.TabIndex = 72;
     this.label18.Text = "Room Number:";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(687, 607);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(94, 19);
     this.label19.TabIndex = 71;
     this.label19.Text = "Patient Name:";
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(687, 496);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(69, 19);
     this.label20.TabIndex = 70;
     this.label20.Text = "Room ID:";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(687, 570);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(73, 19);
     this.label21.TabIndex = 69;
     this.label21.Text = "Patient ID:";
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(687, 675);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(147, 19);
     this.label22.TabIndex = 68;
     this.label22.Text = "Patient personal photo:";
     //
     // Vip3PatientName
     //
     this.Vip3PatientName.Location = new System.Drawing.Point(849, 607);
     this.Vip3PatientName.Name = "Vip3PatientName";
     this.Vip3PatientName.Size = new System.Drawing.Size(135, 22);
     this.Vip3PatientName.TabIndex = 67;
     //
     // Vip3PatientID
     //
     this.Vip3PatientID.Location = new System.Drawing.Point(849, 570);
     this.Vip3PatientID.Name = "Vip3PatientID";
     this.Vip3PatientID.Size = new System.Drawing.Size(135, 22);
     this.Vip3PatientID.TabIndex = 66;
     this.Vip3PatientID.TextChanged += new System.EventHandler(this.textBox22_TextChanged);
     //
     // Vip3RoomNumber
     //
     this.Vip3RoomNumber.Location = new System.Drawing.Point(849, 530);
     this.Vip3RoomNumber.Name = "Vip3RoomNumber";
     this.Vip3RoomNumber.Size = new System.Drawing.Size(135, 22);
     this.Vip3RoomNumber.TabIndex = 65;
     //
     // Vip3RoomID
     //
     this.Vip3RoomID.Location = new System.Drawing.Point(849, 493);
     this.Vip3RoomID.Name = "Vip3RoomID";
     this.Vip3RoomID.Size = new System.Drawing.Size(135, 22);
     this.Vip3RoomID.TabIndex = 64;
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label23.Location = new System.Drawing.Point(677, 455);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(322, 23);
     this.label23.TabIndex = 63;
     this.label23.Text = "VIP Patient Rooms Room number : 3";
     this.label23.Click += new System.EventHandler(this.label23_Click);
     //
     // Vip3Photo
     //
     this.Vip3Photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip3Photo.Image")));
     this.Vip3Photo.Location = new System.Drawing.Point(897, 633);
     this.Vip3Photo.Name = "Vip3Photo";
     this.Vip3Photo.Size = new System.Drawing.Size(87, 97);
     this.Vip3Photo.TabIndex = 74;
     this.Vip3Photo.TabStop = false;
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(599, 88);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(73, 19);
     this.label24.TabIndex = 75;
     this.label24.Text = "Patient ID:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label25.Location = new System.Drawing.Point(604, 153);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(73, 19);
     this.label25.TabIndex = 76;
     this.label25.Text = "Patient ID:";
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label26.Location = new System.Drawing.Point(604, 216);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(73, 19);
     this.label26.TabIndex = 77;
     this.label26.Text = "Patient ID:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label27.Location = new System.Drawing.Point(604, 280);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(73, 19);
     this.label27.TabIndex = 78;
     this.label27.Text = "Patient ID:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label28.Location = new System.Drawing.Point(10, 42);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(69, 19);
     this.label28.TabIndex = 79;
     this.label28.Text = "Room ID:";
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label29.Location = new System.Drawing.Point(12, 125);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(103, 19);
     this.label29.TabIndex = 80;
     this.label29.Text = "Room Number:";
     //
     // label30
     //
     this.label30.AutoSize = true;
     this.label30.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label30.Location = new System.Drawing.Point(12, 207);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(183, 19);
     this.label30.TabIndex = 81;
     this.label30.Text = "Number of beds in the room:";
     //
     // label31
     //
     this.label31.AutoSize = true;
     this.label31.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label31.Location = new System.Drawing.Point(12, 283);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(148, 19);
     this.label31.TabIndex = 82;
     this.label31.Text = "Availability of the room";
     //
     // label32
     //
     this.label32.AutoSize = true;
     this.label32.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label32.Location = new System.Drawing.Point(12, 363);
     this.label32.Name = "label32";
     this.label32.Size = new System.Drawing.Size(159, 19);
     this.label32.TabIndex = 83;
     this.label32.Text = "Number of Avilable beds";
     //
     // label33
     //
     this.label33.AutoSize = true;
     this.label33.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label33.Location = new System.Drawing.Point(768, 88);
     this.label33.Name = "label33";
     this.label33.Size = new System.Drawing.Size(94, 19);
     this.label33.TabIndex = 84;
     this.label33.Text = "Patient Name:";
     this.label33.Click += new System.EventHandler(this.label33_Click);
     //
     // label34
     //
     this.label34.AutoSize = true;
     this.label34.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label34.Location = new System.Drawing.Point(768, 153);
     this.label34.Name = "label34";
     this.label34.Size = new System.Drawing.Size(94, 19);
     this.label34.TabIndex = 85;
     this.label34.Text = "Patient Name:";
     //
     // label35
     //
     this.label35.AutoSize = true;
     this.label35.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label35.Location = new System.Drawing.Point(768, 216);
     this.label35.Name = "label35";
     this.label35.Size = new System.Drawing.Size(94, 19);
     this.label35.TabIndex = 86;
     this.label35.Text = "Patient Name:";
     //
     // label36
     //
     this.label36.AutoSize = true;
     this.label36.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label36.Location = new System.Drawing.Point(768, 280);
     this.label36.Name = "label36";
     this.label36.Size = new System.Drawing.Size(94, 19);
     this.label36.TabIndex = 87;
     this.label36.Text = "Patient Name:";
     //
     // NumberOfAvailableBeds
     //
     this.NumberOfAvailableBeds.Location = new System.Drawing.Point(231, 363);
     this.NumberOfAvailableBeds.Name = "NumberOfAvailableBeds";
     this.NumberOfAvailableBeds.Size = new System.Drawing.Size(135, 22);
     this.NumberOfAvailableBeds.TabIndex = 10;
     //
     // label37
     //
     this.label37.AutoSize = true;
     this.label37.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label37.Location = new System.Drawing.Point(876, 320);
     this.label37.Name = "label37";
     this.label37.Size = new System.Drawing.Size(132, 19);
     this.label37.TabIndex = 88;
     this.label37.Text = "Fourth patient photo";
     //
     // label38
     //
     this.label38.AutoSize = true;
     this.label38.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label38.Location = new System.Drawing.Point(582, 320);
     this.label38.Name = "label38";
     this.label38.Size = new System.Drawing.Size(138, 19);
     this.label38.TabIndex = 89;
     this.label38.Text = "Second patient photo";
     this.label38.Click += new System.EventHandler(this.label38_Click);
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.Location = new System.Drawing.Point(438, 320);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(119, 19);
     this.label39.TabIndex = 90;
     this.label39.Text = "First patient photo";
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.Location = new System.Drawing.Point(738, 320);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(124, 19);
     this.label40.TabIndex = 91;
     this.label40.Text = "Third patient photo";
     this.label40.Click += new System.EventHandler(this.label40_Click);
     //
     // FirstPatientPhoto
     //
     this.FirstPatientPhoto.Image = ((System.Drawing.Image)(resources.GetObject("FirstPatientPhoto.Image")));
     this.FirstPatientPhoto.Location = new System.Drawing.Point(458, 338);
     this.FirstPatientPhoto.Name = "FirstPatientPhoto";
     this.FirstPatientPhoto.Size = new System.Drawing.Size(77, 99);
     this.FirstPatientPhoto.TabIndex = 92;
     this.FirstPatientPhoto.TabStop = false;
     //
     // SecondPatientPhoto
     //
     this.SecondPatientPhoto.Image = ((System.Drawing.Image)(resources.GetObject("SecondPatientPhoto.Image")));
     this.SecondPatientPhoto.Location = new System.Drawing.Point(606, 338);
     this.SecondPatientPhoto.Name = "SecondPatientPhoto";
     this.SecondPatientPhoto.Size = new System.Drawing.Size(82, 99);
     this.SecondPatientPhoto.TabIndex = 93;
     this.SecondPatientPhoto.TabStop = false;
     this.SecondPatientPhoto.Click += new System.EventHandler(this.pictureBox5_Click);
     //
     // ThirdPatientPhoto
     //
     this.ThirdPatientPhoto.Image = ((System.Drawing.Image)(resources.GetObject("ThirdPatientPhoto.Image")));
     this.ThirdPatientPhoto.Location = new System.Drawing.Point(746, 342);
     this.ThirdPatientPhoto.Name = "ThirdPatientPhoto";
     this.ThirdPatientPhoto.Size = new System.Drawing.Size(85, 95);
     this.ThirdPatientPhoto.TabIndex = 94;
     this.ThirdPatientPhoto.TabStop = false;
     //
     // Vip1photo
     //
     this.Vip1photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip1photo.Image")));
     this.Vip1photo.Location = new System.Drawing.Point(231, 644);
     this.Vip1photo.Name = "Vip1photo";
     this.Vip1photo.Size = new System.Drawing.Size(81, 88);
     this.Vip1photo.TabIndex = 95;
     this.Vip1photo.TabStop = false;
     this.Vip1photo.Click += new System.EventHandler(this.pictureBox7_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(344, 530);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(103, 19);
     this.label12.TabIndex = 104;
     this.label12.Text = "Room Number:";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.Location = new System.Drawing.Point(344, 607);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(94, 19);
     this.label13.TabIndex = 103;
     this.label13.Text = "Patient Name:";
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.Location = new System.Drawing.Point(344, 496);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(69, 19);
     this.label14.TabIndex = 102;
     this.label14.Text = "Room ID:";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.Location = new System.Drawing.Point(344, 570);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(73, 19);
     this.label15.TabIndex = 101;
     this.label15.Text = "Patient ID:";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(344, 675);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(147, 19);
     this.label16.TabIndex = 100;
     this.label16.Text = "Patient personal photo:";
     //
     // Vip2PatientName
     //
     this.Vip2PatientName.Location = new System.Drawing.Point(523, 607);
     this.Vip2PatientName.Name = "Vip2PatientName";
     this.Vip2PatientName.Size = new System.Drawing.Size(135, 22);
     this.Vip2PatientName.TabIndex = 99;
     //
     // Vip2PatientID
     //
     this.Vip2PatientID.Location = new System.Drawing.Point(523, 570);
     this.Vip2PatientID.Name = "Vip2PatientID";
     this.Vip2PatientID.Size = new System.Drawing.Size(135, 22);
     this.Vip2PatientID.TabIndex = 98;
     //
     // Vip2RoomNumber
     //
     this.Vip2RoomNumber.Location = new System.Drawing.Point(523, 527);
     this.Vip2RoomNumber.Name = "Vip2RoomNumber";
     this.Vip2RoomNumber.Size = new System.Drawing.Size(135, 22);
     this.Vip2RoomNumber.TabIndex = 97;
     //
     // Vip2RoomId
     //
     this.Vip2RoomId.Location = new System.Drawing.Point(523, 493);
     this.Vip2RoomId.Name = "Vip2RoomId";
     this.Vip2RoomId.Size = new System.Drawing.Size(135, 22);
     this.Vip2RoomId.TabIndex = 96;
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(12, 530);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(103, 19);
     this.label7.TabIndex = 113;
     this.label7.Text = "Room Number:";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(12, 607);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(94, 19);
     this.label8.TabIndex = 112;
     this.label8.Text = "Patient Name:";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.Location = new System.Drawing.Point(12, 496);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(69, 19);
     this.label9.TabIndex = 111;
     this.label9.Text = "Room ID:";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(12, 570);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(73, 19);
     this.label10.TabIndex = 110;
     this.label10.Text = "Patient ID:";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(12, 675);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(147, 19);
     this.label11.TabIndex = 109;
     this.label11.Text = "Patient personal photo:";
     //
     // Vip1PatientName
     //
     this.Vip1PatientName.Location = new System.Drawing.Point(177, 607);
     this.Vip1PatientName.Name = "Vip1PatientName";
     this.Vip1PatientName.Size = new System.Drawing.Size(135, 22);
     this.Vip1PatientName.TabIndex = 108;
     //
     // Vip1PatientID
     //
     this.Vip1PatientID.Location = new System.Drawing.Point(177, 567);
     this.Vip1PatientID.Name = "Vip1PatientID";
     this.Vip1PatientID.Size = new System.Drawing.Size(135, 22);
     this.Vip1PatientID.TabIndex = 107;
     //
     // Vip1RoomNumber
     //
     this.Vip1RoomNumber.Location = new System.Drawing.Point(177, 527);
     this.Vip1RoomNumber.Name = "Vip1RoomNumber";
     this.Vip1RoomNumber.Size = new System.Drawing.Size(135, 22);
     this.Vip1RoomNumber.TabIndex = 106;
     this.Vip1RoomNumber.TextChanged += new System.EventHandler(this.textBox15_TextChanged);
     //
     // vip1RoomIdText
     //
     this.vip1RoomIdText.Location = new System.Drawing.Point(177, 493);
     this.vip1RoomIdText.Name = "vip1RoomIdText";
     this.vip1RoomIdText.Size = new System.Drawing.Size(135, 22);
     this.vip1RoomIdText.TabIndex = 105;
     //
     // Vip2Photo
     //
     this.Vip2Photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip2Photo.Image")));
     this.Vip2Photo.Location = new System.Drawing.Point(537, 635);
     this.Vip2Photo.Name = "Vip2Photo";
     this.Vip2Photo.Size = new System.Drawing.Size(85, 88);
     this.Vip2Photo.TabIndex = 114;
     this.Vip2Photo.TabStop = false;
     //
     // PatientRooms
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1008, 730);
     this.Controls.Add(this.Vip2Photo);
     this.Controls.Add(this.label7);
     this.Controls.Add(this.label8);
     this.Controls.Add(this.label9);
     this.Controls.Add(this.label10);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.Vip1PatientName);
     this.Controls.Add(this.Vip1PatientID);
     this.Controls.Add(this.Vip1RoomNumber);
     this.Controls.Add(this.vip1RoomIdText);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.label13);
     this.Controls.Add(this.label14);
     this.Controls.Add(this.label15);
     this.Controls.Add(this.label16);
     this.Controls.Add(this.Vip2PatientName);
     this.Controls.Add(this.Vip2PatientID);
     this.Controls.Add(this.Vip2RoomNumber);
     this.Controls.Add(this.Vip2RoomId);
     this.Controls.Add(this.Vip1photo);
     this.Controls.Add(this.ThirdPatientPhoto);
     this.Controls.Add(this.SecondPatientPhoto);
     this.Controls.Add(this.FirstPatientPhoto);
     this.Controls.Add(this.label40);
     this.Controls.Add(this.label39);
     this.Controls.Add(this.label38);
     this.Controls.Add(this.label37);
     this.Controls.Add(this.label36);
     this.Controls.Add(this.label35);
     this.Controls.Add(this.label34);
     this.Controls.Add(this.label33);
     this.Controls.Add(this.label32);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.label29);
     this.Controls.Add(this.label28);
     this.Controls.Add(this.label27);
     this.Controls.Add(this.label26);
     this.Controls.Add(this.label25);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.Vip3Photo);
     this.Controls.Add(this.label18);
     this.Controls.Add(this.label19);
     this.Controls.Add(this.label20);
     this.Controls.Add(this.label21);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.Vip3PatientName);
     this.Controls.Add(this.Vip3PatientID);
     this.Controls.Add(this.Vip3RoomNumber);
     this.Controls.Add(this.Vip3RoomID);
     this.Controls.Add(this.label23);
     this.Controls.Add(this.label17);
     this.Controls.Add(this.FourthPatientPhoto);
     this.Controls.Add(this.label6);
     this.Controls.Add(this.FirstPatientName);
     this.Controls.Add(this.SecondPatientName);
     this.Controls.Add(this.ThirdPatientName);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.ThirdPatientId);
     this.Controls.Add(this.FourthPatientName);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.SecondPatientId);
     this.Controls.Add(this.FourthPatientId);
     this.Controls.Add(this.label3);
     this.Controls.Add(this.FirstPatientID);
     this.Controls.Add(this.label2);
     this.Controls.Add(this.label1);
     this.Controls.Add(this.NumberOfAvailableBeds);
     this.Controls.Add(this.RoomIsFull);
     this.Controls.Add(this.RoomIsAvailable);
     this.Controls.Add(this.NumberOfBedsInTheRoom);
     this.Controls.Add(this.RoomNumber);
     this.Controls.Add(this.RoomId);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.shapeContainer1);
     this.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "PatientRooms";
     this.Text = "Patients Rooms";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.FourthPatientPhoto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip3Photo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.FirstPatientPhoto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.SecondPatientPhoto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.ThirdPatientPhoto)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip2Photo)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 39
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockPricing));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.txttemphold = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdNext = new System.Windows.Forms.Button();
			this.cmdbarcode = new System.Windows.Forms.Button();
			this.cmdHistory = new System.Windows.Forms.Button();
			this.cmdDetails = new System.Windows.Forms.Button();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdUndo = new System.Windows.Forms.Button();
			this.cmbChannel = new System.Windows.Forms.ComboBox();
			this._frmItem_0 = new System.Windows.Forms.GroupBox();
			this._picLine_0 = new System.Windows.Forms.PictureBox();
			this._txtCost_0 = new System.Windows.Forms.TextBox();
			this._txtProp_0 = new System.Windows.Forms.TextBox();
			this._txtPrice_0 = new System.Windows.Forms.TextBox();
			this._txtVariableCost_0 = new System.Windows.Forms.TextBox();
			this._lblGPActual_0 = new System.Windows.Forms.Label();
			this._lblGP_0 = new System.Windows.Forms.Label();
			this._lblSection_0 = new System.Windows.Forms.Label();
			this._lnProfit_0 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this._lblProfitPrecent_0 = new System.Windows.Forms.Label();
			this._lblProfitAmount_0 = new System.Windows.Forms.Label();
			this._lblMatrix_0 = new System.Windows.Forms.Label();
			this._lblDepositUnit_0 = new System.Windows.Forms.Label();
			this._lblDepositPack_0 = new System.Windows.Forms.Label();
			this._lblVat_0 = new System.Windows.Forms.Label();
			this._lblMarkup_0 = new System.Windows.Forms.Label();
			this._lblPrice_0 = new System.Windows.Forms.Label();
			this._lblPercent_0 = new System.Windows.Forms.Label();
			this.ilGeneral = new System.Windows.Forms.ImageList();
			this._lbl_17 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblPriceSet = new System.Windows.Forms.Label();
			this._lbl_16 = new System.Windows.Forms.Label();
			this._lbl_15 = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_7 = new System.Windows.Forms.Label();
			this.lblStockItemName = new System.Windows.Forms.Label();
			this.lblPricingGroupRule = new System.Windows.Forms.Label();
			this.lblPricingGroup = new System.Windows.Forms.Label();
			this._lbl_18 = 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._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblVatName = new System.Windows.Forms.Label();
			this._lbl_8 = new System.Windows.Forms.Label();
			this._lbl_9 = new System.Windows.Forms.Label();
			this._lbl_10 = new System.Windows.Forms.Label();
			this._lbl_11 = new System.Windows.Forms.Label();
			this._lbl_12 = new System.Windows.Forms.Label();
			this._lbl_13 = new System.Windows.Forms.Label();
			this._lbl_14 = new System.Windows.Forms.Label();
			this._Line1_3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Line1 = new LineShapeArray(components);
			//Me.frmItem = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblDepositPack = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblDepositUnit = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblGP = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblGPActual = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblMarkup = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblMatrix = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblPercent = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblPrice = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblProfitAmount = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblProfitPrecent = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblSection = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblVat = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.lnProfit = new LineShapeArray(components);
			//Me.picLine = New Microsoft.VisualBasic.Compatibility.VB6.PictureBoxArray(components)
			//Me.txtCost = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//'Me.txtPrice = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//M() 'e.txtProp = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//M() 'e.txtVariableCost = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.picButtons.SuspendLayout();
			this._frmItem_0.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.Line1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.frmItem, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblDepositPack, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblDepositUnit, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblGP, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblGPActual, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblMarkup, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblMatrix, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblPercent, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblPrice, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblProfitAmount, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblProfitPrecent, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblSection, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblVat, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.lnProfit).BeginInit();
			//CType(Me.picLine, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtCost, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtPrice, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtProp, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtVariableCost, System.ComponentModel.ISupportInitialize).BeginInit()
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Text = "Stock Item Pricing";
			this.ClientSize = new System.Drawing.Size(711, 565);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.Icon = (System.Drawing.Icon)resources.GetObject("frmStockPricing.Icon");
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockPricing";
			this.txttemphold.AutoSize = false;
			this.txttemphold.Size = new System.Drawing.Size(73, 21);
			this.txttemphold.Location = new System.Drawing.Point(392, 574);
			this.txttemphold.TabIndex = 48;
			this.txttemphold.AcceptsReturn = true;
			this.txttemphold.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txttemphold.BackColor = System.Drawing.SystemColors.Window;
			this.txttemphold.CausesValidation = true;
			this.txttemphold.Enabled = true;
			this.txttemphold.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txttemphold.HideSelection = true;
			this.txttemphold.ReadOnly = false;
			this.txttemphold.MaxLength = 0;
			this.txttemphold.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txttemphold.Multiline = false;
			this.txttemphold.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txttemphold.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txttemphold.TabStop = true;
			this.txttemphold.Visible = true;
			this.txttemphold.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txttemphold.Name = "txttemphold";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(711, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 38;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Next Item >";
			this.cmdNext.Size = new System.Drawing.Size(67, 29);
			this.cmdNext.Location = new System.Drawing.Point(320, 4);
			this.cmdNext.TabIndex = 50;
			this.cmdNext.TabStop = false;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.Name = "cmdNext";
			this.cmdbarcode.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdbarcode.Text = "&Barcode";
			this.cmdbarcode.Size = new System.Drawing.Size(77, 31);
			this.cmdbarcode.Location = new System.Drawing.Point(86, 2);
			this.cmdbarcode.TabIndex = 47;
			this.cmdbarcode.TabStop = false;
			this.cmdbarcode.BackColor = System.Drawing.SystemColors.Control;
			this.cmdbarcode.CausesValidation = true;
			this.cmdbarcode.Enabled = true;
			this.cmdbarcode.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdbarcode.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdbarcode.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdbarcode.Name = "cmdbarcode";
			this.cmdHistory.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdHistory.Text = "&History";
			this.cmdHistory.Size = new System.Drawing.Size(67, 29);
			this.cmdHistory.Location = new System.Drawing.Point(248, 4);
			this.cmdHistory.TabIndex = 45;
			this.cmdHistory.TabStop = false;
			this.cmdHistory.BackColor = System.Drawing.SystemColors.Control;
			this.cmdHistory.CausesValidation = true;
			this.cmdHistory.Enabled = true;
			this.cmdHistory.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdHistory.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdHistory.Name = "cmdHistory";
			this.cmdDetails.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDetails.Text = "&Details";
			this.cmdDetails.Size = new System.Drawing.Size(73, 29);
			this.cmdDetails.Location = new System.Drawing.Point(168, 4);
			this.cmdDetails.TabIndex = 41;
			this.cmdDetails.TabStop = false;
			this.cmdDetails.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDetails.CausesValidation = true;
			this.cmdDetails.Enabled = true;
			this.cmdDetails.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDetails.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDetails.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDetails.Name = "cmdDetails";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(73, 29);
			this.cmdExit.Location = new System.Drawing.Point(512, 2);
			this.cmdExit.TabIndex = 40;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			this.cmdUndo.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdUndo.Text = "&Undo";
			this.cmdUndo.Size = new System.Drawing.Size(73, 29);
			this.cmdUndo.Location = new System.Drawing.Point(5, 3);
			this.cmdUndo.TabIndex = 39;
			this.cmdUndo.TabStop = false;
			this.cmdUndo.BackColor = System.Drawing.SystemColors.Control;
			this.cmdUndo.CausesValidation = true;
			this.cmdUndo.Enabled = true;
			this.cmdUndo.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdUndo.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdUndo.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdUndo.Name = "cmdUndo";
			this.cmbChannel.Size = new System.Drawing.Size(160, 21);
			this.cmbChannel.Location = new System.Drawing.Point(87, 66);
			this.cmbChannel.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbChannel.TabIndex = 0;
			this.cmbChannel.BackColor = System.Drawing.SystemColors.Window;
			this.cmbChannel.CausesValidation = true;
			this.cmbChannel.Enabled = true;
			this.cmbChannel.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbChannel.IntegralHeight = true;
			this.cmbChannel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbChannel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbChannel.Sorted = false;
			this.cmbChannel.TabStop = true;
			this.cmbChannel.Visible = true;
			this.cmbChannel.Name = "cmbChannel";
			this._frmItem_0.Text = "Frame1";
			this._frmItem_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmItem_0.Size = new System.Drawing.Size(100, 355);
			this._frmItem_0.Location = new System.Drawing.Point(87, 159);
			this._frmItem_0.TabIndex = 5;
			this._frmItem_0.BackColor = System.Drawing.SystemColors.Control;
			this._frmItem_0.Enabled = true;
			this._frmItem_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmItem_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmItem_0.Visible = true;
			this._frmItem_0.Padding = new System.Windows.Forms.Padding(0);
			this._frmItem_0.Name = "_frmItem_0";
			this._picLine_0.BackColor = System.Drawing.Color.FromArgb(0, 0, 192);
			this._picLine_0.Size = new System.Drawing.Size(94, 7);
			this._picLine_0.Location = new System.Drawing.Point(3, 189);
			this._picLine_0.TabIndex = 37;
			this._picLine_0.TabStop = false;
			this._picLine_0.Dock = System.Windows.Forms.DockStyle.None;
			this._picLine_0.CausesValidation = true;
			this._picLine_0.Enabled = true;
			this._picLine_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._picLine_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._picLine_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._picLine_0.Visible = true;
			this._picLine_0.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Normal;
			this._picLine_0.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._picLine_0.Name = "_picLine_0";
			this._txtCost_0.AutoSize = false;
			this._txtCost_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtCost_0.Size = new System.Drawing.Size(88, 19);
			this._txtCost_0.Location = new System.Drawing.Point(6, 18);
			this._txtCost_0.TabIndex = 1;
			this._txtCost_0.Text = "9,999.99";
			this._txtCost_0.AcceptsReturn = true;
			this._txtCost_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtCost_0.CausesValidation = true;
			this._txtCost_0.Enabled = true;
			this._txtCost_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtCost_0.HideSelection = true;
			this._txtCost_0.ReadOnly = false;
			this._txtCost_0.MaxLength = 0;
			this._txtCost_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtCost_0.Multiline = false;
			this._txtCost_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtCost_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtCost_0.TabStop = true;
			this._txtCost_0.Visible = true;
			this._txtCost_0.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._txtCost_0.Name = "_txtCost_0";
			this._txtProp_0.AutoSize = false;
			this._txtProp_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtProp_0.Size = new System.Drawing.Size(88, 19);
			this._txtProp_0.Location = new System.Drawing.Point(6, 54);
			this._txtProp_0.TabIndex = 2;
			this._txtProp_0.AcceptsReturn = true;
			this._txtProp_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtProp_0.CausesValidation = true;
			this._txtProp_0.Enabled = true;
			this._txtProp_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtProp_0.HideSelection = true;
			this._txtProp_0.ReadOnly = false;
			this._txtProp_0.MaxLength = 0;
			this._txtProp_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtProp_0.Multiline = false;
			this._txtProp_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtProp_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtProp_0.TabStop = true;
			this._txtProp_0.Visible = true;
			this._txtProp_0.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._txtProp_0.Name = "_txtProp_0";
			this._txtPrice_0.AutoSize = false;
			this._txtPrice_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtPrice_0.Size = new System.Drawing.Size(88, 19);
			this._txtPrice_0.Location = new System.Drawing.Point(6, 150);
			this._txtPrice_0.TabIndex = 3;
			this._txtPrice_0.AcceptsReturn = true;
			this._txtPrice_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtPrice_0.CausesValidation = true;
			this._txtPrice_0.Enabled = true;
			this._txtPrice_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtPrice_0.HideSelection = true;
			this._txtPrice_0.ReadOnly = false;
			this._txtPrice_0.MaxLength = 0;
			this._txtPrice_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtPrice_0.Multiline = false;
			this._txtPrice_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtPrice_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtPrice_0.TabStop = true;
			this._txtPrice_0.Visible = true;
			this._txtPrice_0.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._txtPrice_0.Name = "_txtPrice_0";
			this._txtVariableCost_0.AutoSize = false;
			this._txtVariableCost_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtVariableCost_0.Enabled = false;
			this._txtVariableCost_0.Size = new System.Drawing.Size(88, 19);
			this._txtVariableCost_0.Location = new System.Drawing.Point(6, 243);
			this._txtVariableCost_0.TabIndex = 4;
			this._txtVariableCost_0.TabStop = false;
			this._txtVariableCost_0.Text = "42.00";
			this._txtVariableCost_0.AcceptsReturn = true;
			this._txtVariableCost_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtVariableCost_0.CausesValidation = true;
			this._txtVariableCost_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtVariableCost_0.HideSelection = true;
			this._txtVariableCost_0.ReadOnly = false;
			this._txtVariableCost_0.MaxLength = 0;
			this._txtVariableCost_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtVariableCost_0.Multiline = false;
			this._txtVariableCost_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtVariableCost_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtVariableCost_0.Visible = true;
			this._txtVariableCost_0.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._txtVariableCost_0.Name = "_txtVariableCost_0";
			this._lblGPActual_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblGPActual_0.BackColor = System.Drawing.Color.FromArgb(255, 224, 192);
			this._lblGPActual_0.Text = "lblGPActual";
			this._lblGPActual_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblGPActual_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblGPActual_0.Size = new System.Drawing.Size(88, 16);
			this._lblGPActual_0.Location = new System.Drawing.Point(6, 300);
			this._lblGPActual_0.TabIndex = 46;
			this._lblGPActual_0.Enabled = true;
			this._lblGPActual_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblGPActual_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblGPActual_0.UseMnemonic = true;
			this._lblGPActual_0.Visible = true;
			this._lblGPActual_0.AutoSize = false;
			this._lblGPActual_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblGPActual_0.Name = "_lblGPActual_0";
			this._lblGP_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblGP_0.BackColor = System.Drawing.Color.FromArgb(255, 224, 192);
			this._lblGP_0.Text = "lblGP";
			this._lblGP_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblGP_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblGP_0.Size = new System.Drawing.Size(88, 16);
			this._lblGP_0.Location = new System.Drawing.Point(6, 216);
			this._lblGP_0.TabIndex = 43;
			this._lblGP_0.Enabled = true;
			this._lblGP_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblGP_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblGP_0.UseMnemonic = true;
			this._lblGP_0.Visible = true;
			this._lblGP_0.AutoSize = false;
			this._lblGP_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblGP_0.Name = "_lblGP_0";
			this._lblSection_0.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this._lblSection_0.BackColor = System.Drawing.Color.Red;
			this._lblSection_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblSection_0.Size = new System.Drawing.Size(88, 34);
			this._lblSection_0.Location = new System.Drawing.Point(6, 318);
			this._lblSection_0.TabIndex = 36;
			this._lblSection_0.Enabled = true;
			this._lblSection_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblSection_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblSection_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblSection_0.UseMnemonic = true;
			this._lblSection_0.Visible = true;
			this._lblSection_0.AutoSize = false;
			this._lblSection_0.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblSection_0.Name = "_lblSection_0";
			this._lnProfit_0.X1 = 93;
			this._lnProfit_0.X2 = 0;
			this._lnProfit_0.Y1 = 224;
			this._lnProfit_0.Y2 = 224;
			this._lnProfit_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._lnProfit_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._lnProfit_0.BorderWidth = 1;
			this._lnProfit_0.Visible = true;
			this._lnProfit_0.Name = "_lnProfit_0";
			this._lblProfitPrecent_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblProfitPrecent_0.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._lblProfitPrecent_0.Text = "lblProfitPrecent";
			this._lblProfitPrecent_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblProfitPrecent_0.ForeColor = System.Drawing.Color.Black;
			this._lblProfitPrecent_0.Size = new System.Drawing.Size(88, 16);
			this._lblProfitPrecent_0.Location = new System.Drawing.Point(6, 282);
			this._lblProfitPrecent_0.TabIndex = 28;
			this._lblProfitPrecent_0.Enabled = true;
			this._lblProfitPrecent_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblProfitPrecent_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblProfitPrecent_0.UseMnemonic = true;
			this._lblProfitPrecent_0.Visible = true;
			this._lblProfitPrecent_0.AutoSize = false;
			this._lblProfitPrecent_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblProfitPrecent_0.Name = "_lblProfitPrecent_0";
			this._lblProfitAmount_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblProfitAmount_0.BackColor = System.Drawing.Color.FromArgb(255, 192, 128);
			this._lblProfitAmount_0.Text = "lblProfitAmount";
			this._lblProfitAmount_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblProfitAmount_0.ForeColor = System.Drawing.Color.Black;
			this._lblProfitAmount_0.Size = new System.Drawing.Size(88, 16);
			this._lblProfitAmount_0.Location = new System.Drawing.Point(6, 264);
			this._lblProfitAmount_0.TabIndex = 27;
			this._lblProfitAmount_0.Enabled = true;
			this._lblProfitAmount_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblProfitAmount_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblProfitAmount_0.UseMnemonic = true;
			this._lblProfitAmount_0.Visible = true;
			this._lblProfitAmount_0.AutoSize = false;
			this._lblProfitAmount_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblProfitAmount_0.Name = "_lblProfitAmount_0";
			this._lblMatrix_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblMatrix_0.Text = "30.00";
			this._lblMatrix_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblMatrix_0.Size = new System.Drawing.Size(88, 13);
			this._lblMatrix_0.Location = new System.Drawing.Point(6, 39);
			this._lblMatrix_0.TabIndex = 26;
			this._lblMatrix_0.BackColor = System.Drawing.SystemColors.Control;
			this._lblMatrix_0.Enabled = true;
			this._lblMatrix_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblMatrix_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblMatrix_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblMatrix_0.UseMnemonic = true;
			this._lblMatrix_0.Visible = true;
			this._lblMatrix_0.AutoSize = false;
			this._lblMatrix_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblMatrix_0.Name = "_lblMatrix_0";
			this._lblDepositUnit_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblDepositUnit_0.Text = "10.00";
			this._lblDepositUnit_0.Size = new System.Drawing.Size(88, 13);
			this._lblDepositUnit_0.Location = new System.Drawing.Point(6, 78);
			this._lblDepositUnit_0.TabIndex = 25;
			this._lblDepositUnit_0.BackColor = System.Drawing.SystemColors.Control;
			this._lblDepositUnit_0.Enabled = true;
			this._lblDepositUnit_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblDepositUnit_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblDepositUnit_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblDepositUnit_0.UseMnemonic = true;
			this._lblDepositUnit_0.Visible = true;
			this._lblDepositUnit_0.AutoSize = false;
			this._lblDepositUnit_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblDepositUnit_0.Name = "_lblDepositUnit_0";
			this._lblDepositPack_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblDepositPack_0.Text = "15.00";
			this._lblDepositPack_0.Size = new System.Drawing.Size(88, 13);
			this._lblDepositPack_0.Location = new System.Drawing.Point(6, 96);
			this._lblDepositPack_0.TabIndex = 24;
			this._lblDepositPack_0.BackColor = System.Drawing.SystemColors.Control;
			this._lblDepositPack_0.Enabled = true;
			this._lblDepositPack_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblDepositPack_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblDepositPack_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblDepositPack_0.UseMnemonic = true;
			this._lblDepositPack_0.Visible = true;
			this._lblDepositPack_0.AutoSize = false;
			this._lblDepositPack_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblDepositPack_0.Name = "_lblDepositPack_0";
			this._lblVat_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblVat_0.Text = "lblVat";
			this._lblVat_0.Size = new System.Drawing.Size(88, 13);
			this._lblVat_0.Location = new System.Drawing.Point(6, 114);
			this._lblVat_0.TabIndex = 23;
			this._lblVat_0.BackColor = System.Drawing.SystemColors.Control;
			this._lblVat_0.Enabled = true;
			this._lblVat_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblVat_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblVat_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblVat_0.UseMnemonic = true;
			this._lblVat_0.Visible = true;
			this._lblVat_0.AutoSize = false;
			this._lblVat_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblVat_0.Name = "_lblVat_0";
			this._lblMarkup_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblMarkup_0.BackColor = System.Drawing.Color.FromArgb(255, 224, 192);
			this._lblMarkup_0.Text = "lblMarkup";
			this._lblMarkup_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblMarkup_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblMarkup_0.Size = new System.Drawing.Size(88, 16);
			this._lblMarkup_0.Location = new System.Drawing.Point(6, 132);
			this._lblMarkup_0.TabIndex = 22;
			this._lblMarkup_0.Enabled = true;
			this._lblMarkup_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblMarkup_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblMarkup_0.UseMnemonic = true;
			this._lblMarkup_0.Visible = true;
			this._lblMarkup_0.AutoSize = false;
			this._lblMarkup_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblMarkup_0.Name = "_lblMarkup_0";
			this._lblPrice_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblPrice_0.BackColor = System.Drawing.Color.Red;
			this._lblPrice_0.Text = "lblPrice";
			this._lblPrice_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblPrice_0.ForeColor = System.Drawing.Color.White;
			this._lblPrice_0.Size = new System.Drawing.Size(88, 16);
			this._lblPrice_0.Location = new System.Drawing.Point(6, 171);
			this._lblPrice_0.TabIndex = 21;
			this._lblPrice_0.Enabled = true;
			this._lblPrice_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblPrice_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblPrice_0.UseMnemonic = true;
			this._lblPrice_0.Visible = true;
			this._lblPrice_0.AutoSize = false;
			this._lblPrice_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblPrice_0.Name = "_lblPrice_0";
			this._lblPercent_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblPercent_0.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._lblPercent_0.Text = "lblPercent";
			this._lblPercent_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblPercent_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblPercent_0.Size = new System.Drawing.Size(88, 16);
			this._lblPercent_0.Location = new System.Drawing.Point(6, 198);
			this._lblPercent_0.TabIndex = 20;
			this._lblPercent_0.Enabled = true;
			this._lblPercent_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblPercent_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblPercent_0.UseMnemonic = true;
			this._lblPercent_0.Visible = true;
			this._lblPercent_0.AutoSize = false;
			this._lblPercent_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblPercent_0.Name = "_lblPercent_0";
			this.ilGeneral.ImageSize = new System.Drawing.Size(20, 20);
			this.ilGeneral.TransparentColor = System.Drawing.Color.FromArgb(255, 0, 255);
			this.ilGeneral.ImageStream = (System.Windows.Forms.ImageListStreamer)resources.GetObject("ilGeneral.ImageStream");
			this.ilGeneral.Images.SetKeyName(0, "");
			this.ilGeneral.Images.SetKeyName(1, "");
			this.ilGeneral.Images.SetKeyName(2, "");
			this.ilGeneral.Images.SetKeyName(3, "");
			this.ilGeneral.Images.SetKeyName(4, "");
			this.ilGeneral.Images.SetKeyName(5, "");
			this.ilGeneral.Images.SetKeyName(6, "");
			this._lbl_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_17.Text = "Margin % ";
			this._lbl_17.Size = new System.Drawing.Size(88, 13);
			this._lbl_17.Location = new System.Drawing.Point(-3, 460);
			this._lbl_17.TabIndex = 49;
			this._lbl_17.BackColor = System.Drawing.Color.Transparent;
			this._lbl_17.Enabled = true;
			this._lbl_17.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_17.UseMnemonic = true;
			this._lbl_17.Visible = true;
			this._lbl_17.AutoSize = false;
			this._lbl_17.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_17.Name = "_lbl_17";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "GP %:";
			this._lbl_0.Size = new System.Drawing.Size(88, 13);
			this._lbl_0.Location = new System.Drawing.Point(-3, 378);
			this._lbl_0.TabIndex = 44;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = false;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this.lblPriceSet.Text = "No Action";
			this.lblPriceSet.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblPriceSet.Size = new System.Drawing.Size(421, 17);
			this.lblPriceSet.Location = new System.Drawing.Point(87, 525);
			this.lblPriceSet.TabIndex = 42;
			this.lblPriceSet.Visible = false;
			this.lblPriceSet.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblPriceSet.BackColor = System.Drawing.SystemColors.Control;
			this.lblPriceSet.Enabled = true;
			this.lblPriceSet.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblPriceSet.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblPriceSet.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblPriceSet.UseMnemonic = true;
			this.lblPriceSet.AutoSize = false;
			this.lblPriceSet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblPriceSet.Name = "lblPriceSet";
			this._lbl_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_16.Text = "Pricing Rule:";
			this._lbl_16.Size = new System.Drawing.Size(60, 13);
			this._lbl_16.Location = new System.Drawing.Point(22, 111);
			this._lbl_16.TabIndex = 35;
			this._lbl_16.BackColor = System.Drawing.Color.Transparent;
			this._lbl_16.Enabled = true;
			this._lbl_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_16.UseMnemonic = true;
			this._lbl_16.Visible = true;
			this._lbl_16.AutoSize = true;
			this._lbl_16.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_16.Name = "_lbl_16";
			this._lbl_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_15.Text = "Pricing Group:";
			this._lbl_15.Size = new System.Drawing.Size(67, 13);
			this._lbl_15.Location = new System.Drawing.Point(14, 90);
			this._lbl_15.TabIndex = 34;
			this._lbl_15.BackColor = System.Drawing.Color.Transparent;
			this._lbl_15.Enabled = true;
			this._lbl_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_15.UseMnemonic = true;
			this._lbl_15.Visible = true;
			this._lbl_15.AutoSize = true;
			this._lbl_15.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_15.Name = "_lbl_15";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "Sales Channel:";
			this._lbl_4.Size = new System.Drawing.Size(71, 13);
			this._lbl_4.Location = new System.Drawing.Point(12, 69);
			this._lbl_4.TabIndex = 33;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Enabled = true;
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.UseMnemonic = true;
			this._lbl_4.Visible = true;
			this._lbl_4.AutoSize = true;
			this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_4.Name = "_lbl_4";
			this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_7.Text = "Stock Item:";
			this._lbl_7.Size = new System.Drawing.Size(54, 13);
			this._lbl_7.Location = new System.Drawing.Point(29, 51);
			this._lbl_7.TabIndex = 32;
			this._lbl_7.BackColor = System.Drawing.Color.Transparent;
			this._lbl_7.Enabled = true;
			this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_7.UseMnemonic = true;
			this._lbl_7.Visible = true;
			this._lbl_7.AutoSize = true;
			this._lbl_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_7.Name = "_lbl_7";
			this.lblStockItemName.Text = "Label1";
			this.lblStockItemName.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblStockItemName.Size = new System.Drawing.Size(39, 13);
			this.lblStockItemName.Location = new System.Drawing.Point(87, 51);
			this.lblStockItemName.TabIndex = 31;
			this.lblStockItemName.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockItemName.BackColor = System.Drawing.Color.Transparent;
			this.lblStockItemName.Enabled = true;
			this.lblStockItemName.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblStockItemName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblStockItemName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblStockItemName.UseMnemonic = true;
			this.lblStockItemName.Visible = true;
			this.lblStockItemName.AutoSize = true;
			this.lblStockItemName.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblStockItemName.Name = "lblStockItemName";
			this.lblPricingGroupRule.Text = "Label1";
			this.lblPricingGroupRule.Size = new System.Drawing.Size(421, 43);
			this.lblPricingGroupRule.Location = new System.Drawing.Point(87, 108);
			this.lblPricingGroupRule.TabIndex = 30;
			this.lblPricingGroupRule.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblPricingGroupRule.BackColor = System.Drawing.SystemColors.Control;
			this.lblPricingGroupRule.Enabled = true;
			this.lblPricingGroupRule.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblPricingGroupRule.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblPricingGroupRule.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblPricingGroupRule.UseMnemonic = true;
			this.lblPricingGroupRule.Visible = true;
			this.lblPricingGroupRule.AutoSize = false;
			this.lblPricingGroupRule.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblPricingGroupRule.Name = "lblPricingGroupRule";
			this.lblPricingGroup.Text = "Label1";
			this.lblPricingGroup.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblPricingGroup.Size = new System.Drawing.Size(39, 13);
			this.lblPricingGroup.Location = new System.Drawing.Point(87, 90);
			this.lblPricingGroup.TabIndex = 29;
			this.lblPricingGroup.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblPricingGroup.BackColor = System.Drawing.Color.Transparent;
			this.lblPricingGroup.Enabled = true;
			this.lblPricingGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblPricingGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblPricingGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblPricingGroup.UseMnemonic = true;
			this.lblPricingGroup.Visible = true;
			this.lblPricingGroup.AutoSize = true;
			this.lblPricingGroup.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblPricingGroup.Name = "lblPricingGroup";
			this._lbl_18.Text = "Actual";
			this._lbl_18.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_18.Size = new System.Drawing.Size(37, 13);
			this._lbl_18.Location = new System.Drawing.Point(3, 390);
			this._lbl_18.TabIndex = 6;
			this._lbl_18.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_18.BackColor = System.Drawing.Color.Transparent;
			this._lbl_18.Enabled = true;
			this._lbl_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_18.UseMnemonic = true;
			this._lbl_18.Visible = true;
			this._lbl_18.AutoSize = true;
			this._lbl_18.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_18.Name = "_lbl_18";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_1.Text = "List Cost:";
			this._lbl_1.Size = new System.Drawing.Size(88, 13);
			this._lbl_1.Location = new System.Drawing.Point(-3, 180);
			this._lbl_1.TabIndex = 19;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = false;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_2.Text = "Unit Deposit:";
			this._lbl_2.Size = new System.Drawing.Size(88, 13);
			this._lbl_2.Location = new System.Drawing.Point(-3, 237);
			this._lbl_2.TabIndex = 18;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = false;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_3.Text = "Case Deposit:";
			this._lbl_3.Size = new System.Drawing.Size(88, 13);
			this._lbl_3.Location = new System.Drawing.Point(-3, 255);
			this._lbl_3.TabIndex = 17;
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Enabled = true;
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.UseMnemonic = true;
			this._lbl_3.Visible = true;
			this._lbl_3.AutoSize = false;
			this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_3.Name = "_lbl_3";
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_5.Text = "Matrix %";
			this._lbl_5.Size = new System.Drawing.Size(88, 13);
			this._lbl_5.Location = new System.Drawing.Point(-3, 198);
			this._lbl_5.TabIndex = 16;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = false;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_6.Text = "Prop %";
			this._lbl_6.Size = new System.Drawing.Size(88, 13);
			this._lbl_6.Location = new System.Drawing.Point(-3, 219);
			this._lbl_6.TabIndex = 15;
			this._lbl_6.BackColor = System.Drawing.Color.Transparent;
			this._lbl_6.Enabled = true;
			this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_6.UseMnemonic = true;
			this._lbl_6.Visible = true;
			this._lbl_6.AutoSize = false;
			this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_6.Name = "_lbl_6";
			this.lblVatName.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblVatName.Text = "VAT at 14%";
			this.lblVatName.Size = new System.Drawing.Size(88, 13);
			this.lblVatName.Location = new System.Drawing.Point(-3, 273);
			this.lblVatName.TabIndex = 14;
			this.lblVatName.BackColor = System.Drawing.Color.Transparent;
			this.lblVatName.Enabled = true;
			this.lblVatName.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatName.UseMnemonic = true;
			this.lblVatName.Visible = true;
			this.lblVatName.AutoSize = false;
			this.lblVatName.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblVatName.Name = "lblVatName";
			this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_8.Text = "Markup Price:";
			this._lbl_8.Size = new System.Drawing.Size(88, 13);
			this._lbl_8.Location = new System.Drawing.Point(-3, 294);
			this._lbl_8.TabIndex = 13;
			this._lbl_8.BackColor = System.Drawing.Color.Transparent;
			this._lbl_8.Enabled = true;
			this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_8.UseMnemonic = true;
			this._lbl_8.Visible = true;
			this._lbl_8.AutoSize = false;
			this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_8.Name = "_lbl_8";
			this._lbl_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_9.Text = "Override Price:";
			this._lbl_9.Size = new System.Drawing.Size(88, 13);
			this._lbl_9.Location = new System.Drawing.Point(-3, 312);
			this._lbl_9.TabIndex = 12;
			this._lbl_9.BackColor = System.Drawing.Color.Transparent;
			this._lbl_9.Enabled = true;
			this._lbl_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_9.UseMnemonic = true;
			this._lbl_9.Visible = true;
			this._lbl_9.AutoSize = false;
			this._lbl_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_9.Name = "_lbl_9";
			this._lbl_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_10.Text = "Price:";
			this._lbl_10.Size = new System.Drawing.Size(88, 13);
			this._lbl_10.Location = new System.Drawing.Point(-3, 333);
			this._lbl_10.TabIndex = 11;
			this._lbl_10.BackColor = System.Drawing.Color.Transparent;
			this._lbl_10.Enabled = true;
			this._lbl_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_10.UseMnemonic = true;
			this._lbl_10.Visible = true;
			this._lbl_10.AutoSize = false;
			this._lbl_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_10.Name = "_lbl_10";
			this._lbl_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_11.Text = "Markup %:";
			this._lbl_11.Size = new System.Drawing.Size(88, 13);
			this._lbl_11.Location = new System.Drawing.Point(-3, 360);
			this._lbl_11.TabIndex = 10;
			this._lbl_11.BackColor = System.Drawing.Color.Transparent;
			this._lbl_11.Enabled = true;
			this._lbl_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_11.UseMnemonic = true;
			this._lbl_11.Visible = true;
			this._lbl_11.AutoSize = false;
			this._lbl_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_11.Name = "_lbl_11";
			this._lbl_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_12.Text = "Actual Cost:";
			this._lbl_12.Size = new System.Drawing.Size(88, 13);
			this._lbl_12.Location = new System.Drawing.Point(-3, 405);
			this._lbl_12.TabIndex = 9;
			this._lbl_12.BackColor = System.Drawing.Color.Transparent;
			this._lbl_12.Enabled = true;
			this._lbl_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_12.UseMnemonic = true;
			this._lbl_12.Visible = true;
			this._lbl_12.AutoSize = false;
			this._lbl_12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_12.Name = "_lbl_12";
			this._lbl_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_13.Text = "Profit Amount:";
			this._lbl_13.Size = new System.Drawing.Size(88, 13);
			this._lbl_13.Location = new System.Drawing.Point(-3, 423);
			this._lbl_13.TabIndex = 8;
			this._lbl_13.BackColor = System.Drawing.Color.Transparent;
			this._lbl_13.Enabled = true;
			this._lbl_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_13.UseMnemonic = true;
			this._lbl_13.Visible = true;
			this._lbl_13.AutoSize = false;
			this._lbl_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_13.Name = "_lbl_13";
			this._lbl_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_14.Text = "Markup % ";
			this._lbl_14.Size = new System.Drawing.Size(88, 13);
			this._lbl_14.Location = new System.Drawing.Point(-3, 441);
			this._lbl_14.TabIndex = 7;
			this._lbl_14.BackColor = System.Drawing.Color.Transparent;
			this._lbl_14.Enabled = true;
			this._lbl_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_14.UseMnemonic = true;
			this._lbl_14.Visible = true;
			this._lbl_14.AutoSize = false;
			this._lbl_14.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_14.Name = "_lbl_14";
			this._Line1_3.X1 = 81;
			this._Line1_3.X2 = 45;
			this._Line1_3.Y1 = 396;
			this._Line1_3.Y2 = 396;
			this._Line1_3.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Line1_3.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Line1_3.BorderWidth = 1;
			this._Line1_3.Visible = true;
			this._Line1_3.Name = "_Line1_3";
			this.Controls.Add(txttemphold);
			this.Controls.Add(picButtons);
			this.Controls.Add(cmbChannel);
			this.Controls.Add(_frmItem_0);
			this.Controls.Add(_lbl_17);
			this.Controls.Add(_lbl_0);
			this.Controls.Add(lblPriceSet);
			this.Controls.Add(_lbl_16);
			this.Controls.Add(_lbl_15);
			this.Controls.Add(_lbl_4);
			this.Controls.Add(_lbl_7);
			this.Controls.Add(lblStockItemName);
			this.Controls.Add(lblPricingGroupRule);
			this.Controls.Add(lblPricingGroup);
			this.Controls.Add(_lbl_18);
			this.Controls.Add(_lbl_1);
			this.Controls.Add(_lbl_2);
			this.Controls.Add(_lbl_3);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(_lbl_6);
			this.Controls.Add(lblVatName);
			this.Controls.Add(_lbl_8);
			this.Controls.Add(_lbl_9);
			this.Controls.Add(_lbl_10);
			this.Controls.Add(_lbl_11);
			this.Controls.Add(_lbl_12);
			this.Controls.Add(_lbl_13);
			this.Controls.Add(_lbl_14);
			this.ShapeContainer1.Shapes.Add(_Line1_3);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdNext);
			this.picButtons.Controls.Add(cmdbarcode);
			this.picButtons.Controls.Add(cmdHistory);
			this.picButtons.Controls.Add(cmdDetails);
			this.picButtons.Controls.Add(cmdExit);
			this.picButtons.Controls.Add(cmdUndo);
			this._frmItem_0.Controls.Add(_picLine_0);
			this._frmItem_0.Controls.Add(_txtCost_0);
			this._frmItem_0.Controls.Add(_txtProp_0);
			this._frmItem_0.Controls.Add(_txtPrice_0);
			this._frmItem_0.Controls.Add(_txtVariableCost_0);
			this._frmItem_0.Controls.Add(_lblGPActual_0);
			this._frmItem_0.Controls.Add(_lblGP_0);
			this._frmItem_0.Controls.Add(_lblSection_0);
			this.ShapeContainer2.Shapes.Add(_lnProfit_0);
			this._frmItem_0.Controls.Add(_lblProfitPrecent_0);
			this._frmItem_0.Controls.Add(_lblProfitAmount_0);
			this._frmItem_0.Controls.Add(_lblMatrix_0);
			this._frmItem_0.Controls.Add(_lblDepositUnit_0);
			this._frmItem_0.Controls.Add(_lblDepositPack_0);
			this._frmItem_0.Controls.Add(_lblVat_0);
			this._frmItem_0.Controls.Add(_lblMarkup_0);
			this._frmItem_0.Controls.Add(_lblPrice_0);
			this._frmItem_0.Controls.Add(_lblPercent_0);
			this._frmItem_0.Controls.Add(ShapeContainer2);
			//Me.Line1.SetIndex(_Line1_3, CType(3, Short))
			//Me.frmItem.SetIndex(_frmItem_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_17, CType(17, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_16, CType(16, Short))
			//Me.lbl.SetIndex(_lbl_15, CType(15, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_7, CType(7, Short))
			//Me.lbl.SetIndex(_lbl_18, CType(18, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_6, CType(6, Short))
			//Me.lbl.SetIndex(_lbl_8, CType(8, Short))
			//Me.lbl.SetIndex(_lbl_9, CType(9, Short))
			//Me.lbl.SetIndex(_lbl_10, CType(10, Short))
			//Me.lbl.SetIndex(_lbl_11, CType(11, Short))
			//Me.lbl.SetIndex(_lbl_12, CType(12, Short))
			//Me.lbl.SetIndex(_lbl_13, CType(13, Short))
			//Me.lbl.SetIndex(_lbl_14, CType(14, Short))
			//Me.lblDepositPack.SetIndex(_lblDepositPack_0, CType(0, Short))
			//Me.lblDepositUnit.SetIndex(_lblDepositUnit_0, CType(0, Short))
			//Me.lblGP.SetIndex(_lblGP_0, CType(0, Short))
			//Me.lblGPActual.SetIndex(_lblGPActual_0, CType(0, Short))
			//Me.lblMarkup.SetIndex(_lblMarkup_0, CType(0, Short))
			//Me.lblMatrix.SetIndex(_lblMatrix_0, CType(0, Short))
			//Me.lblPercent.SetIndex(_lblPercent_0, CType(0, Short))
			//Me.lblPrice.SetIndex(_lblPrice_0, CType(0, Short))
			//Me.lblProfitAmount.SetIndex(_lblProfitAmount_0, CType(0, Short))
			//Me.lblProfitPrecent.SetIndex(_lblProfitPrecent_0, CType(0, Short))
			//Me.lblSection.SetIndex(_lblSection_0, CType(0, Short))
			//Me.lblVat.SetIndex(_lblVat_0, CType(0, Short))
			this.lnProfit.SetIndex(_lnProfit_0, Convert.ToInt16(0));
			//Me.picLine.SetIndex(_picLine_0, CType(0, Short))
			//Me.txtCost.SetIndex(_txtCost_0, CType(0, Short))
			//Me.txtPrice.SetIndex(_txtPrice_0, CType(0, Short))
			//Me.txtProp.SetIndex(_txtProp_0, CType(0, Short))
			//Me.txtVariableCost.SetIndex(_txtVariableCost_0, CType(0, Short))
			//CType(Me.txtVariableCost, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtProp, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtPrice, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtCost, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.picLine, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.lnProfit).EndInit();
			//CType(Me.lblVat, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblSection, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblProfitPrecent, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblProfitAmount, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblPrice, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblPercent, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblMatrix, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblMarkup, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblGPActual, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblGP, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblDepositUnit, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblDepositPack, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.frmItem, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.Line1).EndInit();
			this.picButtons.ResumeLayout(false);
			this._frmItem_0.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Ejemplo n.º 40
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSet));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this.chkStockItem = new System.Windows.Forms.CheckBox();
			this._txtFloat_7 = new System.Windows.Forms.TextBox();
			this._txtFloat_6 = new System.Windows.Forms.TextBox();
			this._txtFloat_5 = new System.Windows.Forms.TextBox();
			this._txtFloat_4 = new System.Windows.Forms.TextBox();
			this._txtFloat_3 = new System.Windows.Forms.TextBox();
			this._txtFloat_2 = new System.Windows.Forms.TextBox();
			this._txtFloat_1 = new System.Windows.Forms.TextBox();
			this._txtFloat_0 = new System.Windows.Forms.TextBox();
			this._chkFields_2 = new System.Windows.Forms.CheckBox();
			this._txtInteger_0 = new System.Windows.Forms.TextBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdAllocate = new System.Windows.Forms.Button();
			this.cmdEmulate = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbDeposit = new myDataGridView();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.lblStockitem = new System.Windows.Forms.Label();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lblCG_7 = new System.Windows.Forms.Label();
			this._lblCG_6 = new System.Windows.Forms.Label();
			this._lblCG_5 = new System.Windows.Forms.Label();
			this._lblCG_4 = new System.Windows.Forms.Label();
			this._lblCG_3 = new System.Windows.Forms.Label();
			this._lblCG_2 = new System.Windows.Forms.Label();
			this._lblCG_1 = new System.Windows.Forms.Label();
			this._lblCG_0 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblCG = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//'Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//M() 'e.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//M() 'e.txtFloat = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//Me.txtInteger = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).BeginInit();
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblCG, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Edit Stock Set Details";
			this.ClientSize = new System.Drawing.Size(412, 357);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmSet";
			this._txtFields_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(46, 19);
			this._txtFields_1.Location = new System.Drawing.Point(258, 210);
			this._txtFields_1.TabIndex = 11;
			this._txtFields_1.Visible = false;
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_1.CausesValidation = true;
			this._txtFields_1.Enabled = true;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.HideSelection = true;
			this._txtFields_1.ReadOnly = false;
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.Multiline = false;
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_1.TabStop = true;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Name = "_txtFields_1";
			this.chkStockItem.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.chkStockItem.Text = "This Stock Set is locked to the following Stock Item";
			this.chkStockItem.Size = new System.Drawing.Size(286, 19);
			this.chkStockItem.Location = new System.Drawing.Point(66, 192);
			this.chkStockItem.TabIndex = 9;
			this.chkStockItem.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkStockItem.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.chkStockItem.CausesValidation = true;
			this.chkStockItem.Enabled = true;
			this.chkStockItem.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkStockItem.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkStockItem.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkStockItem.TabStop = true;
			this.chkStockItem.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkStockItem.Visible = true;
			this.chkStockItem.Name = "chkStockItem";
			this._txtFloat_7.AutoSize = false;
			this._txtFloat_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_7.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_7.Location = new System.Drawing.Point(249, 309);
			this._txtFloat_7.TabIndex = 27;
			this._txtFloat_7.AcceptsReturn = true;
			this._txtFloat_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_7.CausesValidation = true;
			this._txtFloat_7.Enabled = true;
			this._txtFloat_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_7.HideSelection = true;
			this._txtFloat_7.ReadOnly = false;
			this._txtFloat_7.MaxLength = 0;
			this._txtFloat_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_7.Multiline = false;
			this._txtFloat_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_7.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_7.TabStop = true;
			this._txtFloat_7.Visible = true;
			this._txtFloat_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_7.Name = "_txtFloat_7";
			this._txtFloat_6.AutoSize = false;
			this._txtFloat_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_6.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_6.Location = new System.Drawing.Point(249, 288);
			this._txtFloat_6.TabIndex = 25;
			this._txtFloat_6.AcceptsReturn = true;
			this._txtFloat_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_6.CausesValidation = true;
			this._txtFloat_6.Enabled = true;
			this._txtFloat_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_6.HideSelection = true;
			this._txtFloat_6.ReadOnly = false;
			this._txtFloat_6.MaxLength = 0;
			this._txtFloat_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_6.Multiline = false;
			this._txtFloat_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_6.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_6.TabStop = true;
			this._txtFloat_6.Visible = true;
			this._txtFloat_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_6.Name = "_txtFloat_6";
			this._txtFloat_5.AutoSize = false;
			this._txtFloat_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_5.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_5.Location = new System.Drawing.Point(249, 267);
			this._txtFloat_5.TabIndex = 23;
			this._txtFloat_5.AcceptsReturn = true;
			this._txtFloat_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_5.CausesValidation = true;
			this._txtFloat_5.Enabled = true;
			this._txtFloat_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_5.HideSelection = true;
			this._txtFloat_5.ReadOnly = false;
			this._txtFloat_5.MaxLength = 0;
			this._txtFloat_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_5.Multiline = false;
			this._txtFloat_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_5.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_5.TabStop = true;
			this._txtFloat_5.Visible = true;
			this._txtFloat_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_5.Name = "_txtFloat_5";
			this._txtFloat_4.AutoSize = false;
			this._txtFloat_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_4.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_4.Location = new System.Drawing.Point(249, 246);
			this._txtFloat_4.TabIndex = 21;
			this._txtFloat_4.AcceptsReturn = true;
			this._txtFloat_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_4.CausesValidation = true;
			this._txtFloat_4.Enabled = true;
			this._txtFloat_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_4.HideSelection = true;
			this._txtFloat_4.ReadOnly = false;
			this._txtFloat_4.MaxLength = 0;
			this._txtFloat_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_4.Multiline = false;
			this._txtFloat_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_4.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_4.TabStop = true;
			this._txtFloat_4.Visible = true;
			this._txtFloat_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_4.Name = "_txtFloat_4";
			this._txtFloat_3.AutoSize = false;
			this._txtFloat_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_3.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_3.Location = new System.Drawing.Point(117, 309);
			this._txtFloat_3.TabIndex = 19;
			this._txtFloat_3.AcceptsReturn = true;
			this._txtFloat_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_3.CausesValidation = true;
			this._txtFloat_3.Enabled = true;
			this._txtFloat_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_3.HideSelection = true;
			this._txtFloat_3.ReadOnly = false;
			this._txtFloat_3.MaxLength = 0;
			this._txtFloat_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_3.Multiline = false;
			this._txtFloat_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_3.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_3.TabStop = true;
			this._txtFloat_3.Visible = true;
			this._txtFloat_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_3.Name = "_txtFloat_3";
			this._txtFloat_2.AutoSize = false;
			this._txtFloat_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_2.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_2.Location = new System.Drawing.Point(117, 288);
			this._txtFloat_2.TabIndex = 17;
			this._txtFloat_2.AcceptsReturn = true;
			this._txtFloat_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_2.CausesValidation = true;
			this._txtFloat_2.Enabled = true;
			this._txtFloat_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_2.HideSelection = true;
			this._txtFloat_2.ReadOnly = false;
			this._txtFloat_2.MaxLength = 0;
			this._txtFloat_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_2.Multiline = false;
			this._txtFloat_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_2.TabStop = true;
			this._txtFloat_2.Visible = true;
			this._txtFloat_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_2.Name = "_txtFloat_2";
			this._txtFloat_1.AutoSize = false;
			this._txtFloat_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_1.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_1.Location = new System.Drawing.Point(117, 267);
			this._txtFloat_1.TabIndex = 15;
			this._txtFloat_1.AcceptsReturn = true;
			this._txtFloat_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_1.CausesValidation = true;
			this._txtFloat_1.Enabled = true;
			this._txtFloat_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_1.HideSelection = true;
			this._txtFloat_1.ReadOnly = false;
			this._txtFloat_1.MaxLength = 0;
			this._txtFloat_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_1.Multiline = false;
			this._txtFloat_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_1.TabStop = true;
			this._txtFloat_1.Visible = true;
			this._txtFloat_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_1.Name = "_txtFloat_1";
			this._txtFloat_0.AutoSize = false;
			this._txtFloat_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_0.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_0.Location = new System.Drawing.Point(117, 246);
			this._txtFloat_0.TabIndex = 13;
			this._txtFloat_0.AcceptsReturn = true;
			this._txtFloat_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_0.CausesValidation = true;
			this._txtFloat_0.Enabled = true;
			this._txtFloat_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_0.HideSelection = true;
			this._txtFloat_0.ReadOnly = false;
			this._txtFloat_0.MaxLength = 0;
			this._txtFloat_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_0.Multiline = false;
			this._txtFloat_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_0.TabStop = true;
			this._txtFloat_0.Visible = true;
			this._txtFloat_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_0.Name = "_txtFloat_0";
			this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_2.Text = "Disable this Set:";
			this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_2.Size = new System.Drawing.Size(97, 16);
			this._chkFields_2.Location = new System.Drawing.Point(252, 138);
			this._chkFields_2.TabIndex = 7;
			this._chkFields_2.CausesValidation = true;
			this._chkFields_2.Enabled = true;
			this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_2.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_2.TabStop = true;
			this._chkFields_2.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_2.Visible = true;
			this._chkFields_2.Name = "_chkFields_2";
			this._txtInteger_0.AutoSize = false;
			this._txtInteger_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_0.Size = new System.Drawing.Size(40, 19);
			this._txtInteger_0.Location = new System.Drawing.Point(309, 114);
			this._txtInteger_0.TabIndex = 6;
			this._txtInteger_0.AcceptsReturn = true;
			this._txtInteger_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_0.CausesValidation = true;
			this._txtInteger_0.Enabled = true;
			this._txtInteger_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_0.HideSelection = true;
			this._txtInteger_0.ReadOnly = false;
			this._txtInteger_0.MaxLength = 0;
			this._txtInteger_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_0.Multiline = false;
			this._txtInteger_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_0.TabStop = true;
			this._txtInteger_0.Visible = true;
			this._txtInteger_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_0.Name = "_txtInteger_0";
			this._txtFields_0.AutoSize = false;
			this._txtFields_0.Size = new System.Drawing.Size(226, 19);
			this._txtFields_0.Location = new System.Drawing.Point(123, 66);
			this._txtFields_0.TabIndex = 2;
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.CausesValidation = true;
			this._txtFields_0.Enabled = true;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.HideSelection = true;
			this._txtFields_0.ReadOnly = false;
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.Multiline = false;
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_0.TabStop = true;
			this._txtFields_0.Visible = true;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Name = "_txtFields_0";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(412, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 30;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(237, 3);
			this.cmdPrint.TabIndex = 33;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.cmdAllocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdAllocate.Text = "&Allocate Stock Items";
			this.cmdAllocate.Size = new System.Drawing.Size(73, 29);
			this.cmdAllocate.Location = new System.Drawing.Point(159, 3);
			this.cmdAllocate.TabIndex = 32;
			this.cmdAllocate.TabStop = false;
			this.cmdAllocate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdAllocate.CausesValidation = true;
			this.cmdAllocate.Enabled = true;
			this.cmdAllocate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdAllocate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdAllocate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdAllocate.Name = "cmdAllocate";
			this.cmdEmulate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdEmulate.Text = "&Emulate Pricing";
			this.cmdEmulate.Size = new System.Drawing.Size(73, 29);
			this.cmdEmulate.Location = new System.Drawing.Point(81, 3);
			this.cmdEmulate.TabIndex = 31;
			this.cmdEmulate.TabStop = false;
			this.cmdEmulate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdEmulate.CausesValidation = true;
			this.cmdEmulate.Enabled = true;
			this.cmdEmulate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdEmulate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdEmulate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdEmulate.Name = "cmdEmulate";
			this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.TabIndex = 29;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.CausesValidation = true;
			this.cmdCancel.Enabled = true;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Name = "cmdCancel";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(315, 3);
			this.cmdClose.TabIndex = 28;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			//cmbDeposit.OcxState = CType(resources.GetObject("cmbDeposit.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbDeposit.Size = new System.Drawing.Size(226, 21);
			this.cmbDeposit.Location = new System.Drawing.Point(123, 90);
			this.cmbDeposit.TabIndex = 4;
			this.cmbDeposit.Name = "cmbDeposit";
			this.Line1.X1 = 60;
			this.Line1.X2 = 351;
			this.Line1.Y1 = 237;
			this.Line1.Y2 = 237;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.BorderWidth = 1;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this.lblStockitem.Text = "[No stock Item ...]";
			this.lblStockitem.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblStockitem.Size = new System.Drawing.Size(267, 13);
			this.lblStockitem.Location = new System.Drawing.Point(66, 213);
			this.lblStockitem.TabIndex = 10;
			this.lblStockitem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockitem.BackColor = System.Drawing.Color.Transparent;
			this.lblStockitem.Enabled = true;
			this.lblStockitem.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblStockitem.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblStockitem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblStockitem.UseMnemonic = true;
			this.lblStockitem.Visible = true;
			this.lblStockitem.AutoSize = false;
			this.lblStockitem.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblStockitem.Name = "lblStockitem";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_11.Text = "Deposit:";
			this._lblLabels_11.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_11.Location = new System.Drawing.Point(78, 96);
			this._lblLabels_11.TabIndex = 3;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Enabled = true;
			this._lblLabels_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_11.UseMnemonic = true;
			this._lblLabels_11.Visible = true;
			this._lblLabels_11.AutoSize = true;
			this._lblLabels_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_11.Name = "_lblLabels_11";
			this._lblCG_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_7.Text = "Set_Amount8:";
			this._lblCG_7.Size = new System.Drawing.Size(67, 13);
			this._lblCG_7.Location = new System.Drawing.Point(174, 312);
			this._lblCG_7.TabIndex = 26;
			this._lblCG_7.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_7.Enabled = true;
			this._lblCG_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_7.UseMnemonic = true;
			this._lblCG_7.Visible = true;
			this._lblCG_7.AutoSize = true;
			this._lblCG_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_7.Name = "_lblCG_7";
			this._lblCG_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_6.Text = "Set_Amount7:";
			this._lblCG_6.Size = new System.Drawing.Size(67, 13);
			this._lblCG_6.Location = new System.Drawing.Point(174, 291);
			this._lblCG_6.TabIndex = 24;
			this._lblCG_6.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_6.Enabled = true;
			this._lblCG_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_6.UseMnemonic = true;
			this._lblCG_6.Visible = true;
			this._lblCG_6.AutoSize = true;
			this._lblCG_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_6.Name = "_lblCG_6";
			this._lblCG_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_5.Text = "Set_Amount6:";
			this._lblCG_5.Size = new System.Drawing.Size(67, 13);
			this._lblCG_5.Location = new System.Drawing.Point(174, 270);
			this._lblCG_5.TabIndex = 22;
			this._lblCG_5.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_5.Enabled = true;
			this._lblCG_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_5.UseMnemonic = true;
			this._lblCG_5.Visible = true;
			this._lblCG_5.AutoSize = true;
			this._lblCG_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_5.Name = "_lblCG_5";
			this._lblCG_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_4.Text = "Set_Amount5:";
			this._lblCG_4.Size = new System.Drawing.Size(67, 13);
			this._lblCG_4.Location = new System.Drawing.Point(174, 249);
			this._lblCG_4.TabIndex = 20;
			this._lblCG_4.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_4.Enabled = true;
			this._lblCG_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_4.UseMnemonic = true;
			this._lblCG_4.Visible = true;
			this._lblCG_4.AutoSize = true;
			this._lblCG_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_4.Name = "_lblCG_4";
			this._lblCG_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_3.Text = "Set_Amount4:";
			this._lblCG_3.Size = new System.Drawing.Size(67, 13);
			this._lblCG_3.Location = new System.Drawing.Point(42, 312);
			this._lblCG_3.TabIndex = 18;
			this._lblCG_3.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_3.Enabled = true;
			this._lblCG_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_3.UseMnemonic = true;
			this._lblCG_3.Visible = true;
			this._lblCG_3.AutoSize = true;
			this._lblCG_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_3.Name = "_lblCG_3";
			this._lblCG_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_2.Text = "Set_Amount3:";
			this._lblCG_2.Size = new System.Drawing.Size(67, 13);
			this._lblCG_2.Location = new System.Drawing.Point(42, 291);
			this._lblCG_2.TabIndex = 16;
			this._lblCG_2.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_2.Enabled = true;
			this._lblCG_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_2.UseMnemonic = true;
			this._lblCG_2.Visible = true;
			this._lblCG_2.AutoSize = true;
			this._lblCG_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_2.Name = "_lblCG_2";
			this._lblCG_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_1.Text = "Set_Amount2:";
			this._lblCG_1.Size = new System.Drawing.Size(67, 13);
			this._lblCG_1.Location = new System.Drawing.Point(42, 270);
			this._lblCG_1.TabIndex = 14;
			this._lblCG_1.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_1.Enabled = true;
			this._lblCG_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_1.UseMnemonic = true;
			this._lblCG_1.Visible = true;
			this._lblCG_1.AutoSize = true;
			this._lblCG_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_1.Name = "_lblCG_1";
			this._lblCG_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_0.Text = "Set_Amout1:";
			this._lblCG_0.Size = new System.Drawing.Size(61, 13);
			this._lblCG_0.Location = new System.Drawing.Point(48, 249);
			this._lblCG_0.TabIndex = 12;
			this._lblCG_0.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_0.Enabled = true;
			this._lblCG_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_0.UseMnemonic = true;
			this._lblCG_0.Visible = true;
			this._lblCG_0.AutoSize = true;
			this._lblCG_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_0.Name = "_lblCG_0";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.Text = "Number of Units in the Set:";
			this._lblLabels_1.Size = new System.Drawing.Size(127, 13);
			this._lblLabels_1.Location = new System.Drawing.Point(180, 117);
			this._lblLabels_1.TabIndex = 5;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Enabled = true;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.UseMnemonic = true;
			this._lblLabels_1.Visible = true;
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.Text = "Set Name:";
			this._lblLabels_0.Size = new System.Drawing.Size(52, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(66, 69);
			this._lblLabels_0.TabIndex = 1;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Enabled = true;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.UseMnemonic = true;
			this._lblLabels_0.Visible = true;
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_0.Name = "_lblLabels_0";
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.Size = new System.Drawing.Size(304, 100);
			this._Shape1_2.Location = new System.Drawing.Point(54, 60);
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_2.BorderWidth = 1;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_2.Visible = true;
			this._Shape1_2.Name = "_Shape1_2";
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Text = "&1. General";
			this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_5.Size = new System.Drawing.Size(61, 13);
			this._lbl_5.Location = new System.Drawing.Point(54, 45);
			this._lbl_5.TabIndex = 0;
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = true;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Text = "&2. Pricing Per Sale Channel";
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.Size = new System.Drawing.Size(157, 13);
			this._lbl_0.Location = new System.Drawing.Point(57, 171);
			this._lbl_0.TabIndex = 8;
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.Size = new System.Drawing.Size(304, 151);
			this._Shape1_0.Location = new System.Drawing.Point(54, 186);
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_0.BorderWidth = 1;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_0.Visible = true;
			this._Shape1_0.Name = "_Shape1_0";
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(chkStockItem);
			this.Controls.Add(_txtFloat_7);
			this.Controls.Add(_txtFloat_6);
			this.Controls.Add(_txtFloat_5);
			this.Controls.Add(_txtFloat_4);
			this.Controls.Add(_txtFloat_3);
			this.Controls.Add(_txtFloat_2);
			this.Controls.Add(_txtFloat_1);
			this.Controls.Add(_txtFloat_0);
			this.Controls.Add(_chkFields_2);
			this.Controls.Add(_txtInteger_0);
			this.Controls.Add(_txtFields_0);
			this.Controls.Add(picButtons);
			this.Controls.Add(cmbDeposit);
			this.ShapeContainer1.Shapes.Add(Line1);
			this.Controls.Add(lblStockitem);
			this.Controls.Add(_lblLabels_11);
			this.Controls.Add(_lblCG_7);
			this.Controls.Add(_lblCG_6);
			this.Controls.Add(_lblCG_5);
			this.Controls.Add(_lblCG_4);
			this.Controls.Add(_lblCG_3);
			this.Controls.Add(_lblCG_2);
			this.Controls.Add(_lblCG_1);
			this.Controls.Add(_lblCG_0);
			this.Controls.Add(_lblLabels_1);
			this.Controls.Add(_lblLabels_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(_lbl_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdPrint);
			this.picButtons.Controls.Add(cmdAllocate);
			this.picButtons.Controls.Add(cmdEmulate);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.chkFields.SetIndex(_chkFields_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lblCG.SetIndex(_lblCG_7, CType(7, Short))
			//Me.lblCG.SetIndex(_lblCG_6, CType(6, Short))
			//Me.lblCG.SetIndex(_lblCG_5, CType(5, Short))
			//Me.lblCG.SetIndex(_lblCG_4, CType(4, Short))
			//Me.lblCG.SetIndex(_lblCG_3, CType(3, Short))
			//Me.lblCG.SetIndex(_lblCG_2, CType(2, Short))
			//Me.lblCG.SetIndex(_lblCG_1, CType(1, Short))
			//Me.lblCG.SetIndex(_lblCG_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_11, CType(11, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
			//Me.txtFloat.SetIndex(_txtFloat_7, CType(7, Short))
			//Me.txtFloat.SetIndex(_txtFloat_6, CType(6, Short))
			//Me.txtFloat.SetIndex(_txtFloat_5, CType(5, Short))
			//Me.txtFloat.SetIndex(_txtFloat_4, CType(4, Short))
			//Me.txtFloat.SetIndex(_txtFloat_3, CType(3, Short))
			//Me.txtFloat.SetIndex(_txtFloat_2, CType(2, Short))
			//Me.txtFloat.SetIndex(_txtFloat_1, CType(1, Short))
			//Me.txtFloat.SetIndex(_txtFloat_0, CType(0, Short))
			//Me.txtInteger.SetIndex(_txtInteger_0, CType(0, Short))
			this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblCG, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Ejemplo n.º 41
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVSummaryFnV));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.cmdNextFnV = new System.Windows.Forms.Button();
			this._Frame1_6 = new System.Windows.Forms.GroupBox();
			this.cmdNext = new System.Windows.Forms.Button();
			this.Text1 = new System.Windows.Forms.TextBox();
			this.Command2 = new System.Windows.Forms.Button();
			this.Command1 = new System.Windows.Forms.Button();
			this.txtQuantity = new System.Windows.Forms.TextBox();
			this.FGRecipe = new myDataGridView();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.lblRecipeCost = new System.Windows.Forms.Label();
			this.tmrAutoGRV = new System.Windows.Forms.Timer(components);
			this.Picture2 = new System.Windows.Forms.Panel();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this.frmProcess = new System.Windows.Forms.GroupBox();
			this.txtNotes = new System.Windows.Forms.TextBox();
			this._optClose_0 = new System.Windows.Forms.RadioButton();
			this.Label3 = new System.Windows.Forms.Label();
			this.frmMain = new System.Windows.Forms.GroupBox();
			this._Frame1_5 = new System.Windows.Forms.GroupBox();
			this.lblDepositReturnIn = new System.Windows.Forms.Label();
			this._lbl_35 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatIn = new System.Windows.Forms.Label();
			this._lbl_34 = new System.Windows.Forms.Label();
			this.lblDepositReturnInclusiveIn = new System.Windows.Forms.Label();
			this._lbl_33 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatRateIn = new System.Windows.Forms.Label();
			this._Frame1_3 = new System.Windows.Forms.GroupBox();
			this.lblContentOut = new System.Windows.Forms.Label();
			this.lblDiscountLineOut = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this.lblExclusiveOut = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this.lblVATout = new System.Windows.Forms.Label();
			this._lbl_12 = new System.Windows.Forms.Label();
			this.lblInclusiveOut = new System.Windows.Forms.Label();
			this.lblVatRateOut = new System.Windows.Forms.Label();
			this._lbl_37 = new System.Windows.Forms.Label();
			this.lblLinesOut = new System.Windows.Forms.Label();
			this._Frame1_4 = new System.Windows.Forms.GroupBox();
			this.lblDepositVatRateOut = new System.Windows.Forms.Label();
			this.lblDepositOut = new System.Windows.Forms.Label();
			this._lbl_9 = new System.Windows.Forms.Label();
			this.lblDepositVatOut = new System.Windows.Forms.Label();
			this._lbl_23 = new System.Windows.Forms.Label();
			this.lblDepositInclusiveOut = new System.Windows.Forms.Label();
			this._lbl_24 = new System.Windows.Forms.Label();
			this._Frame1_2 = new System.Windows.Forms.GroupBox();
			this.lblDepositReturnVatRateOut = new System.Windows.Forms.Label();
			this._lbl_15 = new System.Windows.Forms.Label();
			this.lblDepositReturnInclusiveOut = new System.Windows.Forms.Label();
			this._lbl_16 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatOut = new System.Windows.Forms.Label();
			this._lbl_17 = new System.Windows.Forms.Label();
			this.lblDepositReturnOut = new System.Windows.Forms.Label();
			this._Frame1_0 = new System.Windows.Forms.GroupBox();
			this.cmbPayment = new System.Windows.Forms.ComboBox();
			this.txtUllage = new System.Windows.Forms.TextBox();
			this.txtDiscount = new System.Windows.Forms.TextBox();
			this.txtMinus = new System.Windows.Forms.TextBox();
			this.txtPlus = new System.Windows.Forms.TextBox();
			this.lblContentIn = new System.Windows.Forms.Label();
			this.lblDiscountLineIn = new System.Windows.Forms.Label();
			this._lbl_20 = new System.Windows.Forms.Label();
			this._lbl_21 = new System.Windows.Forms.Label();
			this.lblExclusiveIn = new System.Windows.Forms.Label();
			this._lbl_22 = new System.Windows.Forms.Label();
			this._lbl_29 = new System.Windows.Forms.Label();
			this.lblVATin = new System.Windows.Forms.Label();
			this._lbl_30 = new System.Windows.Forms.Label();
			this.lblInclusiveIn = new System.Windows.Forms.Label();
			this.lblVatRateIn = new System.Windows.Forms.Label();
			this._lbl_19 = new System.Windows.Forms.Label();
			this._Label1_1 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this._Label1_0 = new System.Windows.Forms.Label();
			this.lblDiscount = new System.Windows.Forms.Label();
			this.lblUllage = new System.Windows.Forms.Label();
			this.lblDiscountName = new System.Windows.Forms.Label();
			this._lbl_31 = new System.Windows.Forms.Label();
			this.lblContentExclusiveIn = new System.Windows.Forms.Label();
			this._lbl_11 = new System.Windows.Forms.Label();
			this._lbl_10 = new System.Windows.Forms.Label();
			this._lbl_32 = new System.Windows.Forms.Label();
			this.lblLinesIn = new System.Windows.Forms.Label();
			this._Frame1_1 = new System.Windows.Forms.GroupBox();
			this.lblDepositVatRateIn = new System.Windows.Forms.Label();
			this.lblDepositIn = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this.lblDepositVatIn = new System.Windows.Forms.Label();
			this._lbl_13 = new System.Windows.Forms.Label();
			this.lblDepositInclusiveIn = new System.Windows.Forms.Label();
			this._lbl_14 = new System.Windows.Forms.Label();
			this.Line2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this._lbl_28 = new System.Windows.Forms.Label();
			this.lblInBoundVat = new System.Windows.Forms.Label();
			this._lbl_27 = new System.Windows.Forms.Label();
			this.lblInBound = new System.Windows.Forms.Label();
			this._lbl_26 = new System.Windows.Forms.Label();
			this.lblCreditVat = new System.Windows.Forms.Label();
			this._lbl_25 = new System.Windows.Forms.Label();
			this.lblCredit = new System.Windows.Forms.Label();
			this._lbl_8 = new System.Windows.Forms.Label();
			this.lblOutBoundVat = new System.Windows.Forms.Label();
			this.lblOutBound = new System.Windows.Forms.Label();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblTotal = new System.Windows.Forms.Label();
			this._lbl_7 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblTotalOriginal = new System.Windows.Forms.Label();
			this.lblDifference = new System.Windows.Forms.Label();
			this._lbl_18 = new System.Windows.Forms.Label();
			this.Picture1 = new System.Windows.Forms.Panel();
			this.lblSupplier = new System.Windows.Forms.Label();
			//Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.optClose = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
			this._Frame1_6.SuspendLayout();
			this.Picture2.SuspendLayout();
			this.frmProcess.SuspendLayout();
			this.frmMain.SuspendLayout();
			this._Frame1_5.SuspendLayout();
			this._Frame1_3.SuspendLayout();
			this._Frame1_4.SuspendLayout();
			this._Frame1_2.SuspendLayout();
			this._Frame1_0.SuspendLayout();
			this._Frame1_1.SuspendLayout();
			this.Picture1.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.FGRecipe).BeginInit();
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.optClose, System.ComponentModel.ISupportInitialize).BeginInit()
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.Text = "GRV Summary and Process - Fruit and Veg";
			this.ClientSize = new System.Drawing.Size(760, 684);
			this.Location = new System.Drawing.Point(4, 23);
			this.ControlBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
			this.Enabled = true;
			this.KeyPreview = false;
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.Name = "frmGRVSummaryFnV";
			this.cmdNextFnV.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNextFnV.Text = "P&rocess";
			this.cmdNextFnV.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdNextFnV.Size = new System.Drawing.Size(139, 55);
			this.cmdNextFnV.Location = new System.Drawing.Point(840, 560);
			this.cmdNextFnV.TabIndex = 108;
			this.cmdNextFnV.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNextFnV.CausesValidation = true;
			this.cmdNextFnV.Enabled = true;
			this.cmdNextFnV.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNextFnV.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNextFnV.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNextFnV.TabStop = true;
			this.cmdNextFnV.Name = "cmdNextFnV";
			this._Frame1_6.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_6.Size = new System.Drawing.Size(988, 547);
			this._Frame1_6.Location = new System.Drawing.Point(8, 88);
			this._Frame1_6.TabIndex = 104;
			this._Frame1_6.Visible = false;
			this._Frame1_6.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_6.Enabled = true;
			this._Frame1_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_6.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_6.Name = "_Frame1_6";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "Finish";
			this.cmdNext.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdNext.Size = new System.Drawing.Size(139, 55);
			this.cmdNext.Location = new System.Drawing.Point(520, 24);
			this.cmdNext.TabIndex = 112;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.TabStop = true;
			this.cmdNext.Name = "cmdNext";
			this.Text1.AutoSize = false;
			this.Text1.Size = new System.Drawing.Size(41, 25);
			this.Text1.Location = new System.Drawing.Point(256, 392);
			this.Text1.TabIndex = 111;
			this.Text1.Text = "0";
			this.Text1.Visible = false;
			this.Text1.AcceptsReturn = true;
			this.Text1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.Text1.BackColor = System.Drawing.SystemColors.Window;
			this.Text1.CausesValidation = true;
			this.Text1.Enabled = true;
			this.Text1.ForeColor = System.Drawing.SystemColors.WindowText;
			this.Text1.HideSelection = true;
			this.Text1.ReadOnly = false;
			this.Text1.MaxLength = 0;
			this.Text1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.Text1.Multiline = false;
			this.Text1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.Text1.TabStop = true;
			this.Text1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Text1.Name = "Text1";
			this.Command2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command2.Text = "Next >>";
			this.Command2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Command2.Size = new System.Drawing.Size(73, 40);
			this.Command2.Location = new System.Drawing.Point(584, 384);
			this.Command2.TabIndex = 110;
			this.Command2.TabStop = false;
			this.Command2.BackColor = System.Drawing.SystemColors.Control;
			this.Command2.CausesValidation = true;
			this.Command2.Enabled = true;
			this.Command2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command2.Name = "Command2";
			this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command1.Text = "<< &Back";
			this.Command1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Command1.Size = new System.Drawing.Size(73, 40);
			this.Command1.Location = new System.Drawing.Point(16, 384);
			this.Command1.TabIndex = 109;
			this.Command1.TabStop = false;
			this.Command1.BackColor = System.Drawing.SystemColors.Control;
			this.Command1.CausesValidation = true;
			this.Command1.Enabled = true;
			this.Command1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command1.Name = "Command1";
			this.txtQuantity.AutoSize = false;
			this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQuantity.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this.txtQuantity.Size = new System.Drawing.Size(64, 19);
			this.txtQuantity.Location = new System.Drawing.Point(168, 368);
			this.txtQuantity.TabIndex = 105;
			this.txtQuantity.Text = "Text1";
			this.txtQuantity.Visible = false;
			this.txtQuantity.AcceptsReturn = true;
			this.txtQuantity.CausesValidation = true;
			this.txtQuantity.Enabled = true;
			this.txtQuantity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQuantity.HideSelection = true;
			this.txtQuantity.ReadOnly = false;
			this.txtQuantity.MaxLength = 0;
			this.txtQuantity.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQuantity.Multiline = false;
			this.txtQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQuantity.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQuantity.TabStop = true;
			this.txtQuantity.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtQuantity.Name = "txtQuantity";
			//FGRecipe.OcxState = CType(resources.GetObject("FGRecipe.OcxState"), System.Windows.Forms.AxHost.State)
			this.FGRecipe.Size = new System.Drawing.Size(646, 273);
			this.FGRecipe.Location = new System.Drawing.Point(14, 90);
			this.FGRecipe.TabIndex = 106;
			this.FGRecipe.Name = "FGRecipe";
			this.Label5.Text = "-";
			this.Label5.ForeColor = System.Drawing.Color.Black;
			this.Label5.Size = new System.Drawing.Size(505, 25);
			this.Label5.Location = new System.Drawing.Point(16, 56);
			this.Label5.TabIndex = 114;
			this.Label5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.Enabled = true;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.UseMnemonic = true;
			this.Label5.Visible = true;
			this.Label5.AutoSize = false;
			this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label5.Name = "Label5";
			this.Label4.Text = "BILL OF MATERIAL for :";
			this.Label4.ForeColor = System.Drawing.Color.Black;
			this.Label4.Size = new System.Drawing.Size(265, 25);
			this.Label4.Location = new System.Drawing.Point(16, 24);
			this.Label4.TabIndex = 113;
			this.Label4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.Enabled = true;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.UseMnemonic = true;
			this.Label4.Visible = true;
			this.Label4.AutoSize = false;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Name = "Label4";
			this.lblRecipeCost.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblRecipeCost.Text = "0.00";
			this.lblRecipeCost.Size = new System.Drawing.Size(88, 19);
			this.lblRecipeCost.Location = new System.Drawing.Point(416, 365);
			this.lblRecipeCost.TabIndex = 107;
			this.lblRecipeCost.Visible = false;
			this.lblRecipeCost.BackColor = System.Drawing.SystemColors.Control;
			this.lblRecipeCost.Enabled = true;
			this.lblRecipeCost.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblRecipeCost.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblRecipeCost.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblRecipeCost.UseMnemonic = true;
			this.lblRecipeCost.AutoSize = false;
			this.lblRecipeCost.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblRecipeCost.Name = "lblRecipeCost";
			this.tmrAutoGRV.Enabled = false;
			this.tmrAutoGRV.Interval = 10;
			this.Picture2.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture2.BackColor = System.Drawing.Color.Blue;
			this.Picture2.Size = new System.Drawing.Size(760, 49);
			this.Picture2.Location = new System.Drawing.Point(0, 0);
			this.Picture2.TabIndex = 101;
			this.Picture2.TabStop = false;
			this.Picture2.CausesValidation = true;
			this.Picture2.Enabled = true;
			this.Picture2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture2.Visible = true;
			this.Picture2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture2.Name = "Picture2";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdExit.Size = new System.Drawing.Size(73, 40);
			this.cmdExit.Location = new System.Drawing.Point(627, 3);
			this.cmdExit.TabIndex = 103;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "<< &Back";
			this.cmdBack.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdBack.Size = new System.Drawing.Size(73, 40);
			this.cmdBack.Location = new System.Drawing.Point(426, 3);
			this.cmdBack.TabIndex = 102;
			this.cmdBack.TabStop = false;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.Name = "cmdBack";
			this.frmProcess.Text = "Process this 'Goods Receiving Voucher'";
			this.frmProcess.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.frmProcess.Size = new System.Drawing.Size(343, 271);
			this.frmProcess.Location = new System.Drawing.Point(657, 363);
			this.frmProcess.TabIndex = 3;
			this.frmProcess.BackColor = System.Drawing.SystemColors.Control;
			this.frmProcess.Enabled = true;
			this.frmProcess.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmProcess.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmProcess.Visible = true;
			this.frmProcess.Padding = new System.Windows.Forms.Padding(0);
			this.frmProcess.Name = "frmProcess";
			this.txtNotes.AutoSize = false;
			this.txtNotes.Size = new System.Drawing.Size(301, 85);
			this.txtNotes.Location = new System.Drawing.Point(21, 102);
			this.txtNotes.MaxLength = 255;
			this.txtNotes.Multiline = true;
			this.txtNotes.TabIndex = 6;
			this.txtNotes.Text = "txtNotes";
			this.txtNotes.AcceptsReturn = true;
			this.txtNotes.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtNotes.BackColor = System.Drawing.SystemColors.Window;
			this.txtNotes.CausesValidation = true;
			this.txtNotes.Enabled = true;
			this.txtNotes.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtNotes.HideSelection = true;
			this.txtNotes.ReadOnly = false;
			this.txtNotes.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtNotes.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtNotes.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtNotes.TabStop = true;
			this.txtNotes.Visible = true;
			this.txtNotes.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtNotes.Name = "txtNotes";
			this._optClose_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optClose_0.Text = "This Purchase Order has been delivered in full.";
			this._optClose_0.Size = new System.Drawing.Size(310, 19);
			this._optClose_0.Location = new System.Drawing.Point(18, 18);
			this._optClose_0.TabIndex = 4;
			this._optClose_0.Checked = true;
			this._optClose_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optClose_0.BackColor = System.Drawing.SystemColors.Control;
			this._optClose_0.CausesValidation = true;
			this._optClose_0.Enabled = true;
			this._optClose_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optClose_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._optClose_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optClose_0.Appearance = System.Windows.Forms.Appearance.Normal;
			this._optClose_0.TabStop = true;
			this._optClose_0.Visible = true;
			this._optClose_0.Name = "_optClose_0";
			this.Label3.Text = "Notes:";
			this.Label3.Size = new System.Drawing.Size(31, 13);
			this.Label3.Location = new System.Drawing.Point(21, 84);
			this.Label3.TabIndex = 5;
			this.Label3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.Enabled = true;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.UseMnemonic = true;
			this.Label3.Visible = true;
			this.Label3.AutoSize = true;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Name = "Label3";
			this.frmMain.Text = "fmHeading";
			this.frmMain.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.frmMain.Size = new System.Drawing.Size(631, 550);
			this.frmMain.Location = new System.Drawing.Point(3, 84);
			this.frmMain.TabIndex = 10;
			this.frmMain.BackColor = System.Drawing.SystemColors.Control;
			this.frmMain.Enabled = true;
			this.frmMain.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmMain.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmMain.Visible = true;
			this.frmMain.Padding = new System.Windows.Forms.Padding(0);
			this.frmMain.Name = "frmMain";
			this._Frame1_5.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Frame1_5.Text = "Purchased Deposits";
			this._Frame1_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_5.Size = new System.Drawing.Size(301, 79);
			this._Frame1_5.Location = new System.Drawing.Point(9, 375);
			this._Frame1_5.TabIndex = 93;
			this._Frame1_5.Enabled = true;
			this._Frame1_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_5.Visible = true;
			this._Frame1_5.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_5.Name = "_Frame1_5";
			this.lblDepositReturnIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnIn.Text = "0.00";
			this.lblDepositReturnIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnIn.Location = new System.Drawing.Point(150, 18);
			this.lblDepositReturnIn.TabIndex = 100;
			this.lblDepositReturnIn.Enabled = true;
			this.lblDepositReturnIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnIn.UseMnemonic = true;
			this.lblDepositReturnIn.Visible = true;
			this.lblDepositReturnIn.AutoSize = false;
			this.lblDepositReturnIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnIn.Name = "lblDepositReturnIn";
			this._lbl_35.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_35.Text = "Deposit Value:";
			this._lbl_35.ForeColor = System.Drawing.Color.Black;
			this._lbl_35.Size = new System.Drawing.Size(133, 13);
			this._lbl_35.Location = new System.Drawing.Point(16, 21);
			this._lbl_35.TabIndex = 99;
			this._lbl_35.BackColor = System.Drawing.Color.Transparent;
			this._lbl_35.Enabled = true;
			this._lbl_35.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_35.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_35.UseMnemonic = true;
			this._lbl_35.Visible = true;
			this._lbl_35.AutoSize = false;
			this._lbl_35.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_35.Name = "_lbl_35";
			this.lblDepositReturnVatIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnVatIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnVatIn.Text = "0.00";
			this.lblDepositReturnVatIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnVatIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnVatIn.Location = new System.Drawing.Point(150, 36);
			this.lblDepositReturnVatIn.TabIndex = 98;
			this.lblDepositReturnVatIn.Enabled = true;
			this.lblDepositReturnVatIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatIn.UseMnemonic = true;
			this.lblDepositReturnVatIn.Visible = true;
			this.lblDepositReturnVatIn.AutoSize = false;
			this.lblDepositReturnVatIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnVatIn.Name = "lblDepositReturnVatIn";
			this._lbl_34.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_34.Text = "VAT:";
			this._lbl_34.ForeColor = System.Drawing.Color.Black;
			this._lbl_34.Size = new System.Drawing.Size(133, 13);
			this._lbl_34.Location = new System.Drawing.Point(16, 39);
			this._lbl_34.TabIndex = 97;
			this._lbl_34.BackColor = System.Drawing.Color.Transparent;
			this._lbl_34.Enabled = true;
			this._lbl_34.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_34.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_34.UseMnemonic = true;
			this._lbl_34.Visible = true;
			this._lbl_34.AutoSize = false;
			this._lbl_34.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_34.Name = "_lbl_34";
			this.lblDepositReturnInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnInclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnInclusiveIn.Text = "0.00";
			this.lblDepositReturnInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositReturnInclusiveIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblDepositReturnInclusiveIn.Location = new System.Drawing.Point(150, 54);
			this.lblDepositReturnInclusiveIn.TabIndex = 96;
			this.lblDepositReturnInclusiveIn.Enabled = true;
			this.lblDepositReturnInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnInclusiveIn.UseMnemonic = true;
			this.lblDepositReturnInclusiveIn.Visible = true;
			this.lblDepositReturnInclusiveIn.AutoSize = false;
			this.lblDepositReturnInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnInclusiveIn.Name = "lblDepositReturnInclusiveIn";
			this._lbl_33.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_33.Text = "Inclusive:";
			this._lbl_33.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_33.ForeColor = System.Drawing.Color.Black;
			this._lbl_33.Size = new System.Drawing.Size(133, 13);
			this._lbl_33.Location = new System.Drawing.Point(16, 57);
			this._lbl_33.TabIndex = 95;
			this._lbl_33.BackColor = System.Drawing.Color.Transparent;
			this._lbl_33.Enabled = true;
			this._lbl_33.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_33.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_33.UseMnemonic = true;
			this._lbl_33.Visible = true;
			this._lbl_33.AutoSize = false;
			this._lbl_33.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_33.Name = "_lbl_33";
			this.lblDepositReturnVatRateIn.Text = "0.00";
			this.lblDepositReturnVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblDepositReturnVatRateIn.Location = new System.Drawing.Point(243, 39);
			this.lblDepositReturnVatRateIn.TabIndex = 94;
			this.lblDepositReturnVatRateIn.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositReturnVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositReturnVatRateIn.Enabled = true;
			this.lblDepositReturnVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositReturnVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatRateIn.UseMnemonic = true;
			this.lblDepositReturnVatRateIn.Visible = true;
			this.lblDepositReturnVatRateIn.AutoSize = false;
			this.lblDepositReturnVatRateIn.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositReturnVatRateIn.Name = "lblDepositReturnVatRateIn";
			this._Frame1_3.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Frame1_3.Text = "Credited Content / Liquid";
			this._Frame1_3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_3.Size = new System.Drawing.Size(301, 145);
			this._Frame1_3.Location = new System.Drawing.Point(318, 18);
			this._Frame1_3.TabIndex = 68;
			this._Frame1_3.Enabled = true;
			this._Frame1_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_3.Visible = true;
			this._Frame1_3.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_3.Name = "_Frame1_3";
			this.lblContentOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentOut.Text = "0.00";
			this.lblContentOut.Size = new System.Drawing.Size(91, 19);
			this.lblContentOut.Location = new System.Drawing.Point(153, 33);
			this.lblContentOut.TabIndex = 81;
			this.lblContentOut.Enabled = true;
			this.lblContentOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentOut.UseMnemonic = true;
			this.lblContentOut.Visible = true;
			this.lblContentOut.AutoSize = false;
			this.lblContentOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentOut.Name = "lblContentOut";
			this.lblDiscountLineOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscountLineOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDiscountLineOut.Text = "0.00";
			this.lblDiscountLineOut.Size = new System.Drawing.Size(91, 19);
			this.lblDiscountLineOut.Location = new System.Drawing.Point(153, 54);
			this.lblDiscountLineOut.TabIndex = 80;
			this.lblDiscountLineOut.Enabled = true;
			this.lblDiscountLineOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDiscountLineOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountLineOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountLineOut.UseMnemonic = true;
			this.lblDiscountLineOut.Visible = true;
			this.lblDiscountLineOut.AutoSize = false;
			this.lblDiscountLineOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscountLineOut.Name = "lblDiscountLineOut";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_1.Text = "Contents Value :";
			this._lbl_1.Size = new System.Drawing.Size(133, 13);
			this._lbl_1.Location = new System.Drawing.Point(18, 36);
			this._lbl_1.TabIndex = 79;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = false;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_3.Text = "Line Item Discount :";
			this._lbl_3.Size = new System.Drawing.Size(133, 13);
			this._lbl_3.Location = new System.Drawing.Point(18, 57);
			this._lbl_3.TabIndex = 78;
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Enabled = true;
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.UseMnemonic = true;
			this._lbl_3.Visible = true;
			this._lbl_3.AutoSize = false;
			this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_3.Name = "_lbl_3";
			this.lblExclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblExclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblExclusiveOut.Text = "0.00";
			this.lblExclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblExclusiveOut.Location = new System.Drawing.Point(153, 75);
			this.lblExclusiveOut.TabIndex = 77;
			this.lblExclusiveOut.Enabled = true;
			this.lblExclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblExclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblExclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblExclusiveOut.UseMnemonic = true;
			this.lblExclusiveOut.Visible = true;
			this.lblExclusiveOut.AutoSize = false;
			this.lblExclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblExclusiveOut.Name = "lblExclusiveOut";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "Exclusive:";
			this._lbl_4.Size = new System.Drawing.Size(133, 13);
			this._lbl_4.Location = new System.Drawing.Point(18, 78);
			this._lbl_4.TabIndex = 76;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Enabled = true;
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.UseMnemonic = true;
			this._lbl_4.Visible = true;
			this._lbl_4.AutoSize = false;
			this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_4.Name = "_lbl_4";
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_5.Text = "VAT :";
			this._lbl_5.Size = new System.Drawing.Size(133, 13);
			this._lbl_5.Location = new System.Drawing.Point(18, 99);
			this._lbl_5.TabIndex = 75;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = false;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this.lblVATout.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblVATout.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblVATout.Text = "0.00";
			this.lblVATout.Size = new System.Drawing.Size(91, 19);
			this.lblVATout.Location = new System.Drawing.Point(153, 96);
			this.lblVATout.TabIndex = 74;
			this.lblVATout.Enabled = true;
			this.lblVATout.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVATout.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVATout.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVATout.UseMnemonic = true;
			this.lblVATout.Visible = true;
			this.lblVATout.AutoSize = false;
			this.lblVATout.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblVATout.Name = "lblVATout";
			this._lbl_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_12.Text = "Inclusive:";
			this._lbl_12.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_12.Size = new System.Drawing.Size(133, 13);
			this._lbl_12.Location = new System.Drawing.Point(18, 120);
			this._lbl_12.TabIndex = 73;
			this._lbl_12.BackColor = System.Drawing.Color.Transparent;
			this._lbl_12.Enabled = true;
			this._lbl_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_12.UseMnemonic = true;
			this._lbl_12.Visible = true;
			this._lbl_12.AutoSize = false;
			this._lbl_12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_12.Name = "_lbl_12";
			this.lblInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblInclusiveOut.Text = "0.00";
			this.lblInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblInclusiveOut.Location = new System.Drawing.Point(153, 117);
			this.lblInclusiveOut.TabIndex = 72;
			this.lblInclusiveOut.Enabled = true;
			this.lblInclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInclusiveOut.UseMnemonic = true;
			this.lblInclusiveOut.Visible = true;
			this.lblInclusiveOut.AutoSize = false;
			this.lblInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInclusiveOut.Name = "lblInclusiveOut";
			this.lblVatRateOut.Text = "lblVatRateOut";
			this.lblVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblVatRateOut.Location = new System.Drawing.Point(246, 99);
			this.lblVatRateOut.TabIndex = 71;
			this.lblVatRateOut.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblVatRateOut.Enabled = true;
			this.lblVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatRateOut.UseMnemonic = true;
			this.lblVatRateOut.Visible = true;
			this.lblVatRateOut.AutoSize = false;
			this.lblVatRateOut.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblVatRateOut.Name = "lblVatRateOut";
			this._lbl_37.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_37.Text = "No Of Lines :";
			this._lbl_37.Size = new System.Drawing.Size(133, 13);
			this._lbl_37.Location = new System.Drawing.Point(18, 15);
			this._lbl_37.TabIndex = 70;
			this._lbl_37.BackColor = System.Drawing.Color.Transparent;
			this._lbl_37.Enabled = true;
			this._lbl_37.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_37.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_37.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_37.UseMnemonic = true;
			this._lbl_37.Visible = true;
			this._lbl_37.AutoSize = false;
			this._lbl_37.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_37.Name = "_lbl_37";
			this.lblLinesOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblLinesOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblLinesOut.Text = "0.00";
			this.lblLinesOut.Size = new System.Drawing.Size(91, 19);
			this.lblLinesOut.Location = new System.Drawing.Point(153, 12);
			this.lblLinesOut.TabIndex = 69;
			this.lblLinesOut.Enabled = true;
			this.lblLinesOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblLinesOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblLinesOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblLinesOut.UseMnemonic = true;
			this.lblLinesOut.Visible = true;
			this.lblLinesOut.AutoSize = false;
			this.lblLinesOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblLinesOut.Name = "lblLinesOut";
			this._Frame1_4.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Frame1_4.Text = "Deposits with Credits";
			this._Frame1_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_4.Size = new System.Drawing.Size(301, 82);
			this._Frame1_4.Location = new System.Drawing.Point(318, 162);
			this._Frame1_4.TabIndex = 60;
			this._Frame1_4.Enabled = true;
			this._Frame1_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_4.Visible = true;
			this._Frame1_4.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_4.Name = "_Frame1_4";
			this.lblDepositVatRateOut.Text = "0.00";
			this.lblDepositVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblDepositVatRateOut.Location = new System.Drawing.Point(243, 39);
			this.lblDepositVatRateOut.TabIndex = 67;
			this.lblDepositVatRateOut.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositVatRateOut.Enabled = true;
			this.lblDepositVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatRateOut.UseMnemonic = true;
			this.lblDepositVatRateOut.Visible = true;
			this.lblDepositVatRateOut.AutoSize = false;
			this.lblDepositVatRateOut.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositVatRateOut.Name = "lblDepositVatRateOut";
			this.lblDepositOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositOut.Text = "0.00";
			this.lblDepositOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositOut.Location = new System.Drawing.Point(150, 18);
			this.lblDepositOut.TabIndex = 66;
			this.lblDepositOut.Enabled = true;
			this.lblDepositOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositOut.UseMnemonic = true;
			this.lblDepositOut.Visible = true;
			this.lblDepositOut.AutoSize = false;
			this.lblDepositOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositOut.Name = "lblDepositOut";
			this._lbl_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_9.Text = "Deposit Value:";
			this._lbl_9.Size = new System.Drawing.Size(133, 13);
			this._lbl_9.Location = new System.Drawing.Point(16, 21);
			this._lbl_9.TabIndex = 65;
			this._lbl_9.BackColor = System.Drawing.Color.Transparent;
			this._lbl_9.Enabled = true;
			this._lbl_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_9.UseMnemonic = true;
			this._lbl_9.Visible = true;
			this._lbl_9.AutoSize = false;
			this._lbl_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_9.Name = "_lbl_9";
			this.lblDepositVatOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositVatOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositVatOut.Text = "0.00";
			this.lblDepositVatOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositVatOut.Location = new System.Drawing.Point(150, 36);
			this.lblDepositVatOut.TabIndex = 64;
			this.lblDepositVatOut.Enabled = true;
			this.lblDepositVatOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatOut.UseMnemonic = true;
			this.lblDepositVatOut.Visible = true;
			this.lblDepositVatOut.AutoSize = false;
			this.lblDepositVatOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositVatOut.Name = "lblDepositVatOut";
			this._lbl_23.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_23.Text = "VAT:";
			this._lbl_23.Size = new System.Drawing.Size(133, 13);
			this._lbl_23.Location = new System.Drawing.Point(16, 39);
			this._lbl_23.TabIndex = 63;
			this._lbl_23.BackColor = System.Drawing.Color.Transparent;
			this._lbl_23.Enabled = true;
			this._lbl_23.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_23.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_23.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_23.UseMnemonic = true;
			this._lbl_23.Visible = true;
			this._lbl_23.AutoSize = false;
			this._lbl_23.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_23.Name = "_lbl_23";
			this.lblDepositInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositInclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositInclusiveOut.Text = "0.00";
			this.lblDepositInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblDepositInclusiveOut.Location = new System.Drawing.Point(150, 54);
			this.lblDepositInclusiveOut.TabIndex = 62;
			this.lblDepositInclusiveOut.Enabled = true;
			this.lblDepositInclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositInclusiveOut.UseMnemonic = true;
			this.lblDepositInclusiveOut.Visible = true;
			this.lblDepositInclusiveOut.AutoSize = false;
			this.lblDepositInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositInclusiveOut.Name = "lblDepositInclusiveOut";
			this._lbl_24.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_24.Text = "Inclusive:";
			this._lbl_24.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_24.Size = new System.Drawing.Size(133, 13);
			this._lbl_24.Location = new System.Drawing.Point(16, 57);
			this._lbl_24.TabIndex = 61;
			this._lbl_24.BackColor = System.Drawing.Color.Transparent;
			this._lbl_24.Enabled = true;
			this._lbl_24.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_24.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_24.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_24.UseMnemonic = true;
			this._lbl_24.Visible = true;
			this._lbl_24.AutoSize = false;
			this._lbl_24.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_24.Name = "_lbl_24";
			this._Frame1_2.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Frame1_2.Text = "Returned Deposits";
			this._Frame1_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_2.Size = new System.Drawing.Size(301, 79);
			this._Frame1_2.Location = new System.Drawing.Point(321, 375);
			this._Frame1_2.TabIndex = 21;
			this._Frame1_2.Enabled = true;
			this._Frame1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_2.Visible = true;
			this._Frame1_2.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_2.Name = "_Frame1_2";
			this.lblDepositReturnVatRateOut.Text = "0.00";
			this.lblDepositReturnVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblDepositReturnVatRateOut.Location = new System.Drawing.Point(243, 39);
			this.lblDepositReturnVatRateOut.TabIndex = 82;
			this.lblDepositReturnVatRateOut.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositReturnVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositReturnVatRateOut.Enabled = true;
			this.lblDepositReturnVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositReturnVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatRateOut.UseMnemonic = true;
			this.lblDepositReturnVatRateOut.Visible = true;
			this.lblDepositReturnVatRateOut.AutoSize = false;
			this.lblDepositReturnVatRateOut.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositReturnVatRateOut.Name = "lblDepositReturnVatRateOut";
			this._lbl_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_15.Text = "Inclusive:";
			this._lbl_15.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_15.ForeColor = System.Drawing.Color.Black;
			this._lbl_15.Size = new System.Drawing.Size(133, 13);
			this._lbl_15.Location = new System.Drawing.Point(16, 57);
			this._lbl_15.TabIndex = 26;
			this._lbl_15.BackColor = System.Drawing.Color.Transparent;
			this._lbl_15.Enabled = true;
			this._lbl_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_15.UseMnemonic = true;
			this._lbl_15.Visible = true;
			this._lbl_15.AutoSize = false;
			this._lbl_15.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_15.Name = "_lbl_15";
			this.lblDepositReturnInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnInclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnInclusiveOut.Text = "0.00";
			this.lblDepositReturnInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositReturnInclusiveOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblDepositReturnInclusiveOut.Location = new System.Drawing.Point(150, 54);
			this.lblDepositReturnInclusiveOut.TabIndex = 27;
			this.lblDepositReturnInclusiveOut.Enabled = true;
			this.lblDepositReturnInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnInclusiveOut.UseMnemonic = true;
			this.lblDepositReturnInclusiveOut.Visible = true;
			this.lblDepositReturnInclusiveOut.AutoSize = false;
			this.lblDepositReturnInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnInclusiveOut.Name = "lblDepositReturnInclusiveOut";
			this._lbl_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_16.Text = "VAT:";
			this._lbl_16.ForeColor = System.Drawing.Color.Black;
			this._lbl_16.Size = new System.Drawing.Size(133, 13);
			this._lbl_16.Location = new System.Drawing.Point(16, 39);
			this._lbl_16.TabIndex = 24;
			this._lbl_16.BackColor = System.Drawing.Color.Transparent;
			this._lbl_16.Enabled = true;
			this._lbl_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_16.UseMnemonic = true;
			this._lbl_16.Visible = true;
			this._lbl_16.AutoSize = false;
			this._lbl_16.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_16.Name = "_lbl_16";
			this.lblDepositReturnVatOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnVatOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnVatOut.Text = "0.00";
			this.lblDepositReturnVatOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnVatOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnVatOut.Location = new System.Drawing.Point(150, 36);
			this.lblDepositReturnVatOut.TabIndex = 25;
			this.lblDepositReturnVatOut.Enabled = true;
			this.lblDepositReturnVatOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatOut.UseMnemonic = true;
			this.lblDepositReturnVatOut.Visible = true;
			this.lblDepositReturnVatOut.AutoSize = false;
			this.lblDepositReturnVatOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnVatOut.Name = "lblDepositReturnVatOut";
			this._lbl_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_17.Text = "Deposit Value:";
			this._lbl_17.ForeColor = System.Drawing.Color.Black;
			this._lbl_17.Size = new System.Drawing.Size(133, 13);
			this._lbl_17.Location = new System.Drawing.Point(16, 21);
			this._lbl_17.TabIndex = 22;
			this._lbl_17.BackColor = System.Drawing.Color.Transparent;
			this._lbl_17.Enabled = true;
			this._lbl_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_17.UseMnemonic = true;
			this._lbl_17.Visible = true;
			this._lbl_17.AutoSize = false;
			this._lbl_17.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_17.Name = "_lbl_17";
			this.lblDepositReturnOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnOut.Text = "0.00";
			this.lblDepositReturnOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnOut.Location = new System.Drawing.Point(150, 18);
			this.lblDepositReturnOut.TabIndex = 23;
			this.lblDepositReturnOut.Enabled = true;
			this.lblDepositReturnOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnOut.UseMnemonic = true;
			this.lblDepositReturnOut.Visible = true;
			this.lblDepositReturnOut.AutoSize = false;
			this.lblDepositReturnOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnOut.Name = "lblDepositReturnOut";
			this._Frame1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Frame1_0.Text = "Purchased Content / Liquid";
			this._Frame1_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_0.Size = new System.Drawing.Size(301, 268);
			this._Frame1_0.Location = new System.Drawing.Point(9, 18);
			this._Frame1_0.TabIndex = 11;
			this._Frame1_0.Enabled = true;
			this._Frame1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_0.Visible = true;
			this._Frame1_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_0.Name = "_Frame1_0";
			this.cmbPayment.Size = new System.Drawing.Size(91, 21);
			this.cmbPayment.Location = new System.Drawing.Point(153, 96);
			this.cmbPayment.Items.AddRange(new object[] {
				"C.O.D.",
				"15 Days",
				"30 Days",
				"60 Days",
				"90 Days",
				"120 Days",
				"Smart Card"
			});
			this.cmbPayment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbPayment.TabIndex = 0;
			this.cmbPayment.BackColor = System.Drawing.SystemColors.Window;
			this.cmbPayment.CausesValidation = true;
			this.cmbPayment.Enabled = true;
			this.cmbPayment.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbPayment.IntegralHeight = true;
			this.cmbPayment.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbPayment.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbPayment.Sorted = false;
			this.cmbPayment.TabStop = true;
			this.cmbPayment.Visible = true;
			this.cmbPayment.Name = "cmbPayment";
			this.txtUllage.AutoSize = false;
			this.txtUllage.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtUllage.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.txtUllage.Enabled = false;
			this.txtUllage.ForeColor = System.Drawing.Color.Red;
			this.txtUllage.Size = new System.Drawing.Size(40, 19);
			this.txtUllage.Location = new System.Drawing.Point(99, 135);
			this.txtUllage.TabIndex = 7;
			this.txtUllage.Text = "0.20";
			this.txtUllage.AcceptsReturn = true;
			this.txtUllage.CausesValidation = true;
			this.txtUllage.HideSelection = true;
			this.txtUllage.ReadOnly = false;
			this.txtUllage.MaxLength = 0;
			this.txtUllage.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtUllage.Multiline = false;
			this.txtUllage.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtUllage.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtUllage.TabStop = true;
			this.txtUllage.Visible = true;
			this.txtUllage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtUllage.Name = "txtUllage";
			this.txtDiscount.AutoSize = false;
			this.txtDiscount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtDiscount.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.txtDiscount.Enabled = false;
			this.txtDiscount.ForeColor = System.Drawing.Color.Red;
			this.txtDiscount.Size = new System.Drawing.Size(40, 19);
			this.txtDiscount.Location = new System.Drawing.Point(99, 117);
			this.txtDiscount.TabIndex = 34;
			this.txtDiscount.TabStop = false;
			this.txtDiscount.Text = "2.00";
			this.txtDiscount.AcceptsReturn = true;
			this.txtDiscount.CausesValidation = true;
			this.txtDiscount.HideSelection = true;
			this.txtDiscount.ReadOnly = false;
			this.txtDiscount.MaxLength = 0;
			this.txtDiscount.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtDiscount.Multiline = false;
			this.txtDiscount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtDiscount.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtDiscount.Visible = true;
			this.txtDiscount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtDiscount.Name = "txtDiscount";
			this.txtMinus.AutoSize = false;
			this.txtMinus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtMinus.ForeColor = System.Drawing.Color.Red;
			this.txtMinus.Size = new System.Drawing.Size(91, 19);
			this.txtMinus.Location = new System.Drawing.Point(153, 180);
			this.txtMinus.TabIndex = 2;
			this.txtMinus.Text = "0.00";
			this.txtMinus.AcceptsReturn = true;
			this.txtMinus.BackColor = System.Drawing.SystemColors.Window;
			this.txtMinus.CausesValidation = true;
			this.txtMinus.Enabled = true;
			this.txtMinus.HideSelection = true;
			this.txtMinus.ReadOnly = false;
			this.txtMinus.MaxLength = 0;
			this.txtMinus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtMinus.Multiline = false;
			this.txtMinus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtMinus.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtMinus.TabStop = true;
			this.txtMinus.Visible = true;
			this.txtMinus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtMinus.Name = "txtMinus";
			this.txtPlus.AutoSize = false;
			this.txtPlus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPlus.Size = new System.Drawing.Size(91, 19);
			this.txtPlus.Location = new System.Drawing.Point(153, 159);
			this.txtPlus.TabIndex = 1;
			this.txtPlus.Text = "0.00";
			this.txtPlus.AcceptsReturn = true;
			this.txtPlus.BackColor = System.Drawing.SystemColors.Window;
			this.txtPlus.CausesValidation = true;
			this.txtPlus.Enabled = true;
			this.txtPlus.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPlus.HideSelection = true;
			this.txtPlus.ReadOnly = false;
			this.txtPlus.MaxLength = 0;
			this.txtPlus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPlus.Multiline = false;
			this.txtPlus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPlus.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPlus.TabStop = true;
			this.txtPlus.Visible = true;
			this.txtPlus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPlus.Name = "txtPlus";
			this.lblContentIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentIn.Text = "0.00";
			this.lblContentIn.Size = new System.Drawing.Size(91, 19);
			this.lblContentIn.Location = new System.Drawing.Point(153, 33);
			this.lblContentIn.TabIndex = 58;
			this.lblContentIn.Enabled = true;
			this.lblContentIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentIn.UseMnemonic = true;
			this.lblContentIn.Visible = true;
			this.lblContentIn.AutoSize = false;
			this.lblContentIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentIn.Name = "lblContentIn";
			this.lblDiscountLineIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscountLineIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDiscountLineIn.Text = "0.00";
			this.lblDiscountLineIn.Size = new System.Drawing.Size(91, 19);
			this.lblDiscountLineIn.Location = new System.Drawing.Point(153, 54);
			this.lblDiscountLineIn.TabIndex = 57;
			this.lblDiscountLineIn.Enabled = true;
			this.lblDiscountLineIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDiscountLineIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountLineIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountLineIn.UseMnemonic = true;
			this.lblDiscountLineIn.Visible = true;
			this.lblDiscountLineIn.AutoSize = false;
			this.lblDiscountLineIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscountLineIn.Name = "lblDiscountLineIn";
			this._lbl_20.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_20.Text = "Contents Value :";
			this._lbl_20.Size = new System.Drawing.Size(133, 13);
			this._lbl_20.Location = new System.Drawing.Point(18, 36);
			this._lbl_20.TabIndex = 56;
			this._lbl_20.BackColor = System.Drawing.Color.Transparent;
			this._lbl_20.Enabled = true;
			this._lbl_20.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_20.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_20.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_20.UseMnemonic = true;
			this._lbl_20.Visible = true;
			this._lbl_20.AutoSize = false;
			this._lbl_20.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_20.Name = "_lbl_20";
			this._lbl_21.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_21.Text = "Line Item Discount :";
			this._lbl_21.Size = new System.Drawing.Size(133, 13);
			this._lbl_21.Location = new System.Drawing.Point(18, 57);
			this._lbl_21.TabIndex = 55;
			this._lbl_21.BackColor = System.Drawing.Color.Transparent;
			this._lbl_21.Enabled = true;
			this._lbl_21.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_21.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_21.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_21.UseMnemonic = true;
			this._lbl_21.Visible = true;
			this._lbl_21.AutoSize = false;
			this._lbl_21.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_21.Name = "_lbl_21";
			this.lblExclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblExclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblExclusiveIn.Text = "0.00";
			this.lblExclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblExclusiveIn.Location = new System.Drawing.Point(153, 201);
			this.lblExclusiveIn.TabIndex = 54;
			this.lblExclusiveIn.Enabled = true;
			this.lblExclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblExclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblExclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblExclusiveIn.UseMnemonic = true;
			this.lblExclusiveIn.Visible = true;
			this.lblExclusiveIn.AutoSize = false;
			this.lblExclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblExclusiveIn.Name = "lblExclusiveIn";
			this._lbl_22.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_22.Text = "Exclusive:";
			this._lbl_22.Size = new System.Drawing.Size(133, 13);
			this._lbl_22.Location = new System.Drawing.Point(18, 204);
			this._lbl_22.TabIndex = 53;
			this._lbl_22.BackColor = System.Drawing.Color.Transparent;
			this._lbl_22.Enabled = true;
			this._lbl_22.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_22.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_22.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_22.UseMnemonic = true;
			this._lbl_22.Visible = true;
			this._lbl_22.AutoSize = false;
			this._lbl_22.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_22.Name = "_lbl_22";
			this._lbl_29.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_29.Text = "VAT :";
			this._lbl_29.Size = new System.Drawing.Size(133, 13);
			this._lbl_29.Location = new System.Drawing.Point(18, 225);
			this._lbl_29.TabIndex = 52;
			this._lbl_29.BackColor = System.Drawing.Color.Transparent;
			this._lbl_29.Enabled = true;
			this._lbl_29.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_29.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_29.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_29.UseMnemonic = true;
			this._lbl_29.Visible = true;
			this._lbl_29.AutoSize = false;
			this._lbl_29.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_29.Name = "_lbl_29";
			this.lblVATin.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblVATin.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblVATin.Text = "0.00";
			this.lblVATin.Size = new System.Drawing.Size(91, 19);
			this.lblVATin.Location = new System.Drawing.Point(153, 222);
			this.lblVATin.TabIndex = 51;
			this.lblVATin.Enabled = true;
			this.lblVATin.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVATin.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVATin.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVATin.UseMnemonic = true;
			this.lblVATin.Visible = true;
			this.lblVATin.AutoSize = false;
			this.lblVATin.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblVATin.Name = "lblVATin";
			this._lbl_30.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_30.Text = "Inclusive:";
			this._lbl_30.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_30.Size = new System.Drawing.Size(133, 13);
			this._lbl_30.Location = new System.Drawing.Point(18, 246);
			this._lbl_30.TabIndex = 50;
			this._lbl_30.BackColor = System.Drawing.Color.Transparent;
			this._lbl_30.Enabled = true;
			this._lbl_30.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_30.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_30.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_30.UseMnemonic = true;
			this._lbl_30.Visible = true;
			this._lbl_30.AutoSize = false;
			this._lbl_30.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_30.Name = "_lbl_30";
			this.lblInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblInclusiveIn.Text = "0.00";
			this.lblInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblInclusiveIn.Location = new System.Drawing.Point(153, 243);
			this.lblInclusiveIn.TabIndex = 49;
			this.lblInclusiveIn.Enabled = true;
			this.lblInclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInclusiveIn.UseMnemonic = true;
			this.lblInclusiveIn.Visible = true;
			this.lblInclusiveIn.AutoSize = false;
			this.lblInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInclusiveIn.Name = "lblInclusiveIn";
			this.lblVatRateIn.Text = "0.00";
			this.lblVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblVatRateIn.Location = new System.Drawing.Point(246, 225);
			this.lblVatRateIn.TabIndex = 48;
			this.lblVatRateIn.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblVatRateIn.Enabled = true;
			this.lblVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatRateIn.UseMnemonic = true;
			this.lblVatRateIn.Visible = true;
			this.lblVatRateIn.AutoSize = false;
			this.lblVatRateIn.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblVatRateIn.Name = "lblVatRateIn";
			this._lbl_19.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_19.Text = "Payment Terms";
			this._lbl_19.Size = new System.Drawing.Size(133, 13);
			this._lbl_19.Location = new System.Drawing.Point(18, 99);
			this._lbl_19.TabIndex = 47;
			this._lbl_19.BackColor = System.Drawing.Color.Transparent;
			this._lbl_19.Enabled = true;
			this._lbl_19.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_19.UseMnemonic = true;
			this._lbl_19.Visible = true;
			this._lbl_19.AutoSize = false;
			this._lbl_19.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_19.Name = "_lbl_19";
			this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._Label1_1.Text = "%:";
			this._Label1_1.ForeColor = System.Drawing.Color.Red;
			this._Label1_1.Size = new System.Drawing.Size(13, 13);
			this._Label1_1.Location = new System.Drawing.Point(138, 138);
			this._Label1_1.TabIndex = 46;
			this._Label1_1.BackColor = System.Drawing.Color.Transparent;
			this._Label1_1.Enabled = true;
			this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_1.UseMnemonic = true;
			this._Label1_1.Visible = true;
			this._Label1_1.AutoSize = true;
			this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_1.Name = "_Label1_1";
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.Label2.Text = "Ullage @";
			this.Label2.ForeColor = System.Drawing.Color.Red;
			this.Label2.Size = new System.Drawing.Size(133, 13);
			this.Label2.Location = new System.Drawing.Point(-36, 138);
			this.Label2.TabIndex = 45;
			this.Label2.BackColor = System.Drawing.Color.Transparent;
			this.Label2.Enabled = true;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.UseMnemonic = true;
			this.Label2.Visible = true;
			this.Label2.AutoSize = false;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Name = "Label2";
			this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._Label1_0.Text = "%:";
			this._Label1_0.ForeColor = System.Drawing.Color.Red;
			this._Label1_0.Size = new System.Drawing.Size(13, 13);
			this._Label1_0.Location = new System.Drawing.Point(138, 120);
			this._Label1_0.TabIndex = 44;
			this._Label1_0.BackColor = System.Drawing.Color.Transparent;
			this._Label1_0.Enabled = true;
			this._Label1_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_0.UseMnemonic = true;
			this._Label1_0.Visible = true;
			this._Label1_0.AutoSize = true;
			this._Label1_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_0.Name = "_Label1_0";
			this.lblDiscount.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscount.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDiscount.Text = "0.00";
			this.lblDiscount.ForeColor = System.Drawing.Color.Red;
			this.lblDiscount.Size = new System.Drawing.Size(91, 19);
			this.lblDiscount.Location = new System.Drawing.Point(153, 117);
			this.lblDiscount.TabIndex = 43;
			this.lblDiscount.Enabled = true;
			this.lblDiscount.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscount.UseMnemonic = true;
			this.lblDiscount.Visible = true;
			this.lblDiscount.AutoSize = false;
			this.lblDiscount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscount.Name = "lblDiscount";
			this.lblUllage.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblUllage.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblUllage.Text = "0.00";
			this.lblUllage.ForeColor = System.Drawing.Color.Red;
			this.lblUllage.Size = new System.Drawing.Size(91, 19);
			this.lblUllage.Location = new System.Drawing.Point(153, 138);
			this.lblUllage.TabIndex = 42;
			this.lblUllage.Enabled = true;
			this.lblUllage.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblUllage.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblUllage.UseMnemonic = true;
			this.lblUllage.Visible = true;
			this.lblUllage.AutoSize = false;
			this.lblUllage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblUllage.Name = "lblUllage";
			this.lblDiscountName.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscountName.Text = "Account Discount";
			this.lblDiscountName.ForeColor = System.Drawing.Color.Red;
			this.lblDiscountName.Size = new System.Drawing.Size(133, 13);
			this.lblDiscountName.Location = new System.Drawing.Point(-42, 120);
			this.lblDiscountName.TabIndex = 41;
			this.lblDiscountName.BackColor = System.Drawing.Color.Transparent;
			this.lblDiscountName.Enabled = true;
			this.lblDiscountName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountName.UseMnemonic = true;
			this.lblDiscountName.Visible = true;
			this.lblDiscountName.AutoSize = false;
			this.lblDiscountName.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDiscountName.Name = "lblDiscountName";
			this._lbl_31.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_31.Text = "Content Sub Total :";
			this._lbl_31.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_31.Size = new System.Drawing.Size(133, 13);
			this._lbl_31.Location = new System.Drawing.Point(18, 78);
			this._lbl_31.TabIndex = 40;
			this._lbl_31.BackColor = System.Drawing.Color.Transparent;
			this._lbl_31.Enabled = true;
			this._lbl_31.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_31.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_31.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_31.UseMnemonic = true;
			this._lbl_31.Visible = true;
			this._lbl_31.AutoSize = false;
			this._lbl_31.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_31.Name = "_lbl_31";
			this.lblContentExclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentExclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentExclusiveIn.Text = "0.00";
			this.lblContentExclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblContentExclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblContentExclusiveIn.Location = new System.Drawing.Point(153, 75);
			this.lblContentExclusiveIn.TabIndex = 39;
			this.lblContentExclusiveIn.Enabled = true;
			this.lblContentExclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentExclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentExclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentExclusiveIn.UseMnemonic = true;
			this.lblContentExclusiveIn.Visible = true;
			this.lblContentExclusiveIn.AutoSize = false;
			this.lblContentExclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentExclusiveIn.Name = "lblContentExclusiveIn";
			this._lbl_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_11.Text = "Sundry Minuses:";
			this._lbl_11.ForeColor = System.Drawing.Color.Red;
			this._lbl_11.Size = new System.Drawing.Size(133, 13);
			this._lbl_11.Location = new System.Drawing.Point(18, 183);
			this._lbl_11.TabIndex = 38;
			this._lbl_11.BackColor = System.Drawing.Color.Transparent;
			this._lbl_11.Enabled = true;
			this._lbl_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_11.UseMnemonic = true;
			this._lbl_11.Visible = true;
			this._lbl_11.AutoSize = false;
			this._lbl_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_11.Name = "_lbl_11";
			this._lbl_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_10.Text = "Sundry Pluses:";
			this._lbl_10.Size = new System.Drawing.Size(133, 13);
			this._lbl_10.Location = new System.Drawing.Point(18, 162);
			this._lbl_10.TabIndex = 37;
			this._lbl_10.BackColor = System.Drawing.Color.Transparent;
			this._lbl_10.Enabled = true;
			this._lbl_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_10.UseMnemonic = true;
			this._lbl_10.Visible = true;
			this._lbl_10.AutoSize = false;
			this._lbl_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_10.Name = "_lbl_10";
			this._lbl_32.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_32.Text = "No Of Lines :";
			this._lbl_32.Size = new System.Drawing.Size(133, 13);
			this._lbl_32.Location = new System.Drawing.Point(18, 15);
			this._lbl_32.TabIndex = 36;
			this._lbl_32.BackColor = System.Drawing.Color.Transparent;
			this._lbl_32.Enabled = true;
			this._lbl_32.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_32.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_32.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_32.UseMnemonic = true;
			this._lbl_32.Visible = true;
			this._lbl_32.AutoSize = false;
			this._lbl_32.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_32.Name = "_lbl_32";
			this.lblLinesIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblLinesIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblLinesIn.Text = "0";
			this.lblLinesIn.Size = new System.Drawing.Size(91, 19);
			this.lblLinesIn.Location = new System.Drawing.Point(153, 12);
			this.lblLinesIn.TabIndex = 35;
			this.lblLinesIn.Enabled = true;
			this.lblLinesIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblLinesIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblLinesIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblLinesIn.UseMnemonic = true;
			this.lblLinesIn.Visible = true;
			this.lblLinesIn.AutoSize = false;
			this.lblLinesIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblLinesIn.Name = "lblLinesIn";
			this._Frame1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Frame1_1.Text = "Deposits with Purchases";
			this._Frame1_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_1.Size = new System.Drawing.Size(301, 82);
			this._Frame1_1.Location = new System.Drawing.Point(9, 285);
			this._Frame1_1.TabIndex = 12;
			this._Frame1_1.Enabled = true;
			this._Frame1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_1.Visible = true;
			this._Frame1_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_1.Name = "_Frame1_1";
			this.lblDepositVatRateIn.Text = "0.00";
			this.lblDepositVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblDepositVatRateIn.Location = new System.Drawing.Point(243, 39);
			this.lblDepositVatRateIn.TabIndex = 59;
			this.lblDepositVatRateIn.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositVatRateIn.Enabled = true;
			this.lblDepositVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatRateIn.UseMnemonic = true;
			this.lblDepositVatRateIn.Visible = true;
			this.lblDepositVatRateIn.AutoSize = false;
			this.lblDepositVatRateIn.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositVatRateIn.Name = "lblDepositVatRateIn";
			this.lblDepositIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositIn.Text = "0.00";
			this.lblDepositIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositIn.Location = new System.Drawing.Point(150, 18);
			this.lblDepositIn.TabIndex = 14;
			this.lblDepositIn.Enabled = true;
			this.lblDepositIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositIn.UseMnemonic = true;
			this.lblDepositIn.Visible = true;
			this.lblDepositIn.AutoSize = false;
			this.lblDepositIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositIn.Name = "lblDepositIn";
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_2.Text = "Deposit Value:";
			this._lbl_2.Size = new System.Drawing.Size(133, 13);
			this._lbl_2.Location = new System.Drawing.Point(16, 21);
			this._lbl_2.TabIndex = 13;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = false;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this.lblDepositVatIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositVatIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositVatIn.Text = "0.00";
			this.lblDepositVatIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositVatIn.Location = new System.Drawing.Point(150, 36);
			this.lblDepositVatIn.TabIndex = 16;
			this.lblDepositVatIn.Enabled = true;
			this.lblDepositVatIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatIn.UseMnemonic = true;
			this.lblDepositVatIn.Visible = true;
			this.lblDepositVatIn.AutoSize = false;
			this.lblDepositVatIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositVatIn.Name = "lblDepositVatIn";
			this._lbl_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_13.Text = "VAT:";
			this._lbl_13.Size = new System.Drawing.Size(133, 13);
			this._lbl_13.Location = new System.Drawing.Point(16, 39);
			this._lbl_13.TabIndex = 15;
			this._lbl_13.BackColor = System.Drawing.Color.Transparent;
			this._lbl_13.Enabled = true;
			this._lbl_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_13.UseMnemonic = true;
			this._lbl_13.Visible = true;
			this._lbl_13.AutoSize = false;
			this._lbl_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_13.Name = "_lbl_13";
			this.lblDepositInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositInclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositInclusiveIn.Text = "0.00";
			this.lblDepositInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblDepositInclusiveIn.Location = new System.Drawing.Point(150, 54);
			this.lblDepositInclusiveIn.TabIndex = 18;
			this.lblDepositInclusiveIn.Enabled = true;
			this.lblDepositInclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositInclusiveIn.UseMnemonic = true;
			this.lblDepositInclusiveIn.Visible = true;
			this.lblDepositInclusiveIn.AutoSize = false;
			this.lblDepositInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositInclusiveIn.Name = "lblDepositInclusiveIn";
			this._lbl_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_14.Text = "Inclusive:";
			this._lbl_14.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_14.Size = new System.Drawing.Size(133, 13);
			this._lbl_14.Location = new System.Drawing.Point(16, 57);
			this._lbl_14.TabIndex = 17;
			this._lbl_14.BackColor = System.Drawing.Color.Transparent;
			this._lbl_14.Enabled = true;
			this._lbl_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_14.UseMnemonic = true;
			this._lbl_14.Visible = true;
			this._lbl_14.AutoSize = false;
			this._lbl_14.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_14.Name = "_lbl_14";
			this.Line2.X1 = 620;
			this.Line2.X2 = 24;
			this.Line2.Y1 = 485;
			this.Line2.Y2 = 485;
			this.Line2.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line2.BorderWidth = 1;
			this.Line2.Visible = true;
			this.Line2.Name = "Line2";
			this.Line1.X1 = 620;
			this.Line1.X2 = 24;
			this.Line1.Y1 = 482;
			this.Line1.Y2 = 482;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.BorderWidth = 1;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this._lbl_28.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_28.Text = "In Bound VAT:";
			this._lbl_28.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_28.Size = new System.Drawing.Size(133, 13);
			this._lbl_28.Location = new System.Drawing.Point(336, 456);
			this._lbl_28.TabIndex = 92;
			this._lbl_28.BackColor = System.Drawing.Color.Transparent;
			this._lbl_28.Enabled = true;
			this._lbl_28.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_28.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_28.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_28.UseMnemonic = true;
			this._lbl_28.Visible = true;
			this._lbl_28.AutoSize = false;
			this._lbl_28.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_28.Name = "_lbl_28";
			this.lblInBoundVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInBoundVat.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this.lblInBoundVat.Text = "0.00";
			this.lblInBoundVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInBoundVat.Size = new System.Drawing.Size(91, 19);
			this.lblInBoundVat.Location = new System.Drawing.Point(470, 453);
			this.lblInBoundVat.TabIndex = 91;
			this.lblInBoundVat.Enabled = true;
			this.lblInBoundVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInBoundVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInBoundVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInBoundVat.UseMnemonic = true;
			this.lblInBoundVat.Visible = true;
			this.lblInBoundVat.AutoSize = false;
			this.lblInBoundVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInBoundVat.Name = "lblInBoundVat";
			this._lbl_27.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_27.Text = "Credit Inclusive:";
			this._lbl_27.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_27.Size = new System.Drawing.Size(133, 13);
			this._lbl_27.Location = new System.Drawing.Point(337, 477);
			this._lbl_27.TabIndex = 90;
			this._lbl_27.BackColor = System.Drawing.Color.Transparent;
			this._lbl_27.Enabled = true;
			this._lbl_27.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_27.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_27.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_27.UseMnemonic = true;
			this._lbl_27.Visible = true;
			this._lbl_27.AutoSize = false;
			this._lbl_27.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_27.Name = "_lbl_27";
			this.lblInBound.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInBound.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this.lblInBound.Text = "0.00";
			this.lblInBound.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInBound.Size = new System.Drawing.Size(91, 19);
			this.lblInBound.Location = new System.Drawing.Point(471, 474);
			this.lblInBound.TabIndex = 89;
			this.lblInBound.Enabled = true;
			this.lblInBound.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInBound.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInBound.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInBound.UseMnemonic = true;
			this.lblInBound.Visible = true;
			this.lblInBound.AutoSize = false;
			this.lblInBound.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInBound.Name = "lblInBound";
			this._lbl_26.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_26.Text = "Credits VAT:";
			this._lbl_26.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_26.Size = new System.Drawing.Size(133, 13);
			this._lbl_26.Location = new System.Drawing.Point(336, 246);
			this._lbl_26.TabIndex = 88;
			this._lbl_26.BackColor = System.Drawing.Color.Transparent;
			this._lbl_26.Enabled = true;
			this._lbl_26.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_26.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_26.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_26.UseMnemonic = true;
			this._lbl_26.Visible = true;
			this._lbl_26.AutoSize = false;
			this._lbl_26.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_26.Name = "_lbl_26";
			this.lblCreditVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblCreditVat.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblCreditVat.Text = "0.00";
			this.lblCreditVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblCreditVat.Size = new System.Drawing.Size(91, 19);
			this.lblCreditVat.Location = new System.Drawing.Point(470, 243);
			this.lblCreditVat.TabIndex = 87;
			this.lblCreditVat.Enabled = true;
			this.lblCreditVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblCreditVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblCreditVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblCreditVat.UseMnemonic = true;
			this.lblCreditVat.Visible = true;
			this.lblCreditVat.AutoSize = false;
			this.lblCreditVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblCreditVat.Name = "lblCreditVat";
			this._lbl_25.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_25.Text = "Credits Inclusive:";
			this._lbl_25.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_25.Size = new System.Drawing.Size(133, 13);
			this._lbl_25.Location = new System.Drawing.Point(337, 267);
			this._lbl_25.TabIndex = 86;
			this._lbl_25.BackColor = System.Drawing.Color.Transparent;
			this._lbl_25.Enabled = true;
			this._lbl_25.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_25.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_25.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_25.UseMnemonic = true;
			this._lbl_25.Visible = true;
			this._lbl_25.AutoSize = false;
			this._lbl_25.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_25.Name = "_lbl_25";
			this.lblCredit.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblCredit.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblCredit.Text = "0.00";
			this.lblCredit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblCredit.Size = new System.Drawing.Size(91, 19);
			this.lblCredit.Location = new System.Drawing.Point(471, 264);
			this.lblCredit.TabIndex = 85;
			this.lblCredit.Enabled = true;
			this.lblCredit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblCredit.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblCredit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblCredit.UseMnemonic = true;
			this.lblCredit.Visible = true;
			this.lblCredit.AutoSize = false;
			this.lblCredit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblCredit.Name = "lblCredit";
			this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_8.Text = "Out Bound VAT:";
			this._lbl_8.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_8.Size = new System.Drawing.Size(133, 13);
			this._lbl_8.Location = new System.Drawing.Point(24, 456);
			this._lbl_8.TabIndex = 84;
			this._lbl_8.BackColor = System.Drawing.Color.Transparent;
			this._lbl_8.Enabled = true;
			this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_8.UseMnemonic = true;
			this._lbl_8.Visible = true;
			this._lbl_8.AutoSize = false;
			this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_8.Name = "_lbl_8";
			this.lblOutBoundVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblOutBoundVat.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblOutBoundVat.Text = "0.00";
			this.lblOutBoundVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblOutBoundVat.Size = new System.Drawing.Size(91, 19);
			this.lblOutBoundVat.Location = new System.Drawing.Point(158, 453);
			this.lblOutBoundVat.TabIndex = 83;
			this.lblOutBoundVat.Enabled = true;
			this.lblOutBoundVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblOutBoundVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblOutBoundVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblOutBoundVat.UseMnemonic = true;
			this.lblOutBoundVat.Visible = true;
			this.lblOutBoundVat.AutoSize = false;
			this.lblOutBoundVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblOutBoundVat.Name = "lblOutBoundVat";
			this.lblOutBound.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblOutBound.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblOutBound.Text = "0.00";
			this.lblOutBound.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblOutBound.Size = new System.Drawing.Size(91, 19);
			this.lblOutBound.Location = new System.Drawing.Point(159, 474);
			this.lblOutBound.TabIndex = 20;
			this.lblOutBound.Enabled = true;
			this.lblOutBound.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblOutBound.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblOutBound.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblOutBound.UseMnemonic = true;
			this.lblOutBound.Visible = true;
			this.lblOutBound.AutoSize = false;
			this.lblOutBound.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblOutBound.Name = "lblOutBound";
			this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_6.Text = "Purchases Inclusive:";
			this._lbl_6.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_6.Size = new System.Drawing.Size(133, 13);
			this._lbl_6.Location = new System.Drawing.Point(25, 477);
			this._lbl_6.TabIndex = 19;
			this._lbl_6.BackColor = System.Drawing.Color.Transparent;
			this._lbl_6.Enabled = true;
			this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_6.UseMnemonic = true;
			this._lbl_6.Visible = true;
			this._lbl_6.AutoSize = false;
			this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_6.Name = "_lbl_6";
			this.lblTotal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblTotal.Text = "0.00";
			this.lblTotal.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblTotal.Size = new System.Drawing.Size(91, 19);
			this.lblTotal.Location = new System.Drawing.Point(531, 522);
			this.lblTotal.TabIndex = 9;
			this.lblTotal.Enabled = true;
			this.lblTotal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotal.UseMnemonic = true;
			this.lblTotal.Visible = true;
			this.lblTotal.AutoSize = false;
			this.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotal.Name = "lblTotal";
			this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_7.Text = "Nett Invoice Value:";
			this._lbl_7.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_7.Size = new System.Drawing.Size(133, 13);
			this._lbl_7.Location = new System.Drawing.Point(396, 525);
			this._lbl_7.TabIndex = 8;
			this._lbl_7.BackColor = System.Drawing.Color.Transparent;
			this._lbl_7.Enabled = true;
			this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_7.UseMnemonic = true;
			this._lbl_7.Visible = true;
			this._lbl_7.AutoSize = false;
			this._lbl_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_7.Name = "_lbl_7";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "Desired Invoice Value:";
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.Size = new System.Drawing.Size(133, 13);
			this._lbl_0.Location = new System.Drawing.Point(24, 504);
			this._lbl_0.TabIndex = 28;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = false;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this.lblTotalOriginal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalOriginal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblTotalOriginal.Text = "0.00";
			this.lblTotalOriginal.Size = new System.Drawing.Size(91, 19);
			this.lblTotalOriginal.Location = new System.Drawing.Point(159, 501);
			this.lblTotalOriginal.TabIndex = 29;
			this.lblTotalOriginal.Enabled = true;
			this.lblTotalOriginal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalOriginal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalOriginal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalOriginal.UseMnemonic = true;
			this.lblTotalOriginal.Visible = true;
			this.lblTotalOriginal.AutoSize = false;
			this.lblTotalOriginal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalOriginal.Name = "lblTotalOriginal";
			this.lblDifference.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDifference.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDifference.Text = "0.00";
			this.lblDifference.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDifference.Size = new System.Drawing.Size(91, 19);
			this.lblDifference.Location = new System.Drawing.Point(159, 522);
			this.lblDifference.TabIndex = 31;
			this.lblDifference.Enabled = true;
			this.lblDifference.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDifference.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDifference.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDifference.UseMnemonic = true;
			this.lblDifference.Visible = true;
			this.lblDifference.AutoSize = false;
			this.lblDifference.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDifference.Name = "lblDifference";
			this._lbl_18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_18.Text = "Difference:";
			this._lbl_18.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_18.Size = new System.Drawing.Size(133, 13);
			this._lbl_18.Location = new System.Drawing.Point(24, 525);
			this._lbl_18.TabIndex = 30;
			this._lbl_18.BackColor = System.Drawing.Color.Transparent;
			this._lbl_18.Enabled = true;
			this._lbl_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_18.UseMnemonic = true;
			this._lbl_18.Visible = true;
			this._lbl_18.AutoSize = false;
			this._lbl_18.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_18.Name = "_lbl_18";
			this.Picture1.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture1.BackColor = System.Drawing.Color.Red;
			this.Picture1.Size = new System.Drawing.Size(760, 25);
			this.Picture1.Location = new System.Drawing.Point(0, 49);
			this.Picture1.TabIndex = 32;
			this.Picture1.TabStop = false;
			this.Picture1.CausesValidation = true;
			this.Picture1.Enabled = true;
			this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture1.Visible = true;
			this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture1.Name = "Picture1";
			this.lblSupplier.Text = "lblSupplier";
			this.lblSupplier.Font = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblSupplier.ForeColor = System.Drawing.Color.White;
			this.lblSupplier.Size = new System.Drawing.Size(85, 20);
			this.lblSupplier.Location = new System.Drawing.Point(0, 0);
			this.lblSupplier.TabIndex = 33;
			this.lblSupplier.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblSupplier.BackColor = System.Drawing.Color.Transparent;
			this.lblSupplier.Enabled = true;
			this.lblSupplier.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblSupplier.UseMnemonic = true;
			this.lblSupplier.Visible = true;
			this.lblSupplier.AutoSize = true;
			this.lblSupplier.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblSupplier.Name = "lblSupplier";
			this.Controls.Add(cmdNextFnV);
			this.Controls.Add(_Frame1_6);
			this.Controls.Add(Picture2);
			this.Controls.Add(frmProcess);
			this.Controls.Add(frmMain);
			this.Controls.Add(Picture1);
			this._Frame1_6.Controls.Add(cmdNext);
			this._Frame1_6.Controls.Add(Text1);
			this._Frame1_6.Controls.Add(Command2);
			this._Frame1_6.Controls.Add(Command1);
			this._Frame1_6.Controls.Add(txtQuantity);
			this._Frame1_6.Controls.Add(FGRecipe);
			this._Frame1_6.Controls.Add(Label5);
			this._Frame1_6.Controls.Add(Label4);
			this._Frame1_6.Controls.Add(lblRecipeCost);
			this.Picture2.Controls.Add(cmdExit);
			this.Picture2.Controls.Add(cmdBack);
			this.frmProcess.Controls.Add(txtNotes);
			this.frmProcess.Controls.Add(_optClose_0);
			this.frmProcess.Controls.Add(Label3);
			this.frmMain.Controls.Add(_Frame1_5);
			this.frmMain.Controls.Add(_Frame1_3);
			this.frmMain.Controls.Add(_Frame1_4);
			this.frmMain.Controls.Add(_Frame1_2);
			this.frmMain.Controls.Add(_Frame1_0);
			this.frmMain.Controls.Add(_Frame1_1);
			this.ShapeContainer1.Shapes.Add(Line2);
			this.ShapeContainer1.Shapes.Add(Line1);
			this.frmMain.Controls.Add(_lbl_28);
			this.frmMain.Controls.Add(lblInBoundVat);
			this.frmMain.Controls.Add(_lbl_27);
			this.frmMain.Controls.Add(lblInBound);
			this.frmMain.Controls.Add(_lbl_26);
			this.frmMain.Controls.Add(lblCreditVat);
			this.frmMain.Controls.Add(_lbl_25);
			this.frmMain.Controls.Add(lblCredit);
			this.frmMain.Controls.Add(_lbl_8);
			this.frmMain.Controls.Add(lblOutBoundVat);
			this.frmMain.Controls.Add(lblOutBound);
			this.frmMain.Controls.Add(_lbl_6);
			this.frmMain.Controls.Add(lblTotal);
			this.frmMain.Controls.Add(_lbl_7);
			this.frmMain.Controls.Add(_lbl_0);
			this.frmMain.Controls.Add(lblTotalOriginal);
			this.frmMain.Controls.Add(lblDifference);
			this.frmMain.Controls.Add(_lbl_18);
			this.frmMain.Controls.Add(ShapeContainer1);
			this._Frame1_5.Controls.Add(lblDepositReturnIn);
			this._Frame1_5.Controls.Add(_lbl_35);
			this._Frame1_5.Controls.Add(lblDepositReturnVatIn);
			this._Frame1_5.Controls.Add(_lbl_34);
			this._Frame1_5.Controls.Add(lblDepositReturnInclusiveIn);
			this._Frame1_5.Controls.Add(_lbl_33);
			this._Frame1_5.Controls.Add(lblDepositReturnVatRateIn);
			this._Frame1_3.Controls.Add(lblContentOut);
			this._Frame1_3.Controls.Add(lblDiscountLineOut);
			this._Frame1_3.Controls.Add(_lbl_1);
			this._Frame1_3.Controls.Add(_lbl_3);
			this._Frame1_3.Controls.Add(lblExclusiveOut);
			this._Frame1_3.Controls.Add(_lbl_4);
			this._Frame1_3.Controls.Add(_lbl_5);
			this._Frame1_3.Controls.Add(lblVATout);
			this._Frame1_3.Controls.Add(_lbl_12);
			this._Frame1_3.Controls.Add(lblInclusiveOut);
			this._Frame1_3.Controls.Add(lblVatRateOut);
			this._Frame1_3.Controls.Add(_lbl_37);
			this._Frame1_3.Controls.Add(lblLinesOut);
			this._Frame1_4.Controls.Add(lblDepositVatRateOut);
			this._Frame1_4.Controls.Add(lblDepositOut);
			this._Frame1_4.Controls.Add(_lbl_9);
			this._Frame1_4.Controls.Add(lblDepositVatOut);
			this._Frame1_4.Controls.Add(_lbl_23);
			this._Frame1_4.Controls.Add(lblDepositInclusiveOut);
			this._Frame1_4.Controls.Add(_lbl_24);
			this._Frame1_2.Controls.Add(lblDepositReturnVatRateOut);
			this._Frame1_2.Controls.Add(_lbl_15);
			this._Frame1_2.Controls.Add(lblDepositReturnInclusiveOut);
			this._Frame1_2.Controls.Add(_lbl_16);
			this._Frame1_2.Controls.Add(lblDepositReturnVatOut);
			this._Frame1_2.Controls.Add(_lbl_17);
			this._Frame1_2.Controls.Add(lblDepositReturnOut);
			this._Frame1_0.Controls.Add(cmbPayment);
			this._Frame1_0.Controls.Add(txtUllage);
			this._Frame1_0.Controls.Add(txtDiscount);
			this._Frame1_0.Controls.Add(txtMinus);
			this._Frame1_0.Controls.Add(txtPlus);
			this._Frame1_0.Controls.Add(lblContentIn);
			this._Frame1_0.Controls.Add(lblDiscountLineIn);
			this._Frame1_0.Controls.Add(_lbl_20);
			this._Frame1_0.Controls.Add(_lbl_21);
			this._Frame1_0.Controls.Add(lblExclusiveIn);
			this._Frame1_0.Controls.Add(_lbl_22);
			this._Frame1_0.Controls.Add(_lbl_29);
			this._Frame1_0.Controls.Add(lblVATin);
			this._Frame1_0.Controls.Add(_lbl_30);
			this._Frame1_0.Controls.Add(lblInclusiveIn);
			this._Frame1_0.Controls.Add(lblVatRateIn);
			this._Frame1_0.Controls.Add(_lbl_19);
			this._Frame1_0.Controls.Add(_Label1_1);
			this._Frame1_0.Controls.Add(Label2);
			this._Frame1_0.Controls.Add(_Label1_0);
			this._Frame1_0.Controls.Add(lblDiscount);
			this._Frame1_0.Controls.Add(lblUllage);
			this._Frame1_0.Controls.Add(lblDiscountName);
			this._Frame1_0.Controls.Add(_lbl_31);
			this._Frame1_0.Controls.Add(lblContentExclusiveIn);
			this._Frame1_0.Controls.Add(_lbl_11);
			this._Frame1_0.Controls.Add(_lbl_10);
			this._Frame1_0.Controls.Add(_lbl_32);
			this._Frame1_0.Controls.Add(lblLinesIn);
			this._Frame1_1.Controls.Add(lblDepositVatRateIn);
			this._Frame1_1.Controls.Add(lblDepositIn);
			this._Frame1_1.Controls.Add(_lbl_2);
			this._Frame1_1.Controls.Add(lblDepositVatIn);
			this._Frame1_1.Controls.Add(_lbl_13);
			this._Frame1_1.Controls.Add(lblDepositInclusiveIn);
			this._Frame1_1.Controls.Add(_lbl_14);
			this.Picture1.Controls.Add(lblSupplier);
			//Me.Frame1.SetIndex(_Frame1_6, CType(6, Short))
			//Me.Frame1.SetIndex(_Frame1_5, CType(5, Short))
			//Me.Frame1.SetIndex(_Frame1_3, CType(3, Short))
			//Me.Frame1.SetIndex(_Frame1_4, CType(4, Short))
			//Me.Frame1.SetIndex(_Frame1_2, CType(2, Short))
			//Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
			//Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
			//Me.Label1.SetIndex(_Label1_1, CType(1, Short))
			//Me.Label1.SetIndex(_Label1_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_35, CType(35, Short))
			//Me.lbl.SetIndex(_lbl_34, CType(34, Short))
			//Me.lbl.SetIndex(_lbl_33, CType(33, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_12, CType(12, Short))
			//Me.lbl.SetIndex(_lbl_37, CType(37, Short))
			//Me.lbl.SetIndex(_lbl_9, CType(9, Short))
			//Me.lbl.SetIndex(_lbl_23, CType(23, Short))
			//Me.lbl.SetIndex(_lbl_24, CType(24, Short))
			//Me.lbl.SetIndex(_lbl_15, CType(15, Short))
			//Me.lbl.SetIndex(_lbl_16, CType(16, Short))
			//Me.lbl.SetIndex(_lbl_17, CType(17, Short))
			//Me.lbl.SetIndex(_lbl_20, CType(20, Short))
			//Me.lbl.SetIndex(_lbl_21, CType(21, Short))
			//Me.lbl.SetIndex(_lbl_22, CType(22, Short))
			//Me.lbl.SetIndex(_lbl_29, CType(29, Short))
			//Me.lbl.SetIndex(_lbl_30, CType(30, Short))
			//Me.lbl.SetIndex(_lbl_19, CType(19, Short))
			//Me.lbl.SetIndex(_lbl_31, CType(31, Short))
			//Me.lbl.SetIndex(_lbl_11, CType(11, Short))
			//Me.lbl.SetIndex(_lbl_10, CType(10, Short))
			//Me.lbl.SetIndex(_lbl_32, CType(32, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_13, CType(13, Short))
			//Me.lbl.SetIndex(_lbl_14, CType(14, Short))
			//Me.lbl.SetIndex(_lbl_28, CType(28, Short))
			//Me.lbl.SetIndex(_lbl_27, CType(27, Short))
			//Me.lbl.SetIndex(_lbl_26, CType(26, Short))
			//Me.lbl.SetIndex(_lbl_25, CType(25, Short))
			//Me.lbl.SetIndex(_lbl_8, CType(8, Short))
			//Me.lbl.SetIndex(_lbl_6, CType(6, Short))
			//Me.lbl.SetIndex(_lbl_7, CType(7, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_18, CType(18, Short))
			//Me.optClose.SetIndex(_optClose_0, CType(0, Short))
			//CType(Me.optClose, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.FGRecipe).EndInit();
			this._Frame1_6.ResumeLayout(false);
			this.Picture2.ResumeLayout(false);
			this.frmProcess.ResumeLayout(false);
			this.frmMain.ResumeLayout(false);
			this._Frame1_5.ResumeLayout(false);
			this._Frame1_3.ResumeLayout(false);
			this._Frame1_4.ResumeLayout(false);
			this._Frame1_2.ResumeLayout(false);
			this._Frame1_0.ResumeLayout(false);
			this._Frame1_1.ResumeLayout(false);
			this.Picture1.ResumeLayout(false);
			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();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_familiateladet));
     this.label4 = new System.Windows.Forms.Label();
     this.btn_busqueda = new System.Windows.Forms.Button();
     this.txt_criterio = new System.Windows.Forms.TextBox();
     this.label5 = new System.Windows.Forms.Label();
     this.gridfamiliateladet = new System.Windows.Forms.DataGridView();
     this.gestructuraname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glineaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gfamiliatelaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gfamiliatelaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.glineaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gestructuraid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gproductid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.gproductname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.usuar = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.feact = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.fecre = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.groupBox1 = new System.Windows.Forms.GroupBox();
     this.productid = new System.Windows.Forms.TextBox();
     this.productname = new System.Windows.Forms.TextBox();
     this.labelControl3 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl4 = new DevExpress.XtraEditors.LabelControl();
     this.tejidoid = new System.Windows.Forms.ComboBox();
     this.labelControl2 = new DevExpress.XtraEditors.LabelControl();
     this.labelControl1 = new DevExpress.XtraEditors.LabelControl();
     this.estructuraid = new System.Windows.Forms.ComboBox();
     this.familiatelaid = new System.Windows.Forms.TextBox();
     this.familiatelaname = new System.Windows.Forms.TextBox();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.panel1 = new System.Windows.Forms.Panel();
     this.label11 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.mdi_dgb_familia = new DevExpress.XtraGrid.GridControl();
     this.CmMenuGrid = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.ExpGridExcel = new System.Windows.Forms.ToolStripMenuItem();
     this.dgb_familia = new DevExpress.XtraGrid.Views.Grid.GridView();
     this.estructuraname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lineaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ffamiliatelaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ffamiliatelaname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.lineaid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.festructuraid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fproductid = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fproductname = new DevExpress.XtraGrid.Columns.GridColumn();
     this.fusuar = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ffecre = new DevExpress.XtraGrid.Columns.GridColumn();
     this.ffact = new DevExpress.XtraGrid.Columns.GridColumn();
     this.sfdfamilia = new System.Windows.Forms.SaveFileDialog();
     ((System.ComponentModel.ISupportInitialize)(this.gridfamiliateladet)).BeginInit();
     this.groupBox1.SuspendLayout();
     this.Botonera.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mdi_dgb_familia)).BeginInit();
     this.CmMenuGrid.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgb_familia)).BeginInit();
     this.SuspendLayout();
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.Black;
     this.label4.Location = new System.Drawing.Point(12, 188);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(82, 13);
     this.label4.TabIndex = 109;
     this.label4.Text = "» Busqueda :";
     //
     // btn_busqueda
     //
     this.btn_busqueda.BackColor = System.Drawing.Color.Transparent;
     this.btn_busqueda.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_busqueda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btn_busqueda.Image = global::BapFormulariosNet.Properties.Resources.go_search3;
     this.btn_busqueda.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btn_busqueda.Location = new System.Drawing.Point(454, 208);
     this.btn_busqueda.Name = "btn_busqueda";
     this.btn_busqueda.Size = new System.Drawing.Size(79, 33);
     this.btn_busqueda.TabIndex = 18;
     this.btn_busqueda.Text = "&Buscar";
     this.btn_busqueda.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
     this.btn_busqueda.UseVisualStyleBackColor = false;
     this.btn_busqueda.Click += new System.EventHandler(this.btn_busqueda_Click);
     //
     // txt_criterio
     //
     this.txt_criterio.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.txt_criterio.Location = new System.Drawing.Point(104, 215);
     this.txt_criterio.MaxLength = 0;
     this.txt_criterio.Name = "txt_criterio";
     this.txt_criterio.Size = new System.Drawing.Size(344, 20);
     this.txt_criterio.TabIndex = 17;
     this.txt_criterio.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txt_criterio_KeyDown);
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.Black;
     this.label5.Location = new System.Drawing.Point(12, 218);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(89, 13);
     this.label5.TabIndex = 16;
     this.label5.Text = "» Descripción:";
     //
     // gridfamiliateladet
     //
     this.gridfamiliateladet.AllowUserToAddRows = false;
     this.gridfamiliateladet.AllowUserToDeleteRows = false;
     this.gridfamiliateladet.AllowUserToResizeColumns = false;
     this.gridfamiliateladet.AllowUserToResizeRows = false;
     this.gridfamiliateladet.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     dataGridViewCellStyle3.BackColor = System.Drawing.SystemColors.Control;
     dataGridViewCellStyle3.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle3.ForeColor = System.Drawing.SystemColors.WindowText;
     dataGridViewCellStyle3.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle3.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
     this.gridfamiliateladet.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle3;
     this.gridfamiliateladet.ColumnHeadersHeight = 20;
     this.gridfamiliateladet.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.gestructuraname,
     this.glineaname,
     this.gfamiliatelaid,
     this.gfamiliatelaname,
     this.glineaid,
     this.gestructuraid,
     this.gproductid,
     this.gproductname,
     this.usuar,
     this.feact,
     this.fecre});
     this.gridfamiliateladet.Location = new System.Drawing.Point(850, 240);
     this.gridfamiliateladet.MultiSelect = false;
     this.gridfamiliateladet.Name = "gridfamiliateladet";
     this.gridfamiliateladet.RowHeadersVisible = false;
     this.gridfamiliateladet.RowHeadersWidth = 10;
     dataGridViewCellStyle4.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.gridfamiliateladet.RowsDefaultCellStyle = dataGridViewCellStyle4;
     this.gridfamiliateladet.RowTemplate.Height = 20;
     this.gridfamiliateladet.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.gridfamiliateladet.Size = new System.Drawing.Size(13, 83);
     this.gridfamiliateladet.TabIndex = 19;
     this.gridfamiliateladet.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridfamiliateladet_CellClick);
     this.gridfamiliateladet.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridfamiliateladet_CellEnter);
     this.gridfamiliateladet.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.gridfamiliateladet_CellLeave);
     this.gridfamiliateladet.KeyUp += new System.Windows.Forms.KeyEventHandler(this.gridfamiliateladet_KeyUp);
     //
     // gestructuraname
     //
     this.gestructuraname.DataPropertyName = "estructuraname";
     this.gestructuraname.HeaderText = "Estructura";
     this.gestructuraname.Name = "gestructuraname";
     this.gestructuraname.Width = 70;
     //
     // glineaname
     //
     this.glineaname.DataPropertyName = "lineaname";
     this.glineaname.HeaderText = "Tejido";
     this.glineaname.Name = "glineaname";
     this.glineaname.Width = 90;
     //
     // gfamiliatelaid
     //
     this.gfamiliatelaid.DataPropertyName = "familiatelaid";
     this.gfamiliatelaid.HeaderText = "Cód";
     this.gfamiliatelaid.Name = "gfamiliatelaid";
     this.gfamiliatelaid.Visible = false;
     this.gfamiliatelaid.Width = 40;
     //
     // gfamiliatelaname
     //
     this.gfamiliatelaname.DataPropertyName = "familiatelaname";
     this.gfamiliatelaname.HeaderText = "Familia-Telas";
     this.gfamiliatelaname.Name = "gfamiliatelaname";
     this.gfamiliatelaname.Width = 250;
     //
     // glineaid
     //
     this.glineaid.DataPropertyName = "lineaid";
     this.glineaid.HeaderText = "lineaid";
     this.glineaid.Name = "glineaid";
     this.glineaid.Visible = false;
     //
     // gestructuraid
     //
     this.gestructuraid.DataPropertyName = "estructuraid";
     this.gestructuraid.HeaderText = "estructuraid";
     this.gestructuraid.Name = "gestructuraid";
     this.gestructuraid.Visible = false;
     //
     // gproductid
     //
     this.gproductid.DataPropertyName = "productid";
     this.gproductid.HeaderText = "Codigo";
     this.gproductid.Name = "gproductid";
     this.gproductid.Width = 95;
     //
     // gproductname
     //
     this.gproductname.DataPropertyName = "productname";
     this.gproductname.HeaderText = "Producto";
     this.gproductname.Name = "gproductname";
     this.gproductname.Width = 300;
     //
     // usuar
     //
     this.usuar.DataPropertyName = "usuar";
     this.usuar.HeaderText = "usuar";
     this.usuar.Name = "usuar";
     this.usuar.Visible = false;
     //
     // feact
     //
     this.feact.DataPropertyName = "feact";
     this.feact.HeaderText = "feact";
     this.feact.Name = "feact";
     this.feact.Visible = false;
     //
     // fecre
     //
     this.fecre.DataPropertyName = "fecre";
     this.fecre.HeaderText = "fecre";
     this.fecre.Name = "fecre";
     this.fecre.Visible = false;
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.productid);
     this.groupBox1.Controls.Add(this.productname);
     this.groupBox1.Controls.Add(this.labelControl3);
     this.groupBox1.Controls.Add(this.labelControl4);
     this.groupBox1.Controls.Add(this.tejidoid);
     this.groupBox1.Controls.Add(this.labelControl2);
     this.groupBox1.Controls.Add(this.labelControl1);
     this.groupBox1.Controls.Add(this.estructuraid);
     this.groupBox1.Controls.Add(this.familiatelaid);
     this.groupBox1.Controls.Add(this.familiatelaname);
     this.groupBox1.Location = new System.Drawing.Point(3, 63);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(814, 116);
     this.groupBox1.TabIndex = 8;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "Datos";
     //
     // productid
     //
     this.productid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.productid.Location = new System.Drawing.Point(100, 90);
     this.productid.MaxLength = 13;
     this.productid.Name = "productid";
     this.productid.Size = new System.Drawing.Size(101, 20);
     this.productid.TabIndex = 25;
     this.productid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.productid_KeyDown);
     //
     // productname
     //
     this.productname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.productname.Location = new System.Drawing.Point(202, 90);
     this.productname.Name = "productname";
     this.productname.Size = new System.Drawing.Size(351, 20);
     this.productname.TabIndex = 26;
     //
     // labelControl3
     //
     this.labelControl3.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl3.Location = new System.Drawing.Point(20, 95);
     this.labelControl3.Name = "labelControl3";
     this.labelControl3.Size = new System.Drawing.Size(38, 13);
     this.labelControl3.TabIndex = 24;
     this.labelControl3.Text = "» Tela:";
     //
     // labelControl4
     //
     this.labelControl4.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl4.Location = new System.Drawing.Point(20, 70);
     this.labelControl4.Name = "labelControl4";
     this.labelControl4.Size = new System.Drawing.Size(54, 13);
     this.labelControl4.TabIndex = 23;
     this.labelControl4.Text = "» Familia:";
     //
     // tejidoid
     //
     this.tejidoid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tejidoid.FormattingEnabled = true;
     this.tejidoid.Location = new System.Drawing.Point(101, 40);
     this.tejidoid.Name = "tejidoid";
     this.tejidoid.Size = new System.Drawing.Size(191, 22);
     this.tejidoid.TabIndex = 21;
     //
     // labelControl2
     //
     this.labelControl2.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl2.Location = new System.Drawing.Point(20, 20);
     this.labelControl2.Name = "labelControl2";
     this.labelControl2.Size = new System.Drawing.Size(73, 13);
     this.labelControl2.TabIndex = 20;
     this.labelControl2.Text = "» Estructura:";
     //
     // labelControl1
     //
     this.labelControl1.Appearance.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold);
     this.labelControl1.Location = new System.Drawing.Point(20, 46);
     this.labelControl1.Name = "labelControl1";
     this.labelControl1.Size = new System.Drawing.Size(49, 13);
     this.labelControl1.TabIndex = 19;
     this.labelControl1.Text = "» Tejido:";
     //
     // estructuraid
     //
     this.estructuraid.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.estructuraid.FormattingEnabled = true;
     this.estructuraid.Location = new System.Drawing.Point(101, 15);
     this.estructuraid.Name = "estructuraid";
     this.estructuraid.Size = new System.Drawing.Size(191, 22);
     this.estructuraid.TabIndex = 18;
     this.estructuraid.SelectedIndexChanged += new System.EventHandler(this.estructuraid_SelectedIndexChanged);
     //
     // familiatelaid
     //
     this.familiatelaid.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.familiatelaid.Location = new System.Drawing.Point(100, 67);
     this.familiatelaid.MaxLength = 3;
     this.familiatelaid.Name = "familiatelaid";
     this.familiatelaid.Size = new System.Drawing.Size(32, 20);
     this.familiatelaid.TabIndex = 11;
     this.familiatelaid.Text = "NNN";
     this.familiatelaid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.familiatelaid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.femiliatelaid_KeyDown);
     //
     // familiatelaname
     //
     this.familiatelaname.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.familiatelaname.Location = new System.Drawing.Point(134, 67);
     this.familiatelaname.Name = "familiatelaname";
     this.familiatelaname.Size = new System.Drawing.Size(279, 20);
     this.familiatelaname.TabIndex = 12;
     //
     // Botonera
     //
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_clave,
     this.btn_log,
     this.btn_salir});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(820, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     //
     // btn_nuevo
     //
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = global::BapFormulariosNet.Properties.Resources.go_new3;
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.SystemColors.ButtonFace;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo2;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = ((System.Drawing.Image)(resources.GetObject("btn_eliminar.Image")));
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = global::BapFormulariosNet.Properties.Resources.dev_printer;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(26, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "toolStripButton1";
     this.btn_clave.ToolTipText = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "toolStripButton16";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.label11);
     this.panel1.Location = new System.Drawing.Point(0, 2);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(829, 57);
     this.panel1.TabIndex = 110;
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.BackColor = System.Drawing.Color.Transparent;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.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(342, 29);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(147, 24);
     this.label11.TabIndex = 5;
     this.label11.Text = "Familia Detalle";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(820, 575);
     this.shapeContainer1.TabIndex = 108;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape1
     //
     this.lineShape1.BorderWidth = 2;
     this.lineShape1.Name = "lineShape1";
     this.lineShape1.X1 = 12;
     this.lineShape1.X2 = 523;
     this.lineShape1.Y1 = 204;
     this.lineShape1.Y2 = 204;
     //
     // mdi_dgb_familia
     //
     this.mdi_dgb_familia.ContextMenuStrip = this.CmMenuGrid;
     this.mdi_dgb_familia.Location = new System.Drawing.Point(4, 243);
     this.mdi_dgb_familia.MainView = this.dgb_familia;
     this.mdi_dgb_familia.Name = "mdi_dgb_familia";
     this.mdi_dgb_familia.Size = new System.Drawing.Size(813, 329);
     this.mdi_dgb_familia.TabIndex = 111;
     this.mdi_dgb_familia.ViewCollection.AddRange(new DevExpress.XtraGrid.Views.Base.BaseView[] {
     this.dgb_familia});
     this.mdi_dgb_familia.KeyUp += new System.Windows.Forms.KeyEventHandler(this.mdi_dgb_familia_KeyUp);
     //
     // CmMenuGrid
     //
     this.CmMenuGrid.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.ExpGridExcel});
     this.CmMenuGrid.Name = "CmMenuGrid";
     this.CmMenuGrid.Size = new System.Drawing.Size(147, 26);
     //
     // ExpGridExcel
     //
     this.ExpGridExcel.Name = "ExpGridExcel";
     this.ExpGridExcel.Size = new System.Drawing.Size(146, 22);
     this.ExpGridExcel.Text = "Exportar Excel";
     this.ExpGridExcel.Click += new System.EventHandler(this.ExpGridExcel_Click);
     //
     // dgb_familia
     //
     this.dgb_familia.Appearance.ColumnFilterButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.ColumnFilterButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_familia.Appearance.ColumnFilterButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.ColumnFilterButton.ForeColor = System.Drawing.Color.Gray;
     this.dgb_familia.Appearance.ColumnFilterButton.Options.UseBackColor = true;
     this.dgb_familia.Appearance.ColumnFilterButton.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.ColumnFilterButton.Options.UseForeColor = true;
     this.dgb_familia.Appearance.ColumnFilterButtonActive.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_familia.Appearance.ColumnFilterButtonActive.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(181)))), ((int)(((byte)(223)))), ((int)(((byte)(217)))));
     this.dgb_familia.Appearance.ColumnFilterButtonActive.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_familia.Appearance.ColumnFilterButtonActive.ForeColor = System.Drawing.Color.Blue;
     this.dgb_familia.Appearance.ColumnFilterButtonActive.Options.UseBackColor = true;
     this.dgb_familia.Appearance.ColumnFilterButtonActive.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.ColumnFilterButtonActive.Options.UseForeColor = true;
     this.dgb_familia.Appearance.Empty.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_familia.Appearance.Empty.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FilterCloseButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_familia.Appearance.FilterCloseButton.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(104)))), ((int)(((byte)(138)))), ((int)(((byte)(131)))));
     this.dgb_familia.Appearance.FilterCloseButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_familia.Appearance.FilterCloseButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.FilterCloseButton.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_familia.Appearance.FilterCloseButton.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FilterCloseButton.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.FilterCloseButton.Options.UseForeColor = true;
     this.dgb_familia.Appearance.FilterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(14)))), ((int)(((byte)(48)))), ((int)(((byte)(41)))));
     this.dgb_familia.Appearance.FilterPanel.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_familia.Appearance.FilterPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_familia.Appearance.FilterPanel.GradientMode = System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal;
     this.dgb_familia.Appearance.FilterPanel.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FilterPanel.Options.UseForeColor = true;
     this.dgb_familia.Appearance.FixedLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(2)))), ((int)(((byte)(74)))), ((int)(((byte)(66)))));
     this.dgb_familia.Appearance.FixedLine.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FocusedCell.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_familia.Appearance.FocusedCell.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.FocusedCell.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FocusedCell.Options.UseForeColor = true;
     this.dgb_familia.Appearance.FocusedRow.BackColor = System.Drawing.Color.Navy;
     this.dgb_familia.Appearance.FocusedRow.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(50)))), ((int)(((byte)(50)))), ((int)(((byte)(178)))));
     this.dgb_familia.Appearance.FocusedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_familia.Appearance.FocusedRow.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FocusedRow.Options.UseForeColor = true;
     this.dgb_familia.Appearance.FooterPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.FooterPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.FooterPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.FooterPanel.Options.UseBackColor = true;
     this.dgb_familia.Appearance.FooterPanel.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.FooterPanel.Options.UseForeColor = true;
     this.dgb_familia.Appearance.GroupButton.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.GroupButton.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.GroupButton.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.GroupButton.Options.UseBackColor = true;
     this.dgb_familia.Appearance.GroupButton.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.GroupButton.Options.UseForeColor = true;
     this.dgb_familia.Appearance.GroupFooter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_familia.Appearance.GroupFooter.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(146)))), ((int)(((byte)(202)))), ((int)(((byte)(194)))));
     this.dgb_familia.Appearance.GroupFooter.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.GroupFooter.Options.UseBackColor = true;
     this.dgb_familia.Appearance.GroupFooter.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.GroupFooter.Options.UseForeColor = true;
     this.dgb_familia.Appearance.GroupPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(44)))), ((int)(((byte)(78)))), ((int)(((byte)(71)))));
     this.dgb_familia.Appearance.GroupPanel.BackColor2 = System.Drawing.Color.White;
     this.dgb_familia.Appearance.GroupPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_familia.Appearance.GroupPanel.ForeColor = System.Drawing.Color.White;
     this.dgb_familia.Appearance.GroupPanel.Options.UseBackColor = true;
     this.dgb_familia.Appearance.GroupPanel.Options.UseFont = true;
     this.dgb_familia.Appearance.GroupPanel.Options.UseForeColor = true;
     this.dgb_familia.Appearance.GroupRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(72)))), ((int)(((byte)(144)))), ((int)(((byte)(136)))));
     this.dgb_familia.Appearance.GroupRow.ForeColor = System.Drawing.Color.Silver;
     this.dgb_familia.Appearance.GroupRow.Options.UseBackColor = true;
     this.dgb_familia.Appearance.GroupRow.Options.UseForeColor = true;
     this.dgb_familia.Appearance.HeaderPanel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.HeaderPanel.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.HeaderPanel.Font = new System.Drawing.Font("Tahoma", 8F, System.Drawing.FontStyle.Bold);
     this.dgb_familia.Appearance.HeaderPanel.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.HeaderPanel.Options.UseBackColor = true;
     this.dgb_familia.Appearance.HeaderPanel.Options.UseBorderColor = true;
     this.dgb_familia.Appearance.HeaderPanel.Options.UseFont = true;
     this.dgb_familia.Appearance.HeaderPanel.Options.UseForeColor = true;
     this.dgb_familia.Appearance.HideSelectionRow.BackColor = System.Drawing.Color.Gray;
     this.dgb_familia.Appearance.HideSelectionRow.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(212)))), ((int)(((byte)(208)))), ((int)(((byte)(200)))));
     this.dgb_familia.Appearance.HideSelectionRow.Options.UseBackColor = true;
     this.dgb_familia.Appearance.HideSelectionRow.Options.UseForeColor = true;
     this.dgb_familia.Appearance.HorzLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.HorzLine.Options.UseBackColor = true;
     this.dgb_familia.Appearance.Preview.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(196)))), ((int)(((byte)(252)))), ((int)(((byte)(244)))));
     this.dgb_familia.Appearance.Preview.BackColor2 = System.Drawing.Color.White;
     this.dgb_familia.Appearance.Preview.ForeColor = System.Drawing.Color.Navy;
     this.dgb_familia.Appearance.Preview.Options.UseBackColor = true;
     this.dgb_familia.Appearance.Preview.Options.UseForeColor = true;
     this.dgb_familia.Appearance.Row.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(200)))), ((int)(((byte)(224)))), ((int)(((byte)(216)))));
     this.dgb_familia.Appearance.Row.ForeColor = System.Drawing.Color.Black;
     this.dgb_familia.Appearance.Row.Options.UseBackColor = true;
     this.dgb_familia.Appearance.Row.Options.UseForeColor = true;
     this.dgb_familia.Appearance.RowSeparator.BackColor = System.Drawing.Color.White;
     this.dgb_familia.Appearance.RowSeparator.BackColor2 = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(212)))), ((int)(((byte)(204)))));
     this.dgb_familia.Appearance.RowSeparator.Options.UseBackColor = true;
     this.dgb_familia.Appearance.SelectedRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(10)))), ((int)(((byte)(10)))), ((int)(((byte)(138)))));
     this.dgb_familia.Appearance.SelectedRow.ForeColor = System.Drawing.Color.White;
     this.dgb_familia.Appearance.SelectedRow.Options.UseBackColor = true;
     this.dgb_familia.Appearance.SelectedRow.Options.UseForeColor = true;
     this.dgb_familia.Appearance.TopNewRow.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(215)))), ((int)(((byte)(232)))), ((int)(((byte)(226)))));
     this.dgb_familia.Appearance.TopNewRow.Options.UseBackColor = true;
     this.dgb_familia.Appearance.VertLine.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(136)))), ((int)(((byte)(192)))), ((int)(((byte)(184)))));
     this.dgb_familia.Appearance.VertLine.Options.UseBackColor = true;
     this.dgb_familia.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.Office2003;
     this.dgb_familia.Columns.AddRange(new DevExpress.XtraGrid.Columns.GridColumn[] {
     this.estructuraname,
     this.lineaname,
     this.ffamiliatelaid,
     this.ffamiliatelaname,
     this.lineaid,
     this.festructuraid,
     this.fproductid,
     this.fproductname,
     this.fusuar,
     this.ffecre,
     this.ffact});
     this.dgb_familia.GridControl = this.mdi_dgb_familia;
     this.dgb_familia.Name = "dgb_familia";
     this.dgb_familia.OptionsView.ShowGroupPanel = false;
     this.dgb_familia.PaintStyleName = "Web";
     this.dgb_familia.RowCellClick += new DevExpress.XtraGrid.Views.Grid.RowCellClickEventHandler(this.dgb_familia_RowCellClick);
     //
     // estructuraname
     //
     this.estructuraname.Caption = "Estructura";
     this.estructuraname.FieldName = "estructuraname";
     this.estructuraname.Name = "estructuraname";
     this.estructuraname.OptionsColumn.AllowEdit = false;
     this.estructuraname.OptionsColumn.ReadOnly = true;
     this.estructuraname.Visible = true;
     this.estructuraname.VisibleIndex = 0;
     this.estructuraname.Width = 58;
     //
     // lineaname
     //
     this.lineaname.Caption = "Tejido";
     this.lineaname.FieldName = "lineaname";
     this.lineaname.Name = "lineaname";
     this.lineaname.OptionsColumn.AllowEdit = false;
     this.lineaname.OptionsColumn.ReadOnly = true;
     this.lineaname.Visible = true;
     this.lineaname.VisibleIndex = 1;
     this.lineaname.Width = 105;
     //
     // ffamiliatelaid
     //
     this.ffamiliatelaid.Caption = "cod";
     this.ffamiliatelaid.FieldName = "familiatelaid";
     this.ffamiliatelaid.Name = "ffamiliatelaid";
     //
     // ffamiliatelaname
     //
     this.ffamiliatelaname.Caption = "Familia-Telas";
     this.ffamiliatelaname.FieldName = "familiatelaname";
     this.ffamiliatelaname.Name = "ffamiliatelaname";
     this.ffamiliatelaname.OptionsColumn.AllowEdit = false;
     this.ffamiliatelaname.OptionsColumn.ReadOnly = true;
     this.ffamiliatelaname.Visible = true;
     this.ffamiliatelaname.VisibleIndex = 2;
     this.ffamiliatelaname.Width = 338;
     //
     // lineaid
     //
     this.lineaid.Caption = "lineaid";
     this.lineaid.FieldName = "lineaid";
     this.lineaid.Name = "lineaid";
     //
     // festructuraid
     //
     this.festructuraid.Caption = "estructuraid";
     this.festructuraid.FieldName = "estructuraid";
     this.festructuraid.Name = "festructuraid";
     //
     // fproductid
     //
     this.fproductid.Caption = "Codigo";
     this.fproductid.FieldName = "productid";
     this.fproductid.Name = "fproductid";
     this.fproductid.OptionsColumn.AllowEdit = false;
     this.fproductid.OptionsColumn.ReadOnly = true;
     this.fproductid.Visible = true;
     this.fproductid.VisibleIndex = 3;
     this.fproductid.Width = 87;
     //
     // fproductname
     //
     this.fproductname.Caption = "Producto";
     this.fproductname.FieldName = "productname";
     this.fproductname.Name = "fproductname";
     this.fproductname.OptionsColumn.AllowEdit = false;
     this.fproductname.OptionsColumn.ReadOnly = true;
     this.fproductname.Visible = true;
     this.fproductname.VisibleIndex = 4;
     this.fproductname.Width = 207;
     //
     // fusuar
     //
     this.fusuar.Caption = "Usuar";
     this.fusuar.FieldName = "usuar";
     this.fusuar.Name = "fusuar";
     //
     // ffecre
     //
     this.ffecre.Caption = "fecre";
     this.ffecre.FieldName = "fecre";
     this.ffecre.Name = "ffecre";
     //
     // ffact
     //
     this.ffact.Caption = "fact";
     this.ffact.FieldName = "fact";
     this.ffact.Name = "ffact";
     //
     // sfdfamilia
     //
     this.sfdfamilia.Filter = "Archivos Excel | *.xls";
     //
     // Frm_familiateladet
     //
     this.Appearance.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(217)))), ((int)(((byte)(218)))), ((int)(((byte)(224)))));
     this.Appearance.Font = new System.Drawing.Font("Times New Roman", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Appearance.Options.UseBackColor = true;
     this.Appearance.Options.UseFont = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 14F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(820, 575);
     this.Controls.Add(this.mdi_dgb_familia);
     this.Controls.Add(this.label4);
     this.Controls.Add(this.btn_busqueda);
     this.Controls.Add(this.txt_criterio);
     this.Controls.Add(this.label5);
     this.Controls.Add(this.gridfamiliateladet);
     this.Controls.Add(this.groupBox1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_familiateladet";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Mantenimiento de Familia - Telas";
     this.Load += new System.EventHandler(this.Frm_familiateladet_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_familiateladet_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.gridfamiliateladet)).EndInit();
     this.groupBox1.ResumeLayout(false);
     this.groupBox1.PerformLayout();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.mdi_dgb_familia)).EndInit();
     this.CmMenuGrid.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.dgb_familia)).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.components = new System.ComponentModel.Container();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = 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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_ventas));
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle();
     System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.btn_del = new System.Windows.Forms.Button();
     this.btn_add = new System.Windows.Forms.Button();
     this.label12 = new System.Windows.Forms.Label();
     this.telef = new System.Windows.Forms.TextBox();
     this.vendpername = new System.Windows.Forms.TextBox();
     this.vendperid = new System.Windows.Forms.TextBox();
     this.label11 = new System.Windows.Forms.Label();
     this.ctacte = new System.Windows.Forms.TextBox();
     this.panel2 = new System.Windows.Forms.Panel();
     this.txtvuelto = new System.Windows.Forms.TextBox();
     this.txtefectivo = new System.Windows.Forms.TextBox();
     this.label19 = new System.Windows.Forms.Label();
     this.label18 = new System.Windows.Forms.Label();
     this.label5 = new System.Windows.Forms.Label();
     this.label9 = new System.Windows.Forms.Label();
     this.valventa = new System.Windows.Forms.TextBox();
     this.dctoTda = new System.Windows.Forms.TextBox();
     this.label4 = new System.Windows.Forms.Label();
     this.lbl_valor = new System.Windows.Forms.Label();
     this.totimporte = new System.Windows.Forms.TextBox();
     this.label14 = new System.Windows.Forms.Label();
     this.totimpto = new System.Windows.Forms.TextBox();
     this.txt_valor = new System.Windows.Forms.TextBox();
     this.label3 = new System.Windows.Forms.Label();
     this.dctoTotal = new System.Windows.Forms.TextBox();
     this.label39 = new System.Windows.Forms.Label();
     this.dctoTarj = new System.Windows.Forms.TextBox();
     this.totdscto1 = new System.Windows.Forms.TextBox();
     this.label17 = new System.Windows.Forms.Label();
     this.label10 = new System.Windows.Forms.Label();
     this.bruto = new System.Windows.Forms.TextBox();
     this.label40 = new System.Windows.Forms.Label();
     this.label7 = new System.Windows.Forms.Label();
     this.totpzas = new System.Windows.Forms.TextBox();
     this.txt_stock = new System.Windows.Forms.TextBox();
     this.label1 = new System.Windows.Forms.Label();
     this.itemsT = new System.Windows.Forms.TextBox();
     this.shapeContainer3 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape4 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.lineShape3 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.griddetallemov = new System.Windows.Forms.DataGridView();
     this.nostock = new System.Windows.Forms.DataGridViewCheckBoxColumn();
     this.item = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.productname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.rollo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.unmed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.Ubicacion = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.stock = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precventa = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costoultimo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.costopromed = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidad_old = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precioanterior = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.precunit = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.valor = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dtotimpto = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importe = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.importfac = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.dalmacaccionid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.cantidadcta = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.direc = new System.Windows.Forms.TextBox();
     this.ctactename = new System.Windows.Forms.TextBox();
     this.nmruc = new System.Windows.Forms.TextBox();
     this.panel1 = new System.Windows.Forms.Panel();
     this.btn_refresh_tcamb = new DevExpress.XtraEditors.SimpleButton();
     this.chkfijar = new DevExpress.XtraEditors.CheckEdit();
     this.cbo_incprec = new System.Windows.Forms.ComboBox();
     this.label20 = new System.Windows.Forms.Label();
     this.lbltitulo = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.tipimptotasa = new System.Windows.Forms.ComboBox();
     this.fechdoc = new System.Windows.Forms.DateTimePicker();
     this.moneda = new System.Windows.Forms.ComboBox();
     this.label2 = new System.Windows.Forms.Label();
     this.numdoc = new System.Windows.Forms.TextBox();
     this.tcamb = new System.Windows.Forms.TextBox();
     this.tipodoc = new System.Windows.Forms.ComboBox();
     this.serdoc = new System.Windows.Forms.TextBox();
     this.label21 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.label13 = new System.Windows.Forms.Label();
     this.label8 = new System.Windows.Forms.Label();
     this.label15 = new System.Windows.Forms.Label();
     this.label16 = new System.Windows.Forms.Label();
     this.Botonera = new System.Windows.Forms.ToolStrip();
     this.btn_nuevo = new System.Windows.Forms.ToolStripButton();
     this.btn_editar = new System.Windows.Forms.ToolStripButton();
     this.btn_cancelar = new System.Windows.Forms.ToolStripButton();
     this.btn_grabar = new System.Windows.Forms.ToolStripButton();
     this.btn_eliminar = new System.Windows.Forms.ToolStripButton();
     this.btn_imprimir = new System.Windows.Forms.ToolStripButton();
     this.btnImprimirNoval = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_primero = new System.Windows.Forms.ToolStripButton();
     this.btn_anterior = new System.Windows.Forms.ToolStripButton();
     this.btn_siguiente = new System.Windows.Forms.ToolStripButton();
     this.btn_ultimo = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_detanadir = new System.Windows.Forms.ToolStripButton();
     this.btn_deteliminar = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.btn_Calculadora = new System.Windows.Forms.ToolStripButton();
     this.btn_clave = new System.Windows.Forms.ToolStripButton();
     this.btn_log = new System.Windows.Forms.ToolStripButton();
     this.btn_upload = new System.Windows.Forms.ToolStripButton();
     this.btn_salir = new System.Windows.Forms.ToolStripButton();
     this.btn_information = new System.Windows.Forms.ToolStripButton();
     this.tipoclieprov = new System.Windows.Forms.Label();
     this.lblruc = new System.Windows.Forms.Label();
     this.label24 = new System.Windows.Forms.Label();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
     this.pdtimagen = new System.Windows.Forms.PictureBox();
     this.lstListaprec = new System.Windows.Forms.ComboBox();
     this.label22 = new System.Windows.Forms.Label();
     this.btnextraersunat = new DevExpress.XtraEditors.SimpleButton();
     this.xtraTabControl1 = new DevExpress.XtraTab.XtraTabControl();
     this.xtraTabPage3 = new DevExpress.XtraTab.XtraTabPage();
     this.canticombo = new DevExpress.XtraEditors.SpinEdit();
     this.label26 = new System.Windows.Forms.Label();
     this.label25 = new System.Windows.Forms.Label();
     this.preccombo = new System.Windows.Forms.TextBox();
     this.princombo = new System.Windows.Forms.CheckBox();
     this.glosa = new System.Windows.Forms.TextBox();
     this.xtraTabPage1 = new DevExpress.XtraTab.XtraTabPage();
     this.label23 = new System.Windows.Forms.Label();
     this.importtarj = new System.Windows.Forms.TextBox();
     this.lstTarjGroup = new System.Windows.Forms.ListBox();
     this.dgbtarjetas = new System.Windows.Forms.DataGridView();
     this._tarjetalogo = new System.Windows.Forms.DataGridViewImageColumn();
     this._tarjetaid = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaname = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetanum = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._tarjetaimpo = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this._ddnni = new System.Windows.Forms.DataGridViewTextBoxColumn();
     this.xtraTabPage2 = new DevExpress.XtraTab.XtraTabPage();
     this.numnotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.sernotac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipnotac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem5 = new DevComponents.Editors.ComboItem();
     this.numguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serguia = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipguia = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem3 = new DevComponents.Editors.ComboItem();
     this.numfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.serfac = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.tipfac = new DevComponents.DotNetBar.Controls.ComboBoxEx();
     this.comboItem1 = new DevComponents.Editors.ComboItem();
     this.comboItem2 = new DevComponents.Editors.ComboItem();
     this.recep_fecha = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.recep_dni = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.recep_name = new DevComponents.DotNetBar.Controls.TextBoxX();
     this.chkNC = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkGR = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.chkFA = new DevComponents.DotNetBar.Controls.CheckBoxX();
     this.fechnotac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechguia = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.fechfac = new DevComponents.Editors.DateTimeAdv.DateTimeInput();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.label27 = new System.Windows.Forms.Label();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).BeginInit();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).BeginInit();
     this.Botonera.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).BeginInit();
     this.xtraTabControl1.SuspendLayout();
     this.xtraTabPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).BeginInit();
     this.xtraTabPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).BeginInit();
     this.xtraTabPage2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).BeginInit();
     this.SuspendLayout();
     //
     // btn_del
     //
     this.btn_del.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_del.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_del.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_del.Location = new System.Drawing.Point(226, 34);
     this.btn_del.Name = "btn_del";
     this.btn_del.Size = new System.Drawing.Size(21, 21);
     this.btn_del.TabIndex = 99;
     this.toolTip1.SetToolTip(this.btn_del, "Quitar");
     this.btn_del.UseVisualStyleBackColor = true;
     this.btn_del.Click += new System.EventHandler(this.btn_del_Click);
     //
     // btn_add
     //
     this.btn_add.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_add.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.btn_add.Image = global::BapFormulariosNet.Properties.Resources.go_add1;
     this.btn_add.Location = new System.Drawing.Point(226, 12);
     this.btn_add.Name = "btn_add";
     this.btn_add.Size = new System.Drawing.Size(21, 21);
     this.btn_add.TabIndex = 98;
     this.toolTip1.SetToolTip(this.btn_add, "Agregar");
     this.btn_add.UseVisualStyleBackColor = true;
     this.btn_add.Click += new System.EventHandler(this.btn_add_Click);
     //
     // label12
     //
     this.label12.AutoSize = true;
     this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label12.Location = new System.Drawing.Point(302, 128);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(34, 13);
     this.label12.TabIndex = 92;
     this.label12.Text = "Telef:";
     //
     // telef
     //
     this.telef.Location = new System.Drawing.Point(338, 125);
     this.telef.MaxLength = 100;
     this.telef.Name = "telef";
     this.telef.Size = new System.Drawing.Size(86, 21);
     this.telef.TabIndex = 83;
     //
     // vendpername
     //
     this.vendpername.Location = new System.Drawing.Point(100, 183);
     this.vendpername.Name = "vendpername";
     this.vendpername.Size = new System.Drawing.Size(351, 21);
     this.vendpername.TabIndex = 81;
     //
     // vendperid
     //
     this.vendperid.Location = new System.Drawing.Point(64, 183);
     this.vendperid.MaxLength = 8;
     this.vendperid.Name = "vendperid";
     this.vendperid.Size = new System.Drawing.Size(35, 21);
     this.vendperid.TabIndex = 80;
     this.vendperid.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.vendperid.KeyDown += new System.Windows.Forms.KeyEventHandler(this.vendperid_KeyDown);
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(3, 186);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(56, 13);
     this.label11.TabIndex = 78;
     this.label11.Text = "Vendedor:";
     //
     // ctacte
     //
     this.ctacte.Location = new System.Drawing.Point(64, 83);
     this.ctacte.MaxLength = 7;
     this.ctacte.Name = "ctacte";
     this.ctacte.Size = new System.Drawing.Size(53, 21);
     this.ctacte.TabIndex = 11;
     this.ctacte.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ctacte_KeyDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Teal;
     this.panel2.Controls.Add(this.txtvuelto);
     this.panel2.Controls.Add(this.txtefectivo);
     this.panel2.Controls.Add(this.label19);
     this.panel2.Controls.Add(this.label18);
     this.panel2.Controls.Add(this.label5);
     this.panel2.Controls.Add(this.label9);
     this.panel2.Controls.Add(this.valventa);
     this.panel2.Controls.Add(this.dctoTda);
     this.panel2.Controls.Add(this.label4);
     this.panel2.Controls.Add(this.lbl_valor);
     this.panel2.Controls.Add(this.totimporte);
     this.panel2.Controls.Add(this.label14);
     this.panel2.Controls.Add(this.totimpto);
     this.panel2.Controls.Add(this.txt_valor);
     this.panel2.Controls.Add(this.label3);
     this.panel2.Controls.Add(this.dctoTotal);
     this.panel2.Controls.Add(this.label39);
     this.panel2.Controls.Add(this.dctoTarj);
     this.panel2.Controls.Add(this.totdscto1);
     this.panel2.Controls.Add(this.label17);
     this.panel2.Controls.Add(this.label10);
     this.panel2.Controls.Add(this.bruto);
     this.panel2.Controls.Add(this.label40);
     this.panel2.Controls.Add(this.label7);
     this.panel2.Controls.Add(this.totpzas);
     this.panel2.Controls.Add(this.txt_stock);
     this.panel2.Controls.Add(this.label1);
     this.panel2.Controls.Add(this.itemsT);
     this.panel2.Controls.Add(this.shapeContainer3);
     this.panel2.Location = new System.Drawing.Point(0, 480);
     this.panel2.Name = "panel2";
     this.panel2.Size = new System.Drawing.Size(989, 80);
     this.panel2.TabIndex = 73;
     //
     // txtvuelto
     //
     this.txtvuelto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtvuelto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtvuelto.Location = new System.Drawing.Point(905, 52);
     this.txtvuelto.Name = "txtvuelto";
     this.txtvuelto.Size = new System.Drawing.Size(75, 20);
     this.txtvuelto.TabIndex = 101;
     this.txtvuelto.Text = "00.00";
     this.txtvuelto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtefectivo
     //
     this.txtefectivo.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.txtefectivo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtefectivo.Location = new System.Drawing.Point(904, 29);
     this.txtefectivo.Name = "txtefectivo";
     this.txtefectivo.Size = new System.Drawing.Size(75, 20);
     this.txtefectivo.TabIndex = 100;
     this.txtefectivo.Text = "00.00";
     this.txtefectivo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtefectivo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtefectivo_KeyDown);
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.BackColor = System.Drawing.Color.Transparent;
     this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.ForeColor = System.Drawing.Color.White;
     this.label19.Location = new System.Drawing.Point(849, 56);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(51, 13);
     this.label19.TabIndex = 99;
     this.label19.Text = "Vuelto :";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.BackColor = System.Drawing.Color.Transparent;
     this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.ForeColor = System.Drawing.Color.White;
     this.label18.Location = new System.Drawing.Point(838, 33);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(62, 13);
     this.label18.TabIndex = 98;
     this.label18.Text = "Efectivo :";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.BackColor = System.Drawing.Color.Transparent;
     this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.ForeColor = System.Drawing.Color.White;
     this.label5.Location = new System.Drawing.Point(669, 13);
     this.label5.Name = "label5";
     this.label5.Size = new System.Drawing.Size(74, 13);
     this.label5.TabIndex = 81;
     this.label5.Text = "Val. Venta :";
     //
     // label9
     //
     this.label9.AutoSize = true;
     this.label9.BackColor = System.Drawing.Color.Transparent;
     this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.White;
     this.label9.Location = new System.Drawing.Point(508, 12);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(68, 13);
     this.label9.TabIndex = 92;
     this.label9.Text = "Dcto.Tda :";
     //
     // valventa
     //
     this.valventa.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.valventa.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.valventa.Location = new System.Drawing.Point(747, 8);
     this.valventa.Name = "valventa";
     this.valventa.Size = new System.Drawing.Size(75, 20);
     this.valventa.TabIndex = 80;
     this.valventa.Text = "100,000.00";
     this.valventa.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // dctoTda
     //
     this.dctoTda.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTda.Location = new System.Drawing.Point(577, 8);
     this.dctoTda.Name = "dctoTda";
     this.dctoTda.Size = new System.Drawing.Size(75, 20);
     this.dctoTda.TabIndex = 91;
     this.dctoTda.Text = "00.00";
     this.dctoTda.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.BackColor = System.Drawing.Color.Transparent;
     this.label4.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.ForeColor = System.Drawing.Color.White;
     this.label4.Location = new System.Drawing.Point(677, 33);
     this.label4.Name = "label4";
     this.label4.Size = new System.Drawing.Size(66, 13);
     this.label4.TabIndex = 83;
     this.label4.Text = "Impuesto :";
     //
     // lbl_valor
     //
     this.lbl_valor.AutoSize = true;
     this.lbl_valor.BackColor = System.Drawing.Color.Transparent;
     this.lbl_valor.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbl_valor.ForeColor = System.Drawing.Color.White;
     this.lbl_valor.Location = new System.Drawing.Point(173, 53);
     this.lbl_valor.Name = "lbl_valor";
     this.lbl_valor.Size = new System.Drawing.Size(72, 13);
     this.lbl_valor.TabIndex = 87;
     this.lbl_valor.Text = "Cost.Prom :";
     //
     // totimporte
     //
     this.totimporte.BackColor = System.Drawing.Color.YellowGreen;
     this.totimporte.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimporte.Location = new System.Drawing.Point(747, 50);
     this.totimporte.Name = "totimporte";
     this.totimporte.Size = new System.Drawing.Size(75, 21);
     this.totimporte.TabIndex = 84;
     this.totimporte.Text = "100,000.00";
     this.totimporte.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label14
     //
     this.label14.AutoSize = true;
     this.label14.BackColor = System.Drawing.Color.Transparent;
     this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label14.ForeColor = System.Drawing.Color.White;
     this.label14.Location = new System.Drawing.Point(508, 32);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(68, 13);
     this.label14.TabIndex = 94;
     this.label14.Text = "Dcto.Tarj :";
     //
     // totimpto
     //
     this.totimpto.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.totimpto.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.totimpto.Location = new System.Drawing.Point(747, 29);
     this.totimpto.Name = "totimpto";
     this.totimpto.Size = new System.Drawing.Size(75, 20);
     this.totimpto.TabIndex = 82;
     this.totimpto.Text = "100,000.00";
     this.totimpto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_valor
     //
     this.txt_valor.Enabled = false;
     this.txt_valor.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_valor.Location = new System.Drawing.Point(246, 49);
     this.txt_valor.Name = "txt_valor";
     this.txt_valor.Size = new System.Drawing.Size(75, 21);
     this.txt_valor.TabIndex = 86;
     this.txt_valor.Text = "100,000.00";
     this.txt_valor.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.BackColor = System.Drawing.Color.Transparent;
     this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.ForeColor = System.Drawing.Color.White;
     this.label3.Location = new System.Drawing.Point(699, 54);
     this.label3.Name = "label3";
     this.label3.Size = new System.Drawing.Size(44, 13);
     this.label3.TabIndex = 85;
     this.label3.Text = "Total :";
     //
     // dctoTotal
     //
     this.dctoTotal.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTotal.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTotal.Location = new System.Drawing.Point(577, 50);
     this.dctoTotal.Name = "dctoTotal";
     this.dctoTotal.Size = new System.Drawing.Size(75, 21);
     this.dctoTotal.TabIndex = 95;
     this.dctoTotal.Text = "00.00";
     this.dctoTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label39
     //
     this.label39.AutoSize = true;
     this.label39.BackColor = System.Drawing.Color.Transparent;
     this.label39.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label39.ForeColor = System.Drawing.Color.White;
     this.label39.Location = new System.Drawing.Point(170, 31);
     this.label39.Name = "label39";
     this.label39.Size = new System.Drawing.Size(76, 13);
     this.label39.TabIndex = 79;
     this.label39.Text = "Descuento :";
     //
     // dctoTarj
     //
     this.dctoTarj.BackColor = System.Drawing.SystemColors.ScrollBar;
     this.dctoTarj.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.dctoTarj.Location = new System.Drawing.Point(577, 29);
     this.dctoTarj.Name = "dctoTarj";
     this.dctoTarj.Size = new System.Drawing.Size(75, 20);
     this.dctoTarj.TabIndex = 93;
     this.dctoTarj.Text = "00.00";
     this.dctoTarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // totdscto1
     //
     this.totdscto1.Location = new System.Drawing.Point(246, 28);
     this.totdscto1.Name = "totdscto1";
     this.totdscto1.Size = new System.Drawing.Size(75, 21);
     this.totdscto1.TabIndex = 78;
     this.totdscto1.Text = "100,000.00";
     this.totdscto1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label17
     //
     this.label17.AutoSize = true;
     this.label17.BackColor = System.Drawing.Color.Transparent;
     this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location = new System.Drawing.Point(501, 53);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(75, 13);
     this.label17.TabIndex = 96;
     this.label17.Text = "Descto.TT :";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.BackColor = System.Drawing.Color.Transparent;
     this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.ForeColor = System.Drawing.Color.White;
     this.label10.Location = new System.Drawing.Point(3, 51);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(71, 13);
     this.label10.TabIndex = 77;
     this.label10.Text = "Val. Bruto :";
     //
     // bruto
     //
     this.bruto.Location = new System.Drawing.Point(76, 48);
     this.bruto.Name = "bruto";
     this.bruto.Size = new System.Drawing.Size(75, 21);
     this.bruto.TabIndex = 76;
     this.bruto.Text = "100,000.00";
     this.bruto.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label40
     //
     this.label40.AutoSize = true;
     this.label40.BackColor = System.Drawing.Color.Transparent;
     this.label40.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label40.ForeColor = System.Drawing.Color.White;
     this.label40.Location = new System.Drawing.Point(344, 52);
     this.label40.Name = "label40";
     this.label40.Size = new System.Drawing.Size(48, 13);
     this.label40.TabIndex = 89;
     this.label40.Text = "Stock :";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.BackColor = System.Drawing.Color.Transparent;
     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(6, 29);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(68, 13);
     this.label7.TabIndex = 75;
     this.label7.Text = "T. Piezas :";
     //
     // totpzas
     //
     this.totpzas.Location = new System.Drawing.Point(76, 26);
     this.totpzas.Name = "totpzas";
     this.totpzas.Size = new System.Drawing.Size(75, 21);
     this.totpzas.TabIndex = 74;
     this.totpzas.Text = "10,000";
     this.totpzas.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txt_stock
     //
     this.txt_stock.Enabled = false;
     this.txt_stock.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txt_stock.Location = new System.Drawing.Point(392, 48);
     this.txt_stock.Name = "txt_stock";
     this.txt_stock.Size = new System.Drawing.Size(75, 21);
     this.txt_stock.TabIndex = 88;
     this.txt_stock.Text = "100,000.00";
     this.txt_stock.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // label1
     //
     this.label1.AutoSize = true;
     this.label1.BackColor = System.Drawing.Color.Transparent;
     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.White;
     this.label1.Location = new System.Drawing.Point(29, 7);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(45, 13);
     this.label1.TabIndex = 73;
     this.label1.Text = "Items :";
     //
     // itemsT
     //
     this.itemsT.Location = new System.Drawing.Point(77, 4);
     this.itemsT.Name = "itemsT";
     this.itemsT.Size = new System.Drawing.Size(51, 21);
     this.itemsT.TabIndex = 72;
     this.itemsT.Text = "999";
     this.itemsT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // shapeContainer3
     //
     this.shapeContainer3.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer3.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer3.Name = "shapeContainer3";
     this.shapeContainer3.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape4,
     this.lineShape3});
     this.shapeContainer3.Size = new System.Drawing.Size(989, 80);
     this.shapeContainer3.TabIndex = 97;
     this.shapeContainer3.TabStop = false;
     //
     // lineShape4
     //
     this.lineShape4.BorderWidth = 2;
     this.lineShape4.Name = "lineShape4";
     this.lineShape4.X1 = 482;
     this.lineShape4.X2 = 482;
     this.lineShape4.Y1 = 10;
     this.lineShape4.Y2 = 71;
     //
     // lineShape3
     //
     this.lineShape3.BorderWidth = 2;
     this.lineShape3.Name = "lineShape3";
     this.lineShape3.X1 = 665;
     this.lineShape3.X2 = 665;
     this.lineShape3.Y1 = 10;
     this.lineShape3.Y2 = 71;
     //
     // griddetallemov
     //
     this.griddetallemov.AllowUserToAddRows = false;
     this.griddetallemov.AllowUserToDeleteRows = false;
     this.griddetallemov.AllowUserToResizeColumns = false;
     this.griddetallemov.AllowUserToResizeRows = false;
     this.griddetallemov.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Single;
     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.griddetallemov.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
     this.griddetallemov.ColumnHeadersHeight = 20;
     this.griddetallemov.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this.nostock,
     this.item,
     this.productid,
     this.productname,
     this.rollo,
     this.unmed,
     this.Ubicacion,
     this.stock_old,
     this.stock,
     this.precventa,
     this.costoultimo,
     this.costopromed,
     this.cantidad,
     this.cantidad_old,
     this.precioanterior,
     this.precunit,
     this.valor,
     this.dtotimpto,
     this.importe,
     this.importfac,
     this.dalmacaccionid,
     this.cantidadcta});
     dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     dataGridViewCellStyle8.BackColor = System.Drawing.SystemColors.Window;
     dataGridViewCellStyle8.Font = new System.Drawing.Font("Tahoma", 8.25F);
     dataGridViewCellStyle8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(31)))), ((int)(((byte)(53)))));
     dataGridViewCellStyle8.NullValue = null;
     dataGridViewCellStyle8.SelectionBackColor = System.Drawing.SystemColors.Highlight;
     dataGridViewCellStyle8.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
     dataGridViewCellStyle8.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
     this.griddetallemov.DefaultCellStyle = dataGridViewCellStyle8;
     this.griddetallemov.Location = new System.Drawing.Point(1, 214);
     this.griddetallemov.MultiSelect = false;
     this.griddetallemov.Name = "griddetallemov";
     this.griddetallemov.RowHeadersVisible = false;
     this.griddetallemov.RowHeadersWidth = 10;
     dataGridViewCellStyle9.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     dataGridViewCellStyle9.NullValue = null;
     this.griddetallemov.RowsDefaultCellStyle = dataGridViewCellStyle9;
     this.griddetallemov.RowTemplate.DefaultCellStyle.NullValue = null;
     this.griddetallemov.RowTemplate.Height = 20;
     this.griddetallemov.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.CellSelect;
     this.griddetallemov.Size = new System.Drawing.Size(989, 266);
     this.griddetallemov.TabIndex = 71;
     this.griddetallemov.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEndEdit);
     this.griddetallemov.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellEnter);
     this.griddetallemov.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellLeave);
     this.griddetallemov.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.griddetallemov_CellValueChanged);
     this.griddetallemov.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.griddetallemov_EditingControlShowing);
     this.griddetallemov.KeyDown += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyDown);
     this.griddetallemov.KeyUp += new System.Windows.Forms.KeyEventHandler(this.griddetallemov_KeyUp);
     //
     // nostock
     //
     this.nostock.DataPropertyName = "nostock";
     this.nostock.FalseValue = "false";
     this.nostock.Frozen = true;
     this.nostock.HeaderText = "Aft";
     this.nostock.Name = "nostock";
     this.nostock.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this.nostock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this.nostock.TrueValue = "true";
     this.nostock.Width = 20;
     //
     // item
     //
     this.item.DataPropertyName = "items";
     this.item.Frozen = true;
     this.item.HeaderText = "Items";
     this.item.Name = "item";
     this.item.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.item.Width = 40;
     //
     // productid
     //
     this.productid.DataPropertyName = "productid";
     this.productid.Frozen = true;
     this.productid.HeaderText = "Codigo";
     this.productid.Name = "productid";
     this.productid.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // productname
     //
     this.productname.DataPropertyName = "productname";
     this.productname.Frozen = true;
     this.productname.HeaderText = "Producto";
     this.productname.Name = "productname";
     this.productname.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.productname.Width = 400;
     //
     // rollo
     //
     this.rollo.DataPropertyName = "rollo";
     this.rollo.Frozen = true;
     this.rollo.HeaderText = "Rollo";
     this.rollo.MaxInputLength = 10;
     this.rollo.Name = "rollo";
     this.rollo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.rollo.Visible = false;
     this.rollo.Width = 80;
     //
     // unmed
     //
     this.unmed.DataPropertyName = "unmed";
     this.unmed.Frozen = true;
     this.unmed.HeaderText = "UnMed";
     this.unmed.Name = "unmed";
     this.unmed.Width = 48;
     //
     // Ubicacion
     //
     this.Ubicacion.DataPropertyName = "ubicacion";
     dataGridViewCellStyle2.NullValue = null;
     this.Ubicacion.DefaultCellStyle = dataGridViewCellStyle2;
     this.Ubicacion.Frozen = true;
     this.Ubicacion.HeaderText = "Ubicacion";
     this.Ubicacion.MaxInputLength = 4;
     this.Ubicacion.Name = "Ubicacion";
     this.Ubicacion.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.Ubicacion.Visible = false;
     //
     // stock_old
     //
     this.stock_old.DataPropertyName = "stock_old";
     this.stock_old.Frozen = true;
     this.stock_old.HeaderText = "stock_old";
     this.stock_old.Name = "stock_old";
     this.stock_old.Visible = false;
     //
     // stock
     //
     this.stock.DataPropertyName = "stock";
     dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle3.NullValue = null;
     this.stock.DefaultCellStyle = dataGridViewCellStyle3;
     this.stock.Frozen = true;
     this.stock.HeaderText = "Stock";
     this.stock.Name = "stock";
     this.stock.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // precventa
     //
     this.precventa.DataPropertyName = "precventa";
     this.precventa.Frozen = true;
     this.precventa.HeaderText = "precventa";
     this.precventa.Name = "precventa";
     this.precventa.Visible = false;
     //
     // costoultimo
     //
     this.costoultimo.DataPropertyName = "costoultimo";
     this.costoultimo.Frozen = true;
     this.costoultimo.HeaderText = "costoultimo";
     this.costoultimo.Name = "costoultimo";
     this.costoultimo.Visible = false;
     //
     // costopromed
     //
     this.costopromed.DataPropertyName = "costopromed";
     this.costopromed.Frozen = true;
     this.costopromed.HeaderText = "costopromed";
     this.costopromed.Name = "costopromed";
     this.costopromed.Visible = false;
     //
     // cantidad
     //
     this.cantidad.DataPropertyName = "cantidad";
     dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle4.NullValue = null;
     this.cantidad.DefaultCellStyle = dataGridViewCellStyle4;
     this.cantidad.Frozen = true;
     this.cantidad.HeaderText = "Cantidad";
     this.cantidad.Name = "cantidad";
     this.cantidad.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.cantidad.Width = 80;
     //
     // cantidad_old
     //
     this.cantidad_old.DataPropertyName = "cantidad_old";
     this.cantidad_old.Frozen = true;
     this.cantidad_old.HeaderText = "cantidad_old";
     this.cantidad_old.Name = "cantidad_old";
     this.cantidad_old.Visible = false;
     //
     // precioanterior
     //
     this.precioanterior.DataPropertyName = "precioanterior";
     this.precioanterior.Frozen = true;
     this.precioanterior.HeaderText = "precioanterior";
     this.precioanterior.Name = "precioanterior";
     this.precioanterior.Visible = false;
     //
     // precunit
     //
     this.precunit.DataPropertyName = "precunit";
     dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle5.Format = "N2";
     dataGridViewCellStyle5.NullValue = null;
     this.precunit.DefaultCellStyle = dataGridViewCellStyle5;
     this.precunit.Frozen = true;
     this.precunit.HeaderText = "Precio";
     this.precunit.Name = "precunit";
     this.precunit.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.precunit.Width = 90;
     //
     // valor
     //
     this.valor.DataPropertyName = "valor";
     this.valor.HeaderText = "valor";
     this.valor.Name = "valor";
     this.valor.Visible = false;
     //
     // dtotimpto
     //
     this.dtotimpto.DataPropertyName = "totimpto";
     this.dtotimpto.HeaderText = "totimpto";
     this.dtotimpto.Name = "dtotimpto";
     this.dtotimpto.Visible = false;
     //
     // importe
     //
     this.importe.DataPropertyName = "importe";
     dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle6.Format = "N4";
     dataGridViewCellStyle6.NullValue = null;
     this.importe.DefaultCellStyle = dataGridViewCellStyle6;
     this.importe.HeaderText = "Importe";
     this.importe.Name = "importe";
     this.importe.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     this.importe.Visible = false;
     //
     // importfac
     //
     this.importfac.DataPropertyName = "importfac";
     dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.TopRight;
     dataGridViewCellStyle7.Format = "N2";
     dataGridViewCellStyle7.NullValue = null;
     this.importfac.DefaultCellStyle = dataGridViewCellStyle7;
     this.importfac.HeaderText = "Importe";
     this.importfac.Name = "importfac";
     this.importfac.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
     //
     // dalmacaccionid
     //
     this.dalmacaccionid.DataPropertyName = "almacaccionid";
     this.dalmacaccionid.HeaderText = "almacaccionid";
     this.dalmacaccionid.Name = "dalmacaccionid";
     this.dalmacaccionid.Visible = false;
     //
     // cantidadcta
     //
     this.cantidadcta.DataPropertyName = "cantidadcta";
     this.cantidadcta.HeaderText = "cantidadcta";
     this.cantidadcta.Name = "cantidadcta";
     this.cantidadcta.Visible = false;
     //
     // direc
     //
     this.direc.Location = new System.Drawing.Point(64, 125);
     this.direc.Name = "direc";
     this.direc.Size = new System.Drawing.Size(233, 21);
     this.direc.TabIndex = 23;
     //
     // ctactename
     //
     this.ctactename.CharacterCasing = System.Windows.Forms.CharacterCasing.Upper;
     this.ctactename.Location = new System.Drawing.Point(64, 104);
     this.ctactename.Name = "ctactename";
     this.ctactename.Size = new System.Drawing.Size(387, 21);
     this.ctactename.TabIndex = 21;
     //
     // nmruc
     //
     this.nmruc.Location = new System.Drawing.Point(160, 82);
     this.nmruc.MaxLength = 11;
     this.nmruc.Name = "nmruc";
     this.nmruc.Size = new System.Drawing.Size(90, 21);
     this.nmruc.TabIndex = 12;
     this.nmruc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.nmruc_KeyDown);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Teal;
     this.panel1.Controls.Add(this.btn_refresh_tcamb);
     this.panel1.Controls.Add(this.chkfijar);
     this.panel1.Controls.Add(this.cbo_incprec);
     this.panel1.Controls.Add(this.label20);
     this.panel1.Controls.Add(this.lbltitulo);
     this.panel1.Controls.Add(this.label41);
     this.panel1.Controls.Add(this.tipimptotasa);
     this.panel1.Controls.Add(this.fechdoc);
     this.panel1.Controls.Add(this.moneda);
     this.panel1.Controls.Add(this.label2);
     this.panel1.Controls.Add(this.numdoc);
     this.panel1.Controls.Add(this.tcamb);
     this.panel1.Controls.Add(this.tipodoc);
     this.panel1.Controls.Add(this.serdoc);
     this.panel1.Controls.Add(this.label21);
     this.panel1.Controls.Add(this.label6);
     this.panel1.Controls.Add(this.label13);
     this.panel1.Controls.Add(this.label8);
     this.panel1.Controls.Add(this.label15);
     this.panel1.Controls.Add(this.label16);
     this.panel1.Location = new System.Drawing.Point(0, 29);
     this.panel1.Name = "panel1";
     this.panel1.Size = new System.Drawing.Size(993, 45);
     this.panel1.TabIndex = 2;
     //
     // btn_refresh_tcamb
     //
     this.btn_refresh_tcamb.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btn_refresh_tcamb.Image = ((System.Drawing.Image)(resources.GetObject("btn_refresh_tcamb.Image")));
     this.btn_refresh_tcamb.Location = new System.Drawing.Point(643, 19);
     this.btn_refresh_tcamb.Name = "btn_refresh_tcamb";
     this.btn_refresh_tcamb.Size = new System.Drawing.Size(22, 22);
     this.btn_refresh_tcamb.TabIndex = 23;
     this.btn_refresh_tcamb.ToolTip = "Refrescar Tipo de Cambio";
     this.btn_refresh_tcamb.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btn_refresh_tcamb.Click += new System.EventHandler(this.btn_refresh_tcamb_Click);
     //
     // chkfijar
     //
     this.chkfijar.Cursor = System.Windows.Forms.Cursors.Hand;
     this.chkfijar.Location = new System.Drawing.Point(137, 21);
     this.chkfijar.Name = "chkfijar";
     this.chkfijar.Properties.Caption = "Fijar";
     this.chkfijar.Size = new System.Drawing.Size(51, 19);
     this.chkfijar.TabIndex = 22;
     this.chkfijar.CheckedChanged += new System.EventHandler(this.chkfijar_CheckedChanged);
     //
     // cbo_incprec
     //
     this.cbo_incprec.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.cbo_incprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbo_incprec.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.cbo_incprec.FormattingEnabled = true;
     this.cbo_incprec.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.cbo_incprec.Items.AddRange(new object[] {
     "SI",
     "NO"});
     this.cbo_incprec.Location = new System.Drawing.Point(946, 20);
     this.cbo_incprec.Name = "cbo_incprec";
     this.cbo_incprec.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.cbo_incprec.Size = new System.Drawing.Size(40, 21);
     this.cbo_incprec.TabIndex = 21;
     this.cbo_incprec.SelectedIndexChanged += new System.EventHandler(this.cbo_incprec_SelectedIndexChanged);
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.BackColor = System.Drawing.Color.Transparent;
     this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.ForeColor = System.Drawing.Color.White;
     this.label20.Location = new System.Drawing.Point(947, 5);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(39, 13);
     this.label20.TabIndex = 20;
     this.label20.Text = "Inclu.";
     //
     // lbltitulo
     //
     this.lbltitulo.AutoSize = true;
     this.lbltitulo.BackColor = System.Drawing.Color.Transparent;
     this.lbltitulo.Font = new System.Drawing.Font("Microsoft Sans Serif", 20F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lbltitulo.ForeColor = System.Drawing.Color.White;
     this.lbltitulo.Location = new System.Drawing.Point(422, 9);
     this.lbltitulo.Name = "lbltitulo";
     this.lbltitulo.Size = new System.Drawing.Size(151, 31);
     this.lbltitulo.TabIndex = 19;
     this.lbltitulo.Text = "FACTURA";
     //
     // label41
     //
     this.label41.AutoSize = true;
     this.label41.BackColor = System.Drawing.Color.Transparent;
     this.label41.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label41.ForeColor = System.Drawing.Color.White;
     this.label41.Location = new System.Drawing.Point(928, 22);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(21, 17);
     this.label41.TabIndex = 18;
     this.label41.Text = "%";
     //
     // tipimptotasa
     //
     this.tipimptotasa.AccessibleRole = System.Windows.Forms.AccessibleRole.None;
     this.tipimptotasa.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipimptotasa.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
     this.tipimptotasa.FormattingEnabled = true;
     this.tipimptotasa.ImeMode = System.Windows.Forms.ImeMode.Disable;
     this.tipimptotasa.Location = new System.Drawing.Point(887, 20);
     this.tipimptotasa.Name = "tipimptotasa";
     this.tipimptotasa.RightToLeft = System.Windows.Forms.RightToLeft.Yes;
     this.tipimptotasa.Size = new System.Drawing.Size(40, 21);
     this.tipimptotasa.TabIndex = 17;
     this.tipimptotasa.SelectedIndexChanged += new System.EventHandler(this.tipimptotasa_SelectedIndexChanged);
     //
     // fechdoc
     //
     this.fechdoc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.fechdoc.Format = System.Windows.Forms.DateTimePickerFormat.Short;
     this.fechdoc.Location = new System.Drawing.Point(669, 21);
     this.fechdoc.Name = "fechdoc";
     this.fechdoc.Size = new System.Drawing.Size(84, 20);
     this.fechdoc.TabIndex = 7;
     this.fechdoc.Value = new System.DateTime(2014, 4, 14, 0, 0, 0, 0);
     this.fechdoc.ValueChanged += new System.EventHandler(this.fechdoc_ValueChanged);
     //
     // moneda
     //
     this.moneda.AutoCompleteCustomSource.AddRange(new string[] {
     "FA"});
     this.moneda.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.moneda.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.moneda.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.moneda.FormattingEnabled = true;
     this.moneda.Location = new System.Drawing.Point(756, 20);
     this.moneda.Name = "moneda";
     this.moneda.Size = new System.Drawing.Size(70, 21);
     this.moneda.TabIndex = 8;
     this.moneda.SelectedIndexChanged += new System.EventHandler(this.moneda_SelectedIndexChanged);
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.BackColor = System.Drawing.Color.Transparent;
     this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.ForeColor = System.Drawing.Color.White;
     this.label2.Location = new System.Drawing.Point(16, 6);
     this.label2.Name = "label2";
     this.label2.Size = new System.Drawing.Size(100, 13);
     this.label2.TabIndex = 3;
     this.label2.Text = "Tipo Documento";
     //
     // numdoc
     //
     this.numdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.numdoc.Location = new System.Drawing.Point(231, 20);
     this.numdoc.MaxLength = 10;
     this.numdoc.Name = "numdoc";
     this.numdoc.Size = new System.Drawing.Size(87, 21);
     this.numdoc.TabIndex = 8;
     this.numdoc.Text = "000000001";
     this.numdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.numdoc.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numdoc_KeyDown);
     this.numdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.numdoc_KeyPress);
     //
     // tcamb
     //
     this.tcamb.Location = new System.Drawing.Point(828, 20);
     this.tcamb.Name = "tcamb";
     this.tcamb.Size = new System.Drawing.Size(56, 21);
     this.tcamb.TabIndex = 9;
     this.tcamb.Text = "3.420";
     this.tcamb.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // tipodoc
     //
     this.tipodoc.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.tipodoc.Font = new System.Drawing.Font("Arial", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)), true);
     this.tipodoc.FormattingEnabled = true;
     this.tipodoc.Location = new System.Drawing.Point(7, 20);
     this.tipodoc.Name = "tipodoc";
     this.tipodoc.Size = new System.Drawing.Size(128, 20);
     this.tipodoc.TabIndex = 4;
     this.tipodoc.SelectedIndexChanged += new System.EventHandler(this.tipodoc_SelectedIndexChanged);
     //
     // serdoc
     //
     this.serdoc.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.serdoc.Location = new System.Drawing.Point(189, 20);
     this.serdoc.MaxLength = 5;
     this.serdoc.Name = "serdoc";
     this.serdoc.Size = new System.Drawing.Size(40, 21);
     this.serdoc.TabIndex = 4;
     this.serdoc.Text = "2014";
     this.serdoc.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.serdoc.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.serdoc_KeyPress);
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.BackColor = System.Drawing.Color.Transparent;
     this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.ForeColor = System.Drawing.Color.White;
     this.label21.Location = new System.Drawing.Point(761, 5);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(52, 13);
     this.label21.TabIndex = 12;
     this.label21.Text = "Moneda";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.BackColor = System.Drawing.Color.Transparent;
     this.label6.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.ForeColor = System.Drawing.Color.White;
     this.label6.Location = new System.Drawing.Point(193, 5);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(36, 13);
     this.label6.TabIndex = 5;
     this.label6.Text = "Serie";
     //
     // label13
     //
     this.label13.AutoSize = true;
     this.label13.BackColor = System.Drawing.Color.Transparent;
     this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label13.ForeColor = System.Drawing.Color.White;
     this.label13.Location = new System.Drawing.Point(883, 5);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(58, 13);
     this.label13.TabIndex = 16;
     this.label13.Text = "Impuesto";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.BackColor = System.Drawing.Color.Transparent;
     this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.ForeColor = System.Drawing.Color.White;
     this.label8.Location = new System.Drawing.Point(247, 5);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(50, 13);
     this.label8.TabIndex = 7;
     this.label8.Text = "Número";
     //
     // label15
     //
     this.label15.AutoSize = true;
     this.label15.BackColor = System.Drawing.Color.Transparent;
     this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location = new System.Drawing.Point(826, 5);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(60, 13);
     this.label15.TabIndex = 14;
     this.label15.Text = "T Cambio";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.BackColor = System.Drawing.Color.Transparent;
     this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.ForeColor = System.Drawing.Color.White;
     this.label16.Location = new System.Drawing.Point(688, 5);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(42, 13);
     this.label16.TabIndex = 10;
     this.label16.Text = "Fecha";
     //
     // Botonera
     //
     this.Botonera.BackColor = System.Drawing.SystemColors.Control;
     this.Botonera.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
     this.Botonera.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.Botonera.ImageScalingSize = new System.Drawing.Size(22, 22);
     this.Botonera.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.btn_nuevo,
     this.btn_editar,
     this.btn_cancelar,
     this.btn_grabar,
     this.btn_eliminar,
     this.btn_imprimir,
     this.btnImprimirNoval,
     this.toolStripSeparator1,
     this.btn_primero,
     this.btn_anterior,
     this.btn_siguiente,
     this.btn_ultimo,
     this.toolStripSeparator2,
     this.btn_detanadir,
     this.btn_deteliminar,
     this.toolStripSeparator3,
     this.btn_Calculadora,
     this.btn_clave,
     this.btn_log,
     this.btn_upload,
     this.btn_salir,
     this.btn_information});
     this.Botonera.Location = new System.Drawing.Point(0, 0);
     this.Botonera.Name = "Botonera";
     this.Botonera.Size = new System.Drawing.Size(993, 29);
     this.Botonera.TabIndex = 1;
     this.Botonera.Text = "ToolStrip1";
     this.Botonera.ItemClicked += new System.Windows.Forms.ToolStripItemClickedEventHandler(this.Botonera_ItemClicked);
     //
     // btn_nuevo
     //
     this.btn_nuevo.BackColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_nuevo.Image = ((System.Drawing.Image)(resources.GetObject("btn_nuevo.Image")));
     this.btn_nuevo.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_nuevo.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.btn_nuevo.Name = "btn_nuevo";
     this.btn_nuevo.Size = new System.Drawing.Size(23, 26);
     this.btn_nuevo.Text = "Nuevo";
     this.btn_nuevo.ToolTipText = "Nuevo (Ctrl + N)";
     this.btn_nuevo.Click += new System.EventHandler(this.btn_nuevo_Click);
     //
     // btn_editar
     //
     this.btn_editar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_editar.Image = global::BapFormulariosNet.Properties.Resources.Edit;
     this.btn_editar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_editar.Name = "btn_editar";
     this.btn_editar.Size = new System.Drawing.Size(26, 26);
     this.btn_editar.Text = "Editar";
     this.btn_editar.Click += new System.EventHandler(this.btn_editar_Click);
     //
     // btn_cancelar
     //
     this.btn_cancelar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_cancelar.Image = global::BapFormulariosNet.Properties.Resources.go_undo;
     this.btn_cancelar.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_cancelar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_cancelar.Name = "btn_cancelar";
     this.btn_cancelar.Size = new System.Drawing.Size(24, 26);
     this.btn_cancelar.Text = "Cancelar";
     this.btn_cancelar.Click += new System.EventHandler(this.btn_cancelar_Click);
     //
     // btn_grabar
     //
     this.btn_grabar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_grabar.Image = ((System.Drawing.Image)(resources.GetObject("btn_grabar.Image")));
     this.btn_grabar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_grabar.Name = "btn_grabar";
     this.btn_grabar.Size = new System.Drawing.Size(26, 26);
     this.btn_grabar.Text = "Grabar";
     this.btn_grabar.ToolTipText = "Grabar (Ctrl + G)";
     this.btn_grabar.Click += new System.EventHandler(this.btn_grabar_Click);
     //
     // btn_eliminar
     //
     this.btn_eliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_eliminar.Image = global::BapFormulariosNet.Properties.Resources.btn_eliminar20;
     this.btn_eliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_eliminar.Name = "btn_eliminar";
     this.btn_eliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_eliminar.Text = "Eliminar";
     this.btn_eliminar.Click += new System.EventHandler(this.btn_eliminar_Click);
     //
     // btn_imprimir
     //
     this.btn_imprimir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_imprimir.Image = ((System.Drawing.Image)(resources.GetObject("btn_imprimir.Image")));
     this.btn_imprimir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_imprimir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_imprimir.Name = "btn_imprimir";
     this.btn_imprimir.Size = new System.Drawing.Size(24, 26);
     this.btn_imprimir.Text = "Imprimir";
     this.btn_imprimir.ToolTipText = "Impresion Valorizada";
     this.btn_imprimir.Click += new System.EventHandler(this.btn_imprimir_Click);
     //
     // btnImprimirNoval
     //
     this.btnImprimirNoval.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btnImprimirNoval.Image = global::BapFormulariosNet.Properties.Resources.agt_print;
     this.btnImprimirNoval.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btnImprimirNoval.Name = "btnImprimirNoval";
     this.btnImprimirNoval.Size = new System.Drawing.Size(26, 26);
     this.btnImprimirNoval.ToolTipText = "Impresion No Valorizada";
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 29);
     //
     // btn_primero
     //
     this.btn_primero.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_primero.Image = global::BapFormulariosNet.Properties.Resources.go_first_g;
     this.btn_primero.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_primero.Name = "btn_primero";
     this.btn_primero.Size = new System.Drawing.Size(26, 26);
     this.btn_primero.Text = "Primero";
     this.btn_primero.Click += new System.EventHandler(this.btn_primero_Click);
     //
     // btn_anterior
     //
     this.btn_anterior.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_anterior.Image = global::BapFormulariosNet.Properties.Resources.go_previous_g;
     this.btn_anterior.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_anterior.Name = "btn_anterior";
     this.btn_anterior.Size = new System.Drawing.Size(26, 26);
     this.btn_anterior.Text = "Anterior";
     this.btn_anterior.Click += new System.EventHandler(this.btn_anterior_Click);
     //
     // btn_siguiente
     //
     this.btn_siguiente.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_siguiente.Image = global::BapFormulariosNet.Properties.Resources.go_next_g;
     this.btn_siguiente.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_siguiente.Name = "btn_siguiente";
     this.btn_siguiente.Size = new System.Drawing.Size(26, 26);
     this.btn_siguiente.Text = "Siguiente";
     this.btn_siguiente.Click += new System.EventHandler(this.btn_siguiente_Click);
     //
     // btn_ultimo
     //
     this.btn_ultimo.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_ultimo.Image = global::BapFormulariosNet.Properties.Resources.go_last_g;
     this.btn_ultimo.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_ultimo.Name = "btn_ultimo";
     this.btn_ultimo.Size = new System.Drawing.Size(26, 26);
     this.btn_ultimo.Text = "Ultimo";
     this.btn_ultimo.Click += new System.EventHandler(this.btn_ultimo_Click);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 29);
     //
     // btn_detanadir
     //
     this.btn_detanadir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_detanadir.Image = global::BapFormulariosNet.Properties.Resources.go_add;
     this.btn_detanadir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_detanadir.Name = "btn_detanadir";
     this.btn_detanadir.Size = new System.Drawing.Size(26, 26);
     this.btn_detanadir.Text = "Añadir";
     this.btn_detanadir.Click += new System.EventHandler(this.btn_detanadir_Click);
     //
     // btn_deteliminar
     //
     this.btn_deteliminar.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_deteliminar.Image = global::BapFormulariosNet.Properties.Resources.go_remove1;
     this.btn_deteliminar.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_deteliminar.Name = "btn_deteliminar";
     this.btn_deteliminar.Size = new System.Drawing.Size(26, 26);
     this.btn_deteliminar.Text = "Quitar";
     this.btn_deteliminar.Click += new System.EventHandler(this.btn_deteliminar_Click);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 29);
     //
     // btn_Calculadora
     //
     this.btn_Calculadora.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_Calculadora.Image = global::BapFormulariosNet.Properties.Resources.go_calc2;
     this.btn_Calculadora.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_Calculadora.Name = "btn_Calculadora";
     this.btn_Calculadora.Size = new System.Drawing.Size(26, 26);
     this.btn_Calculadora.Text = "Calculadora";
     this.btn_Calculadora.Click += new System.EventHandler(this.btn_Calculadora_Click);
     //
     // btn_clave
     //
     this.btn_clave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_clave.Image = global::BapFormulariosNet.Properties.Resources.btn_Lock20;
     this.btn_clave.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_clave.Name = "btn_clave";
     this.btn_clave.Size = new System.Drawing.Size(26, 26);
     this.btn_clave.Text = "Clave Administrador";
     this.btn_clave.Click += new System.EventHandler(this.btn_clave_Click);
     //
     // btn_log
     //
     this.btn_log.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_log.Image = ((System.Drawing.Image)(resources.GetObject("btn_log.Image")));
     this.btn_log.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_log.Name = "btn_log";
     this.btn_log.Size = new System.Drawing.Size(26, 26);
     this.btn_log.Text = "Auditoria";
     this.btn_log.ToolTipText = "Auditoria";
     this.btn_log.Click += new System.EventHandler(this.btn_log_Click);
     //
     // btn_upload
     //
     this.btn_upload.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_upload.Image = global::BapFormulariosNet.Properties.Resources.btn_barcode;
     this.btn_upload.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_upload.Name = "btn_upload";
     this.btn_upload.Size = new System.Drawing.Size(26, 26);
     this.btn_upload.Text = "Leer Codigo Barras";
     this.btn_upload.ToolTipText = "Cargar";
     this.btn_upload.Click += new System.EventHandler(this.btn_upload_Click);
     //
     // btn_salir
     //
     this.btn_salir.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_salir.Image = global::BapFormulariosNet.Properties.Resources.go_out2;
     this.btn_salir.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
     this.btn_salir.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_salir.Name = "btn_salir";
     this.btn_salir.Size = new System.Drawing.Size(24, 26);
     this.btn_salir.Text = "Salir";
     this.btn_salir.Click += new System.EventHandler(this.btn_salir_Click);
     //
     // btn_information
     //
     this.btn_information.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.btn_information.Image = global::BapFormulariosNet.Properties.Resources.go_information;
     this.btn_information.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.btn_information.Name = "btn_information";
     this.btn_information.Size = new System.Drawing.Size(26, 26);
     this.btn_information.Text = "Informacion";
     this.btn_information.Click += new System.EventHandler(this.btn_information_Click);
     //
     // tipoclieprov
     //
     this.tipoclieprov.AutoSize = true;
     this.tipoclieprov.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tipoclieprov.Location = new System.Drawing.Point(6, 86);
     this.tipoclieprov.Name = "tipoclieprov";
     this.tipoclieprov.Size = new System.Drawing.Size(42, 13);
     this.tipoclieprov.TabIndex = 18;
     this.tipoclieprov.Text = "Cliente:";
     //
     // lblruc
     //
     this.lblruc.AutoSize = true;
     this.lblruc.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblruc.Location = new System.Drawing.Point(123, 85);
     this.lblruc.Name = "lblruc";
     this.lblruc.Size = new System.Drawing.Size(33, 13);
     this.lblruc.TabIndex = 75;
     this.lblruc.Text = "RUC:";
     //
     // label24
     //
     this.label24.AutoSize = true;
     this.label24.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label24.Location = new System.Drawing.Point(6, 128);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(55, 13);
     this.label24.TabIndex = 22;
     this.label24.Text = "Dirección:";
     //
     // shapeContainer1
     //
     this.shapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0);
     this.shapeContainer1.Name = "shapeContainer1";
     this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
     this.lineShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(993, 560);
     this.shapeContainer1.TabIndex = 82;
     this.shapeContainer1.TabStop = false;
     //
     // lineShape2
     //
     this.lineShape2.BorderWidth = 2;
     this.lineShape2.Name = "lineShape2";
     this.lineShape2.SelectionColor = System.Drawing.SystemColors.HotTrack;
     this.lineShape2.X1 = 2;
     this.lineShape2.X2 = 453;
     this.lineShape2.Y1 = 176;
     this.lineShape2.Y2 = 176;
     //
     // pdtimagen
     //
     this.pdtimagen.BackColor = System.Drawing.Color.Transparent;
     this.pdtimagen.Image = global::BapFormulariosNet.Properties.Resources.anulado;
     this.pdtimagen.Location = new System.Drawing.Point(378, 286);
     this.pdtimagen.Name = "pdtimagen";
     this.pdtimagen.Size = new System.Drawing.Size(262, 135);
     this.pdtimagen.TabIndex = 96;
     this.pdtimagen.TabStop = false;
     //
     // lstListaprec
     //
     this.lstListaprec.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.lstListaprec.FormattingEnabled = true;
     this.lstListaprec.Location = new System.Drawing.Point(873, 99);
     this.lstListaprec.Name = "lstListaprec";
     this.lstListaprec.Size = new System.Drawing.Size(113, 21);
     this.lstListaprec.TabIndex = 98;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(870, 78);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(85, 13);
     this.label22.TabIndex = 99;
     this.label22.Text = "Lista de Precios:";
     //
     // btnextraersunat
     //
     this.btnextraersunat.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.btnextraersunat.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.UltraFlat;
     this.btnextraersunat.Cursor = System.Windows.Forms.Cursors.Hand;
     this.btnextraersunat.Image = global::BapFormulariosNet.Properties.Resources.go_sunat1;
     this.btnextraersunat.Location = new System.Drawing.Point(256, 80);
     this.btnextraersunat.Name = "btnextraersunat";
     this.btnextraersunat.Size = new System.Drawing.Size(90, 23);
     this.btnextraersunat.TabIndex = 100;
     this.btnextraersunat.ToolTip = "Extrae Datos";
     this.btnextraersunat.ToolTipIconType = DevExpress.Utils.ToolTipIconType.Information;
     this.btnextraersunat.Click += new System.EventHandler(this.btnextraersunat_Click);
     //
     // xtraTabControl1
     //
     this.xtraTabControl1.Location = new System.Drawing.Point(466, 76);
     this.xtraTabControl1.Name = "xtraTabControl1";
     this.xtraTabControl1.SelectedTabPage = this.xtraTabPage3;
     this.xtraTabControl1.Size = new System.Drawing.Size(401, 137);
     this.xtraTabControl1.TabIndex = 101;
     this.xtraTabControl1.TabPages.AddRange(new DevExpress.XtraTab.XtraTabPage[] {
     this.xtraTabPage1,
     this.xtraTabPage2,
     this.xtraTabPage3});
     //
     // xtraTabPage3
     //
     this.xtraTabPage3.Controls.Add(this.canticombo);
     this.xtraTabPage3.Controls.Add(this.label26);
     this.xtraTabPage3.Controls.Add(this.label25);
     this.xtraTabPage3.Controls.Add(this.preccombo);
     this.xtraTabPage3.Controls.Add(this.princombo);
     this.xtraTabPage3.Controls.Add(this.glosa);
     this.xtraTabPage3.Name = "xtraTabPage3";
     this.xtraTabPage3.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage3.Text = "Observaciones";
     //
     // canticombo
     //
     this.canticombo.EditValue = new decimal(new int[] {
     0,
     0,
     0,
     0});
     this.canticombo.Location = new System.Drawing.Point(295, 30);
     this.canticombo.Name = "canticombo";
     this.canticombo.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] {
     new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo)});
     this.canticombo.Properties.MaxValue = new decimal(new int[] {
     100,
     0,
     0,
     0});
     this.canticombo.Size = new System.Drawing.Size(67, 20);
     this.canticombo.TabIndex = 87;
     this.canticombo.EditValueChanged += new System.EventHandler(this.canticombo_EditValueChanged);
     //
     // label26
     //
     this.label26.AutoSize = true;
     this.label26.Location = new System.Drawing.Point(239, 64);
     this.label26.Name = "label26";
     this.label26.Size = new System.Drawing.Size(55, 13);
     this.label26.TabIndex = 86;
     this.label26.Text = "Prec/Unit:";
     //
     // label25
     //
     this.label25.AutoSize = true;
     this.label25.Location = new System.Drawing.Point(210, 34);
     this.label25.Name = "label25";
     this.label25.Size = new System.Drawing.Size(84, 13);
     this.label25.TabIndex = 85;
     this.label25.Text = "Nro de Combos:";
     //
     // preccombo
     //
     this.preccombo.Location = new System.Drawing.Point(295, 60);
     this.preccombo.Name = "preccombo";
     this.preccombo.ReadOnly = true;
     this.preccombo.Size = new System.Drawing.Size(67, 21);
     this.preccombo.TabIndex = 83;
     this.preccombo.Text = "0.00";
     this.preccombo.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // princombo
     //
     this.princombo.AutoSize = true;
     this.princombo.Location = new System.Drawing.Point(219, 9);
     this.princombo.Name = "princombo";
     this.princombo.Size = new System.Drawing.Size(151, 17);
     this.princombo.TabIndex = 81;
     this.princombo.Text = "Imprimir en Detalle Combo";
     this.princombo.UseVisualStyleBackColor = true;
     this.princombo.CheckedChanged += new System.EventHandler(this.princombo_CheckedChanged);
     //
     // glosa
     //
     this.glosa.Location = new System.Drawing.Point(18, 9);
     this.glosa.Multiline = true;
     this.glosa.Name = "glosa";
     this.glosa.Size = new System.Drawing.Size(186, 72);
     this.glosa.TabIndex = 80;
     //
     // xtraTabPage1
     //
     this.xtraTabPage1.Controls.Add(this.label23);
     this.xtraTabPage1.Controls.Add(this.importtarj);
     this.xtraTabPage1.Controls.Add(this.btn_del);
     this.xtraTabPage1.Controls.Add(this.btn_add);
     this.xtraTabPage1.Controls.Add(this.lstTarjGroup);
     this.xtraTabPage1.Controls.Add(this.dgbtarjetas);
     this.xtraTabPage1.Name = "xtraTabPage1";
     this.xtraTabPage1.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage1.Text = "Pago con Tarjeta";
     //
     // label23
     //
     this.label23.AutoSize = true;
     this.label23.Location = new System.Drawing.Point(73, 83);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(50, 13);
     this.label23.TabIndex = 101;
     this.label23.Text = "Total >>";
     //
     // importtarj
     //
     this.importtarj.Location = new System.Drawing.Point(129, 80);
     this.importtarj.MaxLength = 8;
     this.importtarj.Name = "importtarj";
     this.importtarj.Size = new System.Drawing.Size(69, 21);
     this.importtarj.TabIndex = 100;
     this.importtarj.Text = "0.00";
     this.importtarj.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // lstTarjGroup
     //
     this.lstTarjGroup.FormattingEnabled = true;
     this.lstTarjGroup.Location = new System.Drawing.Point(253, 12);
     this.lstTarjGroup.Name = "lstTarjGroup";
     this.lstTarjGroup.Size = new System.Drawing.Size(116, 56);
     this.lstTarjGroup.TabIndex = 97;
     //
     // dgbtarjetas
     //
     this.dgbtarjetas.AllowUserToAddRows = false;
     this.dgbtarjetas.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgbtarjetas.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
     this._tarjetalogo,
     this._tarjetaid,
     this._tarjetaname,
     this._tarjetanum,
     this._tarjetaimpo,
     this._ddnni});
     this.dgbtarjetas.Location = new System.Drawing.Point(5, 12);
     this.dgbtarjetas.Name = "dgbtarjetas";
     this.dgbtarjetas.ReadOnly = true;
     this.dgbtarjetas.RowHeadersVisible = false;
     this.dgbtarjetas.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.dgbtarjetas.Size = new System.Drawing.Size(214, 68);
     this.dgbtarjetas.TabIndex = 96;
     //
     // _tarjetalogo
     //
     this._tarjetalogo.DataPropertyName = "tarjetalogo";
     this._tarjetalogo.HeaderText = "TarJ";
     this._tarjetalogo.ImageLayout = System.Windows.Forms.DataGridViewImageCellLayout.Zoom;
     this._tarjetalogo.Name = "_tarjetalogo";
     this._tarjetalogo.ReadOnly = true;
     this._tarjetalogo.Resizable = System.Windows.Forms.DataGridViewTriState.True;
     this._tarjetalogo.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
     this._tarjetalogo.Width = 40;
     //
     // _tarjetaid
     //
     this._tarjetaid.DataPropertyName = "tarjetaid";
     dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
     this._tarjetaid.DefaultCellStyle = dataGridViewCellStyle10;
     this._tarjetaid.HeaderText = "Cod";
     this._tarjetaid.Name = "_tarjetaid";
     this._tarjetaid.ReadOnly = true;
     this._tarjetaid.Visible = false;
     this._tarjetaid.Width = 30;
     //
     // _tarjetaname
     //
     this._tarjetaname.DataPropertyName = "tarjetaname";
     this._tarjetaname.HeaderText = "Nom";
     this._tarjetaname.Name = "_tarjetaname";
     this._tarjetaname.ReadOnly = true;
     this._tarjetaname.Visible = false;
     //
     // _tarjetanum
     //
     this._tarjetanum.DataPropertyName = "tarjetanume";
     dataGridViewCellStyle11.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft;
     this._tarjetanum.DefaultCellStyle = dataGridViewCellStyle11;
     this._tarjetanum.HeaderText = "Aprob.";
     this._tarjetanum.Name = "_tarjetanum";
     this._tarjetanum.ReadOnly = true;
     this._tarjetanum.Width = 80;
     //
     // _tarjetaimpo
     //
     this._tarjetaimpo.DataPropertyName = "tarjetaimpo";
     dataGridViewCellStyle12.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
     dataGridViewCellStyle12.Format = "N2";
     dataGridViewCellStyle12.NullValue = null;
     this._tarjetaimpo.DefaultCellStyle = dataGridViewCellStyle12;
     this._tarjetaimpo.HeaderText = "Importe";
     this._tarjetaimpo.Name = "_tarjetaimpo";
     this._tarjetaimpo.ReadOnly = true;
     this._tarjetaimpo.Width = 80;
     //
     // _ddnni
     //
     this._ddnni.DataPropertyName = "ddnni";
     this._ddnni.HeaderText = "Dni";
     this._ddnni.Name = "_ddnni";
     this._ddnni.ReadOnly = true;
     this._ddnni.Visible = false;
     //
     // xtraTabPage2
     //
     this.xtraTabPage2.Controls.Add(this.numnotac);
     this.xtraTabPage2.Controls.Add(this.sernotac);
     this.xtraTabPage2.Controls.Add(this.tipnotac);
     this.xtraTabPage2.Controls.Add(this.numguia);
     this.xtraTabPage2.Controls.Add(this.serguia);
     this.xtraTabPage2.Controls.Add(this.tipguia);
     this.xtraTabPage2.Controls.Add(this.numfac);
     this.xtraTabPage2.Controls.Add(this.serfac);
     this.xtraTabPage2.Controls.Add(this.tipfac);
     this.xtraTabPage2.Controls.Add(this.recep_fecha);
     this.xtraTabPage2.Controls.Add(this.recep_dni);
     this.xtraTabPage2.Controls.Add(this.recep_name);
     this.xtraTabPage2.Controls.Add(this.chkNC);
     this.xtraTabPage2.Controls.Add(this.chkGR);
     this.xtraTabPage2.Controls.Add(this.chkFA);
     this.xtraTabPage2.Controls.Add(this.fechnotac);
     this.xtraTabPage2.Controls.Add(this.fechguia);
     this.xtraTabPage2.Controls.Add(this.fechfac);
     this.xtraTabPage2.Controls.Add(this.label29);
     this.xtraTabPage2.Controls.Add(this.label28);
     this.xtraTabPage2.Controls.Add(this.label27);
     this.xtraTabPage2.Name = "xtraTabPage2";
     this.xtraTabPage2.Size = new System.Drawing.Size(395, 109);
     this.xtraTabPage2.Text = "Docs Referencia";
     //
     // numnotac
     //
     //
     //
     //
     this.numnotac.Border.Class = "TextBoxBorder";
     this.numnotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numnotac.ButtonCustom.Tooltip = "";
     this.numnotac.ButtonCustom2.Tooltip = "";
     this.numnotac.Location = new System.Drawing.Point(88, 60);
     this.numnotac.MaxLength = 10;
     this.numnotac.Name = "numnotac";
     this.numnotac.PreventEnterBeep = true;
     this.numnotac.Size = new System.Drawing.Size(79, 21);
     this.numnotac.TabIndex = 94;
     //
     // sernotac
     //
     //
     //
     //
     this.sernotac.Border.Class = "TextBoxBorder";
     this.sernotac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.sernotac.ButtonCustom.Tooltip = "";
     this.sernotac.ButtonCustom2.Tooltip = "";
     this.sernotac.Location = new System.Drawing.Point(49, 60);
     this.sernotac.MaxLength = 4;
     this.sernotac.Name = "sernotac";
     this.sernotac.PreventEnterBeep = true;
     this.sernotac.Size = new System.Drawing.Size(37, 21);
     this.sernotac.TabIndex = 93;
     //
     // tipnotac
     //
     this.tipnotac.DisplayMember = "Text";
     this.tipnotac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipnotac.FormattingEnabled = true;
     this.tipnotac.ItemHeight = 15;
     this.tipnotac.Items.AddRange(new object[] {
     this.comboItem5});
     this.tipnotac.Location = new System.Drawing.Point(6, 60);
     this.tipnotac.Name = "tipnotac";
     this.tipnotac.Size = new System.Drawing.Size(40, 21);
     this.tipnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipnotac.TabIndex = 92;
     this.tipnotac.Text = "NC";
     //
     // comboItem5
     //
     this.comboItem5.Text = "NC";
     //
     // numguia
     //
     //
     //
     //
     this.numguia.Border.Class = "TextBoxBorder";
     this.numguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numguia.ButtonCustom.Tooltip = "";
     this.numguia.ButtonCustom2.Tooltip = "";
     this.numguia.Location = new System.Drawing.Point(88, 36);
     this.numguia.MaxLength = 10;
     this.numguia.Name = "numguia";
     this.numguia.PreventEnterBeep = true;
     this.numguia.Size = new System.Drawing.Size(79, 21);
     this.numguia.TabIndex = 91;
     //
     // serguia
     //
     //
     //
     //
     this.serguia.Border.Class = "TextBoxBorder";
     this.serguia.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serguia.ButtonCustom.Tooltip = "";
     this.serguia.ButtonCustom2.Tooltip = "";
     this.serguia.Location = new System.Drawing.Point(49, 36);
     this.serguia.MaxLength = 4;
     this.serguia.Name = "serguia";
     this.serguia.PreventEnterBeep = true;
     this.serguia.Size = new System.Drawing.Size(37, 21);
     this.serguia.TabIndex = 90;
     //
     // tipguia
     //
     this.tipguia.DisplayMember = "Text";
     this.tipguia.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipguia.FormattingEnabled = true;
     this.tipguia.ItemHeight = 15;
     this.tipguia.Items.AddRange(new object[] {
     this.comboItem3});
     this.tipguia.Location = new System.Drawing.Point(6, 36);
     this.tipguia.Name = "tipguia";
     this.tipguia.Size = new System.Drawing.Size(40, 21);
     this.tipguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipguia.TabIndex = 89;
     this.tipguia.Text = "GR";
     //
     // comboItem3
     //
     this.comboItem3.Text = "GR";
     //
     // numfac
     //
     //
     //
     //
     this.numfac.Border.Class = "TextBoxBorder";
     this.numfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.numfac.ButtonCustom.Tooltip = "";
     this.numfac.ButtonCustom2.Tooltip = "";
     this.numfac.Location = new System.Drawing.Point(88, 12);
     this.numfac.MaxLength = 10;
     this.numfac.Name = "numfac";
     this.numfac.PreventEnterBeep = true;
     this.numfac.Size = new System.Drawing.Size(79, 21);
     this.numfac.TabIndex = 88;
     this.numfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.numfac_KeyDown);
     //
     // serfac
     //
     //
     //
     //
     this.serfac.Border.Class = "TextBoxBorder";
     this.serfac.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.serfac.ButtonCustom.Tooltip = "";
     this.serfac.ButtonCustom2.Tooltip = "";
     this.serfac.Location = new System.Drawing.Point(49, 12);
     this.serfac.MaxLength = 4;
     this.serfac.Name = "serfac";
     this.serfac.PreventEnterBeep = true;
     this.serfac.Size = new System.Drawing.Size(37, 21);
     this.serfac.TabIndex = 87;
     this.serfac.KeyDown += new System.Windows.Forms.KeyEventHandler(this.serfac_KeyDown);
     //
     // tipfac
     //
     this.tipfac.DisplayMember = "Text";
     this.tipfac.DrawMode = System.Windows.Forms.DrawMode.OwnerDrawFixed;
     this.tipfac.FormattingEnabled = true;
     this.tipfac.ItemHeight = 15;
     this.tipfac.Items.AddRange(new object[] {
     this.comboItem1,
     this.comboItem2});
     this.tipfac.Location = new System.Drawing.Point(6, 12);
     this.tipfac.Name = "tipfac";
     this.tipfac.Size = new System.Drawing.Size(40, 21);
     this.tipfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.tipfac.TabIndex = 86;
     //
     // comboItem1
     //
     this.comboItem1.Text = "FA";
     //
     // comboItem2
     //
     this.comboItem2.Text = "BV";
     //
     // recep_fecha
     //
     //
     //
     //
     this.recep_fecha.BackgroundStyle.Class = "DateTimeInputBackground";
     this.recep_fecha.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.ButtonClear.Tooltip = "";
     this.recep_fecha.ButtonCustom.Tooltip = "";
     this.recep_fecha.ButtonCustom2.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.recep_fecha.ButtonDropDown.Tooltip = "";
     this.recep_fecha.ButtonDropDown.Visible = true;
     this.recep_fecha.ButtonFreeText.Tooltip = "";
     this.recep_fecha.IsPopupCalendarOpen = false;
     this.recep_fecha.Location = new System.Drawing.Point(297, 79);
     //
     //
     //
     this.recep_fecha.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.recep_fecha.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.recep_fecha.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.recep_fecha.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.recep_fecha.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.recep_fecha.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_fecha.MonthCalendar.TodayButtonVisible = true;
     this.recep_fecha.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.recep_fecha.Name = "recep_fecha";
     this.recep_fecha.Size = new System.Drawing.Size(82, 21);
     this.recep_fecha.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.recep_fecha.TabIndex = 85;
     //
     // recep_dni
     //
     //
     //
     //
     this.recep_dni.Border.Class = "TextBoxBorder";
     this.recep_dni.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_dni.ButtonCustom.Tooltip = "";
     this.recep_dni.ButtonCustom2.Tooltip = "";
     this.recep_dni.Location = new System.Drawing.Point(297, 58);
     this.recep_dni.MaxLength = 8;
     this.recep_dni.Name = "recep_dni";
     this.recep_dni.PreventEnterBeep = true;
     this.recep_dni.Size = new System.Drawing.Size(83, 21);
     this.recep_dni.TabIndex = 84;
     //
     // recep_name
     //
     //
     //
     //
     this.recep_name.Border.Class = "TextBoxBorder";
     this.recep_name.Border.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.recep_name.ButtonCustom.Tooltip = "";
     this.recep_name.ButtonCustom2.Tooltip = "";
     this.recep_name.Location = new System.Drawing.Point(269, 21);
     this.recep_name.MaxLength = 100;
     this.recep_name.Multiline = true;
     this.recep_name.Name = "recep_name";
     this.recep_name.PreventEnterBeep = true;
     this.recep_name.Size = new System.Drawing.Size(111, 36);
     this.recep_name.TabIndex = 83;
     //
     // chkNC
     //
     //
     //
     //
     this.chkNC.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkNC.Location = new System.Drawing.Point(247, 58);
     this.chkNC.Name = "chkNC";
     this.chkNC.Size = new System.Drawing.Size(16, 23);
     this.chkNC.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkNC.TabIndex = 82;
     this.chkNC.CheckedChanged += new System.EventHandler(this.chkNC_CheckedChanged);
     //
     // chkGR
     //
     //
     //
     //
     this.chkGR.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkGR.Location = new System.Drawing.Point(247, 36);
     this.chkGR.Name = "chkGR";
     this.chkGR.Size = new System.Drawing.Size(16, 23);
     this.chkGR.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkGR.TabIndex = 81;
     this.chkGR.CheckedChanged += new System.EventHandler(this.chkGR_CheckedChanged);
     //
     // chkFA
     //
     //
     //
     //
     this.chkFA.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.chkFA.Location = new System.Drawing.Point(247, 12);
     this.chkFA.Name = "chkFA";
     this.chkFA.Size = new System.Drawing.Size(16, 23);
     this.chkFA.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.chkFA.TabIndex = 80;
     this.chkFA.CheckedChanged += new System.EventHandler(this.chkFA_CheckedChanged);
     //
     // fechnotac
     //
     //
     //
     //
     this.fechnotac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechnotac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.ButtonClear.Tooltip = "";
     this.fechnotac.ButtonCustom.Tooltip = "";
     this.fechnotac.ButtonCustom2.Tooltip = "";
     this.fechnotac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechnotac.ButtonDropDown.Tooltip = "";
     this.fechnotac.ButtonDropDown.Visible = true;
     this.fechnotac.ButtonFreeText.Tooltip = "";
     this.fechnotac.IsPopupCalendarOpen = false;
     this.fechnotac.Location = new System.Drawing.Point(168, 59);
     //
     //
     //
     this.fechnotac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechnotac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechnotac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechnotac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechnotac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechnotac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechnotac.MonthCalendar.TodayButtonVisible = true;
     this.fechnotac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechnotac.Name = "fechnotac";
     this.fechnotac.Size = new System.Drawing.Size(82, 21);
     this.fechnotac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechnotac.TabIndex = 79;
     //
     // fechguia
     //
     //
     //
     //
     this.fechguia.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechguia.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.ButtonClear.Tooltip = "";
     this.fechguia.ButtonCustom.Tooltip = "";
     this.fechguia.ButtonCustom2.Tooltip = "";
     this.fechguia.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechguia.ButtonDropDown.Tooltip = "";
     this.fechguia.ButtonDropDown.Visible = true;
     this.fechguia.ButtonFreeText.Tooltip = "";
     this.fechguia.IsPopupCalendarOpen = false;
     this.fechguia.Location = new System.Drawing.Point(168, 36);
     //
     //
     //
     this.fechguia.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechguia.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechguia.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechguia.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechguia.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechguia.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechguia.MonthCalendar.TodayButtonVisible = true;
     this.fechguia.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechguia.Name = "fechguia";
     this.fechguia.Size = new System.Drawing.Size(82, 21);
     this.fechguia.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechguia.TabIndex = 78;
     //
     // fechfac
     //
     //
     //
     //
     this.fechfac.BackgroundStyle.Class = "DateTimeInputBackground";
     this.fechfac.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.ButtonClear.Tooltip = "";
     this.fechfac.ButtonCustom.Tooltip = "";
     this.fechfac.ButtonCustom2.Tooltip = "";
     this.fechfac.ButtonDropDown.Shortcut = DevComponents.DotNetBar.eShortcut.AltDown;
     this.fechfac.ButtonDropDown.Tooltip = "";
     this.fechfac.ButtonDropDown.Visible = true;
     this.fechfac.ButtonFreeText.Tooltip = "";
     this.fechfac.IsPopupCalendarOpen = false;
     this.fechfac.Location = new System.Drawing.Point(168, 12);
     //
     //
     //
     this.fechfac.MonthCalendar.AnnuallyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.BackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.CalendarDimensions = new System.Drawing.Size(1, 1);
     this.fechfac.MonthCalendar.ClearButtonVisible = true;
     //
     //
     //
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground2;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarBackground;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTop = DevComponents.DotNetBar.eStyleBorderType.Solid;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.BarDockedBorder;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.BorderTopWidth = 1;
     this.fechfac.MonthCalendar.CommandsBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.DisplayMonth = new System.DateTime(2015, 3, 1, 0, 0, 0, 0);
     this.fechfac.MonthCalendar.MarkedDates = new System.DateTime[0];
     this.fechfac.MonthCalendar.MonthlyMarkedDates = new System.DateTime[0];
     //
     //
     //
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColor2SchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground2;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorGradientAngle = 90;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.BackColorSchemePart = DevComponents.DotNetBar.eColorSchemePart.PanelBackground;
     this.fechfac.MonthCalendar.NavigationBackgroundStyle.CornerType = DevComponents.DotNetBar.eCornerType.Square;
     this.fechfac.MonthCalendar.TodayButtonVisible = true;
     this.fechfac.MonthCalendar.WeeklyMarkedDays = new System.DayOfWeek[0];
     this.fechfac.Name = "fechfac";
     this.fechfac.Size = new System.Drawing.Size(82, 21);
     this.fechfac.Style = DevComponents.DotNetBar.eDotNetBarStyle.StyleManagerControlled;
     this.fechfac.TabIndex = 77;
     //
     // label29
     //
     this.label29.AutoSize = true;
     this.label29.Location = new System.Drawing.Point(225, 84);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(73, 13);
     this.label29.TabIndex = 72;
     this.label29.Text = "Fecha Recep:";
     //
     // label28
     //
     this.label28.AutoSize = true;
     this.label28.Location = new System.Drawing.Point(269, 58);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(29, 13);
     this.label28.TabIndex = 69;
     this.label28.Text = "DNI:";
     //
     // label27
     //
     this.label27.AutoSize = true;
     this.label27.Location = new System.Drawing.Point(271, 9);
     this.label27.Name = "label27";
     this.label27.Size = new System.Drawing.Size(55, 13);
     this.label27.TabIndex = 67;
     this.label27.Text = "Receptor:";
     //
     // Frm_ventas
     //
     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.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ClientSize = new System.Drawing.Size(993, 560);
     this.Controls.Add(this.xtraTabControl1);
     this.Controls.Add(this.btnextraersunat);
     this.Controls.Add(this.label22);
     this.Controls.Add(this.lstListaprec);
     this.Controls.Add(this.pdtimagen);
     this.Controls.Add(this.label12);
     this.Controls.Add(this.telef);
     this.Controls.Add(this.vendpername);
     this.Controls.Add(this.vendperid);
     this.Controls.Add(this.label11);
     this.Controls.Add(this.ctacte);
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.griddetallemov);
     this.Controls.Add(this.direc);
     this.Controls.Add(this.ctactename);
     this.Controls.Add(this.nmruc);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.Botonera);
     this.Controls.Add(this.tipoclieprov);
     this.Controls.Add(this.lblruc);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.shapeContainer1);
     this.DoubleBuffered = true;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.KeyPreview = true;
     this.MaximizeBox = false;
     this.Name = "Frm_ventas";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Modulo de Ventas";
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Frm_movimiento_FormClosing);
     this.Load += new System.EventHandler(this.Frm_ventas_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.Frm_movimiento_KeyDown);
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.griddetallemov)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.chkfijar.Properties)).EndInit();
     this.Botonera.ResumeLayout(false);
     this.Botonera.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pdtimagen)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.xtraTabControl1)).EndInit();
     this.xtraTabControl1.ResumeLayout(false);
     this.xtraTabPage3.ResumeLayout(false);
     this.xtraTabPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.canticombo.Properties)).EndInit();
     this.xtraTabPage1.ResumeLayout(false);
     this.xtraTabPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.dgbtarjetas)).EndInit();
     this.xtraTabPage2.ResumeLayout(false);
     this.xtraTabPage2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.recep_fecha)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechnotac)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechguia)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.fechfac)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Ejemplo n.º 44
0
        //
        //                                      O
        //                                       \ 
        // (Start Point)O-------------------------O (End Point)
        //                                       /
        //                                      O
        //
        public void DrawVectorArrow(Point StartPoint, Point EndPoint, Color color) // Draw 4 Line for create a Vector by Arrow
        {
            // Public Info
            // Line1 ========================================================================
            Line[CounterL1] = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.Line[CounterL1].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
            this.Line[CounterL1].BorderColor    = color;
            this.Line[CounterL1].BorderWidth    = 2;
            this.Line[CounterL1].Enabled        = false;
            this.Line[CounterL1].X1             = StartPoint.X;
            this.Line[CounterL1].X2             = EndPoint.X;
            this.Line[CounterL1].Y1             = StartPoint.Y;
            this.Line[CounterL1].Y2             = StartPoint.Y;
            this.PointShape.Shapes.Add(Line[CounterL1]);
            CounterL1++; // go to create other line
            //===============================================================================
            // Line2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
            Line[CounterL1] = new Microsoft.VisualBasic.PowerPacks.LineShape();
            this.Line[CounterL1].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
            this.Line[CounterL1].BorderColor    = color;
            this.Line[CounterL1].BorderWidth    = 2;
            this.Line[CounterL1].Enabled        = false;
            this.Line[CounterL1].X1             = EndPoint.X;
            this.Line[CounterL1].X2             = EndPoint.X;
            this.Line[CounterL1].Y1             = StartPoint.Y;
            this.Line[CounterL1].Y2             = EndPoint.Y;
            this.PointShape.Shapes.Add(Line[CounterL1]);
            CounterL1++; // go to create other line
            //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

            // Line1 (Start Point) O-------------------------O
            // Line2                                     O   |   O
            // Line3                                      \  |  /
            // Line4                                       \ | /
            //                                               O
            //                                          (End Point)
            #region DOWN Arrow
            if (StartPoint.Y < EndPoint.Y)
            {
                // Line3 ------------------------------------------------------------------------
                Line[CounterL1] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterL1].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterL1].BorderColor    = color;
                this.Line[CounterL1].BorderWidth    = 2;
                this.Line[CounterL1].Enabled        = false;
                this.Line[CounterL1].X1             = EndPoint.X;
                this.Line[CounterL1].X2             = EndPoint.X - 5; // Left
                this.Line[CounterL1].Y1             = EndPoint.Y;
                this.Line[CounterL1].Y2             = EndPoint.Y - 10;
                this.PointShape.Shapes.Add(Line[CounterL1]);
                CounterL1++; // go to create other line
                //-------------------------------------------------------------------------------
                // Line4 ************************************************************************
                Line[CounterL1] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterL1].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterL1].BorderColor    = color;
                this.Line[CounterL1].BorderWidth    = 2;
                this.Line[CounterL1].Enabled        = false;
                this.Line[CounterL1].X1             = EndPoint.X;
                this.Line[CounterL1].X2             = EndPoint.X + 5; // Right
                this.Line[CounterL1].Y1             = EndPoint.Y;
                this.Line[CounterL1].Y2             = EndPoint.Y - 10;
                this.PointShape.Shapes.Add(Line[CounterL1]);
                CounterL1++; // go to create other line
                //*******************************************************************************
            }
            #endregion

            //        (End Point)
            //             O
            // Line1     / | \
            // Line2    /  |  \
            // Line3   O   |   O
            // Line4       O-------------------------O (Start Point)
            #region UP Arrow
            else
            {
                // Line3 ------------------------------------------------------------------------
                Line[CounterL1] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterL1].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterL1].BorderColor    = color;
                this.Line[CounterL1].BorderWidth    = 2;
                this.Line[CounterL1].Enabled        = false;
                this.Line[CounterL1].X1             = EndPoint.X;
                this.Line[CounterL1].X2             = EndPoint.X - 5; // Left
                this.Line[CounterL1].Y1             = EndPoint.Y;
                this.Line[CounterL1].Y2             = EndPoint.Y + 10;
                this.PointShape.Shapes.Add(Line[CounterL1]);
                CounterL1++; // go to create other line
                //-------------------------------------------------------------------------------
                // Line4 ************************************************************************
                Line[CounterL1] = new Microsoft.VisualBasic.PowerPacks.LineShape();
                this.Line[CounterL1].AccessibleRole = System.Windows.Forms.AccessibleRole.None;
                this.Line[CounterL1].BorderColor    = color;
                this.Line[CounterL1].BorderWidth    = 2;
                this.Line[CounterL1].Enabled        = false;
                this.Line[CounterL1].X1             = EndPoint.X;
                this.Line[CounterL1].X2             = EndPoint.X + 5; // Right
                this.Line[CounterL1].Y1             = EndPoint.Y;
                this.Line[CounterL1].Y2             = EndPoint.Y + 10;
                this.PointShape.Shapes.Add(Line[CounterL1]);
                CounterL1++; // go to create other line
                //*******************************************************************************
            }
            #endregion
        }