Exemplo n.º 1
0
        private Microsoft.VisualBasic.PowerPacks.ShapeContainer PointShape; // for Add All shape to page view
        #endregion

        private void DrawGraph_Load(object sender, EventArgs e)
        {
            PointShape = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
            Line       = new Microsoft.VisualBasic.PowerPacks.LineShape[(FirstForm.strAlphabetWord.Length - 1) * (FirstForm.NumberOfNewVertex) * 4];
            // Array Length is Number of Alphabet Words
            Ellipse = new Microsoft.VisualBasic.PowerPacks.OvalShape[FirstForm.strAlphabetWord.Length - 1];
            // Array Length is NumberOfNewVertex + Number Of FinalVertex
            Oval            = new Microsoft.VisualBasic.PowerPacks.OvalShape[FirstForm.NumberOfNewVertex + FirstForm.FinalVertexDFA.Count];
            lblAlphabetName = new Label[FirstForm.strAlphabetWord.Length - 1]; // Array Length is Number of Alphabet Words
            lblVertexName   = new Label[FirstForm.NumberOfNewVertex];          // Array Length is NumberOfNewVertex
            // BeiziLoop Array Length is  NumberOfNewVertex * (strAlphabetWord.Length - 1)
            BeiziLoop = new Microsoft.VisualBasic.PowerPacks.OvalShape[FirstForm.NumberOfNewVertex * (FirstForm.strAlphabetWord.Length - 1)];

            // Craete PointShape Object
            this.PointShape.Location = new Point(0, 0);
            this.PointShape.Margin   = new System.Windows.Forms.Padding(0);
            this.PointShape.Size     = new System.Drawing.Size(3000, 3000);
            this.PointShape.TabIndex = 1;
            this.PointShape.TabStop  = false;

            //------------------------------------------------------SOLVE---------------------------------------------------------------------
            DrawVertexCircle();
            DrawFinalVertexCircle();
            RandomyColor(FirstForm.strAlphabetWord.Length - 1);
            DrawAlphabetEllipse();
            DrawAllLine();
            this.Controls.Add(PointShape);
            //--------------------------------------------------------------------------------------------------------------------------------
        }
Exemplo n.º 2
0
        public Form1()
        {
            InitializeComponent();
            contenitoreMattoni = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();

            Cursor.Hide();

            FormBorderStyle = FormBorderStyle.None;
            TopMost         = true;
            Bounds          = Screen.PrimaryScreen.Bounds;

            panel1.Size = ClientSize;

            informazioni.Left = (panel1.Width / 2) - (informazioni.Width / 2);
            informazioni.Top  = (panel1.Height / 2) - (informazioni.Height / 2);

            racchetta.Top = panel1.Bottom - (panel1.Bottom / 10);

            Ball.Top  = panel1.Height / 2;
            Ball.Left = panel1.Width / 2;

            lblPunteggio.Location = new Point(15, 15);

            cursore = new Rectangle(Ball.Location.X, Ball.Location.Y, Ball.Width, Ball.Height);

            for (int riga = panel1.Height / 30; riga < panel1.Height / 3; riga += panel1.Height / 20)
            {
                for (double colonna = panel1.Width / 100; colonna < panel1.Width; colonna += panel1.Width / 9)
                {
                    int larghezzaMattone = Convert.ToInt32(panel1.Width / 10);
                    int fineRiga         = Convert.ToInt32(colonna) + panel1.Width / 10;
                    if (fineRiga < panel1.Width)
                    {
                        arrayMattoni[j]           = new Microsoft.VisualBasic.PowerPacks.RectangleShape(Convert.ToInt32(colonna), 70 + riga, larghezzaMattone, 30);
                        arrayMattoni[j].FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Solid;
                        arrayMattoni[j].FillColor = Color.FromArgb(_random.Next(0, 255), _random.Next(0, 255), _random.Next(0, 255));
                    }
                    j++;
                }
            }

            contenitoreMattoni.Location = new System.Drawing.Point(0, 0);
            contenitoreMattoni.Margin   = new System.Windows.Forms.Padding(0);
            contenitoreMattoni.Name     = "contenitoreMattoni";

            for (int k = j; k > 0; k--)
            {
                contenitoreMattoni.Shapes.Add(arrayMattoni[k - 1]);
            }

            contenitoreMattoni.Size     = new System.Drawing.Size(663, 329);
            contenitoreMattoni.TabIndex = 13;
            contenitoreMattoni.TabStop  = false;

            panel1.Controls.Add(contenitoreMattoni);
        }
Exemplo n.º 3
0
 // </Snippet2>
 // <Snippet3>
 private void DrawSquare()
 {
     Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
         new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     // Declare a RectangleShape and set the location and size.
     Microsoft.VisualBasic.PowerPacks.RectangleShape rect1 =
         new Microsoft.VisualBasic.PowerPacks.RectangleShape(15, 15, 105, 105);
     // Set the form as the parent of the ShapeContainer.
     canvas.Parent = this;
     // Set the ShapeContainer as the parent of the RectangleShape.
     rect1.Parent = canvas;
 }
Exemplo n.º 4
0
 // </Snippet2>
 // <Snippet3>
 private void DrawCircle2()
 {
     Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
         new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     // Declare an OvalShape and set the location and size.
     Microsoft.VisualBasic.PowerPacks.OvalShape oval1 =
         new Microsoft.VisualBasic.PowerPacks.OvalShape(20, 20, 120, 120);
     // Set the form as the parent of the ShapeContainer.
     canvas.Parent = this;
     // Set the ShapeContainer as the parent of the OvalShape.
     oval1.Parent = canvas;
 }
Exemplo n.º 5
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>
 }
Exemplo n.º 6
0
 // <Snippet1>
 private void DrawRectangle()
 {
     Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
         new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     Microsoft.VisualBasic.PowerPacks.RectangleShape rect1 =
         new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     // Set the form as the parent of the ShapeContainer.
     canvas.Parent = this;
     // Set the ShapeContainer as the parent of the RectangleShape.
     rect1.Parent = canvas;
     // Set the location and size of the rectangle.
     rect1.Left   = 10;
     rect1.Top    = 10;
     rect1.Width  = 300;
     rect1.Height = 100;
 }
Exemplo n.º 7
0
 // <Snippet1>
 private void DrawCircle1()
 {
     Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas =
         new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     Microsoft.VisualBasic.PowerPacks.OvalShape oval1 =
         new Microsoft.VisualBasic.PowerPacks.OvalShape();
     // Set the form as the parent of the ShapeContainer.
     canvas.Parent = this;
     // Set the ShapeContainer as the parent of the OvalShape.
     oval1.Parent = canvas;
     // Set the location and size of the circle.
     oval1.Left   = 10;
     oval1.Top    = 10;
     oval1.Width  = 100;
     oval1.Height = 100;
 }
Exemplo n.º 8
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>
 }
Exemplo n.º 9
0
        private void DrawGraph_Load(object sender, EventArgs e)
        {
            PointShape = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
            // Array Length is Number of Vector
            Line = new Microsoft.VisualBasic.PowerPacks.LineShape[(FirstForm.strAlphabetWord.Length - 1) * (FirstForm.NumberOfNewVertex) * 4];
            // Array Length is Number of Alphabet Words
            Ellipse = new Microsoft.VisualBasic.PowerPacks.OvalShape[FirstForm.strAlphabetWord.Length - 1];
            // Array Length is NumberOfNewVertex + Number Of FinalVertex
            Oval = new Microsoft.VisualBasic.PowerPacks.OvalShape[FirstForm.NumberOfNewVertex + FirstForm.FinalVertexDFA.Count];
            lblAlphabetName = new Label[FirstForm.strAlphabetWord.Length - 1]; // Array Length is Number of Alphabet Words
            lblVertexName = new Label[FirstForm.NumberOfNewVertex]; // Array Length is NumberOfNewVertex
            // BeiziLoop Array Length is  NumberOfNewVertex * (strAlphabetWord.Length - 1)
            BeiziLoop = new Microsoft.VisualBasic.PowerPacks.OvalShape[FirstForm.NumberOfNewVertex * (FirstForm.strAlphabetWord.Length - 1)];

            // Craete PointShape Object
            this.PointShape.Location = new Point(0, 0);
            this.PointShape.Margin = new System.Windows.Forms.Padding(0);
            this.PointShape.Size = new System.Drawing.Size(3000, 3000);
            this.PointShape.TabIndex = 1;
            this.PointShape.TabStop = false;

            //------------------------------------------------------SOLVE---------------------------------------------------------------------
            DrawVertexCircle();
            DrawFinalVertexCircle();
            RandomyColor(FirstForm.strAlphabetWord.Length - 1);
            DrawAlphabetEllipse();
            DrawAllLine();
            this.Controls.Add(PointShape);
            //--------------------------------------------------------------------------------------------------------------------------------
        }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTransferWH));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cmdSelWHB       = new System.Windows.Forms.Button();
     this.cmdSelWHA       = new System.Windows.Forms.Button();
     this.cmdDelete       = new System.Windows.Forms.Button();
     this.cmdAdd          = new System.Windows.Forms.Button();
     this.lvStockT        = new System.Windows.Forms.ListView();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdTransfer     = new System.Windows.Forms.Button();
     this.cmdPrint        = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.lblWHB          = new System.Windows.Forms.Label();
     this._lbl_0          = new System.Windows.Forms.Label();
     this.lblWHA          = new System.Windows.Forms.Label();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._lbl_5          = new System.Windows.Forms.Label();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.lbl, 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                         = "Stock Transfer Details";
     this.ClientSize                   = new System.Drawing.Size(453, 438);
     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                         = "frmStockTransferWH";
     this.cmdSelWHB.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdSelWHB.Text               = "&Select Warehouse Transfer To";
     this.cmdSelWHB.Size               = new System.Drawing.Size(169, 25);
     this.cmdSelWHB.Location           = new System.Drawing.Point(248, 112);
     this.cmdSelWHB.TabIndex           = 13;
     this.cmdSelWHB.TabStop            = false;
     this.cmdSelWHB.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdSelWHB.CausesValidation   = true;
     this.cmdSelWHB.Enabled            = true;
     this.cmdSelWHB.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdSelWHB.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdSelWHB.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdSelWHB.Name               = "cmdSelWHB";
     this.cmdSelWHA.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdSelWHA.Text               = "&Select Warehouse Transfer From";
     this.cmdSelWHA.Size               = new System.Drawing.Size(169, 25);
     this.cmdSelWHA.Location           = new System.Drawing.Point(16, 112);
     this.cmdSelWHA.TabIndex           = 9;
     this.cmdSelWHA.TabStop            = false;
     this.cmdSelWHA.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdSelWHA.CausesValidation   = true;
     this.cmdSelWHA.Enabled            = true;
     this.cmdSelWHA.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdSelWHA.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdSelWHA.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdSelWHA.Name               = "cmdSelWHA";
     this.cmdDelete.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelete.Text               = "&Delete";
     this.cmdDelete.Enabled            = false;
     this.cmdDelete.Size               = new System.Drawing.Size(94, 25);
     this.cmdDelete.Location           = new System.Drawing.Point(112, 152);
     this.cmdDelete.TabIndex           = 7;
     this.cmdDelete.TabStop            = false;
     this.cmdDelete.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdDelete.CausesValidation   = true;
     this.cmdDelete.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdDelete.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdDelete.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdDelete.Name               = "cmdDelete";
     this.cmdAdd.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdAdd.Text                  = "&Add";
     this.cmdAdd.Enabled               = false;
     this.cmdAdd.Size                  = new System.Drawing.Size(94, 25);
     this.cmdAdd.Location              = new System.Drawing.Point(8, 152);
     this.cmdAdd.TabIndex              = 6;
     this.cmdAdd.TabStop               = false;
     this.cmdAdd.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdAdd.CausesValidation      = 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.Name                  = "cmdAdd";
     this.lvStockT.Size                = new System.Drawing.Size(445, 250);
     this.lvStockT.Location            = new System.Drawing.Point(2, 182);
     this.lvStockT.TabIndex            = 4;
     this.lvStockT.View                = System.Windows.Forms.View.Details;
     this.lvStockT.LabelEdit           = false;
     this.lvStockT.LabelWrap           = true;
     this.lvStockT.HideSelection       = false;
     this.lvStockT.FullRowSelect       = true;
     this.lvStockT.GridLines           = true;
     this.lvStockT.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.lvStockT.BackColor           = System.Drawing.SystemColors.Window;
     this.lvStockT.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvStockT.Name                = "lvStockT";
     this.picButtons.Dock              = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor         = System.Drawing.Color.Blue;
     this.picButtons.Size              = new System.Drawing.Size(453, 39);
     this.picButtons.Location          = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex          = 3;
     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.cmdTransfer.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdTransfer.Text             = "&Transfer";
     this.cmdTransfer.Size             = new System.Drawing.Size(73, 29);
     this.cmdTransfer.Location         = new System.Drawing.Point(368, 3);
     this.cmdTransfer.TabIndex         = 12;
     this.cmdTransfer.TabStop          = false;
     this.cmdTransfer.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdTransfer.CausesValidation = true;
     this.cmdTransfer.Enabled          = true;
     this.cmdTransfer.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdTransfer.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdTransfer.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdTransfer.Name             = "cmdTransfer";
     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(80, 3);
     this.cmdPrint.TabIndex            = 8;
     this.cmdPrint.TabStop             = false;
     this.cmdPrint.Visible             = 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.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(161, 3);
     this.cmdClose.TabIndex            = 5;
     this.cmdClose.TabStop             = false;
     this.cmdClose.Visible             = 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.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           = 2;
     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.lblWHB.Text                  = "Promotion Name:";
     this.lblWHB.Font                  = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblWHB.Size                  = new System.Drawing.Size(192, 48);
     this.lblWHB.Location              = new System.Drawing.Point(248, 64);
     this.lblWHB.TabIndex              = 11;
     this.lblWHB.TextAlign             = System.Drawing.ContentAlignment.TopLeft;
     this.lblWHB.BackColor             = System.Drawing.Color.Transparent;
     this.lblWHB.Enabled               = true;
     this.lblWHB.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.lblWHB.Cursor                = System.Windows.Forms.Cursors.Default;
     this.lblWHB.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.lblWHB.UseMnemonic           = true;
     this.lblWHB.Visible               = true;
     this.lblWHB.AutoSize              = false;
     this.lblWHB.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.lblWHB.Name                  = "lblWHB";
     this._lbl_0.BackColor             = System.Drawing.Color.Transparent;
     this._lbl_0.Text                  = "&Transfer To";
     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(67, 13);
     this._lbl_0.Location              = new System.Drawing.Point(248, 45);
     this._lbl_0.TabIndex              = 10;
     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.lblWHA.Text                  = "Promotion Name:";
     this.lblWHA.Font                  = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblWHA.Size                  = new System.Drawing.Size(216, 40);
     this.lblWHA.Location              = new System.Drawing.Point(16, 64);
     this.lblWHA.TabIndex              = 1;
     this.lblWHA.TextAlign             = System.Drawing.ContentAlignment.TopLeft;
     this.lblWHA.BackColor             = System.Drawing.Color.Transparent;
     this.lblWHA.Enabled               = true;
     this.lblWHA.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.lblWHA.Cursor                = System.Windows.Forms.Cursors.Default;
     this.lblWHA.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.lblWHA.UseMnemonic           = true;
     this.lblWHA.Visible               = true;
     this.lblWHA.AutoSize              = false;
     this.lblWHA.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.lblWHA.Name                  = "lblWHA";
     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(439, 88);
     this._Shape1_2.Location           = new System.Drawing.Point(8, 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                  = "&Transfer From";
     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(79, 13);
     this._lbl_5.Location              = new System.Drawing.Point(8, 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.Controls.Add(cmdSelWHB);
     this.Controls.Add(cmdSelWHA);
     this.Controls.Add(cmdDelete);
     this.Controls.Add(cmdAdd);
     this.Controls.Add(lvStockT);
     this.Controls.Add(picButtons);
     this.Controls.Add(lblWHB);
     this.Controls.Add(_lbl_0);
     this.Controls.Add(lblWHA);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this.Controls.Add(_lbl_5);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdTransfer);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdCancel);
     //Me.lbl.SetIndex(_lbl_0, CType(0, Short))
     //Me.lbl.SetIndex(_lbl_5, CType(5, Short))
     this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 11
0
Arquivo: Form1.cs Projeto: 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();
        }
Exemplo n.º 12
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTakeLIQCode));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.Timer1          = new System.Windows.Forms.Timer(components);
     this.Command2        = new System.Windows.Forms.Button();
     this.Command1        = new System.Windows.Forms.Button();
     //Me.Drive1 = New Microsoft.VisualBasic.Compatibility.VB6.DriveListBox
     this.chkFields    = new System.Windows.Forms.CheckBox();
     this.txtFields    = new System.Windows.Forms.TextBox();
     this.picButtons   = new System.Windows.Forms.Panel();
     this.cmdCancel    = new System.Windows.Forms.Button();
     this.cmdClose     = new System.Windows.Forms.Button();
     this._lblLabels_0 = new System.Windows.Forms.Label();
     this._lblLabels_1 = new System.Windows.Forms.Label();
     this._Shape1_2    = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._lbl_5       = new System.Windows.Forms.Label();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblLabels, 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                      = "4LIQUOR Registration";
     this.ClientSize                = new System.Drawing.Size(345, 120);
     this.Location                  = new System.Drawing.Point(73, 22);
     this.ControlBox                = false;
     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                      = "frmStockTakeLIQCode";
     this.Timer1.Interval           = 1;
     this.Timer1.Enabled            = true;
     this.Command2.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.Command2.Text             = "Close CD Tray and Register";
     this.Command2.Size             = new System.Drawing.Size(151, 19);
     this.Command2.Location         = new System.Drawing.Point(184, 256);
     this.Command2.TabIndex         = 10;
     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.TabStop          = true;
     this.Command2.Name             = "Command2";
     this.Command1.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.Command1.Text             = "Open";
     this.Command1.Size             = new System.Drawing.Size(59, 19);
     this.Command1.Location         = new System.Drawing.Point(216, 280);
     this.Command1.TabIndex         = 8;
     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";
     //Me.Drive1.Enabled = False
     //Me.Drive1.Size = New System.Drawing.Size(111, 21)
     //Me.Drive1.Location = New System.Drawing.Point(64, 256)
     //Me.Drive1.TabIndex = 7
     //Me.Drive1.BackColor = System.Drawing.SystemColors.Window
     //Me.Drive1.CausesValidation = True
     //Me.Drive1.ForeColor = System.Drawing.SystemColors.WindowText
     //Me.Drive1.Cursor = System.Windows.Forms.Cursors.Default
     //Me.Drive1.TabStop = True
     //Me.Drive1.Visible = True
     //Me.Drive1.Name = "Drive1"
     this.chkFields.CheckAlign        = System.Drawing.ContentAlignment.MiddleRight;
     this.chkFields.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.chkFields.BackColor         = System.Drawing.Color.FromArgb(192, 192, 255);
     this.chkFields.Text              = "Manual :";
     this.chkFields.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.chkFields.Size              = new System.Drawing.Size(68, 17);
     this.chkFields.Location          = new System.Drawing.Point(264, 231);
     this.chkFields.TabIndex          = 2;
     this.chkFields.CausesValidation  = true;
     this.chkFields.Enabled           = true;
     this.chkFields.Cursor            = System.Windows.Forms.Cursors.Default;
     this.chkFields.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.chkFields.Appearance        = System.Windows.Forms.Appearance.Normal;
     this.chkFields.TabStop           = true;
     this.chkFields.CheckState        = System.Windows.Forms.CheckState.Unchecked;
     this.chkFields.Visible           = true;
     this.chkFields.Name              = "chkFields";
     this.txtFields.AutoSize          = false;
     this.txtFields.BackColor         = System.Drawing.Color.White;
     this.txtFields.Font              = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.txtFields.Size              = new System.Drawing.Size(270, 27);
     this.txtFields.ImeMode           = System.Windows.Forms.ImeMode.Disable;
     this.txtFields.Location          = new System.Drawing.Point(64, 76);
     this.txtFields.TabIndex          = 1;
     this.txtFields.AcceptsReturn     = true;
     this.txtFields.TextAlign         = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtFields.CausesValidation  = true;
     this.txtFields.Enabled           = true;
     this.txtFields.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.txtFields.HideSelection     = true;
     this.txtFields.ReadOnly          = false;
     this.txtFields.MaxLength         = 0;
     this.txtFields.Cursor            = System.Windows.Forms.Cursors.IBeam;
     this.txtFields.Multiline         = false;
     this.txtFields.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.txtFields.ScrollBars        = System.Windows.Forms.ScrollBars.None;
     this.txtFields.TabStop           = true;
     this.txtFields.Visible           = true;
     this.txtFields.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFields.Name              = "txtFields";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(345, 39);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 6;
     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.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          = 5;
     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             = "N&ext";
     this.cmdClose.Size             = new System.Drawing.Size(81, 29);
     this.cmdClose.Location         = new System.Drawing.Point(256, 2);
     this.cmdClose.TabIndex         = 4;
     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._lblLabels_0.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_0.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_0.Text         = "CD Drive :";
     this._lblLabels_0.ForeColor    = System.Drawing.SystemColors.WindowText;
     this._lblLabels_0.Size         = new System.Drawing.Size(49, 13);
     this._lblLabels_0.Location     = new System.Drawing.Point(8, 258);
     this._lblLabels_0.TabIndex     = 9;
     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._lblLabels_1.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_1.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_1.Text         = "CD Key :";
     this._lblLabels_1.Font         = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lblLabels_1.ForeColor    = System.Drawing.SystemColors.WindowText;
     this._lblLabels_1.Size         = new System.Drawing.Size(51, 16);
     this._lblLabels_1.Location     = new System.Drawing.Point(8, 79);
     this._lblLabels_1.TabIndex     = 0;
     this._lblLabels_1.Enabled      = true;
     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._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(338, 49);
     this._Shape1_2.Location        = new System.Drawing.Point(4, 64);
     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        = "Please type in your 4LIQUOR CD Key. [ without dashes ]";
     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(333, 21);
     this._lbl_5.Location    = new System.Drawing.Point(6, 48);
     this._lbl_5.TabIndex    = 3;
     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    = false;
     this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lbl_5.Name        = "_lbl_5";
     this.Controls.Add(Command2);
     this.Controls.Add(Command1);
     //Me.Controls.Add(Drive1)
     this.Controls.Add(chkFields);
     this.Controls.Add(txtFields);
     this.Controls.Add(picButtons);
     this.Controls.Add(_lblLabels_0);
     this.Controls.Add(_lblLabels_1);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this.Controls.Add(_lbl_5);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdCancel);
     this.picButtons.Controls.Add(cmdClose);
     //Me.lbl.SetIndex(_lbl_5, CType(5, Short))
     //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
     //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
     this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     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()
 {
     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();
 }
Exemplo n.º 14
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrderWizard));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdUpdate = new System.Windows.Forms.Button();
			this.lvData = new System.Windows.Forms.ListView();
			this.cmdBuild = new System.Windows.Forms.Button();
			this.cmdFilter = new System.Windows.Forms.Button();
			this.Label1 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblFilter = new System.Windows.Forms.Label();
			this.lblDayEnd = new System.Windows.Forms.Label();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Stock Re-order Wizard";
			this.ClientSize = new System.Drawing.Size(695, 468);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			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.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 = "frmOrderWizard";
			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(79, 34);
			this.cmdExit.Location = new System.Drawing.Point(609, 3);
			this.cmdExit.TabIndex = 9;
			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.cmdUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdUpdate.Text = "&Update";
			this.cmdUpdate.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdUpdate.Size = new System.Drawing.Size(79, 34);
			this.cmdUpdate.Location = new System.Drawing.Point(609, 45);
			this.cmdUpdate.TabIndex = 5;
			this.cmdUpdate.TabStop = false;
			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.Name = "cmdUpdate";
			this.lvData.Size = new System.Drawing.Size(664, 337);
			this.lvData.Location = new System.Drawing.Point(15, 114);
			this.lvData.TabIndex = 7;
			this.lvData.View = System.Windows.Forms.View.Details;
			this.lvData.LabelEdit = false;
			this.lvData.LabelWrap = true;
			this.lvData.HideSelection = true;
			this.lvData.CheckBoxes = true;
			this.lvData.FullRowSelect = true;
			this.lvData.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lvData.BackColor = System.Drawing.SystemColors.Window;
			this.lvData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lvData.Name = "lvData";
			this.cmdBuild.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBuild.Text = "&Build";
			this.cmdBuild.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdBuild.Size = new System.Drawing.Size(79, 34);
			this.cmdBuild.Location = new System.Drawing.Point(522, 3);
			this.cmdBuild.TabIndex = 4;
			this.cmdBuild.TabStop = false;
			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.Name = "cmdBuild";
			this.cmdFilter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdFilter.Text = "&Filter";
			this.cmdFilter.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdFilter.Size = new System.Drawing.Size(79, 34);
			this.cmdFilter.Location = new System.Drawing.Point(522, 45);
			this.cmdFilter.TabIndex = 8;
			this.cmdFilter.TabStop = false;
			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.Name = "cmdFilter";
			this.Label1.Text = "&1. Affected Stock Items";
			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(135, 13);
			this.Label1.Location = new System.Drawing.Point(18, 90);
			this.Label1.TabIndex = 6;
			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 = true;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_1.Text = "Applied Filter ";
			this._lbl_1.Size = new System.Drawing.Size(45, 31);
			this._lbl_1.Location = new System.Drawing.Point(6, 54);
			this._lbl_1.TabIndex = 2;
			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_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "Day End Selection Criteria ";
			this._lbl_0.Size = new System.Drawing.Size(51, 40);
			this._lbl_0.Location = new System.Drawing.Point(0, 0);
			this._lbl_0.TabIndex = 0;
			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.lblFilter.BackColor = System.Drawing.Color.White;
			this.lblFilter.Text = "Label1";
			this.lblFilter.Size = new System.Drawing.Size(460, 37);
			this.lblFilter.Location = new System.Drawing.Point(54, 42);
			this.lblFilter.TabIndex = 3;
			this.lblFilter.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblFilter.Enabled = true;
			this.lblFilter.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblFilter.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblFilter.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblFilter.UseMnemonic = true;
			this.lblFilter.Visible = true;
			this.lblFilter.AutoSize = false;
			this.lblFilter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblFilter.Name = "lblFilter";
			this.lblDayEnd.BackColor = System.Drawing.Color.White;
			this.lblDayEnd.Text = "Label1";
			this.lblDayEnd.Size = new System.Drawing.Size(460, 37);
			this.lblDayEnd.Location = new System.Drawing.Point(54, 0);
			this.lblDayEnd.TabIndex = 1;
			this.lblDayEnd.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDayEnd.Enabled = true;
			this.lblDayEnd.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDayEnd.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDayEnd.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDayEnd.UseMnemonic = true;
			this.lblDayEnd.Visible = true;
			this.lblDayEnd.AutoSize = false;
			this.lblDayEnd.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDayEnd.Name = "lblDayEnd";
			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(682, 355);
			this._Shape1_0.Location = new System.Drawing.Point(6, 105);
			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(cmdExit);
			this.Controls.Add(cmdUpdate);
			this.Controls.Add(lvData);
			this.Controls.Add(cmdBuild);
			this.Controls.Add(cmdFilter);
			this.Controls.Add(Label1);
			this.Controls.Add(_lbl_1);
			this.Controls.Add(_lbl_0);
			this.Controls.Add(lblFilter);
			this.Controls.Add(lblDayEnd);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.Controls.Add(ShapeContainer1);
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(OldfrmMeasureCopyCriteria));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cmdCopySetp     = new System.Windows.Forms.Button();
     this.cboStep         = new System.Windows.Forms.ComboBox();
     this.cboMeasures     = new System.Windows.Forms.ComboBox();
     this._rboCopyTo_0    = new System.Windows.Forms.RadioButton();
     this._rboCopyTo_1    = new System.Windows.Forms.RadioButton();
     this.cboJoinOperator = new System.Windows.Forms.ComboBox();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdCopy         = new System.Windows.Forms.Button();
     this.cboSet          = new System.Windows.Forms.ComboBox();
     this.cboColumns      = new System.Windows.Forms.ComboBox();
     this.Label3          = new System.Windows.Forms.Label();
     this.lblJoinOperator = new System.Windows.Forms.Label();
     this.Label12         = new System.Windows.Forms.Label();
     this.Shape1          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.Label1          = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.lblCopyFrom     = new System.Windows.Forms.Label();
     this.rboCopyTo       = new Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components);
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.rboCopyTo).BeginInit();
     this.Text                          = "Copy Measure Criteria";
     this.ClientSize                    = new System.Drawing.Size(764, 225);
     this.Location                      = new System.Drawing.Point(5, 29);
     this.StartPosition                 = System.Windows.Forms.FormStartPosition.WindowsDefaultLocation;
     this.Font                          = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.AutoScaleMode                 = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                     = System.Drawing.SystemColors.Control;
     this.FormBorderStyle               = System.Windows.Forms.FormBorderStyle.Sizable;
     this.ControlBox                    = true;
     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.WindowState                   = System.Windows.Forms.FormWindowState.Normal;
     this.Name                          = "frmMeasureCopyCriteria";
     this.cmdCopySetp.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCopySetp.Text              = "Copy Entire Step";
     this.cmdCopySetp.Size              = new System.Drawing.Size(128, 28);
     this.cmdCopySetp.Location          = new System.Drawing.Point(347, 190);
     this.cmdCopySetp.TabIndex          = 15;
     this.cmdCopySetp.Font              = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdCopySetp.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdCopySetp.CausesValidation  = true;
     this.cmdCopySetp.Enabled           = true;
     this.cmdCopySetp.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdCopySetp.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdCopySetp.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdCopySetp.TabStop           = true;
     this.cmdCopySetp.Name              = "cmdCopySetp";
     this.cboStep.Enabled               = false;
     this.cboStep.Size                  = new System.Drawing.Size(92, 27);
     this.cboStep.Location              = new System.Drawing.Point(210, 142);
     this.cboStep.TabIndex              = 4;
     this.cboStep.Font                  = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboStep.BackColor             = System.Drawing.SystemColors.Window;
     this.cboStep.CausesValidation      = true;
     this.cboStep.ForeColor             = System.Drawing.SystemColors.WindowText;
     this.cboStep.IntegralHeight        = true;
     this.cboStep.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cboStep.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cboStep.Sorted                = false;
     this.cboStep.DropDownStyle         = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboStep.TabStop               = true;
     this.cboStep.Visible               = true;
     this.cboStep.Name                  = "cboStep";
     this.cboMeasures.Enabled           = false;
     this.cboMeasures.Size              = new System.Drawing.Size(532, 27);
     this.cboMeasures.Location          = new System.Drawing.Point(210, 100);
     this.cboMeasures.TabIndex          = 3;
     this.cboMeasures.Font              = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboMeasures.BackColor         = System.Drawing.SystemColors.Window;
     this.cboMeasures.CausesValidation  = true;
     this.cboMeasures.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.cboMeasures.IntegralHeight    = true;
     this.cboMeasures.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cboMeasures.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cboMeasures.Sorted            = false;
     this.cboMeasures.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboMeasures.TabStop           = true;
     this.cboMeasures.Visible           = true;
     this.cboMeasures.Name              = "cboMeasures";
     this._rboCopyTo_0.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this._rboCopyTo_0.Text             = "Submission";
     this._rboCopyTo_0.ForeColor        = System.Drawing.Color.Blue;
     this._rboCopyTo_0.Size             = new System.Drawing.Size(112, 32);
     this._rboCopyTo_0.Location         = new System.Drawing.Point(90, 60);
     this._rboCopyTo_0.TabIndex         = 13;
     this._rboCopyTo_0.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this._rboCopyTo_0.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this._rboCopyTo_0.BackColor        = System.Drawing.SystemColors.Control;
     this._rboCopyTo_0.CausesValidation = true;
     this._rboCopyTo_0.Enabled          = true;
     this._rboCopyTo_0.Cursor           = System.Windows.Forms.Cursors.Default;
     this._rboCopyTo_0.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._rboCopyTo_0.Appearance       = System.Windows.Forms.Appearance.Normal;
     this._rboCopyTo_0.TabStop          = true;
     this._rboCopyTo_0.Checked          = false;
     this._rboCopyTo_0.Visible          = true;
     this._rboCopyTo_0.Name             = "_rboCopyTo_0";
     this._rboCopyTo_1.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this._rboCopyTo_1.Text             = "Measure Verify";
     this._rboCopyTo_1.ForeColor        = System.Drawing.Color.Blue;
     this._rboCopyTo_1.Size             = new System.Drawing.Size(122, 32);
     this._rboCopyTo_1.Location         = new System.Drawing.Point(90, 100);
     this._rboCopyTo_1.TabIndex         = 2;
     this._rboCopyTo_1.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this._rboCopyTo_1.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this._rboCopyTo_1.BackColor        = System.Drawing.SystemColors.Control;
     this._rboCopyTo_1.CausesValidation = true;
     this._rboCopyTo_1.Enabled          = true;
     this._rboCopyTo_1.Cursor           = System.Windows.Forms.Cursors.Default;
     this._rboCopyTo_1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._rboCopyTo_1.Appearance       = System.Windows.Forms.Appearance.Normal;
     this._rboCopyTo_1.TabStop          = true;
     this._rboCopyTo_1.Checked          = false;
     this._rboCopyTo_1.Visible          = true;
     this._rboCopyTo_1.Name             = "_rboCopyTo_1";
     this.cboJoinOperator.Size          = new System.Drawing.Size(67, 27);
     this.cboJoinOperator.Location      = new System.Drawing.Point(630, 140);
     this.cboJoinOperator.Items.AddRange(new object[] {
         "AND",
         "OR"
     });
     this.cboJoinOperator.TabIndex         = 6;
     this.cboJoinOperator.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboJoinOperator.BackColor        = System.Drawing.SystemColors.Window;
     this.cboJoinOperator.CausesValidation = true;
     this.cboJoinOperator.Enabled          = true;
     this.cboJoinOperator.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cboJoinOperator.IntegralHeight   = true;
     this.cboJoinOperator.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cboJoinOperator.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cboJoinOperator.Sorted           = false;
     this.cboJoinOperator.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboJoinOperator.TabStop          = true;
     this.cboJoinOperator.Visible          = true;
     this.cboJoinOperator.Name             = "cboJoinOperator";
     this.cmdCancel.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCancel.Text             = "Cancel";
     this.cmdCancel.Size             = new System.Drawing.Size(80, 28);
     this.cmdCancel.Location         = new System.Drawing.Point(479, 190);
     this.cmdCancel.TabIndex         = 8;
     this.cmdCancel.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     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.TabStop          = true;
     this.cmdCancel.Name             = "cmdCancel";
     this.cmdCopy.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCopy.Text             = "Copy";
     this.cmdCopy.Size             = new System.Drawing.Size(80, 28);
     this.cmdCopy.Location         = new System.Drawing.Point(260, 190);
     this.cmdCopy.TabIndex         = 7;
     this.cmdCopy.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdCopy.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdCopy.CausesValidation = true;
     this.cmdCopy.Enabled          = true;
     this.cmdCopy.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdCopy.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdCopy.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdCopy.TabStop          = true;
     this.cmdCopy.Name             = "cmdCopy";
     this.cboSet.Size                 = new System.Drawing.Size(67, 27);
     this.cboSet.Location             = new System.Drawing.Point(410, 142);
     this.cboSet.TabIndex             = 5;
     this.cboSet.Font                 = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboSet.BackColor            = System.Drawing.SystemColors.Window;
     this.cboSet.CausesValidation     = true;
     this.cboSet.Enabled              = true;
     this.cboSet.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.cboSet.IntegralHeight       = true;
     this.cboSet.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cboSet.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cboSet.Sorted               = false;
     this.cboSet.DropDownStyle        = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboSet.TabStop              = true;
     this.cboSet.Visible              = true;
     this.cboSet.Name                 = "cboSet";
     this.cboColumns.Enabled          = false;
     this.cboColumns.Size             = new System.Drawing.Size(534, 27);
     this.cboColumns.Location         = new System.Drawing.Point(210, 60);
     this.cboColumns.TabIndex         = 1;
     this.cboColumns.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboColumns.BackColor        = System.Drawing.SystemColors.Window;
     this.cboColumns.CausesValidation = true;
     this.cboColumns.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cboColumns.IntegralHeight   = true;
     this.cboColumns.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cboColumns.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cboColumns.Sorted           = false;
     this.cboColumns.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboColumns.TabStop          = true;
     this.cboColumns.Visible          = true;
     this.cboColumns.Name             = "cboColumns";
     this.Label3.TextAlign            = System.Drawing.ContentAlignment.TopRight;
     this.Label3.Text                 = "Step #:";
     this.Label3.ForeColor            = System.Drawing.Color.Blue;
     this.Label3.Size                 = new System.Drawing.Size(47, 18);
     this.Label3.Location             = new System.Drawing.Point(150, 150);
     this.Label3.TabIndex             = 14;
     this.Label3.Font                 = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label3.BackColor            = System.Drawing.SystemColors.Control;
     this.Label3.Enabled              = true;
     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.lblJoinOperator.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this.lblJoinOperator.Text        = "Join type in this Set:";
     this.lblJoinOperator.ForeColor   = System.Drawing.Color.Blue;
     this.lblJoinOperator.Size        = new System.Drawing.Size(157, 18);
     this.lblJoinOperator.Location    = new System.Drawing.Point(470, 150);
     this.lblJoinOperator.TabIndex    = 12;
     this.lblJoinOperator.Font        = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.lblJoinOperator.BackColor   = System.Drawing.SystemColors.Control;
     this.lblJoinOperator.Enabled     = true;
     this.lblJoinOperator.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblJoinOperator.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblJoinOperator.UseMnemonic = true;
     this.lblJoinOperator.Visible     = true;
     this.lblJoinOperator.AutoSize    = false;
     this.lblJoinOperator.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblJoinOperator.Name        = "lblJoinOperator";
     this.Label12.TextAlign           = System.Drawing.ContentAlignment.TopRight;
     this.Label12.Text                = "Set #:";
     this.Label12.ForeColor           = System.Drawing.Color.Blue;
     this.Label12.Size                = new System.Drawing.Size(47, 18);
     this.Label12.Location            = new System.Drawing.Point(350, 150);
     this.Label12.TabIndex            = 11;
     this.Label12.Font                = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label12.BackColor           = System.Drawing.SystemColors.Control;
     this.Label12.Enabled             = true;
     this.Label12.Cursor              = System.Windows.Forms.Cursors.Default;
     this.Label12.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.Label12.UseMnemonic         = true;
     this.Label12.Visible             = true;
     this.Label12.AutoSize            = false;
     this.Label12.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.Label12.Name                = "Label12";
     this.Shape1.Size                 = new System.Drawing.Size(689, 127);
     this.Shape1.Location             = new System.Drawing.Point(60, 50);
     this.Shape1.BackColor            = System.Drawing.SystemColors.Window;
     this.Shape1.BackStyle            = Microsoft.VisualBasic.PowerPacks.BackStyle.Transparent;
     this.Shape1.BorderColor          = System.Drawing.SystemColors.WindowText;
     this.Shape1.BorderStyle          = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Shape1.BorderWidth          = 1;
     this.Shape1.FillColor            = System.Drawing.Color.Black;
     this.Shape1.FillStyle            = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this.Shape1.Visible              = true;
     this.Shape1.Name                 = "Shape1";
     this.Label1.Text                 = "To:";
     this.Label1.Font                 = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label1.ForeColor            = System.Drawing.Color.Red;
     this.Label1.Size                 = new System.Drawing.Size(37, 24);
     this.Label1.Location             = new System.Drawing.Point(9, 64);
     this.Label1.TabIndex             = 10;
     this.Label1.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor            = System.Drawing.SystemColors.Control;
     this.Label1.Enabled              = true;
     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.Label2.Text                 = "Copy:";
     this.Label2.Font                 = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label2.ForeColor            = System.Drawing.Color.Red;
     this.Label2.Size                 = new System.Drawing.Size(53, 24);
     this.Label2.Location             = new System.Drawing.Point(4, 5);
     this.Label2.TabIndex             = 9;
     this.Label2.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor            = System.Drawing.SystemColors.Control;
     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.lblCopyFrom.BackColor       = System.Drawing.Color.Transparent;
     this.lblCopyFrom.Text            = "This criteria";
     this.lblCopyFrom.ForeColor       = System.Drawing.Color.Blue;
     this.lblCopyFrom.Size            = new System.Drawing.Size(687, 30);
     this.lblCopyFrom.Location        = new System.Drawing.Point(59, 7);
     this.lblCopyFrom.TabIndex        = 0;
     this.lblCopyFrom.Font            = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.lblCopyFrom.TextAlign       = System.Drawing.ContentAlignment.TopLeft;
     this.lblCopyFrom.Enabled         = true;
     this.lblCopyFrom.Cursor          = System.Windows.Forms.Cursors.Default;
     this.lblCopyFrom.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.lblCopyFrom.UseMnemonic     = true;
     this.lblCopyFrom.Visible         = true;
     this.lblCopyFrom.AutoSize        = false;
     this.lblCopyFrom.BorderStyle     = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblCopyFrom.Name            = "lblCopyFrom";
     this.Controls.Add(cmdCopySetp);
     this.Controls.Add(cboStep);
     this.Controls.Add(cboMeasures);
     this.Controls.Add(_rboCopyTo_0);
     this.Controls.Add(_rboCopyTo_1);
     this.Controls.Add(cboJoinOperator);
     this.Controls.Add(cmdCancel);
     this.Controls.Add(cmdCopy);
     this.Controls.Add(cboSet);
     this.Controls.Add(cboColumns);
     this.Controls.Add(Label3);
     this.Controls.Add(lblJoinOperator);
     this.Controls.Add(Label12);
     this.ShapeContainer1.Shapes.Add(Shape1);
     this.Controls.Add(Label1);
     this.Controls.Add(Label2);
     this.Controls.Add(lblCopyFrom);
     this.Controls.Add(ShapeContainer1);
     this.rboCopyTo.SetIndex(_rboCopyTo_0, Convert.ToInt16(0));
     this.rboCopyTo.SetIndex(_rboCopyTo_1, Convert.ToInt16(1));
     ((System.ComponentModel.ISupportInitialize) this.rboCopyTo).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 16
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmCurrencySetup));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cmdSave         = new System.Windows.Forms.Button();
     this.cmdDelete       = new System.Windows.Forms.Button();
     this.cmdNew          = new System.Windows.Forms.Button();
     this.grdDataGrid     = new myDataGridView();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.Label2          = new System.Windows.Forms.Label();
     this.Label1          = new System.Windows.Forms.Label();
     this.Shape1          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit();
     this.Text                       = "Currency Setup";
     this.ClientSize                 = new System.Drawing.Size(419, 269);
     this.Location                   = new System.Drawing.Point(4, 23);
     this.ControlBox                 = false;
     this.StartPosition              = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode              = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                  = System.Drawing.SystemColors.Control;
     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.WindowState                = System.Windows.Forms.FormWindowState.Normal;
     this.Name                       = "frmCurrencySetup";
     this.cmdSave.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdSave.Text               = "&Save";
     this.cmdSave.Enabled            = false;
     this.cmdSave.Size               = new System.Drawing.Size(91, 29);
     this.cmdSave.Location           = new System.Drawing.Point(120, 216);
     this.cmdSave.TabIndex           = 8;
     this.cmdSave.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdSave.CausesValidation   = true;
     this.cmdSave.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdSave.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdSave.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdSave.TabStop            = true;
     this.cmdSave.Name               = "cmdSave";
     this.cmdDelete.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelete.Text             = "&Delete";
     this.cmdDelete.Size             = new System.Drawing.Size(91, 29);
     this.cmdDelete.Location         = new System.Drawing.Point(224, 216);
     this.cmdDelete.TabIndex         = 7;
     this.cmdDelete.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdDelete.CausesValidation = true;
     this.cmdDelete.Enabled          = true;
     this.cmdDelete.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdDelete.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdDelete.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdDelete.TabStop          = true;
     this.cmdDelete.Name             = "cmdDelete";
     this.cmdNew.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNew.Text                = "A&dd New";
     this.cmdNew.Size                = new System.Drawing.Size(91, 29);
     this.cmdNew.Location            = new System.Drawing.Point(16, 216);
     this.cmdNew.TabIndex            = 6;
     this.cmdNew.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdNew.CausesValidation    = true;
     this.cmdNew.Enabled             = true;
     this.cmdNew.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdNew.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdNew.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdNew.TabStop             = true;
     this.cmdNew.Name                = "cmdNew";
     //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid.Size            = new System.Drawing.Size(401, 131);
     this.grdDataGrid.Location        = new System.Drawing.Point(8, 72);
     this.grdDataGrid.TabIndex        = 2;
     this.grdDataGrid.Name            = "grdDataGrid";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(419, 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.cmdCancel.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCancel.Text             = "Undo";
     this.cmdCancel.Size             = new System.Drawing.Size(91, 29);
     this.cmdCancel.Location         = new System.Drawing.Point(2, 2);
     this.cmdCancel.TabIndex         = 5;
     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.TabStop          = true;
     this.cmdCancel.Name             = "cmdCancel";
     this.cmdClose.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text             = "E&xit";
     this.cmdClose.Size             = new System.Drawing.Size(91, 29);
     this.cmdClose.Location         = new System.Drawing.Point(320, 2);
     this.cmdClose.TabIndex         = 1;
     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.TabStop          = true;
     this.cmdClose.Name             = "cmdClose";
     this.Label2.Text        = "Last Update :";
     this.Label2.Size        = new System.Drawing.Size(87, 15);
     this.Label2.Location    = new System.Drawing.Point(0, 272);
     this.Label2.TabIndex    = 4;
     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        = "Available Currencies";
     this.Label1.Size        = new System.Drawing.Size(127, 17);
     this.Label1.Location    = new System.Drawing.Point(4, 44);
     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.Shape1.BackColor   = System.Drawing.Color.FromArgb(192, 192, 255);
     this.Shape1.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this.Shape1.Size        = new System.Drawing.Size(413, 203);
     this.Shape1.Location    = new System.Drawing.Point(2, 62);
     this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Shape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Shape1.BorderWidth = 1;
     this.Shape1.FillColor   = System.Drawing.Color.Black;
     this.Shape1.FillStyle   = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this.Shape1.Visible     = true;
     this.Shape1.Name        = "Shape1";
     this.Controls.Add(cmdSave);
     this.Controls.Add(cmdDelete);
     this.Controls.Add(cmdNew);
     this.Controls.Add(grdDataGrid);
     this.Controls.Add(picButtons);
     this.Controls.Add(Label2);
     this.Controls.Add(Label1);
     this.ShapeContainer1.Shapes.Add(Shape1);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdCancel);
     this.picButtons.Controls.Add(cmdClose);
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit();
     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()
 {
     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();
 }
Exemplo n.º 18
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.Shape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._txtInteger_1 = new System.Windows.Forms.TextBox();
			this.cmdLocate = new System.Windows.Forms.Button();
			this._txtFields_10 = new System.Windows.Forms.TextBox();
			this.chkKitchenMonitors = new System.Windows.Forms.CheckBox();
			this._txtInteger_0 = new System.Windows.Forms.TextBox();
			this._txtFloat_5 = new System.Windows.Forms.TextBox();
			this._txtInteger_4 = new System.Windows.Forms.TextBox();
			this._txtFields_3 = new System.Windows.Forms.TextBox();
			this._chkFields_2 = new System.Windows.Forms.CheckBox();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._lblLic_0 = new System.Windows.Forms.Label();
			this._lblLic_1 = new System.Windows.Forms.Label();
			this.CommonDialog1Open = new System.Windows.Forms.OpenFileDialog();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lbl_5 = 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.Shape2,
				this._Shape1_2
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(452, 214);
			this.ShapeContainer1.TabIndex = 25;
			this.ShapeContainer1.TabStop = false;
			//
			//Shape2
			//
			this.Shape2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape2.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape2.FillColor = System.Drawing.Color.Black;
			this.Shape2.Location = new System.Drawing.Point(4, 180);
			this.Shape2.Name = "Shape2";
			this.Shape2.Size = new System.Drawing.Size(441, 29);
			//
			//_Shape1_2
			//
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.Location = new System.Drawing.Point(4, 56);
			this._Shape1_2.Name = "_Shape1_2";
			this._Shape1_2.Size = new System.Drawing.Size(442, 103);
			//
			//_txtInteger_1
			//
			this._txtInteger_1.AcceptsReturn = true;
			this._txtInteger_1.BackColor = System.Drawing.Color.White;
			this._txtInteger_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_1.Enabled = false;
			this._txtInteger_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_1.Location = new System.Drawing.Point(110, 248);
			this._txtInteger_1.MaxLength = 0;
			this._txtInteger_1.Name = "_txtInteger_1";
			this._txtInteger_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_1.Size = new System.Drawing.Size(246, 19);
			this._txtInteger_1.TabIndex = 22;
			this._txtInteger_1.Visible = false;
			//
			//cmdLocate
			//
			this.cmdLocate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdLocate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdLocate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdLocate.Location = new System.Drawing.Point(360, 248);
			this.cmdLocate.Name = "cmdLocate";
			this.cmdLocate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdLocate.Size = new System.Drawing.Size(76, 19);
			this.cmdLocate.TabIndex = 20;
			this.cmdLocate.Text = "Locate ...";
			this.cmdLocate.UseVisualStyleBackColor = false;
			this.cmdLocate.Visible = false;
			//
			//_txtFields_10
			//
			this._txtFields_10.AcceptsReturn = true;
			this._txtFields_10.BackColor = System.Drawing.Color.White;
			this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_10.Location = new System.Drawing.Point(272, 280);
			this._txtFields_10.MaxLength = 0;
			this._txtFields_10.Name = "_txtFields_10";
			this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_10.Size = new System.Drawing.Size(78, 19);
			this._txtFields_10.TabIndex = 19;
			//
			//chkKitchenMonitors
			//
			this.chkKitchenMonitors.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.chkKitchenMonitors.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.chkKitchenMonitors.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkKitchenMonitors.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkKitchenMonitors.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkKitchenMonitors.Location = new System.Drawing.Point(122, 186);
			this.chkKitchenMonitors.Name = "chkKitchenMonitors";
			this.chkKitchenMonitors.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkKitchenMonitors.Size = new System.Drawing.Size(317, 17);
			this.chkKitchenMonitors.TabIndex = 18;
			this.chkKitchenMonitors.Text = "Setup this Terminal as a Kitchen Monitor  ( for Drive Thru only )";
			this.chkKitchenMonitors.UseVisualStyleBackColor = false;
			//
			//_txtInteger_0
			//
			this._txtInteger_0.AcceptsReturn = true;
			this._txtInteger_0.BackColor = System.Drawing.Color.White;
			this._txtInteger_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_0.Location = new System.Drawing.Point(300, 60);
			this._txtInteger_0.MaxLength = 0;
			this._txtInteger_0.Name = "_txtInteger_0";
			this._txtInteger_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_0.Size = new System.Drawing.Size(27, 19);
			this._txtInteger_0.TabIndex = 3;
			this._txtInteger_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_5
			//
			this._txtFloat_5.AcceptsReturn = true;
			this._txtFloat_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_5.Location = new System.Drawing.Point(110, 104);
			this._txtFloat_5.MaxLength = 0;
			this._txtFloat_5.Name = "_txtFloat_5";
			this._txtFloat_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_5.Size = new System.Drawing.Size(78, 19);
			this._txtFloat_5.TabIndex = 10;
			this._txtFloat_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtInteger_4
			//
			this._txtInteger_4.AcceptsReturn = true;
			this._txtInteger_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._txtInteger_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_4.Enabled = false;
			this._txtInteger_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_4.Location = new System.Drawing.Point(362, 80);
			this._txtInteger_4.MaxLength = 0;
			this._txtInteger_4.Name = "_txtInteger_4";
			this._txtInteger_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_4.Size = new System.Drawing.Size(78, 19);
			this._txtInteger_4.TabIndex = 7;
			//
			//_txtFields_3
			//
			this._txtFields_3.AcceptsReturn = true;
			this._txtFields_3.BackColor = System.Drawing.Color.White;
			this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_3.Location = new System.Drawing.Point(110, 82);
			this._txtFields_3.MaxLength = 0;
			this._txtFields_3.Name = "_txtFields_3";
			this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_3.Size = new System.Drawing.Size(78, 19);
			this._txtFields_3.TabIndex = 5;
			//
			//_chkFields_2
			//
			this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_2.Location = new System.Drawing.Point(10, 106);
			this._chkFields_2.Name = "_chkFields_2";
			this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_2.Size = new System.Drawing.Size(60, 17);
			this._chkFields_2.TabIndex = 8;
			this._chkFields_2.Text = "Disable:";
			this._chkFields_2.UseVisualStyleBackColor = false;
			//
			//_txtFields_1
			//
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.BackColor = System.Drawing.Color.White;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.Location = new System.Drawing.Point(110, 60);
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Name = "_txtFields_1";
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.Size = new System.Drawing.Size(78, 19);
			this._txtFields_1.TabIndex = 1;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdCancel);
			this.picButtons.Controls.Add(this.cmdClose);
			this.picButtons.Controls.Add(this._lblLic_0);
			this.picButtons.Controls.Add(this._lblLic_1);
			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, 39);
			this.picButtons.TabIndex = 16;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.TabIndex = 15;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//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(372, 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 = 14;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//_lblLic_0
			//
			this._lblLic_0.BackColor = System.Drawing.Color.Red;
			this._lblLic_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLic_0.ForeColor = System.Drawing.Color.White;
			this._lblLic_0.Location = new System.Drawing.Point(176, 8);
			this._lblLic_0.Name = "_lblLic_0";
			this._lblLic_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLic_0.Size = new System.Drawing.Size(113, 19);
			this._lblLic_0.TabIndex = 25;
			this._lblLic_0.Text = "Not Licensed";
			this._lblLic_0.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this._lblLic_0.Visible = false;
			//
			//_lblLic_1
			//
			this._lblLic_1.BackColor = System.Drawing.Color.Red;
			this._lblLic_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLic_1.ForeColor = System.Drawing.Color.White;
			this._lblLic_1.Location = new System.Drawing.Point(120, 3);
			this._lblLic_1.Name = "_lblLic_1";
			this._lblLic_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLic_1.Size = new System.Drawing.Size(217, 27);
			this._lblLic_1.TabIndex = 26;
			this._lblLic_1.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this._lblLic_1.Visible = false;
			//
			//CommonDialog1Open
			//
			this.CommonDialog1Open.FileName = "waitron.mdb";
			this.CommonDialog1Open.Title = "Path to Waitron dabatase";
			//
			//_lblLabels_6
			//
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_6.Location = new System.Drawing.Point(10, 131);
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.Size = new System.Drawing.Size(65, 13);
			this._lblLabels_6.TabIndex = 24;
			this._lblLabels_6.Text = "Warehouse:";
			this._lblLabels_6.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.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Location = new System.Drawing.Point(10, 250);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(94, 13);
			this._lbl_0.TabIndex = 21;
			this._lbl_0.Text = "Server Path:";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Visible = false;
			//
			//Label1
			//
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(6, 166);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(117, 15);
			this.Label1.TabIndex = 17;
			this.Label1.Text = "&2. Kitchen Monitors";
			//
			//_lblLabels_2
			//
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_2.Location = new System.Drawing.Point(230, 63);
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.Size = new System.Drawing.Size(72, 13);
			this._lblLabels_2.TabIndex = 2;
			this._lblLabels_2.Text = "POS Number:";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_0
			//
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_0.Location = new System.Drawing.Point(204, 108);
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.Size = new System.Drawing.Size(92, 13);
			this._lblLabels_0.TabIndex = 11;
			this._lblLabels_0.Text = "Default Keyboard:";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_5
			//
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_5.Location = new System.Drawing.Point(80, 108);
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.Size = new System.Drawing.Size(33, 13);
			this._lblLabels_5.TabIndex = 9;
			this._lblLabels_5.Text = "Float:";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_4
			//
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_4.Location = new System.Drawing.Point(271, 84);
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.Size = new System.Drawing.Size(87, 13);
			this._lblLabels_4.TabIndex = 6;
			this._lblLabels_4.Text = "Last Declaration:";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_3
			//
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_3.Location = new System.Drawing.Point(26, 84);
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.Size = new System.Drawing.Size(86, 13);
			this._lblLabels_3.TabIndex = 4;
			this._lblLabels_3.Text = "POS IP Address:";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_1
			//
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_1.Location = new System.Drawing.Point(48, 63);
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.Size = new System.Drawing.Size(63, 13);
			this._lblLabels_1.TabIndex = 0;
			this._lblLabels_1.Text = "POS Name:";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.AutoSize = true;
			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(6, 42);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(56, 13);
			this._lbl_5.TabIndex = 13;
			this._lbl_5.Text = "&1. General";
			//
			//frmPOS
			//
			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(452, 214);
			this.ControlBox = false;
			this.Controls.Add(this._txtInteger_1);
			this.Controls.Add(this.cmdLocate);
			this.Controls.Add(this._txtFields_10);
			this.Controls.Add(this.chkKitchenMonitors);
			this.Controls.Add(this._txtInteger_0);
			this.Controls.Add(this._txtFloat_5);
			this.Controls.Add(this._txtInteger_4);
			this.Controls.Add(this._txtFields_3);
			this.Controls.Add(this._chkFields_2);
			this.Controls.Add(this._txtFields_1);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this._lblLabels_6);
			this.Controls.Add(this._lbl_0);
			this.Controls.Add(this.Label1);
			this.Controls.Add(this._lblLabels_2);
			this.Controls.Add(this._lblLabels_0);
			this.Controls.Add(this._lblLabels_5);
			this.Controls.Add(this._lblLabels_4);
			this.Controls.Add(this._lblLabels_3);
			this.Controls.Add(this._lblLabels_1);
			this.Controls.Add(this._lbl_5);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmPOS";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Point Of Sale Details";
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Exemplo n.º 19
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(frmCustomer));
     this.lblIntroducerID = new System.Windows.Forms.Label();
     this.txtIntroducerID = new System.Windows.Forms.TextBox();
     this.lblReferenceID = new System.Windows.Forms.Label();
     this.txtReferenceID = new System.Windows.Forms.TextBox();
     this.lblCustomerName = new System.Windows.Forms.Label();
     this.txtCustomerName = new System.Windows.Forms.TextBox();
     this.lblBenificiaryName = new System.Windows.Forms.Label();
     this.txtBenificiaryName = new System.Windows.Forms.TextBox();
     this.lblGender = new System.Windows.Forms.Label();
     this.lblDOB = new System.Windows.Forms.Label();
     this.lblMaritialStatus = new System.Windows.Forms.Label();
     this.lblNationality = new System.Windows.Forms.Label();
     this.ddlNationality = new System.Windows.Forms.ComboBox();
     this.lblCitizenshipID = new System.Windows.Forms.Label();
     this.txtCitizenshipID = new System.Windows.Forms.TextBox();
     this.lblLicenseID = new System.Windows.Forms.Label();
     this.txtLicenseID = new System.Windows.Forms.TextBox();
     this.lblPassportID = new System.Windows.Forms.Label();
     this.txtPassportID = new System.Windows.Forms.TextBox();
     this.lblCountry = new System.Windows.Forms.Label();
     this.ddlCountry = new System.Windows.Forms.ComboBox();
     this.lblCity = new System.Windows.Forms.Label();
     this.ddlCity = new System.Windows.Forms.ComboBox();
     this.lblMunicipality = new System.Windows.Forms.Label();
     this.lblDistrict = new System.Windows.Forms.Label();
     this.lblStreet = new System.Windows.Forms.Label();
     this.txtStreet = new System.Windows.Forms.TextBox();
     this.lblHouseNo = new System.Windows.Forms.Label();
     this.txtHouseNo = new System.Windows.Forms.TextBox();
     this.lblAreaCode = new System.Windows.Forms.Label();
     this.txtAreaCode = new System.Windows.Forms.TextBox();
     this.lblAddress = new System.Windows.Forms.Label();
     this.lblHomeTelephone = new System.Windows.Forms.Label();
     this.txtHomeTelephone = new System.Windows.Forms.TextBox();
     this.lblMobileNo = new System.Windows.Forms.Label();
     this.txtMobileNo = new System.Windows.Forms.TextBox();
     this.lblEmailAddress = new System.Windows.Forms.Label();
     this.txtEmailAddress = new System.Windows.Forms.TextBox();
     this.lblPhoto = new System.Windows.Forms.Label();
     this.lblPersonalDetails = new System.Windows.Forms.Label();
     this.lblCreatedDate = new System.Windows.Forms.Label();
     this.lblAddressContact = new System.Windows.Forms.Label();
     this.btnCancel = new System.Windows.Forms.Button();
     this.btnOk = new System.Windows.Forms.Button();
     this.ddlMaritialStatus = new System.Windows.Forms.ComboBox();
     this.btnDelete = new System.Windows.Forms.Button();
     this.btnEdit = new System.Windows.Forms.Button();
     this.btnAdd = new System.Windows.Forms.Button();
     this.ddlGender = new System.Windows.Forms.ComboBox();
     this.btnLast = new System.Windows.Forms.Button();
     this.btnNext = new System.Windows.Forms.Button();
     this.btnPrevious = new System.Windows.Forms.Button();
     this.btnFirst = new System.Windows.Forms.Button();
     this.lblAreaHeading = new System.Windows.Forms.Label();
     this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.S = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
     this.txtPhotoPath = new System.Windows.Forms.TextBox();
     this.btnBrowsePhoto = new System.Windows.Forms.Button();
     this.ddlMunicipality = new System.Windows.Forms.ComboBox();
     this.ddlDistrict = new System.Windows.Forms.ComboBox();
     this.btnIntroducerID = new System.Windows.Forms.Button();
     this.btnReferenceID = new System.Windows.Forms.Button();
     this.lblMembershipID = new System.Windows.Forms.Label();
     this.btnMembershipID = new System.Windows.Forms.Button();
     this.txtMembershipID = new System.Windows.Forms.TextBox();
     this.btnAreaCode = new System.Windows.Forms.Button();
     this.txtAddress = new System.Windows.Forms.TextBox();
     this.mtxtCreatedDate = new System.Windows.Forms.MaskedTextBox();
     this.mtxtDOB = new System.Windows.Forms.MaskedTextBox();
     this.lblCustomerType = new System.Windows.Forms.Label();
     this.ddlCustomerType = new System.Windows.Forms.ComboBox();
     this.lblMROrientationDate = new System.Windows.Forms.Label();
     this.mtxtMRDate = new System.Windows.Forms.MaskedTextBox();
     this.pictureBox1 = new System.Windows.Forms.PictureBox();
     this.lblNoPhoto = new System.Windows.Forms.Label();
     this.lblMarketingDate = new System.Windows.Forms.Label();
     this.lblDateOfBirth = new System.Windows.Forms.Label();
     this.lblFullName = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // lblIntroducerID
     //
     this.lblIntroducerID.AutoSize = true;
     this.lblIntroducerID.Location = new System.Drawing.Point(31, 81);
     this.lblIntroducerID.Name = "lblIntroducerID";
     this.lblIntroducerID.Size = new System.Drawing.Size(69, 13);
     this.lblIntroducerID.TabIndex = 7;
     this.lblIntroducerID.Text = "Introducer ID";
     //
     // txtIntroducerID
     //
     this.txtIntroducerID.Location = new System.Drawing.Point(217, 74);
     this.txtIntroducerID.MaxLength = 100;
     this.txtIntroducerID.Name = "txtIntroducerID";
     this.txtIntroducerID.Size = new System.Drawing.Size(198, 20);
     this.txtIntroducerID.TabIndex = 8;
     this.txtIntroducerID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtIntroducerID_KeyDown);
     //
     // lblReferenceID
     //
     this.lblReferenceID.AutoSize = true;
     this.lblReferenceID.Location = new System.Drawing.Point(31, 106);
     this.lblReferenceID.Name = "lblReferenceID";
     this.lblReferenceID.Size = new System.Drawing.Size(71, 13);
     this.lblReferenceID.TabIndex = 10;
     this.lblReferenceID.Text = "Reference ID";
     //
     // txtReferenceID
     //
     this.txtReferenceID.Location = new System.Drawing.Point(218, 98);
     this.txtReferenceID.MaxLength = 100;
     this.txtReferenceID.Name = "txtReferenceID";
     this.txtReferenceID.Size = new System.Drawing.Size(197, 20);
     this.txtReferenceID.TabIndex = 11;
     this.txtReferenceID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtReferenceID_KeyDown);
     //
     // lblCustomerName
     //
     this.lblCustomerName.AutoSize = true;
     this.lblCustomerName.Location = new System.Drawing.Point(31, 221);
     this.lblCustomerName.Name = "lblCustomerName";
     this.lblCustomerName.Size = new System.Drawing.Size(82, 13);
     this.lblCustomerName.TabIndex = 20;
     this.lblCustomerName.Text = "Customer Name";
     //
     // txtCustomerName
     //
     this.txtCustomerName.Location = new System.Drawing.Point(217, 221);
     this.txtCustomerName.MaxLength = 250;
     this.txtCustomerName.Name = "txtCustomerName";
     this.txtCustomerName.Size = new System.Drawing.Size(199, 20);
     this.txtCustomerName.TabIndex = 21;
     this.txtCustomerName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCustomerName_KeyDown);
     //
     // lblBenificiaryName
     //
     this.lblBenificiaryName.AutoSize = true;
     this.lblBenificiaryName.Location = new System.Drawing.Point(31, 247);
     this.lblBenificiaryName.Name = "lblBenificiaryName";
     this.lblBenificiaryName.Size = new System.Drawing.Size(86, 13);
     this.lblBenificiaryName.TabIndex = 22;
     this.lblBenificiaryName.Text = "Benificiary Name";
     //
     // txtBenificiaryName
     //
     this.txtBenificiaryName.Location = new System.Drawing.Point(217, 247);
     this.txtBenificiaryName.MaxLength = 250;
     this.txtBenificiaryName.Name = "txtBenificiaryName";
     this.txtBenificiaryName.Size = new System.Drawing.Size(199, 20);
     this.txtBenificiaryName.TabIndex = 23;
     this.txtBenificiaryName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBenificiaryName_KeyDown);
     //
     // lblGender
     //
     this.lblGender.AutoSize = true;
     this.lblGender.Location = new System.Drawing.Point(31, 276);
     this.lblGender.Name = "lblGender";
     this.lblGender.Size = new System.Drawing.Size(42, 13);
     this.lblGender.TabIndex = 24;
     this.lblGender.Text = "Gender";
     //
     // lblDOB
     //
     this.lblDOB.AutoSize = true;
     this.lblDOB.Location = new System.Drawing.Point(31, 307);
     this.lblDOB.Name = "lblDOB";
     this.lblDOB.Size = new System.Drawing.Size(66, 13);
     this.lblDOB.TabIndex = 26;
     this.lblDOB.Text = "Date of Birth";
     //
     // lblMaritialStatus
     //
     this.lblMaritialStatus.AutoSize = true;
     this.lblMaritialStatus.Location = new System.Drawing.Point(29, 336);
     this.lblMaritialStatus.Name = "lblMaritialStatus";
     this.lblMaritialStatus.Size = new System.Drawing.Size(73, 13);
     this.lblMaritialStatus.TabIndex = 28;
     this.lblMaritialStatus.Text = "Maritial Status";
     //
     // lblNationality
     //
     this.lblNationality.AutoSize = true;
     this.lblNationality.Location = new System.Drawing.Point(29, 367);
     this.lblNationality.Name = "lblNationality";
     this.lblNationality.Size = new System.Drawing.Size(56, 13);
     this.lblNationality.TabIndex = 30;
     this.lblNationality.Text = "Nationality";
     //
     // ddlNationality
     //
     this.ddlNationality.AutoCompleteCustomSource.AddRange(new string[] {
     "Neplai",
     "Japanese",
     "Chinese",
     "Indain"});
     this.ddlNationality.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlNationality.FormattingEnabled = true;
     this.ddlNationality.Items.AddRange(new object[] {
     "None",
     "Nepali",
     "Japanese",
     "Chinese",
     "Indian"});
     this.ddlNationality.Location = new System.Drawing.Point(218, 367);
     this.ddlNationality.Name = "ddlNationality";
     this.ddlNationality.Size = new System.Drawing.Size(197, 21);
     this.ddlNationality.TabIndex = 31;
     this.ddlNationality.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlNationality_KeyDown);
     //
     // lblCitizenshipID
     //
     this.lblCitizenshipID.AutoSize = true;
     this.lblCitizenshipID.Location = new System.Drawing.Point(29, 400);
     this.lblCitizenshipID.Name = "lblCitizenshipID";
     this.lblCitizenshipID.Size = new System.Drawing.Size(71, 13);
     this.lblCitizenshipID.TabIndex = 32;
     this.lblCitizenshipID.Text = "Citizenship ID";
     //
     // txtCitizenshipID
     //
     this.txtCitizenshipID.Location = new System.Drawing.Point(218, 400);
     this.txtCitizenshipID.MaxLength = 50;
     this.txtCitizenshipID.Name = "txtCitizenshipID";
     this.txtCitizenshipID.Size = new System.Drawing.Size(198, 20);
     this.txtCitizenshipID.TabIndex = 33;
     this.txtCitizenshipID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCitizenshipID_KeyDown);
     //
     // lblLicenseID
     //
     this.lblLicenseID.AutoSize = true;
     this.lblLicenseID.Location = new System.Drawing.Point(29, 426);
     this.lblLicenseID.Name = "lblLicenseID";
     this.lblLicenseID.Size = new System.Drawing.Size(64, 13);
     this.lblLicenseID.TabIndex = 34;
     this.lblLicenseID.Text = "Licennse ID";
     //
     // txtLicenseID
     //
     this.txtLicenseID.Location = new System.Drawing.Point(218, 426);
     this.txtLicenseID.MaxLength = 50;
     this.txtLicenseID.Name = "txtLicenseID";
     this.txtLicenseID.Size = new System.Drawing.Size(197, 20);
     this.txtLicenseID.TabIndex = 35;
     this.txtLicenseID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtLicenseID_KeyDown);
     //
     // lblPassportID
     //
     this.lblPassportID.AutoSize = true;
     this.lblPassportID.Location = new System.Drawing.Point(28, 454);
     this.lblPassportID.Name = "lblPassportID";
     this.lblPassportID.Size = new System.Drawing.Size(62, 13);
     this.lblPassportID.TabIndex = 36;
     this.lblPassportID.Text = "Passport ID";
     //
     // txtPassportID
     //
     this.txtPassportID.Location = new System.Drawing.Point(217, 454);
     this.txtPassportID.MaxLength = 50;
     this.txtPassportID.Name = "txtPassportID";
     this.txtPassportID.Size = new System.Drawing.Size(199, 20);
     this.txtPassportID.TabIndex = 37;
     this.txtPassportID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassportID_KeyDown);
     //
     // lblCountry
     //
     this.lblCountry.AutoSize = true;
     this.lblCountry.Location = new System.Drawing.Point(508, 75);
     this.lblCountry.Name = "lblCountry";
     this.lblCountry.Size = new System.Drawing.Size(43, 13);
     this.lblCountry.TabIndex = 39;
     this.lblCountry.Text = "Country";
     //
     // ddlCountry
     //
     this.ddlCountry.AutoCompleteCustomSource.AddRange(new string[] {
     "Nepal",
     "Japan",
     "China",
     "India"});
     this.ddlCountry.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlCountry.FlatStyle = System.Windows.Forms.FlatStyle.System;
     this.ddlCountry.FormattingEnabled = true;
     this.ddlCountry.Items.AddRange(new object[] {
     "None",
     "Nepal",
     "Japan",
     "China",
     "India"});
     this.ddlCountry.Location = new System.Drawing.Point(666, 75);
     this.ddlCountry.Name = "ddlCountry";
     this.ddlCountry.Size = new System.Drawing.Size(198, 21);
     this.ddlCountry.TabIndex = 40;
     this.ddlCountry.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlCountry_KeyDown);
     //
     // lblCity
     //
     this.lblCity.AutoSize = true;
     this.lblCity.Location = new System.Drawing.Point(509, 102);
     this.lblCity.Name = "lblCity";
     this.lblCity.Size = new System.Drawing.Size(24, 13);
     this.lblCity.TabIndex = 41;
     this.lblCity.Text = "City";
     //
     // ddlCity
     //
     this.ddlCity.AutoCompleteCustomSource.AddRange(new string[] {
     "----Select Item----",
     "Kathmandu",
     "Bhaktapur",
     "Lalitpur",
     "Banepa"});
     this.ddlCity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlCity.FormattingEnabled = true;
     this.ddlCity.Items.AddRange(new object[] {
     "None",
     "Kathmandu",
     "Lalitpur",
     "Bhaktapur",
     "Banepa"});
     this.ddlCity.Location = new System.Drawing.Point(666, 102);
     this.ddlCity.Name = "ddlCity";
     this.ddlCity.Size = new System.Drawing.Size(198, 21);
     this.ddlCity.TabIndex = 42;
     this.ddlCity.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlCity_KeyDown);
     //
     // lblMunicipality
     //
     this.lblMunicipality.AutoSize = true;
     this.lblMunicipality.Location = new System.Drawing.Point(509, 129);
     this.lblMunicipality.Name = "lblMunicipality";
     this.lblMunicipality.Size = new System.Drawing.Size(62, 13);
     this.lblMunicipality.TabIndex = 43;
     this.lblMunicipality.Text = "Municipality";
     //
     // lblDistrict
     //
     this.lblDistrict.AutoSize = true;
     this.lblDistrict.Location = new System.Drawing.Point(509, 155);
     this.lblDistrict.Name = "lblDistrict";
     this.lblDistrict.Size = new System.Drawing.Size(39, 13);
     this.lblDistrict.TabIndex = 45;
     this.lblDistrict.Text = "District";
     //
     // lblStreet
     //
     this.lblStreet.AutoSize = true;
     this.lblStreet.Location = new System.Drawing.Point(508, 181);
     this.lblStreet.Name = "lblStreet";
     this.lblStreet.Size = new System.Drawing.Size(35, 13);
     this.lblStreet.TabIndex = 47;
     this.lblStreet.Text = "Street";
     //
     // txtStreet
     //
     this.txtStreet.Location = new System.Drawing.Point(666, 181);
     this.txtStreet.MaxLength = 250;
     this.txtStreet.Name = "txtStreet";
     this.txtStreet.Size = new System.Drawing.Size(198, 20);
     this.txtStreet.TabIndex = 48;
     this.txtStreet.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtStreet_KeyDown);
     //
     // lblHouseNo
     //
     this.lblHouseNo.AutoSize = true;
     this.lblHouseNo.Location = new System.Drawing.Point(509, 207);
     this.lblHouseNo.Name = "lblHouseNo";
     this.lblHouseNo.Size = new System.Drawing.Size(55, 13);
     this.lblHouseNo.TabIndex = 49;
     this.lblHouseNo.Text = "House No";
     //
     // txtHouseNo
     //
     this.txtHouseNo.Location = new System.Drawing.Point(666, 207);
     this.txtHouseNo.MaxLength = 100;
     this.txtHouseNo.Name = "txtHouseNo";
     this.txtHouseNo.Size = new System.Drawing.Size(198, 20);
     this.txtHouseNo.TabIndex = 50;
     this.txtHouseNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtHouseNo_KeyDown);
     //
     // lblAreaCode
     //
     this.lblAreaCode.AutoSize = true;
     this.lblAreaCode.Location = new System.Drawing.Point(509, 233);
     this.lblAreaCode.Name = "lblAreaCode";
     this.lblAreaCode.Size = new System.Drawing.Size(57, 13);
     this.lblAreaCode.TabIndex = 51;
     this.lblAreaCode.Text = "Area Code";
     //
     // txtAreaCode
     //
     this.txtAreaCode.Location = new System.Drawing.Point(666, 233);
     this.txtAreaCode.MaxLength = 5;
     this.txtAreaCode.Name = "txtAreaCode";
     this.txtAreaCode.Size = new System.Drawing.Size(198, 20);
     this.txtAreaCode.TabIndex = 52;
     this.txtAreaCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAreaCode_KeyDown);
     this.txtAreaCode.Validating += new System.ComponentModel.CancelEventHandler(this.txtAreaCode_Validating);
     //
     // lblAddress
     //
     this.lblAddress.AutoSize = true;
     this.lblAddress.Location = new System.Drawing.Point(510, 262);
     this.lblAddress.Name = "lblAddress";
     this.lblAddress.Size = new System.Drawing.Size(45, 13);
     this.lblAddress.TabIndex = 54;
     this.lblAddress.Text = "Address";
     //
     // lblHomeTelephone
     //
     this.lblHomeTelephone.AutoSize = true;
     this.lblHomeTelephone.Location = new System.Drawing.Point(511, 324);
     this.lblHomeTelephone.Name = "lblHomeTelephone";
     this.lblHomeTelephone.Size = new System.Drawing.Size(89, 13);
     this.lblHomeTelephone.TabIndex = 56;
     this.lblHomeTelephone.Text = "Home Telephone";
     //
     // txtHomeTelephone
     //
     this.txtHomeTelephone.Location = new System.Drawing.Point(666, 324);
     this.txtHomeTelephone.MaxLength = 100;
     this.txtHomeTelephone.Name = "txtHomeTelephone";
     this.txtHomeTelephone.Size = new System.Drawing.Size(198, 20);
     this.txtHomeTelephone.TabIndex = 57;
     this.txtHomeTelephone.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtHomeTelephone_KeyDown);
     //
     // lblMobileNo
     //
     this.lblMobileNo.AutoSize = true;
     this.lblMobileNo.Location = new System.Drawing.Point(511, 352);
     this.lblMobileNo.Name = "lblMobileNo";
     this.lblMobileNo.Size = new System.Drawing.Size(55, 13);
     this.lblMobileNo.TabIndex = 58;
     this.lblMobileNo.Text = "Mobile No";
     //
     // txtMobileNo
     //
     this.txtMobileNo.Location = new System.Drawing.Point(666, 352);
     this.txtMobileNo.MaxLength = 100;
     this.txtMobileNo.Name = "txtMobileNo";
     this.txtMobileNo.Size = new System.Drawing.Size(198, 20);
     this.txtMobileNo.TabIndex = 59;
     this.txtMobileNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMobileNo_KeyDown);
     //
     // lblEmailAddress
     //
     this.lblEmailAddress.AutoSize = true;
     this.lblEmailAddress.Location = new System.Drawing.Point(511, 381);
     this.lblEmailAddress.Name = "lblEmailAddress";
     this.lblEmailAddress.Size = new System.Drawing.Size(79, 13);
     this.lblEmailAddress.TabIndex = 60;
     this.lblEmailAddress.Text = "E-mail  Address";
     //
     // txtEmailAddress
     //
     this.txtEmailAddress.Location = new System.Drawing.Point(666, 381);
     this.txtEmailAddress.MaxLength = 100;
     this.txtEmailAddress.Name = "txtEmailAddress";
     this.txtEmailAddress.Size = new System.Drawing.Size(198, 20);
     this.txtEmailAddress.TabIndex = 61;
     this.txtEmailAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEmailAddress_KeyDown);
     this.txtEmailAddress.Validating += new System.ComponentModel.CancelEventHandler(this.txtEmailAddress_Validating);
     //
     // lblPhoto
     //
     this.lblPhoto.AutoSize = true;
     this.lblPhoto.Location = new System.Drawing.Point(512, 409);
     this.lblPhoto.Name = "lblPhoto";
     this.lblPhoto.Size = new System.Drawing.Size(35, 13);
     this.lblPhoto.TabIndex = 62;
     this.lblPhoto.Text = "Photo";
     //
     // lblPersonalDetails
     //
     this.lblPersonalDetails.AutoSize = true;
     this.lblPersonalDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblPersonalDetails.Location = new System.Drawing.Point(30, 194);
     this.lblPersonalDetails.Name = "lblPersonalDetails";
     this.lblPersonalDetails.Size = new System.Drawing.Size(99, 13);
     this.lblPersonalDetails.TabIndex = 19;
     this.lblPersonalDetails.Text = "Personal Details";
     //
     // lblCreatedDate
     //
     this.lblCreatedDate.AutoSize = true;
     this.lblCreatedDate.Location = new System.Drawing.Point(371, 5);
     this.lblCreatedDate.Name = "lblCreatedDate";
     this.lblCreatedDate.Size = new System.Drawing.Size(70, 13);
     this.lblCreatedDate.TabIndex = 13;
     this.lblCreatedDate.Text = "Created Date";
     this.lblCreatedDate.Visible = false;
     //
     // lblAddressContact
     //
     this.lblAddressContact.AutoSize = true;
     this.lblAddressContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAddressContact.Location = new System.Drawing.Point(508, 50);
     this.lblAddressContact.Name = "lblAddressContact";
     this.lblAddressContact.Size = new System.Drawing.Size(125, 13);
     this.lblAddressContact.TabIndex = 38;
     this.lblAddressContact.Text = "Address and Contact";
     //
     // btnCancel
     //
     this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnCancel.Location = new System.Drawing.Point(568, 504);
     this.btnCancel.Name = "btnCancel";
     this.btnCancel.Size = new System.Drawing.Size(75, 23);
     this.btnCancel.TabIndex = 66;
     this.btnCancel.Text = "&Cancel";
     this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
     //
     // btnOk
     //
     this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.btnOk.Location = new System.Drawing.Point(490, 504);
     this.btnOk.Name = "btnOk";
     this.btnOk.Size = new System.Drawing.Size(75, 23);
     this.btnOk.TabIndex = 65;
     this.btnOk.Text = "&OK";
     this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
     //
     // ddlMaritialStatus
     //
     this.ddlMaritialStatus.AutoCompleteCustomSource.AddRange(new string[] {
     "Married",
     "Unmarried"});
     this.ddlMaritialStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlMaritialStatus.FormattingEnabled = true;
     this.ddlMaritialStatus.Items.AddRange(new object[] {
     "None",
     "Married",
     "Unmarried"});
     this.ddlMaritialStatus.Location = new System.Drawing.Point(217, 336);
     this.ddlMaritialStatus.Name = "ddlMaritialStatus";
     this.ddlMaritialStatus.Size = new System.Drawing.Size(199, 21);
     this.ddlMaritialStatus.TabIndex = 29;
     this.ddlMaritialStatus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlMaritialStatus_KeyDown);
     //
     // btnDelete
     //
     this.btnDelete.Location = new System.Drawing.Point(165, 12);
     this.btnDelete.Name = "btnDelete";
     this.btnDelete.Size = new System.Drawing.Size(75, 23);
     this.btnDelete.TabIndex = 2;
     this.btnDelete.Text = "&Delete";
     this.btnDelete.UseVisualStyleBackColor = true;
     this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
     //
     // btnEdit
     //
     this.btnEdit.Location = new System.Drawing.Point(91, 12);
     this.btnEdit.Name = "btnEdit";
     this.btnEdit.Size = new System.Drawing.Size(75, 23);
     this.btnEdit.TabIndex = 1;
     this.btnEdit.Text = "&Edit";
     this.btnEdit.UseVisualStyleBackColor = true;
     this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click);
     //
     // btnAdd
     //
     this.btnAdd.Location = new System.Drawing.Point(17, 12);
     this.btnAdd.Name = "btnAdd";
     this.btnAdd.Size = new System.Drawing.Size(75, 23);
     this.btnAdd.TabIndex = 0;
     this.btnAdd.Text = "&Add";
     this.btnAdd.UseVisualStyleBackColor = true;
     this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
     //
     // ddlGender
     //
     this.ddlGender.AutoCompleteCustomSource.AddRange(new string[] {
     "Male",
     "Female"});
     this.ddlGender.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlGender.FormattingEnabled = true;
     this.ddlGender.Items.AddRange(new object[] {
     "Male",
     "Female"});
     this.ddlGender.Location = new System.Drawing.Point(217, 276);
     this.ddlGender.Name = "ddlGender";
     this.ddlGender.Size = new System.Drawing.Size(199, 21);
     this.ddlGender.TabIndex = 25;
     this.ddlGender.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlGender_KeyDown);
     //
     // btnLast
     //
     this.btnLast.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnLast.Location = new System.Drawing.Point(1108, 12);
     this.btnLast.Name = "btnLast";
     this.btnLast.Size = new System.Drawing.Size(29, 23);
     this.btnLast.TabIndex = 6;
     this.btnLast.Text = ">>";
     this.btnLast.UseVisualStyleBackColor = true;
     this.btnLast.Click += new System.EventHandler(this.btnLast_Click);
     //
     // btnNext
     //
     this.btnNext.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnNext.Location = new System.Drawing.Point(1082, 12);
     this.btnNext.Name = "btnNext";
     this.btnNext.Size = new System.Drawing.Size(27, 23);
     this.btnNext.TabIndex = 5;
     this.btnNext.Text = ">";
     this.btnNext.UseVisualStyleBackColor = true;
     this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
     //
     // btnPrevious
     //
     this.btnPrevious.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnPrevious.Location = new System.Drawing.Point(1056, 12);
     this.btnPrevious.Name = "btnPrevious";
     this.btnPrevious.Size = new System.Drawing.Size(27, 23);
     this.btnPrevious.TabIndex = 4;
     this.btnPrevious.Text = "<";
     this.btnPrevious.UseVisualStyleBackColor = true;
     this.btnPrevious.Click += new System.EventHandler(this.btnPrevious_Click);
     //
     // btnFirst
     //
     this.btnFirst.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnFirst.Location = new System.Drawing.Point(1025, 12);
     this.btnFirst.Name = "btnFirst";
     this.btnFirst.Size = new System.Drawing.Size(31, 23);
     this.btnFirst.TabIndex = 3;
     this.btnFirst.Text = "<<";
     this.btnFirst.UseVisualStyleBackColor = true;
     this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click);
     //
     // lblAreaHeading
     //
     this.lblAreaHeading.AutoSize = true;
     this.lblAreaHeading.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lblAreaHeading.Location = new System.Drawing.Point(26, 38);
     this.lblAreaHeading.Name = "lblAreaHeading";
     this.lblAreaHeading.Size = new System.Drawing.Size(59, 13);
     this.lblAreaHeading.TabIndex = 3;
     this.lblAreaHeading.Text = "Customer";
     //
     // rectangleShape2
     //
     this.rectangleShape2.CornerRadius = 5;
     this.rectangleShape2.Location = new System.Drawing.Point(16, 481);
     this.rectangleShape2.Name = "rectangleShape2";
     this.rectangleShape2.Size = new System.Drawing.Size(1119, 62);
     //
     // 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.S,
     this.rectangleShape2});
     this.shapeContainer1.Size = new System.Drawing.Size(1159, 559);
     this.shapeContainer1.TabIndex = 65;
     this.shapeContainer1.TabStop = false;
     //
     // S
     //
     this.S.CornerRadius = 5;
     this.S.Location = new System.Drawing.Point(17, 43);
     this.S.Name = "S";
     this.S.Size = new System.Drawing.Size(1117, 434);
     //
     // openFileDialog1
     //
     this.openFileDialog1.FileName = "openFileDialog1";
     //
     // txtPhotoPath
     //
     this.txtPhotoPath.Location = new System.Drawing.Point(666, 409);
     this.txtPhotoPath.Name = "txtPhotoPath";
     this.txtPhotoPath.Size = new System.Drawing.Size(124, 20);
     this.txtPhotoPath.TabIndex = 63;
     this.txtPhotoPath.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPhotoPath_KeyDown);
     //
     // btnBrowsePhoto
     //
     this.btnBrowsePhoto.Location = new System.Drawing.Point(796, 405);
     this.btnBrowsePhoto.Name = "btnBrowsePhoto";
     this.btnBrowsePhoto.Size = new System.Drawing.Size(68, 27);
     this.btnBrowsePhoto.TabIndex = 64;
     this.btnBrowsePhoto.Text = "Browse";
     this.btnBrowsePhoto.UseVisualStyleBackColor = true;
     this.btnBrowsePhoto.Click += new System.EventHandler(this.btnBrowsePhoto_Click);
     //
     // ddlMunicipality
     //
     this.ddlMunicipality.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlMunicipality.FormattingEnabled = true;
     this.ddlMunicipality.Items.AddRange(new object[] {
     "None",
     "Kathmandu",
     "Lalitpur",
     "Bhaktapur",
     "Banepa"});
     this.ddlMunicipality.Location = new System.Drawing.Point(666, 129);
     this.ddlMunicipality.Name = "ddlMunicipality";
     this.ddlMunicipality.Size = new System.Drawing.Size(198, 21);
     this.ddlMunicipality.TabIndex = 44;
     this.ddlMunicipality.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlMunicipality_KeyDown);
     //
     // ddlDistrict
     //
     this.ddlDistrict.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlDistrict.FormattingEnabled = true;
     this.ddlDistrict.Items.AddRange(new object[] {
     "None",
     "Kathmandu",
     "Lalitpur",
     "Bhaktapur",
     "Banepa"});
     this.ddlDistrict.Location = new System.Drawing.Point(666, 155);
     this.ddlDistrict.Name = "ddlDistrict";
     this.ddlDistrict.Size = new System.Drawing.Size(198, 21);
     this.ddlDistrict.TabIndex = 46;
     this.ddlDistrict.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlDistrict_KeyDown);
     //
     // btnIntroducerID
     //
     this.btnIntroducerID.Location = new System.Drawing.Point(422, 71);
     this.btnIntroducerID.Name = "btnIntroducerID";
     this.btnIntroducerID.Size = new System.Drawing.Size(30, 23);
     this.btnIntroducerID.TabIndex = 9;
     this.btnIntroducerID.Text = "......";
     this.btnIntroducerID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnIntroducerID.UseVisualStyleBackColor = true;
     this.btnIntroducerID.Click += new System.EventHandler(this.btnIntroducerID_Click);
     //
     // btnReferenceID
     //
     this.btnReferenceID.Location = new System.Drawing.Point(422, 96);
     this.btnReferenceID.Name = "btnReferenceID";
     this.btnReferenceID.Size = new System.Drawing.Size(30, 23);
     this.btnReferenceID.TabIndex = 12;
     this.btnReferenceID.Text = "......";
     this.btnReferenceID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnReferenceID.UseVisualStyleBackColor = true;
     this.btnReferenceID.Click += new System.EventHandler(this.btnReferenceID_Click);
     //
     // lblMembershipID
     //
     this.lblMembershipID.AutoSize = true;
     this.lblMembershipID.Location = new System.Drawing.Point(31, 55);
     this.lblMembershipID.Name = "lblMembershipID";
     this.lblMembershipID.Size = new System.Drawing.Size(78, 13);
     this.lblMembershipID.TabIndex = 4;
     this.lblMembershipID.Text = "Membership ID";
     //
     // btnMembershipID
     //
     this.btnMembershipID.Location = new System.Drawing.Point(421, 45);
     this.btnMembershipID.Name = "btnMembershipID";
     this.btnMembershipID.Size = new System.Drawing.Size(30, 23);
     this.btnMembershipID.TabIndex = 6;
     this.btnMembershipID.Text = "......";
     this.btnMembershipID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnMembershipID.UseVisualStyleBackColor = true;
     this.btnMembershipID.Click += new System.EventHandler(this.btnMembershipID_Click);
     //
     // txtMembershipID
     //
     this.txtMembershipID.Location = new System.Drawing.Point(217, 48);
     this.txtMembershipID.MaxLength = 100;
     this.txtMembershipID.Name = "txtMembershipID";
     this.txtMembershipID.Size = new System.Drawing.Size(198, 20);
     this.txtMembershipID.TabIndex = 5;
     this.txtMembershipID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMembershipID_KeyDown);
     this.txtMembershipID.Validating += new System.ComponentModel.CancelEventHandler(this.txtMembershipID_Validating);
     //
     // btnAreaCode
     //
     this.btnAreaCode.Location = new System.Drawing.Point(870, 231);
     this.btnAreaCode.Name = "btnAreaCode";
     this.btnAreaCode.Size = new System.Drawing.Size(30, 23);
     this.btnAreaCode.TabIndex = 53;
     this.btnAreaCode.Text = "......";
     this.btnAreaCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     this.btnAreaCode.UseVisualStyleBackColor = true;
     this.btnAreaCode.Click += new System.EventHandler(this.btnAreCode_Click);
     //
     // txtAddress
     //
     this.txtAddress.Location = new System.Drawing.Point(666, 259);
     this.txtAddress.MaxLength = 1024;
     this.txtAddress.Multiline = true;
     this.txtAddress.Name = "txtAddress";
     this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
     this.txtAddress.Size = new System.Drawing.Size(198, 59);
     this.txtAddress.TabIndex = 55;
     this.txtAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAddress_KeyDown);
     //
     // mtxtCreatedDate
     //
     this.mtxtCreatedDate.Location = new System.Drawing.Point(493, 2);
     this.mtxtCreatedDate.Mask = "00/00/0000";
     this.mtxtCreatedDate.Name = "mtxtCreatedDate";
     this.mtxtCreatedDate.Size = new System.Drawing.Size(197, 20);
     this.mtxtCreatedDate.TabIndex = 14;
     this.mtxtCreatedDate.ValidatingType = typeof(System.DateTime);
     this.mtxtCreatedDate.Visible = false;
     this.mtxtCreatedDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mtxtCreatedDate_KeyDown);
     this.mtxtCreatedDate.Validating += new System.ComponentModel.CancelEventHandler(this.mtxtCreatedDate_Validating);
     //
     // mtxtDOB
     //
     this.mtxtDOB.Location = new System.Drawing.Point(217, 304);
     this.mtxtDOB.Mask = "00/00/0000";
     this.mtxtDOB.Name = "mtxtDOB";
     this.mtxtDOB.Size = new System.Drawing.Size(197, 20);
     this.mtxtDOB.TabIndex = 27;
     this.mtxtDOB.ValidatingType = typeof(System.DateTime);
     this.mtxtDOB.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mtxtDOB_KeyDown);
     this.mtxtDOB.Validating += new System.ComponentModel.CancelEventHandler(this.mtxtDOB_Validating);
     //
     // lblCustomerType
     //
     this.lblCustomerType.AutoSize = true;
     this.lblCustomerType.Location = new System.Drawing.Point(30, 132);
     this.lblCustomerType.Name = "lblCustomerType";
     this.lblCustomerType.Size = new System.Drawing.Size(78, 13);
     this.lblCustomerType.TabIndex = 15;
     this.lblCustomerType.Text = "Customer Type";
     //
     // ddlCustomerType
     //
     this.ddlCustomerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.ddlCustomerType.FormattingEnabled = true;
     this.ddlCustomerType.Location = new System.Drawing.Point(218, 125);
     this.ddlCustomerType.Name = "ddlCustomerType";
     this.ddlCustomerType.Size = new System.Drawing.Size(196, 21);
     this.ddlCustomerType.TabIndex = 16;
     this.ddlCustomerType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlCustomerType_KeyDown);
     //
     // lblMROrientationDate
     //
     this.lblMROrientationDate.AutoSize = true;
     this.lblMROrientationDate.Location = new System.Drawing.Point(30, 161);
     this.lblMROrientationDate.Name = "lblMROrientationDate";
     this.lblMROrientationDate.Size = new System.Drawing.Size(104, 13);
     this.lblMROrientationDate.TabIndex = 17;
     this.lblMROrientationDate.Text = "MR-Orientation Date";
     //
     // mtxtMRDate
     //
     this.mtxtMRDate.Location = new System.Drawing.Point(217, 157);
     this.mtxtMRDate.Mask = "00/00/0000";
     this.mtxtMRDate.Name = "mtxtMRDate";
     this.mtxtMRDate.Size = new System.Drawing.Size(197, 20);
     this.mtxtMRDate.TabIndex = 18;
     this.mtxtMRDate.ValidatingType = typeof(System.DateTime);
     this.mtxtMRDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mtxtMRDate_KeyDown);
     this.mtxtMRDate.Validating += new System.ComponentModel.CancelEventHandler(this.mtxtMRDate_Validating);
     //
     // pictureBox1
     //
     this.pictureBox1.Location = new System.Drawing.Point(925, 53);
     this.pictureBox1.Name = "pictureBox1";
     this.pictureBox1.Size = new System.Drawing.Size(200, 104);
     this.pictureBox1.TabIndex = 67;
     this.pictureBox1.TabStop = false;
     //
     // lblNoPhoto
     //
     this.lblNoPhoto.AutoSize = true;
     this.lblNoPhoto.Location = new System.Drawing.Point(985, 178);
     this.lblNoPhoto.Name = "lblNoPhoto";
     this.lblNoPhoto.Size = new System.Drawing.Size(98, 13);
     this.lblNoPhoto.TabIndex = 68;
     this.lblNoPhoto.Text = "No photo to display";
     this.lblNoPhoto.Visible = false;
     //
     // lblMarketingDate
     //
     this.lblMarketingDate.AutoSize = true;
     this.lblMarketingDate.Location = new System.Drawing.Point(418, 158);
     this.lblMarketingDate.Name = "lblMarketingDate";
     this.lblMarketingDate.Size = new System.Drawing.Size(73, 13);
     this.lblMarketingDate.TabIndex = 69;
     this.lblMarketingDate.Text = "(dd/MM/yyyy)";
     //
     // lblDateOfBirth
     //
     this.lblDateOfBirth.AutoSize = true;
     this.lblDateOfBirth.Location = new System.Drawing.Point(424, 307);
     this.lblDateOfBirth.Name = "lblDateOfBirth";
     this.lblDateOfBirth.Size = new System.Drawing.Size(73, 13);
     this.lblDateOfBirth.TabIndex = 70;
     this.lblDateOfBirth.Text = "(dd/MM/yyyy)";
     //
     // lblFullName
     //
     this.lblFullName.AutoSize = true;
     this.lblFullName.Location = new System.Drawing.Point(419, 224);
     this.lblFullName.Name = "lblFullName";
     this.lblFullName.Size = new System.Drawing.Size(54, 13);
     this.lblFullName.TabIndex = 71;
     this.lblFullName.Text = "Full Name";
     //
     // frmCustomer
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(1159, 559);
     this.Controls.Add(this.lblFullName);
     this.Controls.Add(this.lblDateOfBirth);
     this.Controls.Add(this.lblMarketingDate);
     this.Controls.Add(this.lblNoPhoto);
     this.Controls.Add(this.mtxtDOB);
     this.Controls.Add(this.mtxtMRDate);
     this.Controls.Add(this.mtxtCreatedDate);
     this.Controls.Add(this.lblMROrientationDate);
     this.Controls.Add(this.ddlCustomerType);
     this.Controls.Add(this.lblCustomerType);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.txtAddress);
     this.Controls.Add(this.btnAreaCode);
     this.Controls.Add(this.btnMembershipID);
     this.Controls.Add(this.txtMembershipID);
     this.Controls.Add(this.lblMembershipID);
     this.Controls.Add(this.btnReferenceID);
     this.Controls.Add(this.btnIntroducerID);
     this.Controls.Add(this.ddlDistrict);
     this.Controls.Add(this.ddlMunicipality);
     this.Controls.Add(this.txtPhotoPath);
     this.Controls.Add(this.btnBrowsePhoto);
     this.Controls.Add(this.lblAreaHeading);
     this.Controls.Add(this.btnLast);
     this.Controls.Add(this.btnNext);
     this.Controls.Add(this.btnPrevious);
     this.Controls.Add(this.btnFirst);
     this.Controls.Add(this.btnDelete);
     this.Controls.Add(this.btnEdit);
     this.Controls.Add(this.btnAdd);
     this.Controls.Add(this.ddlGender);
     this.Controls.Add(this.ddlMaritialStatus);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOk);
     this.Controls.Add(this.lblAddressContact);
     this.Controls.Add(this.lblCreatedDate);
     this.Controls.Add(this.lblPersonalDetails);
     this.Controls.Add(this.lblPhoto);
     this.Controls.Add(this.txtEmailAddress);
     this.Controls.Add(this.lblEmailAddress);
     this.Controls.Add(this.txtMobileNo);
     this.Controls.Add(this.lblMobileNo);
     this.Controls.Add(this.txtHomeTelephone);
     this.Controls.Add(this.lblHomeTelephone);
     this.Controls.Add(this.lblAddress);
     this.Controls.Add(this.txtAreaCode);
     this.Controls.Add(this.lblAreaCode);
     this.Controls.Add(this.txtHouseNo);
     this.Controls.Add(this.lblHouseNo);
     this.Controls.Add(this.txtStreet);
     this.Controls.Add(this.lblStreet);
     this.Controls.Add(this.lblDistrict);
     this.Controls.Add(this.lblMunicipality);
     this.Controls.Add(this.ddlCity);
     this.Controls.Add(this.lblCity);
     this.Controls.Add(this.ddlCountry);
     this.Controls.Add(this.lblCountry);
     this.Controls.Add(this.txtPassportID);
     this.Controls.Add(this.lblPassportID);
     this.Controls.Add(this.txtLicenseID);
     this.Controls.Add(this.lblLicenseID);
     this.Controls.Add(this.txtCitizenshipID);
     this.Controls.Add(this.lblCitizenshipID);
     this.Controls.Add(this.ddlNationality);
     this.Controls.Add(this.lblNationality);
     this.Controls.Add(this.lblMaritialStatus);
     this.Controls.Add(this.lblDOB);
     this.Controls.Add(this.lblGender);
     this.Controls.Add(this.txtBenificiaryName);
     this.Controls.Add(this.lblBenificiaryName);
     this.Controls.Add(this.txtCustomerName);
     this.Controls.Add(this.lblCustomerName);
     this.Controls.Add(this.txtReferenceID);
     this.Controls.Add(this.lblReferenceID);
     this.Controls.Add(this.txtIntroducerID);
     this.Controls.Add(this.lblIntroducerID);
     this.Controls.Add(this.shapeContainer1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmCustomer";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "FF: Customer";
     this.Load += new System.EventHandler(this.frmCustomer_Load);
     this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmCustomer_KeyDown);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 20
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._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.txtQty          = new System.Windows.Forms.TextBox();
     this.txtPSize        = new System.Windows.Forms.TextBox();
     this.txtPack         = new System.Windows.Forms.TextBox();
     this.txtPriceS       = new System.Windows.Forms.TextBox();
     this.txtQtyT         = new System.Windows.Forms.TextBox();
     this.txtPrice        = new System.Windows.Forms.TextBox();
     this.cmbQuantity     = new System.Windows.Forms.ComboBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdPack         = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this._LBL_6          = new System.Windows.Forms.Label();
     this._LBL_4          = new System.Windows.Forms.Label();
     this._LBL_2          = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.lblPComp        = new System.Windows.Forms.Label();
     this.lblSComp        = new System.Windows.Forms.Label();
     this.lblStockItemS   = new System.Windows.Forms.Label();
     this._LBL_5          = new System.Windows.Forms.Label();
     this._LBL_0          = new System.Windows.Forms.Label();
     this._LBL_3          = new System.Windows.Forms.Label();
     this._LBL_1          = new System.Windows.Forms.Label();
     this.lblStockItem    = new System.Windows.Forms.Label();
     this.Shape1          = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
     this.picButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     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._Shape1_0,
         this._Shape1_2
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(400, 145);
     this.ShapeContainer1.TabIndex = 22;
     this.ShapeContainer1.TabStop  = false;
     //
     //_Shape1_0
     //
     this._Shape1_0.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_0.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_0.FillColor   = System.Drawing.Color.Black;
     this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
     this._Shape1_0.Location = new System.Drawing.Point(7, 296);
     this._Shape1_0.Name     = "_Shape1_0";
     this._Shape1_0.Size     = new System.Drawing.Size(383, 56);
     //
     //_Shape1_2
     //
     this._Shape1_2.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_2.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_2.FillColor   = System.Drawing.Color.Black;
     this.Shape1.SetIndex(this._Shape1_2, Convert.ToInt16(2));
     this._Shape1_2.Location = new System.Drawing.Point(7, 48);
     this._Shape1_2.Name     = "_Shape1_2";
     this._Shape1_2.Size     = new System.Drawing.Size(383, 88);
     //
     //txtQty
     //
     this.txtQty.AcceptsReturn = true;
     this.txtQty.BackColor     = System.Drawing.SystemColors.Window;
     this.txtQty.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtQty.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtQty.Location      = new System.Drawing.Point(314, 102);
     this.txtQty.MaxLength     = 0;
     this.txtQty.Name          = "txtQty";
     this.txtQty.ReadOnly      = true;
     this.txtQty.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtQty.Size          = new System.Drawing.Size(67, 19);
     this.txtQty.TabIndex      = 20;
     this.txtQty.Text          = "0";
     this.txtQty.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQty.Visible       = false;
     //
     //txtPSize
     //
     this.txtPSize.AcceptsReturn = true;
     this.txtPSize.BackColor     = System.Drawing.SystemColors.Window;
     this.txtPSize.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPSize.Enabled       = false;
     this.txtPSize.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPSize.Location      = new System.Drawing.Point(184, 101);
     this.txtPSize.MaxLength     = 0;
     this.txtPSize.Name          = "txtPSize";
     this.txtPSize.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPSize.Size          = new System.Drawing.Size(27, 19);
     this.txtPSize.TabIndex      = 19;
     this.txtPSize.Text          = "1";
     this.txtPSize.TextAlign     = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtPSize.Visible       = false;
     //
     //txtPack
     //
     this.txtPack.AcceptsReturn = true;
     this.txtPack.BackColor     = System.Drawing.SystemColors.Window;
     this.txtPack.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPack.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPack.Location      = new System.Drawing.Point(352, 272);
     this.txtPack.MaxLength     = 0;
     this.txtPack.Name          = "txtPack";
     this.txtPack.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPack.Size          = new System.Drawing.Size(41, 19);
     this.txtPack.TabIndex      = 16;
     this.txtPack.Text          = "0";
     this.txtPack.Visible       = false;
     //
     //txtPriceS
     //
     this.txtPriceS.AcceptsReturn = true;
     this.txtPriceS.BackColor     = System.Drawing.SystemColors.Window;
     this.txtPriceS.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPriceS.Enabled       = false;
     this.txtPriceS.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPriceS.Location      = new System.Drawing.Point(291, 346);
     this.txtPriceS.MaxLength     = 0;
     this.txtPriceS.Name          = "txtPriceS";
     this.txtPriceS.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPriceS.Size          = new System.Drawing.Size(91, 19);
     this.txtPriceS.TabIndex      = 8;
     this.txtPriceS.Text          = "0.00";
     this.txtPriceS.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPriceS.Visible       = false;
     //
     //txtQtyT
     //
     this.txtQtyT.AcceptsReturn = true;
     this.txtQtyT.BackColor     = System.Drawing.SystemColors.Window;
     this.txtQtyT.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtQtyT.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtQtyT.Location      = new System.Drawing.Point(79, 101);
     this.txtQtyT.MaxLength     = 0;
     this.txtQtyT.Name          = "txtQtyT";
     this.txtQtyT.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtQtyT.Size          = new System.Drawing.Size(75, 19);
     this.txtQtyT.TabIndex      = 0;
     this.txtQtyT.Text          = "0";
     this.txtQtyT.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //txtPrice
     //
     this.txtPrice.AcceptsReturn = true;
     this.txtPrice.BackColor     = System.Drawing.SystemColors.Window;
     this.txtPrice.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPrice.Enabled       = false;
     this.txtPrice.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPrice.Location      = new System.Drawing.Point(301, 249);
     this.txtPrice.MaxLength     = 0;
     this.txtPrice.Name          = "txtPrice";
     this.txtPrice.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPrice.Size          = new System.Drawing.Size(91, 19);
     this.txtPrice.TabIndex      = 5;
     this.txtPrice.Text          = "0.00";
     this.txtPrice.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPrice.Visible       = false;
     //
     //cmbQuantity
     //
     this.cmbQuantity.BackColor     = System.Drawing.SystemColors.Window;
     this.cmbQuantity.Cursor        = System.Windows.Forms.Cursors.Default;
     this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbQuantity.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.cmbQuantity.Location      = new System.Drawing.Point(192, 248);
     this.cmbQuantity.Name          = "cmbQuantity";
     this.cmbQuantity.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.cmbQuantity.Size          = new System.Drawing.Size(79, 21);
     this.cmbQuantity.TabIndex      = 4;
     this.cmbQuantity.Visible       = false;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.cmdPack);
     this.picButtons.Controls.Add(this.cmdCancel);
     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(400, 39);
     this.picButtons.TabIndex    = 1;
     //
     //cmdPack
     //
     this.cmdPack.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdPack.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdPack.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdPack.Location                = new System.Drawing.Point(88, 3);
     this.cmdPack.Name                    = "cmdPack";
     this.cmdPack.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdPack.Size                    = new System.Drawing.Size(105, 29);
     this.cmdPack.TabIndex                = 22;
     this.cmdPack.TabStop                 = false;
     this.cmdPack.Text                    = "Break / Build P&ack";
     this.cmdPack.UseVisualStyleBackColor = false;
     this.cmdPack.Visible                 = false;
     //
     //cmdCancel
     //
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCancel.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdCancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Location                = new System.Drawing.Point(8, 3);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(73, 29);
     this.cmdCancel.TabIndex                = 15;
     this.cmdCancel.TabStop                 = false;
     this.cmdCancel.Text                    = "&Undo";
     this.cmdCancel.UseVisualStyleBackColor = false;
     //
     //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(312, 3);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(73, 29);
     this.cmdClose.TabIndex                = 2;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "E&xit";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //_LBL_6
     //
     this._LBL_6.AutoSize    = true;
     this._LBL_6.BackColor   = System.Drawing.Color.Transparent;
     this._LBL_6.Cursor      = System.Windows.Forms.Cursors.Default;
     this._LBL_6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._LBL_6.Location    = new System.Drawing.Point(257, 105);
     this._LBL_6.Name        = "_LBL_6";
     this._LBL_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_6.Size        = new System.Drawing.Size(53, 13);
     this._LBL_6.TabIndex    = 21;
     this._LBL_6.Text        = "Total Qty:";
     this._LBL_6.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._LBL_6.Visible     = false;
     //
     //_LBL_4
     //
     this._LBL_4.AutoSize    = true;
     this._LBL_4.BackColor   = System.Drawing.Color.Transparent;
     this._LBL_4.Cursor      = System.Windows.Forms.Cursors.Default;
     this._LBL_4.Font        = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._LBL_4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._LBL_4.Location    = new System.Drawing.Point(162, 102);
     this._LBL_4.Name        = "_LBL_4";
     this._LBL_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_4.Size        = new System.Drawing.Size(16, 16);
     this._LBL_4.TabIndex    = 18;
     this._LBL_4.Text        = "x";
     this._LBL_4.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._LBL_4.Visible     = false;
     //
     //_LBL_2
     //
     this._LBL_2.AutoSize    = true;
     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(24, 104);
     this._LBL_2.Name        = "_LBL_2";
     this._LBL_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_2.Size        = new System.Drawing.Size(49, 13);
     this._LBL_2.TabIndex    = 17;
     this._LBL_2.Text        = "Item Qty:";
     this._LBL_2.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //Label2
     //
     this.Label2.BackColor   = System.Drawing.Color.Transparent;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.Font        = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.Label2.ForeColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(0)), Convert.ToInt32(Convert.ToByte(0)));
     this.Label2.Location    = new System.Drawing.Point(56, 272);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(296, 23);
     this.Label2.TabIndex    = 14;
     this.Label2.Text        = "Please verify products from both locations";
     //
     //lblPComp
     //
     this.lblPComp.BackColor   = System.Drawing.Color.Transparent;
     this.lblPComp.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblPComp.Font        = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblPComp.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblPComp.Location    = new System.Drawing.Point(16, 152);
     this.lblPComp.Name        = "lblPComp";
     this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblPComp.Size        = new System.Drawing.Size(352, 24);
     this.lblPComp.TabIndex    = 13;
     this.lblPComp.Text        = "Promotion Name:";
     this.lblPComp.Visible     = false;
     //
     //lblSComp
     //
     this.lblSComp.BackColor   = System.Drawing.Color.Transparent;
     this.lblSComp.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblSComp.Font        = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblSComp.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblSComp.Location    = new System.Drawing.Point(16, 304);
     this.lblSComp.Name        = "lblSComp";
     this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblSComp.Size        = new System.Drawing.Size(360, 24);
     this.lblSComp.TabIndex    = 12;
     this.lblSComp.Text        = "Promotion Name:";
     //
     //lblStockItemS
     //
     this.lblStockItemS.BackColor   = System.Drawing.SystemColors.Control;
     this.lblStockItemS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblStockItemS.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblStockItemS.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblStockItemS.Location    = new System.Drawing.Point(98, 328);
     this.lblStockItemS.Name        = "lblStockItemS";
     this.lblStockItemS.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblStockItemS.Size        = new System.Drawing.Size(286, 17);
     this.lblStockItemS.TabIndex    = 11;
     this.lblStockItemS.Text        = "Label1";
     //
     //_LBL_5
     //
     this._LBL_5.AutoSize    = true;
     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(10, 328);
     this._LBL_5.Name        = "_LBL_5";
     this._LBL_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_5.Size        = new System.Drawing.Size(92, 13);
     this._LBL_5.TabIndex    = 10;
     this._LBL_5.Text        = "Stock Item Name:";
     this._LBL_5.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_LBL_0
     //
     this._LBL_0.AutoSize    = true;
     this._LBL_0.BackColor   = System.Drawing.Color.Transparent;
     this._LBL_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._LBL_0.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._LBL_0.Location    = new System.Drawing.Point(260, 349);
     this._LBL_0.Name        = "_LBL_0";
     this._LBL_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_0.Size        = new System.Drawing.Size(34, 13);
     this._LBL_0.TabIndex    = 9;
     this._LBL_0.Text        = "Price:";
     this._LBL_0.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._LBL_0.Visible     = false;
     //
     //_LBL_3
     //
     this._LBL_3.AutoSize    = true;
     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(270, 252);
     this._LBL_3.Name        = "_LBL_3";
     this._LBL_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_3.Size        = new System.Drawing.Size(34, 13);
     this._LBL_3.TabIndex    = 7;
     this._LBL_3.Text        = "Price:";
     this._LBL_3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._LBL_3.Visible     = false;
     //
     //_LBL_1
     //
     this._LBL_1.AutoSize    = true;
     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(24, 56);
     this._LBL_1.Name        = "_LBL_1";
     this._LBL_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._LBL_1.Size        = new System.Drawing.Size(92, 13);
     this._LBL_1.TabIndex    = 6;
     this._LBL_1.Text        = "Stock Item Name:";
     this._LBL_1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //lblStockItem
     //
     this.lblStockItem.BackColor   = System.Drawing.SystemColors.Control;
     this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblStockItem.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblStockItem.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblStockItem.Location    = new System.Drawing.Point(24, 72);
     this.lblStockItem.Name        = "lblStockItem";
     this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblStockItem.Size        = new System.Drawing.Size(358, 25);
     this.lblStockItem.TabIndex    = 3;
     this.lblStockItem.Text        = "Label1";
     //
     //frmBarcodeScaleItem
     //
     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(400, 145);
     this.ControlBox          = false;
     this.Controls.Add(this.txtQty);
     this.Controls.Add(this.txtPSize);
     this.Controls.Add(this.txtPack);
     this.Controls.Add(this.txtPriceS);
     this.Controls.Add(this.txtQtyT);
     this.Controls.Add(this.txtPrice);
     this.Controls.Add(this.cmbQuantity);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this._LBL_6);
     this.Controls.Add(this._LBL_4);
     this.Controls.Add(this._LBL_2);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.lblPComp);
     this.Controls.Add(this.lblSComp);
     this.Controls.Add(this.lblStockItemS);
     this.Controls.Add(this._LBL_5);
     this.Controls.Add(this._LBL_0);
     this.Controls.Add(this._LBL_3);
     this.Controls.Add(this._LBL_1);
     this.Controls.Add(this.lblStockItem);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.Location        = new System.Drawing.Point(3, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmBarcodeScaleItem";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Scale Item - Barcode printing";
     this.picButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 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._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_1       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._chkChannel_1   = new System.Windows.Forms.CheckBox();
     this._chkChannel_2   = new System.Windows.Forms.CheckBox();
     this._chkChannel_3   = new System.Windows.Forms.CheckBox();
     this._chkChannel_4   = new System.Windows.Forms.CheckBox();
     this._chkChannel_5   = new System.Windows.Forms.CheckBox();
     this._chkChannel_6   = new System.Windows.Forms.CheckBox();
     this._chkChannel_7   = new System.Windows.Forms.CheckBox();
     this._chkChannel_8   = new System.Windows.Forms.CheckBox();
     this._chkChannel_9   = new System.Windows.Forms.CheckBox();
     this._chkType_2      = new System.Windows.Forms.CheckBox();
     this._chkType_1      = new System.Windows.Forms.CheckBox();
     this._chkType_0      = new System.Windows.Forms.CheckBox();
     this.txtPrice        = new System.Windows.Forms.TextBox();
     this.cmbQuantity     = new System.Windows.Forms.ComboBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdClose        = new System.Windows.Forms.Button();
     this._lbl_4          = new System.Windows.Forms.Label();
     this._lbl_0          = new System.Windows.Forms.Label();
     this._lbl_3          = new System.Windows.Forms.Label();
     this._lbl_2          = new System.Windows.Forms.Label();
     this._lbl_1          = new System.Windows.Forms.Label();
     this.lblStockItem    = new System.Windows.Forms.Label();
     this.Shape1          = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
     this.picButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     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._Shape1_0,
         this._Shape1_1
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(465, 311);
     this.ShapeContainer1.TabIndex = 21;
     this.ShapeContainer1.TabStop  = false;
     //
     //_Shape1_0
     //
     this._Shape1_0.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_0.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_0.FillColor   = System.Drawing.Color.Black;
     this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
     this._Shape1_0.Location = new System.Drawing.Point(3, 190);
     this._Shape1_0.Name     = "_Shape1_0";
     this._Shape1_0.Size     = new System.Drawing.Size(196, 81);
     //
     //_Shape1_1
     //
     this._Shape1_1.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_1.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_1.FillColor   = System.Drawing.Color.Black;
     this.Shape1.SetIndex(this._Shape1_1, Convert.ToInt16(1));
     this._Shape1_1.Location = new System.Drawing.Point(204, 111);
     this._Shape1_1.Name     = "_Shape1_1";
     this._Shape1_1.Size     = new System.Drawing.Size(181, 186);
     //
     //_chkChannel_1
     //
     this._chkChannel_1.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_1.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_1.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_1.Location                = new System.Drawing.Point(216, 115);
     this._chkChannel_1.Name                    = "_chkChannel_1";
     this._chkChannel_1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_1.Size                    = new System.Drawing.Size(166, 23);
     this._chkChannel_1.TabIndex                = 11;
     this._chkChannel_1.Text                    = "1. POS";
     this._chkChannel_1.UseVisualStyleBackColor = false;
     //
     //_chkChannel_2
     //
     this._chkChannel_2.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_2.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_2.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_2.Location                = new System.Drawing.Point(216, 135);
     this._chkChannel_2.Name                    = "_chkChannel_2";
     this._chkChannel_2.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_2.Size                    = new System.Drawing.Size(166, 19);
     this._chkChannel_2.TabIndex                = 12;
     this._chkChannel_2.Text                    = "1. POS";
     this._chkChannel_2.UseVisualStyleBackColor = false;
     //
     //_chkChannel_3
     //
     this._chkChannel_3.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_3.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_3.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_3.Location                = new System.Drawing.Point(216, 155);
     this._chkChannel_3.Name                    = "_chkChannel_3";
     this._chkChannel_3.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_3.Size                    = new System.Drawing.Size(166, 16);
     this._chkChannel_3.TabIndex                = 13;
     this._chkChannel_3.Text                    = "1. POS";
     this._chkChannel_3.UseVisualStyleBackColor = false;
     //
     //_chkChannel_4
     //
     this._chkChannel_4.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_4.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_4.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_4.Location                = new System.Drawing.Point(216, 176);
     this._chkChannel_4.Name                    = "_chkChannel_4";
     this._chkChannel_4.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_4.Size                    = new System.Drawing.Size(166, 16);
     this._chkChannel_4.TabIndex                = 14;
     this._chkChannel_4.Text                    = "1. POS";
     this._chkChannel_4.UseVisualStyleBackColor = false;
     //
     //_chkChannel_5
     //
     this._chkChannel_5.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_5.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_5.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_5.Location                = new System.Drawing.Point(216, 198);
     this._chkChannel_5.Name                    = "_chkChannel_5";
     this._chkChannel_5.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_5.Size                    = new System.Drawing.Size(166, 16);
     this._chkChannel_5.TabIndex                = 15;
     this._chkChannel_5.Text                    = "1. POS";
     this._chkChannel_5.UseVisualStyleBackColor = false;
     //
     //_chkChannel_6
     //
     this._chkChannel_6.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_6.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_6.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_6.Location                = new System.Drawing.Point(216, 218);
     this._chkChannel_6.Name                    = "_chkChannel_6";
     this._chkChannel_6.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_6.Size                    = new System.Drawing.Size(166, 17);
     this._chkChannel_6.TabIndex                = 16;
     this._chkChannel_6.Text                    = "1. POS";
     this._chkChannel_6.UseVisualStyleBackColor = false;
     //
     //_chkChannel_7
     //
     this._chkChannel_7.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_7.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_7.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_7.Location                = new System.Drawing.Point(216, 240);
     this._chkChannel_7.Name                    = "_chkChannel_7";
     this._chkChannel_7.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_7.Size                    = new System.Drawing.Size(166, 16);
     this._chkChannel_7.TabIndex                = 17;
     this._chkChannel_7.Text                    = "1. POS";
     this._chkChannel_7.UseVisualStyleBackColor = false;
     //
     //_chkChannel_8
     //
     this._chkChannel_8.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_8.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_8.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_8.Location                = new System.Drawing.Point(216, 260);
     this._chkChannel_8.Name                    = "_chkChannel_8";
     this._chkChannel_8.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_8.Size                    = new System.Drawing.Size(166, 16);
     this._chkChannel_8.TabIndex                = 18;
     this._chkChannel_8.Text                    = "1. POS";
     this._chkChannel_8.UseVisualStyleBackColor = false;
     //
     //_chkChannel_9
     //
     this._chkChannel_9.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkChannel_9.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkChannel_9.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkChannel_9.Location                = new System.Drawing.Point(216, 278);
     this._chkChannel_9.Name                    = "_chkChannel_9";
     this._chkChannel_9.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkChannel_9.Size                    = new System.Drawing.Size(166, 20);
     this._chkChannel_9.TabIndex                = 19;
     this._chkChannel_9.Text                    = "1. POS";
     this._chkChannel_9.UseVisualStyleBackColor = false;
     //
     //_chkType_2
     //
     this._chkType_2.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkType_2.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this._chkType_2.Checked                 = true;
     this._chkType_2.CheckState              = System.Windows.Forms.CheckState.Checked;
     this._chkType_2.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkType_2.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkType_2.Location                = new System.Drawing.Point(6, 246);
     this._chkType_2.Name                    = "_chkType_2";
     this._chkType_2.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkType_2.Size                    = new System.Drawing.Size(187, 19);
     this._chkType_2.TabIndex                = 9;
     this._chkType_2.Text                    = "Not Valid for Cheque Payments";
     this._chkType_2.UseVisualStyleBackColor = false;
     //
     //_chkType_1
     //
     this._chkType_1.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkType_1.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this._chkType_1.Checked                 = true;
     this._chkType_1.CheckState              = System.Windows.Forms.CheckState.Checked;
     this._chkType_1.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkType_1.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkType_1.Location                = new System.Drawing.Point(6, 223);
     this._chkType_1.Name                    = "_chkType_1";
     this._chkType_1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkType_1.Size                    = new System.Drawing.Size(187, 17);
     this._chkType_1.TabIndex                = 8;
     this._chkType_1.Text                    = "Not Valid for Debit Cards Payments";
     this._chkType_1.UseVisualStyleBackColor = false;
     //
     //_chkType_0
     //
     this._chkType_0.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkType_0.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this._chkType_0.Checked                 = true;
     this._chkType_0.CheckState              = System.Windows.Forms.CheckState.Checked;
     this._chkType_0.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkType_0.ForeColor               = System.Drawing.SystemColors.ControlText;
     this._chkType_0.Location                = new System.Drawing.Point(6, 201);
     this._chkType_0.Name                    = "_chkType_0";
     this._chkType_0.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkType_0.Size                    = new System.Drawing.Size(187, 21);
     this._chkType_0.TabIndex                = 7;
     this._chkType_0.Text                    = "Not Valid for Credit Card Payments";
     this._chkType_0.UseVisualStyleBackColor = false;
     //
     //txtPrice
     //
     this.txtPrice.AcceptsReturn = true;
     this.txtPrice.BackColor     = System.Drawing.SystemColors.Window;
     this.txtPrice.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPrice.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPrice.Location      = new System.Drawing.Point(111, 87);
     this.txtPrice.MaxLength     = 0;
     this.txtPrice.Name          = "txtPrice";
     this.txtPrice.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPrice.Size          = new System.Drawing.Size(79, 19);
     this.txtPrice.TabIndex      = 5;
     this.txtPrice.Text          = "0.00";
     this.txtPrice.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //cmbQuantity
     //
     this.cmbQuantity.BackColor     = System.Drawing.SystemColors.Window;
     this.cmbQuantity.Cursor        = System.Windows.Forms.Cursors.Default;
     this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbQuantity.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.cmbQuantity.Location      = new System.Drawing.Point(111, 63);
     this.cmbQuantity.Name          = "cmbQuantity";
     this.cmbQuantity.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.cmbQuantity.Size          = new System.Drawing.Size(79, 21);
     this.cmbQuantity.TabIndex      = 3;
     //
     //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(465, 39);
     this.picButtons.TabIndex    = 20;
     //
     //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(303, 3);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(73, 29);
     this.cmdClose.TabIndex                = 21;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "E&xit";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //_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(6, 155);
     this._lbl_4.Name        = "_lbl_4";
     this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_4.Size        = new System.Drawing.Size(189, 34);
     this._lbl_4.TabIndex    = 6;
     this._lbl_4.Text        = "This Cash Transaction does not apply to the following payment methods.";
     //
     //_lbl_0
     //
     this._lbl_0.BackColor   = System.Drawing.Color.Transparent;
     this._lbl_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lbl_0.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Location    = new System.Drawing.Point(207, 63);
     this._lbl_0.Name        = "_lbl_0";
     this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.Size        = new System.Drawing.Size(177, 43);
     this._lbl_0.TabIndex    = 10;
     this._lbl_0.Text        = "Disabled this Cash Transaction for the following checked Sale Channels.";
     //
     //_lbl_3
     //
     this._lbl_3.AutoSize    = true;
     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(73, 90);
     this._lbl_3.Name        = "_lbl_3";
     this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_3.Size        = new System.Drawing.Size(34, 13);
     this._lbl_3.TabIndex    = 4;
     this._lbl_3.Text        = "Price:";
     this._lbl_3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lbl_2
     //
     this._lbl_2.AutoSize    = true;
     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(39, 66);
     this._lbl_2.Name        = "_lbl_2";
     this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_2.Size        = new System.Drawing.Size(63, 13);
     this._lbl_2.TabIndex    = 2;
     this._lbl_2.Text        = "Shrink Size:";
     this._lbl_2.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lbl_1
     //
     this._lbl_1.AutoSize    = true;
     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(6, 45);
     this._lbl_1.Name        = "_lbl_1";
     this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_1.Size        = new System.Drawing.Size(92, 13);
     this._lbl_1.TabIndex    = 0;
     this._lbl_1.Text        = "Stock Item Name:";
     this._lbl_1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //lblStockItem
     //
     this.lblStockItem.BackColor   = System.Drawing.SystemColors.Control;
     this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblStockItem.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblStockItem.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblStockItem.Location    = new System.Drawing.Point(111, 45);
     this.lblStockItem.Name        = "lblStockItem";
     this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblStockItem.Size        = new System.Drawing.Size(274, 17);
     this.lblStockItem.TabIndex    = 1;
     this.lblStockItem.Text        = "Label1";
     //
     //frmCashTransactionItem
     //
     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(465, 311);
     this.ControlBox          = false;
     this.Controls.Add(this._chkChannel_1);
     this.Controls.Add(this._chkChannel_2);
     this.Controls.Add(this._chkChannel_3);
     this.Controls.Add(this._chkChannel_4);
     this.Controls.Add(this._chkChannel_5);
     this.Controls.Add(this._chkChannel_6);
     this.Controls.Add(this._chkChannel_7);
     this.Controls.Add(this._chkChannel_8);
     this.Controls.Add(this._chkChannel_9);
     this.Controls.Add(this._chkType_2);
     this.Controls.Add(this._chkType_1);
     this.Controls.Add(this._chkType_0);
     this.Controls.Add(this.txtPrice);
     this.Controls.Add(this.cmbQuantity);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this._lbl_4);
     this.Controls.Add(this._lbl_0);
     this.Controls.Add(this._lbl_3);
     this.Controls.Add(this._lbl_2);
     this.Controls.Add(this._lbl_1);
     this.Controls.Add(this.lblStockItem);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.Location        = new System.Drawing.Point(3, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmCashTransactionItem";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Edit a Cash Transaction Item";
     this.picButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 22
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPrintGroup));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this._txtInteger_0   = new System.Windows.Forms.TextBox();
     this._txtFields_0    = new System.Windows.Forms.TextBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this._lblLabels_0    = new System.Windows.Forms.Label();
     this._lblLabels_38   = new System.Windows.Forms.Label();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._lbl_5          = new System.Windows.Forms.Label();
     //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)
     //Me.txtInteger = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.txtFields, 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 Print Group Item";
     this.ClientSize                     = new System.Drawing.Size(455, 109);
     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                           = "frmPrintGroup";
     this._txtInteger_0.AutoSize         = false;
     this._txtInteger_0.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtInteger_0.Size             = new System.Drawing.Size(64, 19);
     this._txtInteger_0.Location         = new System.Drawing.Point(375, 66);
     this._txtInteger_0.TabIndex         = 3;
     this._txtInteger_0.Text             = "9,999.99";
     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(195, 19);
     this._txtFields_0.Location          = new System.Drawing.Point(114, 66);
     this._txtFields_0.TabIndex          = 1;
     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(455, 39);
     this.picButtons.Location            = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex            = 6;
     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.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             = 5;
     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(372, 3);
     this.cmdClose.TabIndex              = 4;
     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._lblLabels_0.TextAlign         = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_0.Text              = "Order:";
     this._lblLabels_0.Size              = new System.Drawing.Size(29, 13);
     this._lblLabels_0.Location          = new System.Drawing.Point(341, 69);
     this._lblLabels_0.TabIndex          = 2;
     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._lblLabels_38.TextAlign        = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_38.Text             = "Print Group Name:";
     this._lblLabels_38.Size             = new System.Drawing.Size(87, 13);
     this._lblLabels_38.Location         = new System.Drawing.Point(22, 69);
     this._lblLabels_38.TabIndex         = 0;
     this._lblLabels_38.BackColor        = System.Drawing.Color.Transparent;
     this._lblLabels_38.Enabled          = true;
     this._lblLabels_38.ForeColor        = System.Drawing.SystemColors.ControlText;
     this._lblLabels_38.Cursor           = System.Windows.Forms.Cursors.Default;
     this._lblLabels_38.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_38.UseMnemonic      = true;
     this._lblLabels_38.Visible          = true;
     this._lblLabels_38.AutoSize         = true;
     this._lblLabels_38.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_38.Name             = "_lblLabels_38";
     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(430, 31);
     this._Shape1_2.Location             = new System.Drawing.Point(15, 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.Size                    = new System.Drawing.Size(60, 13);
     this._lbl_5.Location                = new System.Drawing.Point(15, 45);
     this._lbl_5.TabIndex                = 7;
     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.Controls.Add(_txtInteger_0);
     this.Controls.Add(_txtFields_0);
     this.Controls.Add(picButtons);
     this.Controls.Add(_lblLabels_0);
     this.Controls.Add(_lblLabels_38);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this.Controls.Add(_lbl_5);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdCancel);
     this.picButtons.Controls.Add(cmdClose);
     //Me.lbl.SetIndex(_lbl_5, CType(5, Short))
     //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
     //Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short))
     //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
     //Me.txtInteger.SetIndex(_txtInteger_0, CType(0, Short))
     this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		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._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.txtCustomer = new System.Windows.Forms.TextBox();
			this.cmbPOS = new System.Windows.Forms.ComboBox();
			this.txtStock = new System.Windows.Forms.TextBox();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdProfit = new System.Windows.Forms.Button();
			this.txtSerial = new System.Windows.Forms.TextBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.cmbTerms = new System.Windows.Forms.ComboBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_3 = new System.Windows.Forms.TextBox();
			this._txtFields_4 = new System.Windows.Forms.TextBox();
			this._txtFields_5 = new System.Windows.Forms.TextBox();
			this._txtFields_6 = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this._txtFields_9 = new System.Windows.Forms.TextBox();
			this._txtFields_10 = new System.Windows.Forms.TextBox();
			this._chkFields_11 = new System.Windows.Forms.CheckBox();
			this._txtFloat_12 = new System.Windows.Forms.TextBox();
			this._txtFloat_13 = new System.Windows.Forms.TextBox();
			this._txtFloat_14 = new System.Windows.Forms.TextBox();
			this._txtFloat_15 = new System.Windows.Forms.TextBox();
			this._txtFloat_16 = new System.Windows.Forms.TextBox();
			this._txtFloat_17 = new System.Windows.Forms.TextBox();
			this._txtFloat_18 = new System.Windows.Forms.TextBox();
			this._chkFields_19 = new System.Windows.Forms.CheckBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdSearch = new System.Windows.Forms.Button();
			this.cmbMonth = new System.Windows.Forms.ComboBox();
			this.cmdPrintHistory = new System.Windows.Forms.Button();
			this.cmdInv = new System.Windows.Forms.Button();
			this.cmdShowHistory = new System.Windows.Forms.Button();
			this.cmdStatement = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbChannel = new _4PosBackOffice.NET.myDataGridView();
			this.lvTransaction = new System.Windows.Forms.ListView();
			this._lvTransaction_ColumnHeader_1 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_2 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_3 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_4 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_5 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblcount = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_12 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lblLabels_15 = new System.Windows.Forms.Label();
			this._lblLabels_17 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_14 = new System.Windows.Forms.Label();
			this._lblLabels_16 = new System.Windows.Forms.Label();
			this._lblLabels_18 = new System.Windows.Forms.Label();
			this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
			this.picButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			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._Shape1_0,
				this._Shape1_1
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(659, 653);
			this.ShapeContainer1.TabIndex = 61;
			this.ShapeContainer1.TabStop = false;
			//
			//_Shape1_0
			//
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
			this._Shape1_0.Location = new System.Drawing.Point(342, 57);
			this._Shape1_0.Name = "_Shape1_0";
			this._Shape1_0.Size = new System.Drawing.Size(310, 200);
			//
			//_Shape1_1
			//
			this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_1, Convert.ToInt16(1));
			this._Shape1_1.Location = new System.Drawing.Point(6, 57);
			this._Shape1_1.Name = "_Shape1_1";
			this._Shape1_1.Size = new System.Drawing.Size(328, 200);
			//
			//txtCustomer
			//
			this.txtCustomer.AcceptsReturn = true;
			this.txtCustomer.BackColor = System.Drawing.SystemColors.Window;
			this.txtCustomer.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCustomer.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCustomer.Location = new System.Drawing.Point(729, 266);
			this.txtCustomer.MaxLength = 0;
			this.txtCustomer.Name = "txtCustomer";
			this.txtCustomer.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCustomer.Size = new System.Drawing.Size(112, 19);
			this.txtCustomer.TabIndex = 54;
			//
			//cmbPOS
			//
			this.cmbPOS.BackColor = System.Drawing.SystemColors.Window;
			this.cmbPOS.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbPOS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbPOS.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbPOS.Location = new System.Drawing.Point(729, 227);
			this.cmbPOS.Name = "cmbPOS";
			this.cmbPOS.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbPOS.Size = new System.Drawing.Size(112, 21);
			this.cmbPOS.TabIndex = 53;
			//
			//txtStock
			//
			this.txtStock.AcceptsReturn = true;
			this.txtStock.BackColor = System.Drawing.SystemColors.Window;
			this.txtStock.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtStock.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtStock.Location = new System.Drawing.Point(729, 302);
			this.txtStock.MaxLength = 0;
			this.txtStock.Name = "txtStock";
			this.txtStock.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtStock.Size = new System.Drawing.Size(112, 19);
			this.txtStock.TabIndex = 52;
			//
			//cmdPrint
			//
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Location = new System.Drawing.Point(750, 480);
			this.cmdPrint.Name = "cmdPrint";
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Size = new System.Drawing.Size(94, 28);
			this.cmdPrint.TabIndex = 50;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.UseVisualStyleBackColor = false;
			//
			//cmdProfit
			//
			this.cmdProfit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdProfit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdProfit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdProfit.Location = new System.Drawing.Point(752, 526);
			this.cmdProfit.Name = "cmdProfit";
			this.cmdProfit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdProfit.Size = new System.Drawing.Size(94, 28);
			this.cmdProfit.TabIndex = 49;
			this.cmdProfit.TabStop = false;
			this.cmdProfit.Text = "&Detail Profit";
			this.cmdProfit.UseVisualStyleBackColor = false;
			//
			//txtSerial
			//
			this.txtSerial.AcceptsReturn = true;
			this.txtSerial.BackColor = System.Drawing.SystemColors.Window;
			this.txtSerial.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSerial.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSerial.Location = new System.Drawing.Point(730, 336);
			this.txtSerial.MaxLength = 0;
			this.txtSerial.Name = "txtSerial";
			this.txtSerial.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSerial.Size = new System.Drawing.Size(112, 19);
			this.txtSerial.TabIndex = 48;
			//
			//_txtFields_0
			//
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.Enabled = false;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.Location = new System.Drawing.Point(924, 238);
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Name = "_txtFields_0";
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.Size = new System.Drawing.Size(226, 19);
			this._txtFields_0.TabIndex = 44;
			//
			//cmbTerms
			//
			this.cmbTerms.BackColor = System.Drawing.SystemColors.Window;
			this.cmbTerms.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbTerms.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbTerms.Enabled = false;
			this.cmbTerms.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbTerms.Items.AddRange(new object[] {
				"C.O.D.",
				"Current",
				"30 Days",
				"60 Days",
				"90 Days"
			});
			this.cmbTerms.Location = new System.Drawing.Point(567, 63);
			this.cmbTerms.Name = "cmbTerms";
			this.cmbTerms.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbTerms.Size = new System.Drawing.Size(79, 21);
			this.cmbTerms.TabIndex = 23;
			//
			//_txtFields_2
			//
			this._txtFields_2.AcceptsReturn = true;
			this._txtFields_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_2.Location = new System.Drawing.Point(102, 63);
			this._txtFields_2.MaxLength = 0;
			this._txtFields_2.Name = "_txtFields_2";
			this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_2.Size = new System.Drawing.Size(226, 19);
			this._txtFields_2.TabIndex = 2;
			//
			//_txtFields_3
			//
			this._txtFields_3.AcceptsReturn = true;
			this._txtFields_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_3.Location = new System.Drawing.Point(102, 84);
			this._txtFields_3.MaxLength = 0;
			this._txtFields_3.Name = "_txtFields_3";
			this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_3.Size = new System.Drawing.Size(226, 19);
			this._txtFields_3.TabIndex = 4;
			//
			//_txtFields_4
			//
			this._txtFields_4.AcceptsReturn = true;
			this._txtFields_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_4.Location = new System.Drawing.Point(15, 120);
			this._txtFields_4.MaxLength = 0;
			this._txtFields_4.Name = "_txtFields_4";
			this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_4.Size = new System.Drawing.Size(157, 19);
			this._txtFields_4.TabIndex = 6;
			//
			//_txtFields_5
			//
			this._txtFields_5.AcceptsReturn = true;
			this._txtFields_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_5.Location = new System.Drawing.Point(174, 120);
			this._txtFields_5.MaxLength = 0;
			this._txtFields_5.Name = "_txtFields_5";
			this._txtFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_5.Size = new System.Drawing.Size(154, 19);
			this._txtFields_5.TabIndex = 8;
			//
			//_txtFields_6
			//
			this._txtFields_6.AcceptsReturn = true;
			this._txtFields_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_6.Location = new System.Drawing.Point(102, 195);
			this._txtFields_6.MaxLength = 0;
			this._txtFields_6.Multiline = true;
			this._txtFields_6.Name = "_txtFields_6";
			this._txtFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_6.Size = new System.Drawing.Size(226, 58);
			this._txtFields_6.TabIndex = 16;
			//
			//_txtFields_7
			//
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.Location = new System.Drawing.Point(422, 195);
			this._txtFields_7.MaxLength = 0;
			this._txtFields_7.Multiline = true;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.Size = new System.Drawing.Size(226, 58);
			this._txtFields_7.TabIndex = 18;
			//
			//_txtFields_8
			//
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.Location = new System.Drawing.Point(102, 144);
			this._txtFields_8.MaxLength = 0;
			this._txtFields_8.Name = "_txtFields_8";
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.Size = new System.Drawing.Size(226, 19);
			this._txtFields_8.TabIndex = 10;
			//
			//_txtFields_9
			//
			this._txtFields_9.AcceptsReturn = true;
			this._txtFields_9.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_9.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_9.Location = new System.Drawing.Point(422, 170);
			this._txtFields_9.MaxLength = 0;
			this._txtFields_9.Name = "_txtFields_9";
			this._txtFields_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_9.Size = new System.Drawing.Size(226, 19);
			this._txtFields_9.TabIndex = 12;
			//
			//_txtFields_10
			//
			this._txtFields_10.AcceptsReturn = true;
			this._txtFields_10.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_10.Location = new System.Drawing.Point(102, 170);
			this._txtFields_10.MaxLength = 0;
			this._txtFields_10.Name = "_txtFields_10";
			this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_10.Size = new System.Drawing.Size(226, 19);
			this._txtFields_10.TabIndex = 14;
			//
			//_chkFields_11
			//
			this._chkFields_11.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_11.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_11.Location = new System.Drawing.Point(829, 83);
			this._chkFields_11.Name = "_chkFields_11";
			this._chkFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_11.Size = new System.Drawing.Size(214, 19);
			this._chkFields_11.TabIndex = 11;
			this._chkFields_11.Text = "Disable this customer from Point Of Sale:";
			this._chkFields_11.UseVisualStyleBackColor = false;
			//
			//_txtFloat_12
			//
			this._txtFloat_12.AcceptsReturn = true;
			this._txtFloat_12.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_12.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_12.Enabled = false;
			this._txtFloat_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_12.Location = new System.Drawing.Point(423, 63);
			this._txtFloat_12.MaxLength = 0;
			this._txtFloat_12.Name = "_txtFloat_12";
			this._txtFloat_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_12.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_12.TabIndex = 21;
			this._txtFloat_12.Text = "9,999,999.00";
			this._txtFloat_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_13
			//
			this._txtFloat_13.AcceptsReturn = true;
			this._txtFloat_13.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_13.Enabled = false;
			this._txtFloat_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_13.Location = new System.Drawing.Point(423, 87);
			this._txtFloat_13.MaxLength = 0;
			this._txtFloat_13.Name = "_txtFloat_13";
			this._txtFloat_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_13.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_13.TabIndex = 25;
			this._txtFloat_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_14
			//
			this._txtFloat_14.AcceptsReturn = true;
			this._txtFloat_14.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_14.Enabled = false;
			this._txtFloat_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_14.Location = new System.Drawing.Point(567, 87);
			this._txtFloat_14.MaxLength = 0;
			this._txtFloat_14.Name = "_txtFloat_14";
			this._txtFloat_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_14.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_14.TabIndex = 27;
			this._txtFloat_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_15
			//
			this._txtFloat_15.AcceptsReturn = true;
			this._txtFloat_15.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_15.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_15.Enabled = false;
			this._txtFloat_15.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_15.Location = new System.Drawing.Point(423, 108);
			this._txtFloat_15.MaxLength = 0;
			this._txtFloat_15.Name = "_txtFloat_15";
			this._txtFloat_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_15.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_15.TabIndex = 29;
			this._txtFloat_15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_16
			//
			this._txtFloat_16.AcceptsReturn = true;
			this._txtFloat_16.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_16.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_16.Enabled = false;
			this._txtFloat_16.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_16.Location = new System.Drawing.Point(567, 108);
			this._txtFloat_16.MaxLength = 0;
			this._txtFloat_16.Name = "_txtFloat_16";
			this._txtFloat_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_16.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_16.TabIndex = 31;
			this._txtFloat_16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_17
			//
			this._txtFloat_17.AcceptsReturn = true;
			this._txtFloat_17.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_17.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_17.Enabled = false;
			this._txtFloat_17.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_17.Location = new System.Drawing.Point(423, 129);
			this._txtFloat_17.MaxLength = 0;
			this._txtFloat_17.Name = "_txtFloat_17";
			this._txtFloat_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_17.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_17.TabIndex = 33;
			this._txtFloat_17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_18
			//
			this._txtFloat_18.AcceptsReturn = true;
			this._txtFloat_18.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_18.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_18.Enabled = false;
			this._txtFloat_18.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_18.Location = new System.Drawing.Point(567, 129);
			this._txtFloat_18.MaxLength = 0;
			this._txtFloat_18.Name = "_txtFloat_18";
			this._txtFloat_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_18.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_18.TabIndex = 35;
			this._txtFloat_18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_chkFields_19
			//
			this._chkFields_19.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_19.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_19.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_19.Location = new System.Drawing.Point(811, 65);
			this._chkFields_19.Name = "_chkFields_19";
			this._chkFields_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_19.Size = new System.Drawing.Size(232, 19);
			this._chkFields_19.TabIndex = 19;
			this._chkFields_19.Text = "Automatically print a statement at monthend:";
			this._chkFields_19.UseVisualStyleBackColor = false;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdSearch);
			this.picButtons.Controls.Add(this.cmbMonth);
			this.picButtons.Controls.Add(this.cmdPrintHistory);
			this.picButtons.Controls.Add(this.cmdInv);
			this.picButtons.Controls.Add(this.cmdShowHistory);
			this.picButtons.Controls.Add(this.cmdStatement);
			this.picButtons.Controls.Add(this.cmdCancel);
			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(659, 38);
			this.picButtons.TabIndex = 42;
			//
			//cmdSearch
			//
			this.cmdSearch.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSearch.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSearch.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSearch.Location = new System.Drawing.Point(368, 3);
			this.cmdSearch.Name = "cmdSearch";
			this.cmdSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSearch.Size = new System.Drawing.Size(57, 28);
			this.cmdSearch.TabIndex = 64;
			this.cmdSearch.Text = "<< Show ";
			this.cmdSearch.UseVisualStyleBackColor = false;
			//
			//cmbMonth
			//
			this.cmbMonth.BackColor = System.Drawing.SystemColors.Window;
			this.cmbMonth.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbMonth.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbMonth.Location = new System.Drawing.Point(248, 8);
			this.cmbMonth.Name = "cmbMonth";
			this.cmbMonth.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbMonth.Size = new System.Drawing.Size(112, 21);
			this.cmbMonth.TabIndex = 62;
			//
			//cmdPrintHistory
			//
			this.cmdPrintHistory.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrintHistory.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrintHistory.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrintHistory.Location = new System.Drawing.Point(480, 3);
			this.cmdPrintHistory.Name = "cmdPrintHistory";
			this.cmdPrintHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrintHistory.Size = new System.Drawing.Size(105, 29);
			this.cmdPrintHistory.TabIndex = 61;
			this.cmdPrintHistory.TabStop = false;
			this.cmdPrintHistory.Text = "&Print Full History";
			this.cmdPrintHistory.UseVisualStyleBackColor = false;
			//
			//cmdInv
			//
			this.cmdInv.BackColor = System.Drawing.SystemColors.Control;
			this.cmdInv.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdInv.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdInv.Location = new System.Drawing.Point(184, 3);
			this.cmdInv.Name = "cmdInv";
			this.cmdInv.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdInv.Size = new System.Drawing.Size(57, 29);
			this.cmdInv.TabIndex = 47;
			this.cmdInv.TabStop = false;
			this.cmdInv.Text = "&Print";
			this.cmdInv.UseVisualStyleBackColor = false;
			//
			//cmdShowHistory
			//
			this.cmdShowHistory.BackColor = System.Drawing.SystemColors.Control;
			this.cmdShowHistory.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdShowHistory.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdShowHistory.Location = new System.Drawing.Point(72, 3);
			this.cmdShowHistory.Name = "cmdShowHistory";
			this.cmdShowHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdShowHistory.Size = new System.Drawing.Size(105, 29);
			this.cmdShowHistory.TabIndex = 46;
			this.cmdShowHistory.TabStop = false;
			this.cmdShowHistory.Text = "&Show Full History";
			this.cmdShowHistory.UseVisualStyleBackColor = false;
			//
			//cmdStatement
			//
			this.cmdStatement.BackColor = System.Drawing.SystemColors.Control;
			this.cmdStatement.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdStatement.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdStatement.Location = new System.Drawing.Point(656, 3);
			this.cmdStatement.Name = "cmdStatement";
			this.cmdStatement.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdStatement.Size = new System.Drawing.Size(73, 29);
			this.cmdStatement.TabIndex = 43;
			this.cmdStatement.TabStop = false;
			this.cmdStatement.Text = "&Statement";
			this.cmdStatement.UseVisualStyleBackColor = false;
			this.cmdStatement.Visible = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(57, 29);
			this.cmdCancel.TabIndex = 40;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//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(592, 3);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(57, 29);
			this.cmdClose.TabIndex = 41;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//cmbChannel
			//
			this.cmbChannel.AllowAddNew = true;
			this.cmbChannel.BoundText = "";
			this.cmbChannel.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbChannel.Col = 0;
			this.cmbChannel.CtlText = "";
			this.cmbChannel.DataField = null;
			this.cmbChannel.Location = new System.Drawing.Point(823, 38);
			this.cmbChannel.Name = "cmbChannel";
			this.cmbChannel.row = 0;
			this.cmbChannel.Size = new System.Drawing.Size(223, 21);
			this.cmbChannel.TabIndex = 37;
			this.cmbChannel.TopRow = 0;
			//
			//lvTransaction
			//
			this.lvTransaction.BackColor = System.Drawing.SystemColors.Window;
			this.lvTransaction.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
				this._lvTransaction_ColumnHeader_1,
				this._lvTransaction_ColumnHeader_2,
				this._lvTransaction_ColumnHeader_3,
				this._lvTransaction_ColumnHeader_4,
				this._lvTransaction_ColumnHeader_5
			});
			this.lvTransaction.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lvTransaction.FullRowSelect = true;
			this.lvTransaction.GridLines = true;
			this.lvTransaction.HideSelection = false;
			this.lvTransaction.LabelWrap = false;
			this.lvTransaction.Location = new System.Drawing.Point(8, 264);
			this.lvTransaction.Name = "lvTransaction";
			this.lvTransaction.Size = new System.Drawing.Size(646, 385);
			this.lvTransaction.TabIndex = 51;
			this.lvTransaction.UseCompatibleStateImageBehavior = false;
			this.lvTransaction.View = System.Windows.Forms.View.Details;
			//
			//_lvTransaction_ColumnHeader_1
			//
			this._lvTransaction_ColumnHeader_1.Text = "Date";
			this._lvTransaction_ColumnHeader_1.Width = 200;
			//
			//_lvTransaction_ColumnHeader_2
			//
			this._lvTransaction_ColumnHeader_2.Text = "Reference";
			this._lvTransaction_ColumnHeader_2.Width = 294;
			//
			//_lvTransaction_ColumnHeader_3
			//
			this._lvTransaction_ColumnHeader_3.Text = "Type";
			this._lvTransaction_ColumnHeader_3.Width = 200;
			//
			//_lvTransaction_ColumnHeader_4
			//
			this._lvTransaction_ColumnHeader_4.Text = "Debit";
			this._lvTransaction_ColumnHeader_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvTransaction_ColumnHeader_4.Width = 118;
			//
			//_lvTransaction_ColumnHeader_5
			//
			this._lvTransaction_ColumnHeader_5.Text = "Credit";
			this._lvTransaction_ColumnHeader_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvTransaction_ColumnHeader_5.Width = 118;
			//
			//_lbl_6
			//
			this._lbl_6.AutoSize = true;
			this._lbl_6.BackColor = System.Drawing.Color.Transparent;
			this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_6.Location = new System.Drawing.Point(729, 192);
			this._lbl_6.Name = "_lbl_6";
			this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_6.Size = new System.Drawing.Size(49, 13);
			this._lbl_6.TabIndex = 6;
			this._lbl_6.Text = "&1. Month";
			//
			//lblcount
			//
			this.lblcount.AutoSize = true;
			this.lblcount.BackColor = System.Drawing.SystemColors.Control;
			this.lblcount.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblcount.Font = new System.Drawing.Font("Arial", 13.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblcount.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblcount.Location = new System.Drawing.Point(791, 442);
			this.lblcount.Name = "lblcount";
			this.lblcount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblcount.Size = new System.Drawing.Size(57, 21);
			this.lblcount.TabIndex = 60;
			this.lblcount.Text = "0 of 0";
			this.lblcount.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.AutoSize = true;
			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(729, 212);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(81, 13);
			this._lbl_5.TabIndex = 5;
			this._lbl_5.Text = "&2. Point Of Sale";
			//
			//_lbl_2
			//
			this._lbl_2.AutoSize = true;
			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(729, 251);
			this._lbl_2.Name = "_lbl_2";
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.Size = new System.Drawing.Size(92, 13);
			this._lbl_2.TabIndex = 2;
			this._lbl_2.Text = "&3. Customer name";
			//
			//_lbl_3
			//
			this._lbl_3.AutoSize = true;
			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(729, 287);
			this._lbl_3.Name = "_lbl_3";
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.Size = new System.Drawing.Size(101, 13);
			this._lbl_3.TabIndex = 3;
			this._lbl_3.Text = "&4. Stock Item Name";
			//
			//_lbl_4
			//
			this._lbl_4.AutoSize = true;
			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(736, 416);
			this._lbl_4.Name = "_lbl_4";
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.Size = new System.Drawing.Size(101, 13);
			this._lbl_4.TabIndex = 4;
			this._lbl_4.Text = "&4. Stock Item Name";
			//
			//Label1
			//
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(729, 322);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(99, 15);
			this.Label1.TabIndex = 55;
			this.Label1.Text = "&5: Serial Number";
			//
			//_lblLabels_11
			//
			this._lblLabels_11.AutoSize = true;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_11.Location = new System.Drawing.Point(855, 241);
			this._lblLabels_11.Name = "_lblLabels_11";
			this._lblLabels_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_11.Size = new System.Drawing.Size(71, 13);
			this._lblLabels_11.TabIndex = 11;
			this._lblLabels_11.Text = "VAT Number:";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_0
			//
			this._lbl_0.AutoSize = true;
			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(342, 42);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(73, 14);
			this._lbl_0.TabIndex = 0;
			this._lbl_0.Text = "&2. Financials";
			//
			//_lblLabels_12
			//
			this._lblLabels_12.AutoSize = true;
			this._lblLabels_12.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_12.Location = new System.Drawing.Point(363, 66);
			this._lblLabels_12.Name = "_lblLabels_12";
			this._lblLabels_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_12.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_12.TabIndex = 12;
			this._lblLabels_12.Text = "Credit Limit:";
			this._lblLabels_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_13
			//
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_13.Location = new System.Drawing.Point(381, 90);
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.Size = new System.Drawing.Size(44, 13);
			this._lblLabels_13.TabIndex = 13;
			this._lblLabels_13.Text = "Current:";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_15
			//
			this._lblLabels_15.AutoSize = true;
			this._lblLabels_15.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_15.Location = new System.Drawing.Point(375, 111);
			this._lblLabels_15.Name = "_lblLabels_15";
			this._lblLabels_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_15.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_15.TabIndex = 15;
			this._lblLabels_15.Text = "60 Days:";
			this._lblLabels_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_17
			//
			this._lblLabels_17.AutoSize = true;
			this._lblLabels_17.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_17.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_17.Location = new System.Drawing.Point(369, 132);
			this._lblLabels_17.Name = "_lblLabels_17";
			this._lblLabels_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_17.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_17.TabIndex = 17;
			this._lblLabels_17.Text = "120 Days:";
			this._lblLabels_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_0
			//
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Location = new System.Drawing.Point(530, 66);
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_0.TabIndex = 0;
			this._lblLabels_0.Text = "Terms:";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_1
			//
			this._lbl_1.AutoSize = true;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Location = new System.Drawing.Point(6, 42);
			this._lbl_1.Name = "_lbl_1";
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.Size = new System.Drawing.Size(62, 14);
			this._lbl_1.TabIndex = 1;
			this._lbl_1.Text = "&1. General";
			//
			//_lblLabels_1
			//
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Location = new System.Drawing.Point(755, 44);
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.Size = new System.Drawing.Size(73, 13);
			this._lblLabels_1.TabIndex = 1;
			this._lblLabels_1.Text = "Sale Channel:";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_2
			//
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Location = new System.Drawing.Point(12, 63);
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.Size = new System.Drawing.Size(83, 14);
			this._lblLabels_2.TabIndex = 2;
			this._lblLabels_2.Text = "Invoice Name:";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_3
			//
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Location = new System.Drawing.Point(36, 84);
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.Size = new System.Drawing.Size(65, 13);
			this._lblLabels_3.TabIndex = 3;
			this._lblLabels_3.Text = "Department:";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_4
			//
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Location = new System.Drawing.Point(9, 108);
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.Size = new System.Drawing.Size(156, 14);
			this._lblLabels_4.TabIndex = 4;
			this._lblLabels_4.Text = "Responsible Person Name:";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_5
			//
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Location = new System.Drawing.Point(174, 108);
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.Size = new System.Drawing.Size(60, 14);
			this._lblLabels_5.TabIndex = 5;
			this._lblLabels_5.Text = "Surname:";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_6
			//
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Location = new System.Drawing.Point(11, 197);
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.Size = new System.Drawing.Size(90, 13);
			this._lblLabels_6.TabIndex = 6;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_7
			//
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Location = new System.Drawing.Point(347, 195);
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.Size = new System.Drawing.Size(80, 13);
			this._lblLabels_7.TabIndex = 7;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_8
			//
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Location = new System.Drawing.Point(42, 144);
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_8.TabIndex = 8;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_9
			//
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Location = new System.Drawing.Point(395, 170);
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.Size = new System.Drawing.Size(27, 13);
			this._lblLabels_9.TabIndex = 9;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_10
			//
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Location = new System.Drawing.Point(69, 170);
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.Size = new System.Drawing.Size(35, 13);
			this._lblLabels_10.TabIndex = 10;
			this._lblLabels_10.Text = "Email:";
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_14
			//
			this._lblLabels_14.AutoSize = true;
			this._lblLabels_14.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_14.Location = new System.Drawing.Point(519, 87);
			this._lblLabels_14.Name = "_lblLabels_14";
			this._lblLabels_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_14.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_14.TabIndex = 14;
			this._lblLabels_14.Text = "30 Days:";
			this._lblLabels_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_16
			//
			this._lblLabels_16.AutoSize = true;
			this._lblLabels_16.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_16.Location = new System.Drawing.Point(519, 108);
			this._lblLabels_16.Name = "_lblLabels_16";
			this._lblLabels_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_16.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_16.TabIndex = 16;
			this._lblLabels_16.Text = "90 Days:";
			this._lblLabels_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_18
			//
			this._lblLabels_18.AutoSize = true;
			this._lblLabels_18.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_18.Location = new System.Drawing.Point(513, 129);
			this._lblLabels_18.Name = "_lblLabels_18";
			this._lblLabels_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_18.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_18.TabIndex = 18;
			this._lblLabels_18.Text = "150 Days:";
			this._lblLabels_18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//frmCustomerHistory
			//
			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(659, 653);
			this.ControlBox = false;
			this.Controls.Add(this.txtCustomer);
			this.Controls.Add(this.cmbPOS);
			this.Controls.Add(this.txtStock);
			this.Controls.Add(this.cmdPrint);
			this.Controls.Add(this.cmdProfit);
			this.Controls.Add(this.txtSerial);
			this.Controls.Add(this._txtFields_0);
			this.Controls.Add(this.cmbTerms);
			this.Controls.Add(this._txtFields_2);
			this.Controls.Add(this._txtFields_3);
			this.Controls.Add(this._txtFields_4);
			this.Controls.Add(this._txtFields_5);
			this.Controls.Add(this._txtFields_6);
			this.Controls.Add(this._txtFields_7);
			this.Controls.Add(this._txtFields_8);
			this.Controls.Add(this._txtFields_9);
			this.Controls.Add(this._txtFields_10);
			this.Controls.Add(this._chkFields_11);
			this.Controls.Add(this._txtFloat_12);
			this.Controls.Add(this._txtFloat_13);
			this.Controls.Add(this._txtFloat_14);
			this.Controls.Add(this._txtFloat_15);
			this.Controls.Add(this._txtFloat_16);
			this.Controls.Add(this._txtFloat_17);
			this.Controls.Add(this._txtFloat_18);
			this.Controls.Add(this._chkFields_19);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.cmbChannel);
			this.Controls.Add(this.lvTransaction);
			this.Controls.Add(this._lbl_6);
			this.Controls.Add(this.lblcount);
			this.Controls.Add(this._lbl_5);
			this.Controls.Add(this._lbl_2);
			this.Controls.Add(this._lbl_3);
			this.Controls.Add(this._lbl_4);
			this.Controls.Add(this.Label1);
			this.Controls.Add(this._lblLabels_11);
			this.Controls.Add(this._lbl_0);
			this.Controls.Add(this._lblLabels_12);
			this.Controls.Add(this._lblLabels_13);
			this.Controls.Add(this._lblLabels_15);
			this.Controls.Add(this._lblLabels_17);
			this.Controls.Add(this._lblLabels_0);
			this.Controls.Add(this._lbl_1);
			this.Controls.Add(this._lblLabels_1);
			this.Controls.Add(this._lblLabels_2);
			this.Controls.Add(this._lblLabels_3);
			this.Controls.Add(this._lblLabels_4);
			this.Controls.Add(this._lblLabels_5);
			this.Controls.Add(this._lblLabels_6);
			this.Controls.Add(this._lblLabels_7);
			this.Controls.Add(this._lblLabels_8);
			this.Controls.Add(this._lblLabels_9);
			this.Controls.Add(this._lblLabels_10);
			this.Controls.Add(this._lblLabels_14);
			this.Controls.Add(this._lblLabels_16);
			this.Controls.Add(this._lblLabels_18);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmCustomerHistory";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "View Customer History";
			this.picButtons.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).EndInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Exemplo 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.Shape2             = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_2          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._txtInteger_1      = new System.Windows.Forms.TextBox();
     this.cmdLocate          = new System.Windows.Forms.Button();
     this._txtFields_10      = new System.Windows.Forms.TextBox();
     this.chkKitchenMonitors = new System.Windows.Forms.CheckBox();
     this._txtInteger_0      = new System.Windows.Forms.TextBox();
     this._txtFloat_5        = new System.Windows.Forms.TextBox();
     this._txtInteger_4      = new System.Windows.Forms.TextBox();
     this._txtFields_3       = new System.Windows.Forms.TextBox();
     this._chkFields_2       = new System.Windows.Forms.CheckBox();
     this._txtFields_1       = new System.Windows.Forms.TextBox();
     this.picButtons         = new System.Windows.Forms.Panel();
     this.cmdCancel          = new System.Windows.Forms.Button();
     this.cmdClose           = new System.Windows.Forms.Button();
     this._lblLic_0          = new System.Windows.Forms.Label();
     this._lblLic_1          = new System.Windows.Forms.Label();
     this.CommonDialog1Open  = new System.Windows.Forms.OpenFileDialog();
     this._lblLabels_6       = new System.Windows.Forms.Label();
     this._lbl_0             = new System.Windows.Forms.Label();
     this.Label1             = new System.Windows.Forms.Label();
     this._lblLabels_2       = new System.Windows.Forms.Label();
     this._lblLabels_0       = new System.Windows.Forms.Label();
     this._lblLabels_5       = new System.Windows.Forms.Label();
     this._lblLabels_4       = new System.Windows.Forms.Label();
     this._lblLabels_3       = new System.Windows.Forms.Label();
     this._lblLabels_1       = new System.Windows.Forms.Label();
     this._lbl_5             = 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.Shape2,
         this._Shape1_2
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(452, 214);
     this.ShapeContainer1.TabIndex = 25;
     this.ShapeContainer1.TabStop  = false;
     //
     //Shape2
     //
     this.Shape2.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this.Shape2.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this.Shape2.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Shape2.FillColor   = System.Drawing.Color.Black;
     this.Shape2.Location    = new System.Drawing.Point(4, 180);
     this.Shape2.Name        = "Shape2";
     this.Shape2.Size        = new System.Drawing.Size(441, 29);
     //
     //_Shape1_2
     //
     this._Shape1_2.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_2.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_2.FillColor   = System.Drawing.Color.Black;
     this._Shape1_2.Location    = new System.Drawing.Point(4, 56);
     this._Shape1_2.Name        = "_Shape1_2";
     this._Shape1_2.Size        = new System.Drawing.Size(442, 103);
     //
     //_txtInteger_1
     //
     this._txtInteger_1.AcceptsReturn = true;
     this._txtInteger_1.BackColor     = System.Drawing.Color.White;
     this._txtInteger_1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtInteger_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtInteger_1.Enabled       = false;
     this._txtInteger_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtInteger_1.Location      = new System.Drawing.Point(110, 248);
     this._txtInteger_1.MaxLength     = 0;
     this._txtInteger_1.Name          = "_txtInteger_1";
     this._txtInteger_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtInteger_1.Size          = new System.Drawing.Size(246, 19);
     this._txtInteger_1.TabIndex      = 22;
     this._txtInteger_1.Visible       = false;
     //
     //cmdLocate
     //
     this.cmdLocate.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdLocate.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdLocate.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdLocate.Location                = new System.Drawing.Point(360, 248);
     this.cmdLocate.Name                    = "cmdLocate";
     this.cmdLocate.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdLocate.Size                    = new System.Drawing.Size(76, 19);
     this.cmdLocate.TabIndex                = 20;
     this.cmdLocate.Text                    = "Locate ...";
     this.cmdLocate.UseVisualStyleBackColor = false;
     this.cmdLocate.Visible                 = false;
     //
     //_txtFields_10
     //
     this._txtFields_10.AcceptsReturn = true;
     this._txtFields_10.BackColor     = System.Drawing.Color.White;
     this._txtFields_10.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_10.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_10.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFields_10.Location      = new System.Drawing.Point(272, 280);
     this._txtFields_10.MaxLength     = 0;
     this._txtFields_10.Name          = "_txtFields_10";
     this._txtFields_10.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFields_10.Size          = new System.Drawing.Size(78, 19);
     this._txtFields_10.TabIndex      = 19;
     //
     //chkKitchenMonitors
     //
     this.chkKitchenMonitors.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this.chkKitchenMonitors.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this.chkKitchenMonitors.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkKitchenMonitors.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkKitchenMonitors.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkKitchenMonitors.Location                = new System.Drawing.Point(122, 186);
     this.chkKitchenMonitors.Name                    = "chkKitchenMonitors";
     this.chkKitchenMonitors.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkKitchenMonitors.Size                    = new System.Drawing.Size(317, 17);
     this.chkKitchenMonitors.TabIndex                = 18;
     this.chkKitchenMonitors.Text                    = "Setup this Terminal as a Kitchen Monitor  ( for Drive Thru only )";
     this.chkKitchenMonitors.UseVisualStyleBackColor = false;
     //
     //_txtInteger_0
     //
     this._txtInteger_0.AcceptsReturn = true;
     this._txtInteger_0.BackColor     = System.Drawing.Color.White;
     this._txtInteger_0.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtInteger_0.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtInteger_0.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtInteger_0.Location      = new System.Drawing.Point(300, 60);
     this._txtInteger_0.MaxLength     = 0;
     this._txtInteger_0.Name          = "_txtInteger_0";
     this._txtInteger_0.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtInteger_0.Size          = new System.Drawing.Size(27, 19);
     this._txtInteger_0.TabIndex      = 3;
     this._txtInteger_0.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtFloat_5
     //
     this._txtFloat_5.AcceptsReturn = true;
     this._txtFloat_5.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_5.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_5.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_5.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_5.Location      = new System.Drawing.Point(110, 104);
     this._txtFloat_5.MaxLength     = 0;
     this._txtFloat_5.Name          = "_txtFloat_5";
     this._txtFloat_5.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_5.Size          = new System.Drawing.Size(78, 19);
     this._txtFloat_5.TabIndex      = 10;
     this._txtFloat_5.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtInteger_4
     //
     this._txtInteger_4.AcceptsReturn = true;
     this._txtInteger_4.BackColor     = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._txtInteger_4.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtInteger_4.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtInteger_4.Enabled       = false;
     this._txtInteger_4.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtInteger_4.Location      = new System.Drawing.Point(362, 80);
     this._txtInteger_4.MaxLength     = 0;
     this._txtInteger_4.Name          = "_txtInteger_4";
     this._txtInteger_4.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtInteger_4.Size          = new System.Drawing.Size(78, 19);
     this._txtInteger_4.TabIndex      = 7;
     //
     //_txtFields_3
     //
     this._txtFields_3.AcceptsReturn = true;
     this._txtFields_3.BackColor     = System.Drawing.Color.White;
     this._txtFields_3.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_3.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_3.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFields_3.Location      = new System.Drawing.Point(110, 82);
     this._txtFields_3.MaxLength     = 0;
     this._txtFields_3.Name          = "_txtFields_3";
     this._txtFields_3.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFields_3.Size          = new System.Drawing.Size(78, 19);
     this._txtFields_3.TabIndex      = 5;
     //
     //_chkFields_2
     //
     this._chkFields_2.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkFields_2.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this._chkFields_2.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkFields_2.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this._chkFields_2.ForeColor               = System.Drawing.SystemColors.WindowText;
     this._chkFields_2.Location                = new System.Drawing.Point(10, 106);
     this._chkFields_2.Name                    = "_chkFields_2";
     this._chkFields_2.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkFields_2.Size                    = new System.Drawing.Size(60, 17);
     this._chkFields_2.TabIndex                = 8;
     this._chkFields_2.Text                    = "Disable:";
     this._chkFields_2.UseVisualStyleBackColor = false;
     //
     //_txtFields_1
     //
     this._txtFields_1.AcceptsReturn = true;
     this._txtFields_1.BackColor     = System.Drawing.Color.White;
     this._txtFields_1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFields_1.Location      = new System.Drawing.Point(110, 60);
     this._txtFields_1.MaxLength     = 0;
     this._txtFields_1.Name          = "_txtFields_1";
     this._txtFields_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFields_1.Size          = new System.Drawing.Size(78, 19);
     this._txtFields_1.TabIndex      = 1;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.cmdCancel);
     this.picButtons.Controls.Add(this.cmdClose);
     this.picButtons.Controls.Add(this._lblLic_0);
     this.picButtons.Controls.Add(this._lblLic_1);
     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, 39);
     this.picButtons.TabIndex    = 16;
     //
     //cmdCancel
     //
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCancel.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdCancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Location                = new System.Drawing.Point(5, 3);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(73, 29);
     this.cmdCancel.TabIndex                = 15;
     this.cmdCancel.TabStop                 = false;
     this.cmdCancel.Text                    = "&Undo";
     this.cmdCancel.UseVisualStyleBackColor = false;
     //
     //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(372, 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                = 14;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "E&xit";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //_lblLic_0
     //
     this._lblLic_0.BackColor   = System.Drawing.Color.Red;
     this._lblLic_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLic_0.ForeColor   = System.Drawing.Color.White;
     this._lblLic_0.Location    = new System.Drawing.Point(176, 8);
     this._lblLic_0.Name        = "_lblLic_0";
     this._lblLic_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLic_0.Size        = new System.Drawing.Size(113, 19);
     this._lblLic_0.TabIndex    = 25;
     this._lblLic_0.Text        = "Not Licensed";
     this._lblLic_0.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     this._lblLic_0.Visible     = false;
     //
     //_lblLic_1
     //
     this._lblLic_1.BackColor   = System.Drawing.Color.Red;
     this._lblLic_1.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLic_1.ForeColor   = System.Drawing.Color.White;
     this._lblLic_1.Location    = new System.Drawing.Point(120, 3);
     this._lblLic_1.Name        = "_lblLic_1";
     this._lblLic_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLic_1.Size        = new System.Drawing.Size(217, 27);
     this._lblLic_1.TabIndex    = 26;
     this._lblLic_1.TextAlign   = System.Drawing.ContentAlignment.TopCenter;
     this._lblLic_1.Visible     = false;
     //
     //CommonDialog1Open
     //
     this.CommonDialog1Open.FileName = "waitron.mdb";
     this.CommonDialog1Open.Title    = "Path to Waitron dabatase";
     //
     //_lblLabels_6
     //
     this._lblLabels_6.AutoSize    = true;
     this._lblLabels_6.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_6.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_6.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_6.Location    = new System.Drawing.Point(10, 131);
     this._lblLabels_6.Name        = "_lblLabels_6";
     this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_6.Size        = new System.Drawing.Size(65, 13);
     this._lblLabels_6.TabIndex    = 24;
     this._lblLabels_6.Text        = "Warehouse:";
     this._lblLabels_6.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.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Location    = new System.Drawing.Point(10, 250);
     this._lbl_0.Name        = "_lbl_0";
     this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.Size        = new System.Drawing.Size(94, 13);
     this._lbl_0.TabIndex    = 21;
     this._lbl_0.Text        = "Server Path:";
     this._lbl_0.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lbl_0.Visible     = false;
     //
     //Label1
     //
     this.Label1.BackColor   = System.Drawing.Color.Transparent;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(6, 166);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(117, 15);
     this.Label1.TabIndex    = 17;
     this.Label1.Text        = "&2. Kitchen Monitors";
     //
     //_lblLabels_2
     //
     this._lblLabels_2.AutoSize    = true;
     this._lblLabels_2.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_2.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_2.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_2.Location    = new System.Drawing.Point(230, 63);
     this._lblLabels_2.Name        = "_lblLabels_2";
     this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_2.Size        = new System.Drawing.Size(72, 13);
     this._lblLabels_2.TabIndex    = 2;
     this._lblLabels_2.Text        = "POS Number:";
     this._lblLabels_2.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_0
     //
     this._lblLabels_0.AutoSize    = true;
     this._lblLabels_0.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_0.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_0.Location    = new System.Drawing.Point(204, 108);
     this._lblLabels_0.Name        = "_lblLabels_0";
     this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_0.Size        = new System.Drawing.Size(92, 13);
     this._lblLabels_0.TabIndex    = 11;
     this._lblLabels_0.Text        = "Default Keyboard:";
     this._lblLabels_0.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_5
     //
     this._lblLabels_5.AutoSize    = true;
     this._lblLabels_5.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_5.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_5.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_5.Location    = new System.Drawing.Point(80, 108);
     this._lblLabels_5.Name        = "_lblLabels_5";
     this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_5.Size        = new System.Drawing.Size(33, 13);
     this._lblLabels_5.TabIndex    = 9;
     this._lblLabels_5.Text        = "Float:";
     this._lblLabels_5.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_4
     //
     this._lblLabels_4.AutoSize    = true;
     this._lblLabels_4.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_4.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_4.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_4.Location    = new System.Drawing.Point(271, 84);
     this._lblLabels_4.Name        = "_lblLabels_4";
     this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_4.Size        = new System.Drawing.Size(87, 13);
     this._lblLabels_4.TabIndex    = 6;
     this._lblLabels_4.Text        = "Last Declaration:";
     this._lblLabels_4.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_3
     //
     this._lblLabels_3.AutoSize    = true;
     this._lblLabels_3.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_3.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_3.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_3.Location    = new System.Drawing.Point(26, 84);
     this._lblLabels_3.Name        = "_lblLabels_3";
     this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_3.Size        = new System.Drawing.Size(86, 13);
     this._lblLabels_3.TabIndex    = 4;
     this._lblLabels_3.Text        = "POS IP Address:";
     this._lblLabels_3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_1
     //
     this._lblLabels_1.AutoSize    = true;
     this._lblLabels_1.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_1.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_1.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_1.Location    = new System.Drawing.Point(48, 63);
     this._lblLabels_1.Name        = "_lblLabels_1";
     this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_1.Size        = new System.Drawing.Size(63, 13);
     this._lblLabels_1.TabIndex    = 0;
     this._lblLabels_1.Text        = "POS Name:";
     this._lblLabels_1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lbl_5
     //
     this._lbl_5.AutoSize    = true;
     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(6, 42);
     this._lbl_5.Name        = "_lbl_5";
     this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_5.Size        = new System.Drawing.Size(56, 13);
     this._lbl_5.TabIndex    = 13;
     this._lbl_5.Text        = "&1. General";
     //
     //frmPOS
     //
     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(452, 214);
     this.ControlBox          = false;
     this.Controls.Add(this._txtInteger_1);
     this.Controls.Add(this.cmdLocate);
     this.Controls.Add(this._txtFields_10);
     this.Controls.Add(this.chkKitchenMonitors);
     this.Controls.Add(this._txtInteger_0);
     this.Controls.Add(this._txtFloat_5);
     this.Controls.Add(this._txtInteger_4);
     this.Controls.Add(this._txtFields_3);
     this.Controls.Add(this._chkFields_2);
     this.Controls.Add(this._txtFields_1);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this._lblLabels_6);
     this.Controls.Add(this._lbl_0);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this._lblLabels_2);
     this.Controls.Add(this._lblLabels_0);
     this.Controls.Add(this._lblLabels_5);
     this.Controls.Add(this._lblLabels_4);
     this.Controls.Add(this._lblLabels_3);
     this.Controls.Add(this._lblLabels_1);
     this.Controls.Add(this._lbl_5);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.Location        = new System.Drawing.Point(73, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmPOS";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Edit Point Of Sale Details";
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 25
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);

		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrderWizardFilter));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.cmdFilter = new System.Windows.Forms.Button();
			this.chkDynamic = new System.Windows.Forms.CheckBox();
			this.txtDays = new System.Windows.Forms.TextBox();
			this.txtMinimum = new System.Windows.Forms.TextBox();
			this._MonthView1_1 = new System.Windows.Forms.MonthCalendar();
			this._MonthView1_0 = new System.Windows.Forms.MonthCalendar();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblFilter = new System.Windows.Forms.Label();
			this._Label1_2 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Label1_1 = new System.Windows.Forms.Label();
			this._Label1_0 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.lblDayEnd = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.MonthView1 = New AxMonthViewArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this._MonthView1_1).BeginInit();
			((System.ComponentModel.ISupportInitialize)this._MonthView1_0).BeginInit();
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.MonthView1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.ControlBox = false;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.ClientSize = new System.Drawing.Size(436, 590);
			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.BackColor = System.Drawing.SystemColors.Control;
			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 = "frmOrderWizardFilter";
			this.cmdFilter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdFilter.Text = "&Filter ...";
			this.cmdFilter.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdFilter.Size = new System.Drawing.Size(79, 37);
			this.cmdFilter.Location = new System.Drawing.Point(336, 528);
			this.cmdFilter.TabIndex = 16;
			this.cmdFilter.TabStop = false;
			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.Name = "cmdFilter";
			this.chkDynamic.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkDynamic.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.chkDynamic.Text = "Automatically re-calculate start and end dates based on current \"Day End\" date.";
			this.chkDynamic.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkDynamic.Size = new System.Drawing.Size(400, 13);
			this.chkDynamic.Location = new System.Drawing.Point(21, 393);
			this.chkDynamic.TabIndex = 13;
			this.chkDynamic.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkDynamic.CausesValidation = true;
			this.chkDynamic.Enabled = true;
			this.chkDynamic.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkDynamic.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkDynamic.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkDynamic.TabStop = true;
			this.chkDynamic.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkDynamic.Visible = true;
			this.chkDynamic.Name = "chkDynamic";
			this.txtDays.AutoSize = false;
			this.txtDays.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtDays.Size = new System.Drawing.Size(40, 19);
			this.txtDays.Location = new System.Drawing.Point(156, 348);
			this.txtDays.TabIndex = 8;
			this.txtDays.Text = "9";
			this.txtDays.AcceptsReturn = true;
			this.txtDays.BackColor = System.Drawing.SystemColors.Window;
			this.txtDays.CausesValidation = true;
			this.txtDays.Enabled = true;
			this.txtDays.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtDays.HideSelection = true;
			this.txtDays.ReadOnly = false;
			this.txtDays.MaxLength = 0;
			this.txtDays.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtDays.Multiline = false;
			this.txtDays.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtDays.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtDays.TabStop = true;
			this.txtDays.Visible = true;
			this.txtDays.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtDays.Name = "txtDays";
			this.txtMinimum.AutoSize = false;
			this.txtMinimum.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtMinimum.Size = new System.Drawing.Size(40, 19);
			this.txtMinimum.Location = new System.Drawing.Point(105, 366);
			this.txtMinimum.TabIndex = 11;
			this.txtMinimum.Text = "2";
			this.txtMinimum.AcceptsReturn = true;
			this.txtMinimum.BackColor = System.Drawing.SystemColors.Window;
			this.txtMinimum.CausesValidation = true;
			this.txtMinimum.Enabled = true;
			this.txtMinimum.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtMinimum.HideSelection = true;
			this.txtMinimum.ReadOnly = false;
			this.txtMinimum.MaxLength = 0;
			this.txtMinimum.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtMinimum.Multiline = false;
			this.txtMinimum.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtMinimum.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtMinimum.TabStop = true;
			this.txtMinimum.Visible = true;
			this.txtMinimum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtMinimum.Name = "txtMinimum";
			//_MonthView1_1.OcxState = CType(resources.GetObject("_MonthView1_1.OcxState"), System.Windows.Forms.AxHost.State)
			this._MonthView1_1.Size = new System.Drawing.Size(180, 158);
			this._MonthView1_1.Location = new System.Drawing.Point(237, 96);
			this._MonthView1_1.TabIndex = 4;
			this._MonthView1_1.Name = "_MonthView1_1";
			//_MonthView1_0.OcxState = CType(resources.GetObject("_MonthView1_0.OcxState"), System.Windows.Forms.AxHost.State)
			this._MonthView1_0.Size = new System.Drawing.Size(180, 158);
			this._MonthView1_0.Location = new System.Drawing.Point(21, 96);
			this._MonthView1_0.TabIndex = 2;
			this._MonthView1_0.Name = "_MonthView1_0";
			this._lbl_6.Text = "units.";
			this._lbl_6.Size = new System.Drawing.Size(25, 13);
			this._lbl_6.Location = new System.Drawing.Point(150, 369);
			this._lbl_6.TabIndex = 12;
			this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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 = true;
			this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_6.Name = "_lbl_6";
			this.lblFilter.Text = "Label1";
			this.lblFilter.Size = new System.Drawing.Size(391, 76);
			this.lblFilter.Location = new System.Drawing.Point(24, 447);
			this.lblFilter.TabIndex = 15;
			this.lblFilter.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblFilter.BackColor = System.Drawing.SystemColors.Control;
			this.lblFilter.Enabled = true;
			this.lblFilter.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblFilter.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblFilter.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblFilter.UseMnemonic = true;
			this.lblFilter.Visible = true;
			this.lblFilter.AutoSize = false;
			this.lblFilter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblFilter.Name = "lblFilter";
			this._Label1_2.Text = "&3. Filter";
			this._Label1_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._Label1_2.Size = new System.Drawing.Size(44, 13);
			this._Label1_2.Location = new System.Drawing.Point(15, 423);
			this._Label1_2.TabIndex = 14;
			this._Label1_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._Label1_2.BackColor = System.Drawing.Color.Transparent;
			this._Label1_2.Enabled = true;
			this._Label1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Label1_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_2.UseMnemonic = true;
			this._Label1_2.Visible = true;
			this._Label1_2.AutoSize = true;
			this._Label1_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_2.Name = "_Label1_2";
			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(415, 136);
			this._Shape1_2.Location = new System.Drawing.Point(12, 438);
			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._Label1_1.Text = "&2. Wizard Rules";
			this._Label1_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._Label1_1.Size = new System.Drawing.Size(91, 13);
			this._Label1_1.Location = new System.Drawing.Point(15, 327);
			this._Label1_1.TabIndex = 6;
			this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._Label1_1.BackColor = System.Drawing.Color.Transparent;
			this._Label1_1.Enabled = true;
			this._Label1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			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._Label1_0.Text = "&1. Day End Criteria";
			this._Label1_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._Label1_0.Size = new System.Drawing.Size(108, 13);
			this._Label1_0.Location = new System.Drawing.Point(15, 63);
			this._Label1_0.TabIndex = 0;
			this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._Label1_0.BackColor = System.Drawing.Color.Transparent;
			this._Label1_0.Enabled = true;
			this._Label1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			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.Label2.Text = "When calculating your ordering levels, you must select the mean number of \"day Ends\" to cover to get an average number of units sold. This average is then projected for a set number of days to give you your expected sales. This expectation is then your minimum order level for the \"Stock Item\".";
			this.Label2.Size = new System.Drawing.Size(397, 55);
			this.Label2.Location = new System.Drawing.Point(15, 3);
			this.Label2.TabIndex = 17;
			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.lblDayEnd.Text = "Label1";
			this.lblDayEnd.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDayEnd.Size = new System.Drawing.Size(397, 34);
			this.lblDayEnd.Location = new System.Drawing.Point(21, 276);
			this.lblDayEnd.TabIndex = 5;
			this.lblDayEnd.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDayEnd.BackColor = System.Drawing.SystemColors.Control;
			this.lblDayEnd.Enabled = true;
			this.lblDayEnd.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDayEnd.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDayEnd.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDayEnd.UseMnemonic = true;
			this.lblDayEnd.Visible = true;
			this.lblDayEnd.AutoSize = false;
			this.lblDayEnd.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDayEnd.Name = "lblDayEnd";
			this._lbl_5.Text = "From Date";
			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(59, 13);
			this._lbl_5.Location = new System.Drawing.Point(24, 81);
			this._lbl_5.TabIndex = 1;
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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 = true;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this._lbl_3.Text = "To Date";
			this._lbl_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._lbl_3.Size = new System.Drawing.Size(47, 13);
			this._lbl_3.Location = new System.Drawing.Point(240, 81);
			this._lbl_3.TabIndex = 3;
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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 = true;
			this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_3.Name = "_lbl_3";
			this._lbl_1.Text = "Calculated Day End Criteria";
			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(157, 13);
			this._lbl_1.Location = new System.Drawing.Point(21, 261);
			this._lbl_1.TabIndex = 18;
			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._lbl_4.Text = "level will be below";
			this._lbl_4.Size = new System.Drawing.Size(85, 13);
			this._lbl_4.Location = new System.Drawing.Point(15, 369);
			this._lbl_4.TabIndex = 10;
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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_2.Text = "\"Day Ends\" and then guarantee no re-order";
			this._lbl_2.Size = new System.Drawing.Size(206, 13);
			this._lbl_2.Location = new System.Drawing.Point(201, 351);
			this._lbl_2.TabIndex = 9;
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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 = true;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this._lbl_0.Text = "Forecast my stock holding for ";
			this._lbl_0.Size = new System.Drawing.Size(141, 13);
			this._lbl_0.Location = new System.Drawing.Point(15, 351);
			this._lbl_0.TabIndex = 7;
			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._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(415, 241);
			this._Shape1_0.Location = new System.Drawing.Point(12, 78);
			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._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.Size = new System.Drawing.Size(415, 73);
			this._Shape1_1.Location = new System.Drawing.Point(12, 342);
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_1.BorderWidth = 1;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_1.Visible = true;
			this._Shape1_1.Name = "_Shape1_1";
			this.Controls.Add(cmdFilter);
			this.Controls.Add(chkDynamic);
			this.Controls.Add(txtDays);
			this.Controls.Add(txtMinimum);
			this.Controls.Add(_MonthView1_1);
			this.Controls.Add(_MonthView1_0);
			this.Controls.Add(_lbl_6);
			this.Controls.Add(lblFilter);
			this.Controls.Add(_Label1_2);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(_Label1_1);
			this.Controls.Add(_Label1_0);
			this.Controls.Add(Label2);
			this.Controls.Add(lblDayEnd);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(_lbl_3);
			this.Controls.Add(_lbl_1);
			this.Controls.Add(_lbl_4);
			this.Controls.Add(_lbl_2);
			this.Controls.Add(_lbl_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_1);
			this.Controls.Add(ShapeContainer1);
			//Me.Label1.SetIndex(_Label1_2, CType(2, Short))
			//Me.Label1.SetIndex(_Label1_1, CType(1, Short))
			//Me.Label1.SetIndex(_Label1_0, CType(0, Short))
			//Me.MonthView1.SetIndex(_MonthView1_1, CType(1, Short))
			//Me.MonthView1.SetIndex(_MonthView1_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_6, CType(6, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.MonthView1, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this._MonthView1_0).EndInit();
			((System.ComponentModel.ISupportInitialize)this._MonthView1_1).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_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();
 }
 /// <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();
 }
Exemplo n.º 29
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrderSummary));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.cmdNext = new System.Windows.Forms.Button();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this._lbl_8 = new System.Windows.Forms.Label();
			this._lbl_7 = new System.Windows.Forms.Label();
			this._lbl_6 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this.lblTotal = new System.Windows.Forms.Label();
			this.lblContentTotal = new System.Windows.Forms.Label();
			this.lblDepositTotal = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblData_4 = new System.Windows.Forms.Label();
			this._lblData_3 = new System.Windows.Forms.Label();
			this._lblData_2 = new System.Windows.Forms.Label();
			this._lblData_1 = new System.Windows.Forms.Label();
			this._lblData_0 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lblLabels_38 = new System.Windows.Forms.Label();
			this._lblLabels_37 = new System.Windows.Forms.Label();
			this._lblLabels_36 = new System.Windows.Forms.Label();
			this._lblData_5 = new System.Windows.Forms.Label();
			this._lblData_6 = new System.Windows.Forms.Label();
			this._lblData_7 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblData = 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.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblData, 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 = "Complete Order";
			this.ClientSize = new System.Drawing.Size(612, 336);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			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.KeyPreview = false;
			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 = "frmOrderSummary";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "P&rocess";
			this.cmdNext.Size = new System.Drawing.Size(97, 31);
			this.cmdNext.Location = new System.Drawing.Point(504, 282);
			this.cmdNext.TabIndex = 29;
			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._txtFields_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(142, 79);
			this._txtFields_1.Location = new System.Drawing.Point(459, 192);
			this._txtFields_1.Multiline = true;
			this._txtFields_1.TabIndex = 28;
			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.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_0.AutoSize = false;
			this._txtFields_0.Size = new System.Drawing.Size(142, 19);
			this._txtFields_0.Location = new System.Drawing.Point(459, 168);
			this._txtFields_0.TabIndex = 27;
			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(612, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 23;
			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.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(73, 28);
			this.cmdExit.Location = new System.Drawing.Point(531, 3);
			this.cmdExit.TabIndex = 25;
			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.Size = new System.Drawing.Size(73, 28);
			this.cmdBack.Location = new System.Drawing.Point(453, 3);
			this.cmdBack.TabIndex = 24;
			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._lbl_8.BackColor = System.Drawing.Color.Transparent;
			this._lbl_8.Text = "&4.Process this Order";
			this._lbl_8.Size = new System.Drawing.Size(116, 13);
			this._lbl_8.Location = new System.Drawing.Point(342, 147);
			this._lbl_8.TabIndex = 32;
			this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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 = true;
			this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_8.Name = "_lbl_8";
			this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_7.Text = "Order Attention Line:";
			this._lbl_7.Size = new System.Drawing.Size(133, 13);
			this._lbl_7.Location = new System.Drawing.Point(318, 192);
			this._lbl_7.TabIndex = 31;
			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_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_6.Text = "Order Reference:";
			this._lbl_6.Size = new System.Drawing.Size(133, 13);
			this._lbl_6.Location = new System.Drawing.Point(318, 171);
			this._lbl_6.TabIndex = 30;
			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._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Text = "&3. Order Totals";
			this._lbl_5.Size = new System.Drawing.Size(86, 13);
			this._lbl_5.Location = new System.Drawing.Point(342, 42);
			this._lbl_5.TabIndex = 26;
			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.lblTotal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblTotal.Text = "lblTotal";
			this.lblTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lblTotal.Size = new System.Drawing.Size(142, 16);
			this.lblTotal.Location = new System.Drawing.Point(459, 99);
			this.lblTotal.TabIndex = 22;
			this.lblTotal.Enabled = true;
			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.FixedSingle;
			this.lblTotal.Name = "lblTotal";
			this.lblContentTotal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentTotal.Text = "lblContentTotal";
			this.lblContentTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lblContentTotal.Size = new System.Drawing.Size(142, 16);
			this.lblContentTotal.Location = new System.Drawing.Point(459, 63);
			this.lblContentTotal.TabIndex = 21;
			this.lblContentTotal.Enabled = true;
			this.lblContentTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentTotal.UseMnemonic = true;
			this.lblContentTotal.Visible = true;
			this.lblContentTotal.AutoSize = false;
			this.lblContentTotal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lblContentTotal.Name = "lblContentTotal";
			this.lblDepositTotal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositTotal.Text = "lblDepositTotal";
			this.lblDepositTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lblDepositTotal.Size = new System.Drawing.Size(142, 16);
			this.lblDepositTotal.Location = new System.Drawing.Point(459, 81);
			this.lblDepositTotal.TabIndex = 20;
			this.lblDepositTotal.Enabled = true;
			this.lblDepositTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositTotal.UseMnemonic = true;
			this.lblDepositTotal.Visible = true;
			this.lblDepositTotal.AutoSize = false;
			this.lblDepositTotal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lblDepositTotal.Name = "lblDepositTotal";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "Deposit Total:";
			this._lbl_4.Size = new System.Drawing.Size(133, 13);
			this._lbl_4.Location = new System.Drawing.Point(318, 81);
			this._lbl_4.TabIndex = 19;
			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_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_3.Text = "Content Total:";
			this._lbl_3.Size = new System.Drawing.Size(133, 13);
			this._lbl_3.Location = new System.Drawing.Point(318, 63);
			this._lbl_3.TabIndex = 18;
			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_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "Order Exclusive Total:";
			this._lbl_0.Size = new System.Drawing.Size(133, 13);
			this._lbl_0.Location = new System.Drawing.Point(318, 99);
			this._lbl_0.TabIndex = 17;
			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._lblData_4.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_4.Text = "Supplier_PostalAddress";
			this._lblData_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_4.Size = new System.Drawing.Size(226, 58);
			this._lblData_4.Location = new System.Drawing.Point(102, 165);
			this._lblData_4.TabIndex = 16;
			this._lblData_4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_4.Enabled = true;
			this._lblData_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_4.UseMnemonic = true;
			this._lblData_4.Visible = true;
			this._lblData_4.AutoSize = false;
			this._lblData_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_4.Name = "_lblData_4";
			this._lblData_3.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_3.Text = "Supplier_PhysicalAddress";
			this._lblData_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_3.Size = new System.Drawing.Size(226, 58);
			this._lblData_3.Location = new System.Drawing.Point(102, 102);
			this._lblData_3.TabIndex = 15;
			this._lblData_3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_3.Enabled = true;
			this._lblData_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_3.UseMnemonic = true;
			this._lblData_3.Visible = true;
			this._lblData_3.AutoSize = false;
			this._lblData_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_3.Name = "_lblData_3";
			this._lblData_2.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_2.Text = "Supplier_Facimile";
			this._lblData_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_2.Size = new System.Drawing.Size(94, 16);
			this._lblData_2.Location = new System.Drawing.Point(234, 81);
			this._lblData_2.TabIndex = 14;
			this._lblData_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_2.Enabled = true;
			this._lblData_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_2.UseMnemonic = true;
			this._lblData_2.Visible = true;
			this._lblData_2.AutoSize = false;
			this._lblData_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_2.Name = "_lblData_2";
			this._lblData_1.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_1.Text = "Supplier_Telephone";
			this._lblData_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_1.Size = new System.Drawing.Size(94, 16);
			this._lblData_1.Location = new System.Drawing.Point(102, 81);
			this._lblData_1.TabIndex = 13;
			this._lblData_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_1.Enabled = true;
			this._lblData_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_1.UseMnemonic = true;
			this._lblData_1.Visible = true;
			this._lblData_1.AutoSize = false;
			this._lblData_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_1.Name = "_lblData_1";
			this._lblData_0.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_0.Text = "Supplier_Name";
			this._lblData_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_0.Size = new System.Drawing.Size(226, 16);
			this._lblData_0.Location = new System.Drawing.Point(102, 63);
			this._lblData_0.TabIndex = 12;
			this._lblData_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_0.Enabled = true;
			this._lblData_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_0.UseMnemonic = true;
			this._lblData_0.Visible = true;
			this._lblData_0.AutoSize = false;
			this._lblData_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_0.Name = "_lblData_0";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.Size = new System.Drawing.Size(22, 13);
			this._lblLabels_9.Location = new System.Drawing.Point(207, 81);
			this._lblLabels_9.TabIndex = 11;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Enabled = true;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.UseMnemonic = true;
			this._lblLabels_9.Visible = true;
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(39, 81);
			this._lblLabels_8.TabIndex = 10;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			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_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.Size = new System.Drawing.Size(76, 13);
			this._lblLabels_7.Location = new System.Drawing.Point(21, 162);
			this._lblLabels_7.TabIndex = 9;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			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_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.Size = new System.Drawing.Size(94, 13);
			this._lblLabels_6.Location = new System.Drawing.Point(3, 102);
			this._lblLabels_6.TabIndex = 8;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Enabled = true;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.UseMnemonic = true;
			this._lblLabels_6.Visible = true;
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Text = "&1. General";
			this._lbl_1.Size = new System.Drawing.Size(61, 13);
			this._lbl_1.Location = new System.Drawing.Point(6, 42);
			this._lbl_1.TabIndex = 7;
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Text = "&2. Ordering Details";
			this._lbl_2.Size = new System.Drawing.Size(107, 13);
			this._lbl_2.Location = new System.Drawing.Point(6, 234);
			this._lbl_2.TabIndex = 6;
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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 = true;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_38.Text = "Representative Name:";
			this._lblLabels_38.Size = new System.Drawing.Size(106, 13);
			this._lblLabels_38.Location = new System.Drawing.Point(24, 257);
			this._lblLabels_38.TabIndex = 5;
			this._lblLabels_38.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_38.Enabled = true;
			this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_38.UseMnemonic = true;
			this._lblLabels_38.Visible = true;
			this._lblLabels_38.AutoSize = true;
			this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_38.Name = "_lblLabels_38";
			this._lblLabels_37.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_37.Text = "Representative Number:";
			this._lblLabels_37.Size = new System.Drawing.Size(115, 13);
			this._lblLabels_37.Location = new System.Drawing.Point(15, 275);
			this._lblLabels_37.TabIndex = 4;
			this._lblLabels_37.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_37.Enabled = true;
			this._lblLabels_37.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_37.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_37.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_37.UseMnemonic = true;
			this._lblLabels_37.Visible = true;
			this._lblLabels_37.AutoSize = true;
			this._lblLabels_37.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_37.Name = "_lblLabels_37";
			this._lblLabels_36.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_36.Text = "Account Number:";
			this._lblLabels_36.Size = new System.Drawing.Size(83, 13);
			this._lblLabels_36.Location = new System.Drawing.Point(47, 294);
			this._lblLabels_36.TabIndex = 3;
			this._lblLabels_36.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_36.Enabled = true;
			this._lblLabels_36.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_36.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_36.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_36.UseMnemonic = true;
			this._lblLabels_36.Visible = true;
			this._lblLabels_36.AutoSize = true;
			this._lblLabels_36.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_36.Name = "_lblLabels_36";
			this._lblData_5.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_5.Text = "Supplier_RepresentativeName";
			this._lblData_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_5.Size = new System.Drawing.Size(190, 16);
			this._lblData_5.Location = new System.Drawing.Point(138, 258);
			this._lblData_5.TabIndex = 2;
			this._lblData_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_5.Enabled = true;
			this._lblData_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_5.UseMnemonic = true;
			this._lblData_5.Visible = true;
			this._lblData_5.AutoSize = false;
			this._lblData_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_5.Name = "_lblData_5";
			this._lblData_6.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_6.Text = "Supplier_RepresentativeNumber";
			this._lblData_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_6.Size = new System.Drawing.Size(190, 16);
			this._lblData_6.Location = new System.Drawing.Point(138, 276);
			this._lblData_6.TabIndex = 1;
			this._lblData_6.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_6.Enabled = true;
			this._lblData_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_6.UseMnemonic = true;
			this._lblData_6.Visible = true;
			this._lblData_6.AutoSize = false;
			this._lblData_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_6.Name = "_lblData_6";
			this._lblData_7.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_7.Text = "Supplier_ShippingCode";
			this._lblData_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_7.Size = new System.Drawing.Size(190, 16);
			this._lblData_7.Location = new System.Drawing.Point(138, 294);
			this._lblData_7.TabIndex = 0;
			this._lblData_7.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_7.Enabled = true;
			this._lblData_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_7.UseMnemonic = true;
			this._lblData_7.Visible = true;
			this._lblData_7.AutoSize = false;
			this._lblData_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_7.Name = "_lblData_7";
			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(328, 70);
			this._Shape1_2.Location = new System.Drawing.Point(6, 249);
			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._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.Size = new System.Drawing.Size(328, 172);
			this._Shape1_1.Location = new System.Drawing.Point(6, 57);
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_1.BorderWidth = 1;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_1.Visible = true;
			this._Shape1_1.Name = "_Shape1_1";
			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(265, 64);
			this._Shape1_0.Location = new System.Drawing.Point(342, 57);
			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._Shape1_3.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Shape1_3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_3.Size = new System.Drawing.Size(265, 157);
			this._Shape1_3.Location = new System.Drawing.Point(342, 162);
			this._Shape1_3.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_3.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_3.BorderWidth = 1;
			this._Shape1_3.FillColor = System.Drawing.Color.Black;
			this._Shape1_3.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_3.Visible = true;
			this._Shape1_3.Name = "_Shape1_3";
			this.Controls.Add(cmdNext);
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(_txtFields_0);
			this.Controls.Add(picButtons);
			this.Controls.Add(_lbl_8);
			this.Controls.Add(_lbl_7);
			this.Controls.Add(_lbl_6);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(lblTotal);
			this.Controls.Add(lblContentTotal);
			this.Controls.Add(lblDepositTotal);
			this.Controls.Add(_lbl_4);
			this.Controls.Add(_lbl_3);
			this.Controls.Add(_lbl_0);
			this.Controls.Add(_lblData_4);
			this.Controls.Add(_lblData_3);
			this.Controls.Add(_lblData_2);
			this.Controls.Add(_lblData_1);
			this.Controls.Add(_lblData_0);
			this.Controls.Add(_lblLabels_9);
			this.Controls.Add(_lblLabels_8);
			this.Controls.Add(_lblLabels_7);
			this.Controls.Add(_lblLabels_6);
			this.Controls.Add(_lbl_1);
			this.Controls.Add(_lbl_2);
			this.Controls.Add(_lblLabels_38);
			this.Controls.Add(_lblLabels_37);
			this.Controls.Add(_lblLabels_36);
			this.Controls.Add(_lblData_5);
			this.Controls.Add(_lblData_6);
			this.Controls.Add(_lblData_7);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.ShapeContainer1.Shapes.Add(_Shape1_1);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_3);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdExit);
			this.picButtons.Controls.Add(cmdBack);
			//Me.lbl.SetIndex(_lbl_8, CType(8, Short))
			//Me.lbl.SetIndex(_lbl_7, CType(7, Short))
			//Me.lbl.SetIndex(_lbl_6, CType(6, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lblData.SetIndex(_lblData_4, CType(4, Short))
			//Me.lblData.SetIndex(_lblData_3, CType(3, Short))
			//Me.lblData.SetIndex(_lblData_2, CType(2, Short))
			//Me.lblData.SetIndex(_lblData_1, CType(1, Short))
			//Me.lblData.SetIndex(_lblData_0, CType(0, Short))
			//Me.lblData.SetIndex(_lblData_5, CType(5, Short))
			//Me.lblData.SetIndex(_lblData_6, CType(6, Short))
			//M() ''e.lblData.SetIndex(_lblData_7, CType(7, Short))
			//M() 'e.lblLabels.SetIndex(_lblLabels_9, CType(9, Short))
			//Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
			//Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short))
			//Me.lblLabels.SetIndex(_lblLabels_37, CType(37, Short))
			//Me.lblLabels.SetIndex(_lblLabels_36, CType(36, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//'Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
			this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
			this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1));
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			this.Shape1.SetIndex(_Shape1_3, Convert.ToInt16(3));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblData, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemplo n.º 30
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Aemplye_details_form));
     this.panel1                 = new System.Windows.Forms.Panel();
     this.panel6                 = new System.Windows.Forms.Panel();
     this.cmddelete              = new System.Windows.Forms.Label();
     this.panel15                = new System.Windows.Forms.Panel();
     this.cmdupdate              = new System.Windows.Forms.Label();
     this.panel14                = new System.Windows.Forms.Panel();
     this.cmdview                = new System.Windows.Forms.Label();
     this.panel5                 = new System.Windows.Forms.Panel();
     this.panel4                 = new System.Windows.Forms.Panel();
     this.txtdateTime1           = new System.Windows.Forms.TextBox();
     this.label22                = new System.Windows.Forms.Label();
     this.txtusername            = new System.Windows.Forms.TextBox();
     this.txtphone               = new System.Windows.Forms.TextBox();
     this.txtemail               = new System.Windows.Forms.TextBox();
     this.txtpassword            = new System.Windows.Forms.TextBox();
     this.txtcomBox2             = new System.Windows.Forms.TextBox();
     this.txtcomBox1             = new System.Windows.Forms.TextBox();
     this.txtaddress             = new System.Windows.Forms.TextBox();
     this.txtdateTime2           = new System.Windows.Forms.TextBox();
     this.txtcode                = new System.Windows.Forms.TextBox();
     this.txtname                = new System.Windows.Forms.TextBox();
     this.txtcomBox3             = new System.Windows.Forms.TextBox();
     this.txtid                  = new System.Windows.Forms.TextBox();
     this.pictureBox4            = new System.Windows.Forms.PictureBox();
     this.label20                = new System.Windows.Forms.Label();
     this.label19                = new System.Windows.Forms.Label();
     this.label4                 = new System.Windows.Forms.Label();
     this.label10                = new System.Windows.Forms.Label();
     this.label21                = new System.Windows.Forms.Label();
     this.label16                = new System.Windows.Forms.Label();
     this.label18                = new System.Windows.Forms.Label();
     this.label11                = new System.Windows.Forms.Label();
     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.label3                 = new System.Windows.Forms.Label();
     this.label2                 = new System.Windows.Forms.Label();
     this.shapeContainer1        = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.rectangleShape1        = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.Employee_dataGridView1 = new System.Windows.Forms.DataGridView();
     this.panel3                 = new System.Windows.Forms.Panel();
     this.label17                = new System.Windows.Forms.Label();
     this.label15                = new System.Windows.Forms.Label();
     this.pictureBox3            = new System.Windows.Forms.PictureBox();
     this.pictureBox2            = new System.Windows.Forms.PictureBox();
     this.icon1                  = new System.Windows.Forms.PictureBox();
     this.pictureBox1            = new System.Windows.Forms.PictureBox();
     this.panel2                 = new System.Windows.Forms.Panel();
     this.label1                 = new System.Windows.Forms.Label();
     this.label9                 = new System.Windows.Forms.Label();
     this.panel1.SuspendLayout();
     this.panel6.SuspendLayout();
     this.panel15.SuspendLayout();
     this.panel14.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Employee_dataGridView1)).BeginInit();
     this.panel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.icon1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Black;
     this.panel1.Controls.Add(this.panel6);
     this.panel1.Controls.Add(this.panel15);
     this.panel1.Controls.Add(this.panel14);
     this.panel1.Controls.Add(this.panel5);
     this.panel1.Controls.Add(this.panel4);
     this.panel1.Controls.Add(this.Employee_dataGridView1);
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Controls.Add(this.label9);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(1314, 693);
     this.panel1.TabIndex = 0;
     //
     // panel6
     //
     this.panel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel6.Controls.Add(this.cmddelete);
     this.panel6.Location = new System.Drawing.Point(1194, 633);
     this.panel6.Name     = "panel6";
     this.panel6.Size     = new System.Drawing.Size(108, 33);
     this.panel6.TabIndex = 30;
     this.panel6.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel6_Paint);
     //
     // cmddelete
     //
     this.cmddelete.AutoSize  = true;
     this.cmddelete.Font      = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmddelete.ForeColor = System.Drawing.SystemColors.Control;
     this.cmddelete.Location  = new System.Drawing.Point(20, 5);
     this.cmddelete.Name      = "cmddelete";
     this.cmddelete.Size      = new System.Drawing.Size(65, 25);
     this.cmddelete.TabIndex  = 0;
     this.cmddelete.Text      = "Delete";
     this.cmddelete.Click    += new System.EventHandler(this.cmddelete_Click);
     //
     // panel15
     //
     this.panel15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel15.Controls.Add(this.cmdupdate);
     this.panel15.Location = new System.Drawing.Point(1194, 575);
     this.panel15.Name     = "panel15";
     this.panel15.Size     = new System.Drawing.Size(108, 33);
     this.panel15.TabIndex = 31;
     //
     // cmdupdate
     //
     this.cmdupdate.AutoSize  = true;
     this.cmdupdate.Font      = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdupdate.ForeColor = System.Drawing.SystemColors.Control;
     this.cmdupdate.Location  = new System.Drawing.Point(20, 5);
     this.cmdupdate.Name      = "cmdupdate";
     this.cmdupdate.Size      = new System.Drawing.Size(71, 25);
     this.cmdupdate.TabIndex  = 0;
     this.cmdupdate.Text      = "Update";
     //
     // panel14
     //
     this.panel14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel14.Controls.Add(this.cmdview);
     this.panel14.Location = new System.Drawing.Point(1194, 516);
     this.panel14.Name     = "panel14";
     this.panel14.Size     = new System.Drawing.Size(108, 33);
     this.panel14.TabIndex = 32;
     this.panel14.Paint   += new System.Windows.Forms.PaintEventHandler(this.panel14_Paint);
     //
     // cmdview
     //
     this.cmdview.AutoSize  = true;
     this.cmdview.Font      = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.cmdview.ForeColor = System.Drawing.SystemColors.Control;
     this.cmdview.Location  = new System.Drawing.Point(28, 5);
     this.cmdview.Name      = "cmdview";
     this.cmdview.Size      = new System.Drawing.Size(50, 25);
     this.cmdview.TabIndex  = 0;
     this.cmdview.Text      = "View";
     this.cmdview.Click    += new System.EventHandler(this.cmdview_Click);
     //
     // panel5
     //
     this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel5.Location  = new System.Drawing.Point(258, 149);
     this.panel5.Name      = "panel5";
     this.panel5.Size      = new System.Drawing.Size(1044, 13);
     this.panel5.TabIndex  = 20;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.SystemColors.ButtonFace;
     this.panel4.Controls.Add(this.txtdateTime1);
     this.panel4.Controls.Add(this.label22);
     this.panel4.Controls.Add(this.txtusername);
     this.panel4.Controls.Add(this.txtphone);
     this.panel4.Controls.Add(this.txtemail);
     this.panel4.Controls.Add(this.txtpassword);
     this.panel4.Controls.Add(this.txtcomBox2);
     this.panel4.Controls.Add(this.txtcomBox1);
     this.panel4.Controls.Add(this.txtaddress);
     this.panel4.Controls.Add(this.txtdateTime2);
     this.panel4.Controls.Add(this.txtcode);
     this.panel4.Controls.Add(this.txtname);
     this.panel4.Controls.Add(this.txtcomBox3);
     this.panel4.Controls.Add(this.txtid);
     this.panel4.Controls.Add(this.pictureBox4);
     this.panel4.Controls.Add(this.label20);
     this.panel4.Controls.Add(this.label19);
     this.panel4.Controls.Add(this.label4);
     this.panel4.Controls.Add(this.label10);
     this.panel4.Controls.Add(this.label21);
     this.panel4.Controls.Add(this.label16);
     this.panel4.Controls.Add(this.label18);
     this.panel4.Controls.Add(this.label11);
     this.panel4.Controls.Add(this.label8);
     this.panel4.Controls.Add(this.label7);
     this.panel4.Controls.Add(this.label6);
     this.panel4.Controls.Add(this.label5);
     this.panel4.Controls.Add(this.label3);
     this.panel4.Controls.Add(this.label2);
     this.panel4.Controls.Add(this.shapeContainer1);
     this.panel4.Location = new System.Drawing.Point(258, 149);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(1044, 357);
     this.panel4.TabIndex = 16;
     //
     // txtdateTime1
     //
     this.txtdateTime1.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtdateTime1.Location = new System.Drawing.Point(463, 125);
     this.txtdateTime1.Name     = "txtdateTime1";
     this.txtdateTime1.Size     = new System.Drawing.Size(194, 33);
     this.txtdateTime1.TabIndex = 36;
     //
     // label22
     //
     this.label22.AutoSize = true;
     this.label22.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label22.Location = new System.Drawing.Point(334, 127);
     this.label22.Name     = "label22";
     this.label22.Size     = new System.Drawing.Size(112, 25);
     this.label22.TabIndex = 22;
     this.label22.Text     = "Date of Birth";
     //
     // txtusername
     //
     this.txtusername.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtusername.Location = new System.Drawing.Point(815, 127);
     this.txtusername.Name     = "txtusername";
     this.txtusername.Size     = new System.Drawing.Size(194, 33);
     this.txtusername.TabIndex = 36;
     //
     // txtphone
     //
     this.txtphone.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtphone.Location = new System.Drawing.Point(815, 260);
     this.txtphone.Name     = "txtphone";
     this.txtphone.Size     = new System.Drawing.Size(194, 33);
     this.txtphone.TabIndex = 36;
     //
     // txtemail
     //
     this.txtemail.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtemail.Location = new System.Drawing.Point(815, 215);
     this.txtemail.Name     = "txtemail";
     this.txtemail.Size     = new System.Drawing.Size(194, 33);
     this.txtemail.TabIndex = 36;
     //
     // txtpassword
     //
     this.txtpassword.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtpassword.Location = new System.Drawing.Point(815, 171);
     this.txtpassword.Name     = "txtpassword";
     this.txtpassword.Size     = new System.Drawing.Size(194, 33);
     this.txtpassword.TabIndex = 36;
     //
     // txtcomBox2
     //
     this.txtcomBox2.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtcomBox2.Location = new System.Drawing.Point(463, 304);
     this.txtcomBox2.Name     = "txtcomBox2";
     this.txtcomBox2.Size     = new System.Drawing.Size(194, 33);
     this.txtcomBox2.TabIndex = 36;
     //
     // txtcomBox1
     //
     this.txtcomBox1.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtcomBox1.Location = new System.Drawing.Point(463, 257);
     this.txtcomBox1.Name     = "txtcomBox1";
     this.txtcomBox1.Size     = new System.Drawing.Size(194, 33);
     this.txtcomBox1.TabIndex = 36;
     //
     // txtaddress
     //
     this.txtaddress.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtaddress.Location = new System.Drawing.Point(463, 212);
     this.txtaddress.Name     = "txtaddress";
     this.txtaddress.Size     = new System.Drawing.Size(194, 33);
     this.txtaddress.TabIndex = 36;
     //
     // txtdateTime2
     //
     this.txtdateTime2.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtdateTime2.Location = new System.Drawing.Point(463, 168);
     this.txtdateTime2.Name     = "txtdateTime2";
     this.txtdateTime2.Size     = new System.Drawing.Size(194, 33);
     this.txtdateTime2.TabIndex = 36;
     //
     // txtcode
     //
     this.txtcode.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtcode.Location = new System.Drawing.Point(815, 80);
     this.txtcode.Name     = "txtcode";
     this.txtcode.Size     = new System.Drawing.Size(194, 33);
     this.txtcode.TabIndex = 36;
     //
     // txtname
     //
     this.txtname.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtname.Location = new System.Drawing.Point(463, 80);
     this.txtname.Name     = "txtname";
     this.txtname.Size     = new System.Drawing.Size(194, 33);
     this.txtname.TabIndex = 36;
     //
     // txtcomBox3
     //
     this.txtcomBox3.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtcomBox3.Location = new System.Drawing.Point(815, 33);
     this.txtcomBox3.Name     = "txtcomBox3";
     this.txtcomBox3.Size     = new System.Drawing.Size(194, 33);
     this.txtcomBox3.TabIndex = 36;
     //
     // txtid
     //
     this.txtid.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtid.Location = new System.Drawing.Point(463, 33);
     this.txtid.Name     = "txtid";
     this.txtid.Size     = new System.Drawing.Size(194, 33);
     this.txtid.TabIndex = 36;
     //
     // pictureBox4
     //
     this.pictureBox4.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image")));
     this.pictureBox4.Location = new System.Drawing.Point(30, 28);
     this.pictureBox4.Name     = "pictureBox4";
     this.pictureBox4.Size     = new System.Drawing.Size(261, 207);
     this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox4.TabIndex = 35;
     this.pictureBox4.TabStop  = false;
     //
     // label20
     //
     this.label20.AutoSize = true;
     this.label20.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label20.Location = new System.Drawing.Point(696, 130);
     this.label20.Name     = "label20";
     this.label20.Size     = new System.Drawing.Size(95, 25);
     this.label20.TabIndex = 32;
     this.label20.Text     = "UserName";
     //
     // label19
     //
     this.label19.AutoSize = true;
     this.label19.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label19.Location = new System.Drawing.Point(706, 174);
     this.label19.Name     = "label19";
     this.label19.Size     = new System.Drawing.Size(85, 25);
     this.label19.TabIndex = 33;
     this.label19.Text     = "Password";
     //
     // label4
     //
     this.label4.AutoSize = true;
     this.label4.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label4.Location = new System.Drawing.Point(699, 263);
     this.label4.Name     = "label4";
     this.label4.Size     = new System.Drawing.Size(92, 25);
     this.label4.TabIndex = 34;
     this.label4.Text     = "Phone No";
     //
     // label10
     //
     this.label10.AutoSize = true;
     this.label10.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label10.Location = new System.Drawing.Point(684, 33);
     this.label10.Name     = "label10";
     this.label10.Size     = new System.Drawing.Size(107, 25);
     this.label10.TabIndex = 31;
     this.label10.Text     = "Designation";
     //
     // label21
     //
     this.label21.AutoSize = true;
     this.label21.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label21.Location = new System.Drawing.Point(735, 83);
     this.label21.Name     = "label21";
     this.label21.Size     = new System.Drawing.Size(56, 25);
     this.label21.TabIndex = 29;
     this.label21.Text     = "Code";
     //
     // label16
     //
     this.label16.AutoSize = true;
     this.label16.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label16.Location = new System.Drawing.Point(817, 448);
     this.label16.Name     = "label16";
     this.label16.Size     = new System.Drawing.Size(79, 20);
     this.label16.TabIndex = 25;
     this.label16.Text     = "Phone No";
     //
     // label18
     //
     this.label18.AutoSize = true;
     this.label18.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label18.Location = new System.Drawing.Point(659, 218);
     this.label18.Name     = "label18";
     this.label18.Size     = new System.Drawing.Size(132, 25);
     this.label18.TabIndex = 21;
     this.label18.Text     = "E-mail Address";
     //
     // label11
     //
     this.label11.AutoSize = true;
     this.label11.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label11.Location = new System.Drawing.Point(315, 171);
     this.label11.Name     = "label11";
     this.label11.Size     = new System.Drawing.Size(131, 25);
     this.label11.TabIndex = 22;
     this.label11.Text     = "Date of Joining";
     //
     // label8
     //
     this.label8.AutoSize = true;
     this.label8.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label8.Location = new System.Drawing.Point(385, 307);
     this.label8.Name     = "label8";
     this.label8.Size     = new System.Drawing.Size(52, 25);
     this.label8.TabIndex = 27;
     this.label8.Text     = "State";
     //
     // label7
     //
     this.label7.AutoSize = true;
     this.label7.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label7.Location = new System.Drawing.Point(394, 260);
     this.label7.Name     = "label7";
     this.label7.Size     = new System.Drawing.Size(43, 25);
     this.label7.TabIndex = 24;
     this.label7.Text     = "City";
     //
     // label6
     //
     this.label6.AutoSize = true;
     this.label6.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label6.Location = new System.Drawing.Point(370, 215);
     this.label6.Name     = "label6";
     this.label6.Size     = new System.Drawing.Size(76, 25);
     this.label6.TabIndex = 20;
     this.label6.Text     = "Address";
     //
     // label5
     //
     this.label5.AutoSize = true;
     this.label5.Font     = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label5.Location = new System.Drawing.Point(244, 448);
     this.label5.Name     = "label5";
     this.label5.Size     = new System.Drawing.Size(47, 20);
     this.label5.TabIndex = 19;
     this.label5.Text     = "Code";
     //
     // label3
     //
     this.label3.AutoSize = true;
     this.label3.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label3.Location = new System.Drawing.Point(304, 83);
     this.label3.Name     = "label3";
     this.label3.Size     = new System.Drawing.Size(146, 25);
     this.label3.TabIndex = 28;
     this.label3.Text     = "Employee Name";
     //
     // label2
     //
     this.label2.AutoSize = true;
     this.label2.Font     = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label2.Location = new System.Drawing.Point(338, 33);
     this.label2.Name     = "label2";
     this.label2.Size     = new System.Drawing.Size(112, 25);
     this.label2.TabIndex = 18;
     this.label2.Text     = "Customer ID";
     //
     // 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.rectangleShape1
     });
     this.shapeContainer1.Size     = new System.Drawing.Size(1044, 357);
     this.shapeContainer1.TabIndex = 37;
     this.shapeContainer1.TabStop  = false;
     //
     // rectangleShape1
     //
     this.rectangleShape1.BackColor   = System.Drawing.Color.DarkRed;
     this.rectangleShape1.BorderColor = System.Drawing.Color.Red;
     this.rectangleShape1.Location    = new System.Drawing.Point(25, 24);
     this.rectangleShape1.Name        = "rectangleShape1";
     this.rectangleShape1.Size        = new System.Drawing.Size(269, 213);
     //
     // Employee_dataGridView1
     //
     this.Employee_dataGridView1.BackgroundColor             = System.Drawing.Color.White;
     this.Employee_dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.Employee_dataGridView1.Location          = new System.Drawing.Point(258, 516);
     this.Employee_dataGridView1.Name              = "Employee_dataGridView1";
     this.Employee_dataGridView1.Size              = new System.Drawing.Size(930, 150);
     this.Employee_dataGridView1.TabIndex          = 15;
     this.Employee_dataGridView1.CellClick        += new System.Windows.Forms.DataGridViewCellEventHandler(this.Employee_dataGridView1_CellClick);
     this.Employee_dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel3.Controls.Add(this.label17);
     this.panel3.Controls.Add(this.label15);
     this.panel3.Controls.Add(this.pictureBox3);
     this.panel3.Controls.Add(this.pictureBox2);
     this.panel3.Controls.Add(this.icon1);
     this.panel3.Controls.Add(this.pictureBox1);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel3.Location = new System.Drawing.Point(0, 56);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(89, 637);
     this.panel3.TabIndex = 12;
     //
     // label17
     //
     this.label17.AutoSize  = true;
     this.label17.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label17.ForeColor = System.Drawing.Color.White;
     this.label17.Location  = new System.Drawing.Point(99, 377);
     this.label17.Name      = "label17";
     this.label17.Size      = new System.Drawing.Size(68, 20);
     this.label17.TabIndex  = 4;
     this.label17.Text      = "LogOut";
     //
     // label15
     //
     this.label15.AutoSize  = true;
     this.label15.Font      = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label15.ForeColor = System.Drawing.Color.White;
     this.label15.Location  = new System.Drawing.Point(99, 209);
     this.label15.Name      = "label15";
     this.label15.Size      = new System.Drawing.Size(56, 20);
     this.label15.TabIndex  = 4;
     this.label15.Text      = "Home";
     this.label15.Click    += new System.EventHandler(this.label15_Click);
     //
     // pictureBox3
     //
     this.pictureBox3.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image")));
     this.pictureBox3.Location = new System.Drawing.Point(9, 368);
     this.pictureBox3.Name     = "pictureBox3";
     this.pictureBox3.Size     = new System.Drawing.Size(69, 52);
     this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
     this.pictureBox3.TabIndex = 2;
     this.pictureBox3.TabStop  = false;
     this.pictureBox3.Click   += new System.EventHandler(this.pictureBox3_Click);
     //
     // pictureBox2
     //
     this.pictureBox2.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image")));
     this.pictureBox2.Location = new System.Drawing.Point(3, 179);
     this.pictureBox2.Name     = "pictureBox2";
     this.pictureBox2.Size     = new System.Drawing.Size(83, 69);
     this.pictureBox2.TabIndex = 2;
     this.pictureBox2.TabStop  = false;
     this.pictureBox2.Click   += new System.EventHandler(this.pictureBox2_Click);
     //
     // icon1
     //
     this.icon1.Image    = ((System.Drawing.Image)(resources.GetObject("icon1.Image")));
     this.icon1.Location = new System.Drawing.Point(3, 41);
     this.icon1.Name     = "icon1";
     this.icon1.Size     = new System.Drawing.Size(83, 65);
     this.icon1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.icon1.TabIndex = 1;
     this.icon1.TabStop  = false;
     this.icon1.Click   += new System.EventHandler(this.icon1_Click);
     //
     // pictureBox1
     //
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(3, 549);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(83, 75);
     this.pictureBox1.TabIndex = 1;
     this.pictureBox1.TabStop  = false;
     this.pictureBox1.Click   += new System.EventHandler(this.pictureBox1_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
     this.panel2.Controls.Add(this.label1);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(1314, 56);
     this.panel2.TabIndex = 11;
     //
     // label1
     //
     this.label1.AutoSize  = true;
     this.label1.Font      = new System.Drawing.Font("Adobe Fan Heiti Std B", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128)));
     this.label1.ForeColor = System.Drawing.Color.White;
     this.label1.Location  = new System.Drawing.Point(95, 0);
     this.label1.Name      = "label1";
     this.label1.Size      = new System.Drawing.Size(446, 46);
     this.label1.TabIndex  = 2;
     this.label1.Text      = "HeartLand Home Finance";
     //
     // label9
     //
     this.label9.AutoSize  = true;
     this.label9.Font      = new System.Drawing.Font("Microsoft Sans Serif", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.label9.ForeColor = System.Drawing.Color.Crimson;
     this.label9.Location  = new System.Drawing.Point(549, 71);
     this.label9.Name      = "label9";
     this.label9.Size      = new System.Drawing.Size(430, 55);
     this.label9.TabIndex  = 18;
     this.label9.Text      = "Employee Register";
     //
     // Aemplye_details_form
     //
     this.ClientSize = new System.Drawing.Size(1314, 693);
     this.Controls.Add(this.panel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "Aemplye_details_form";
     this.WindowState     = System.Windows.Forms.FormWindowState.Maximized;
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel6.ResumeLayout(false);
     this.panel6.PerformLayout();
     this.panel15.ResumeLayout(false);
     this.panel15.PerformLayout();
     this.panel14.ResumeLayout(false);
     this.panel14.PerformLayout();
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Employee_dataGridView1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.icon1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel2.ResumeLayout(false);
     this.panel2.PerformLayout();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRV));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.tmrAutoGRV      = new System.Windows.Forms.Timer(components);
     this.cmdNext         = new System.Windows.Forms.Button();
     this.cmdBack         = new System.Windows.Forms.Button();
     this._frmMode_1      = new System.Windows.Forms.GroupBox();
     this.cmdNewGT        = new System.Windows.Forms.Button();
     this.MonthView1      = new System.Windows.Forms.MonthCalendar();
     this.cmdLoad         = new System.Windows.Forms.Button();
     this.txtInvoiceTotal = new System.Windows.Forms.TextBox();
     this.txtInvoiceNo    = new System.Windows.Forms.TextBox();
     this.cmbTemplate     = new myDataGridView();
     this._lbl_4          = new System.Windows.Forms.Label();
     this._lblLabels_0    = new System.Windows.Forms.Label();
     this._lblData_3      = new System.Windows.Forms.Label();
     this._lbl_5          = new System.Windows.Forms.Label();
     this._lbl_6          = new System.Windows.Forms.Label();
     this._lbl_7          = new System.Windows.Forms.Label();
     this._lblData_7      = new System.Windows.Forms.Label();
     this._lblLabels_36   = new System.Windows.Forms.Label();
     this._lbl_2          = new System.Windows.Forms.Label();
     this._lbl_1          = new System.Windows.Forms.Label();
     this._lblLabels_2    = new System.Windows.Forms.Label();
     this._lblLabels_8    = new System.Windows.Forms.Label();
     this._lblLabels_9    = new System.Windows.Forms.Label();
     this._lblData_0      = new System.Windows.Forms.Label();
     this._lblData_1      = new System.Windows.Forms.Label();
     this._lblData_2      = new System.Windows.Forms.Label();
     this._Shape1_1       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.lblData = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new OvalShapeArray(components);
     this._frmMode_1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.MonthView1).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbTemplate).BeginInit();
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblData, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     this.FormBorderStyle           = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                      = "Process a 'Good Receiving Voucher'";
     this.ClientSize                = new System.Drawing.Size(360, 449);
     this.Location                  = new System.Drawing.Point(3, 22);
     this.ControlBox                = false;
     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.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                      = "frmGRV";
     this.tmrAutoGRV.Enabled        = false;
     this.tmrAutoGRV.Interval       = 10;
     this.cmdNext.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text              = "&Next";
     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(97, 34);
     this.cmdNext.Location          = new System.Drawing.Point(246, 409);
     this.cmdNext.TabIndex          = 9;
     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.cmdBack.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBack.Text              = "E&xit";
     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(97, 34);
     this.cmdBack.Location          = new System.Drawing.Point(15, 409);
     this.cmdBack.TabIndex          = 8;
     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._frmMode_1.Text           = "Select a supplier to transact with.";
     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(346, 395);
     this._frmMode_1.Location       = new System.Drawing.Point(6, 6);
     this._frmMode_1.TabIndex       = 10;
     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.Visible        = true;
     this._frmMode_1.Padding        = new System.Windows.Forms.Padding(0);
     this._frmMode_1.Name           = "_frmMode_1";
     this.cmdNewGT.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNewGT.Text             = "Maintain GRV Templates";
     this.AcceptButton              = this.cmdNewGT;
     this.cmdNewGT.Font             = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdNewGT.Size             = new System.Drawing.Size(169, 23);
     this.cmdNewGT.Location         = new System.Drawing.Point(167, 144);
     this.cmdNewGT.TabIndex         = 24;
     this.cmdNewGT.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdNewGT.CausesValidation = true;
     this.cmdNewGT.Enabled          = true;
     this.cmdNewGT.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdNewGT.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdNewGT.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdNewGT.TabStop          = true;
     this.cmdNewGT.Name             = "cmdNewGT";
     //MonthView1.OcxState = CType(resources.GetObject("MonthView1.OcxState"), System.Windows.Forms.AxHost.State)
     this.MonthView1.Size                  = new System.Drawing.Size(176, 154);
     this.MonthView1.Location              = new System.Drawing.Point(72, 223);
     this.MonthView1.TabIndex              = 6;
     this.MonthView1.Name                  = "MonthView1";
     this.cmdLoad.TextAlign                = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdLoad.Text                     = "Load GRV";
     this.cmdLoad.Font                     = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdLoad.Size                     = new System.Drawing.Size(73, 52);
     this.cmdLoad.Location                 = new System.Drawing.Point(255, 322);
     this.cmdLoad.TabIndex                 = 7;
     this.cmdLoad.BackColor                = System.Drawing.SystemColors.Control;
     this.cmdLoad.CausesValidation         = true;
     this.cmdLoad.Enabled                  = true;
     this.cmdLoad.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.cmdLoad.Cursor                   = System.Windows.Forms.Cursors.Default;
     this.cmdLoad.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this.cmdLoad.TabStop                  = true;
     this.cmdLoad.Name                     = "cmdLoad";
     this.txtInvoiceTotal.AutoSize         = false;
     this.txtInvoiceTotal.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtInvoiceTotal.Size             = new System.Drawing.Size(103, 19);
     this.txtInvoiceTotal.Location         = new System.Drawing.Point(147, 199);
     this.txtInvoiceTotal.TabIndex         = 4;
     this.txtInvoiceTotal.AcceptsReturn    = true;
     this.txtInvoiceTotal.BackColor        = System.Drawing.SystemColors.Window;
     this.txtInvoiceTotal.CausesValidation = true;
     this.txtInvoiceTotal.Enabled          = true;
     this.txtInvoiceTotal.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtInvoiceTotal.HideSelection    = true;
     this.txtInvoiceTotal.ReadOnly         = false;
     this.txtInvoiceTotal.MaxLength        = 0;
     this.txtInvoiceTotal.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtInvoiceTotal.Multiline        = false;
     this.txtInvoiceTotal.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtInvoiceTotal.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtInvoiceTotal.TabStop          = true;
     this.txtInvoiceTotal.Visible          = true;
     this.txtInvoiceTotal.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtInvoiceTotal.Name             = "txtInvoiceTotal";
     this.txtInvoiceNo.AutoSize            = false;
     this.txtInvoiceNo.Size                = new System.Drawing.Size(178, 19);
     this.txtInvoiceNo.Location            = new System.Drawing.Point(72, 178);
     this.txtInvoiceNo.TabIndex            = 2;
     this.txtInvoiceNo.AcceptsReturn       = true;
     this.txtInvoiceNo.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtInvoiceNo.BackColor           = System.Drawing.SystemColors.Window;
     this.txtInvoiceNo.CausesValidation    = true;
     this.txtInvoiceNo.Enabled             = true;
     this.txtInvoiceNo.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtInvoiceNo.HideSelection       = true;
     this.txtInvoiceNo.ReadOnly            = false;
     this.txtInvoiceNo.MaxLength           = 0;
     this.txtInvoiceNo.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtInvoiceNo.Multiline           = false;
     this.txtInvoiceNo.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtInvoiceNo.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtInvoiceNo.TabStop             = true;
     this.txtInvoiceNo.Visible             = true;
     this.txtInvoiceNo.BorderStyle         = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtInvoiceNo.Name                = "txtInvoiceNo";
     //cmbTemplate.OcxState = CType(resources.GetObject("cmbTemplate.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbTemplate.Size          = new System.Drawing.Size(228, 21);
     this.cmbTemplate.Location      = new System.Drawing.Point(104, 117);
     this.cmbTemplate.TabIndex      = 22;
     this.cmbTemplate.Name          = "cmbTemplate";
     this._lbl_4.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_4.Text               = "GRV Template :";
     this._lbl_4.Size               = new System.Drawing.Size(76, 13);
     this._lbl_4.Location           = new System.Drawing.Point(22, 120);
     this._lbl_4.TabIndex           = 23;
     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._lblLabels_0.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_0.Text         = "Order Reference:";
     this._lblLabels_0.Size         = new System.Drawing.Size(82, 13);
     this._lblLabels_0.Location     = new System.Drawing.Point(16, 96);
     this._lblLabels_0.TabIndex     = 21;
     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._lblData_3.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_3.Text           = "PurchaseOrder_Reference";
     this._lblData_3.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_3.Size           = new System.Drawing.Size(226, 16);
     this._lblData_3.Location       = new System.Drawing.Point(106, 96);
     this._lblData_3.TabIndex       = 20;
     this._lblData_3.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_3.Enabled        = true;
     this._lblData_3.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_3.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_3.UseMnemonic    = true;
     this._lblData_3.Visible        = true;
     this._lblData_3.AutoSize       = false;
     this._lblData_3.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_3.Name           = "_lblData_3";
     this._lbl_5.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_5.Text               = "Number :";
     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(52, 13);
     this._lbl_5.Location           = new System.Drawing.Point(14, 181);
     this._lbl_5.TabIndex           = 1;
     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           = true;
     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               = "Total :";
     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(38, 13);
     this._lbl_6.Location           = new System.Drawing.Point(103, 202);
     this._lbl_6.TabIndex           = 3;
     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           = true;
     this._lbl_6.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_6.Name               = "_lbl_6";
     this._lbl_7.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_7.Text               = "Date :";
     this._lbl_7.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_7.Size               = new System.Drawing.Size(36, 13);
     this._lbl_7.Location           = new System.Drawing.Point(30, 220);
     this._lbl_7.TabIndex           = 5;
     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._lblData_7.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_7.Text           = "Supplier_ShippingCode";
     this._lblData_7.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_7.Size           = new System.Drawing.Size(226, 16);
     this._lblData_7.Location       = new System.Drawing.Point(105, 75);
     this._lblData_7.TabIndex       = 19;
     this._lblData_7.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_7.Enabled        = true;
     this._lblData_7.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_7.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_7.UseMnemonic    = true;
     this._lblData_7.Visible        = true;
     this._lblData_7.AutoSize       = false;
     this._lblData_7.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_7.Name           = "_lblData_7";
     this._lblLabels_36.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_36.Text        = "Account Number:";
     this._lblLabels_36.Size        = new System.Drawing.Size(83, 13);
     this._lblLabels_36.Location    = new System.Drawing.Point(14, 75);
     this._lblLabels_36.TabIndex    = 18;
     this._lblLabels_36.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_36.Enabled     = true;
     this._lblLabels_36.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_36.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_36.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_36.UseMnemonic = true;
     this._lblLabels_36.Visible     = true;
     this._lblLabels_36.AutoSize    = true;
     this._lblLabels_36.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_36.Name        = "_lblLabels_36";
     this._lbl_2.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_2.Text               = "&2. Invoice Details";
     this._lbl_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._lbl_2.Size               = new System.Drawing.Size(101, 13);
     this._lbl_2.Location           = new System.Drawing.Point(9, 152);
     this._lbl_2.TabIndex           = 0;
     this._lbl_2.TextAlign          = System.Drawing.ContentAlignment.TopLeft;
     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           = true;
     this._lbl_2.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_2.Name               = "_lbl_2";
     this._lbl_1.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_1.Text               = "&1. Supplier Details";
     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(105, 13);
     this._lbl_1.Location           = new System.Drawing.Point(9, 18);
     this._lbl_1.TabIndex           = 17;
     this._lbl_1.TextAlign          = System.Drawing.ContentAlignment.TopLeft;
     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._lblLabels_2.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_2.Text         = "Supplier Name:";
     this._lblLabels_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._lblLabels_2.Size         = new System.Drawing.Size(87, 13);
     this._lblLabels_2.Location     = new System.Drawing.Point(13, 39);
     this._lblLabels_2.TabIndex     = 16;
     this._lblLabels_2.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_2.Enabled      = true;
     this._lblLabels_2.ForeColor    = System.Drawing.SystemColors.ControlText;
     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_8.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_8.Text         = "Telephone:";
     this._lblLabels_8.Size         = new System.Drawing.Size(55, 13);
     this._lblLabels_8.Location     = new System.Drawing.Point(42, 57);
     this._lblLabels_8.TabIndex     = 15;
     this._lblLabels_8.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_8.Enabled      = true;
     this._lblLabels_8.ForeColor    = System.Drawing.SystemColors.ControlText;
     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_9.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_9.Text         = "Fax:";
     this._lblLabels_9.Size         = new System.Drawing.Size(22, 13);
     this._lblLabels_9.Location     = new System.Drawing.Point(210, 57);
     this._lblLabels_9.TabIndex     = 14;
     this._lblLabels_9.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_9.Enabled      = true;
     this._lblLabels_9.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_9.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_9.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_9.UseMnemonic  = true;
     this._lblLabels_9.Visible      = true;
     this._lblLabels_9.AutoSize     = true;
     this._lblLabels_9.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_9.Name         = "_lblLabels_9";
     this._lblData_0.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_0.Text           = "Supplier_Name";
     this._lblData_0.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_0.Size           = new System.Drawing.Size(226, 16);
     this._lblData_0.Location       = new System.Drawing.Point(105, 39);
     this._lblData_0.TabIndex       = 13;
     this._lblData_0.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_0.Enabled        = true;
     this._lblData_0.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_0.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_0.UseMnemonic    = true;
     this._lblData_0.Visible        = true;
     this._lblData_0.AutoSize       = false;
     this._lblData_0.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_0.Name           = "_lblData_0";
     this._lblData_1.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_1.Text           = "Supplier_Telephone";
     this._lblData_1.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_1.Size           = new System.Drawing.Size(94, 16);
     this._lblData_1.Location       = new System.Drawing.Point(105, 57);
     this._lblData_1.TabIndex       = 12;
     this._lblData_1.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_1.Enabled        = true;
     this._lblData_1.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_1.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_1.UseMnemonic    = true;
     this._lblData_1.Visible        = true;
     this._lblData_1.AutoSize       = false;
     this._lblData_1.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_1.Name           = "_lblData_1";
     this._lblData_2.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_2.Text           = "Supplier_Facimile";
     this._lblData_2.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_2.Size           = new System.Drawing.Size(94, 16);
     this._lblData_2.Location       = new System.Drawing.Point(237, 57);
     this._lblData_2.TabIndex       = 11;
     this._lblData_2.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_2.Enabled        = true;
     this._lblData_2.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_2.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_2.UseMnemonic    = true;
     this._lblData_2.Visible        = true;
     this._lblData_2.AutoSize       = false;
     this._lblData_2.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_2.Name           = "_lblData_2";
     this._Shape1_1.BackColor       = System.Drawing.Color.FromArgb(192, 192, 255);
     this._Shape1_1.BackStyle       = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_1.Size            = new System.Drawing.Size(328, 112);
     this._Shape1_1.Location        = new System.Drawing.Point(9, 20);
     this._Shape1_1.BorderColor     = System.Drawing.SystemColors.WindowText;
     this._Shape1_1.BorderStyle     = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_1.BorderWidth     = 1;
     this._Shape1_1.FillColor       = System.Drawing.Color.Black;
     this._Shape1_1.FillStyle       = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_1.Visible         = true;
     this._Shape1_1.Name            = "_Shape1_1";
     this._Shape1_2.BackColor       = System.Drawing.Color.FromArgb(255, 192, 192);
     this._Shape1_2.BackStyle       = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_2.Size            = new System.Drawing.Size(328, 214);
     this._Shape1_2.Location        = new System.Drawing.Point(9, 156);
     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(cmdNext);
     this.Controls.Add(cmdBack);
     this.Controls.Add(_frmMode_1);
     this._frmMode_1.Controls.Add(cmdNewGT);
     this._frmMode_1.Controls.Add(MonthView1);
     this._frmMode_1.Controls.Add(cmdLoad);
     this._frmMode_1.Controls.Add(txtInvoiceTotal);
     this._frmMode_1.Controls.Add(txtInvoiceNo);
     this._frmMode_1.Controls.Add(cmbTemplate);
     this._frmMode_1.Controls.Add(_lbl_4);
     this._frmMode_1.Controls.Add(_lblLabels_0);
     this._frmMode_1.Controls.Add(_lblData_3);
     this._frmMode_1.Controls.Add(_lbl_5);
     this._frmMode_1.Controls.Add(_lbl_6);
     this._frmMode_1.Controls.Add(_lbl_7);
     this._frmMode_1.Controls.Add(_lblData_7);
     this._frmMode_1.Controls.Add(_lblLabels_36);
     this._frmMode_1.Controls.Add(_lbl_2);
     this._frmMode_1.Controls.Add(_lbl_1);
     this._frmMode_1.Controls.Add(_lblLabels_2);
     this._frmMode_1.Controls.Add(_lblLabels_8);
     this._frmMode_1.Controls.Add(_lblLabels_9);
     this._frmMode_1.Controls.Add(_lblData_0);
     this._frmMode_1.Controls.Add(_lblData_1);
     this._frmMode_1.Controls.Add(_lblData_2);
     this.ShapeContainer1.Shapes.Add(_Shape1_1);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this._frmMode_1.Controls.Add(ShapeContainer1);
     //Me.frmMode.SetIndex(_frmMode_1, CType(1, Short))
     //Me.lbl.SetIndex(_lbl_4, CType(4, Short))
     //Me.lbl.SetIndex(_lbl_5, CType(5, Short))
     //Me.lbl.SetIndex(_lbl_6, CType(6, Short))
     //Me.lbl.SetIndex(_lbl_7, CType(7, Short))
     //Me.lbl.SetIndex(_lbl_2, CType(2, Short))
     //Me.lbl.SetIndex(_lbl_1, CType(1, Short))
     //Me.lblData.SetIndex(_lblData_3, CType(3, Short))
     //Me.lblData.SetIndex(_lblData_7, CType(7, Short))
     //Me.lblData.SetIndex(_lblData_0, CType(0, Short))
     //Me.lblData.SetIndex(_lblData_1, CType(1, Short))
     //Me.lblData.SetIndex(_lblData_2, CType(2, Short))
     //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
     //Me.lblLabels.SetIndex(_lblLabels_36, CType(36, Short))
     //Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
     //Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
     //Me.lblLabels.SetIndex(_lblLabels_9, CType(9, Short))
     //Me.Shape1.SetIndex(_Shape1_1, CType(1, Short))
     //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short))
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lblData, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.cmbTemplate).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.MonthView1).EndInit();
     this._frmMode_1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 32
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTransferItem));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.txtQtyT         = new System.Windows.Forms.TextBox();
     this.txtPSize        = new System.Windows.Forms.TextBox();
     this.txtPack         = new System.Windows.Forms.TextBox();
     this.txtPriceS       = new System.Windows.Forms.TextBox();
     this.txtQty          = new System.Windows.Forms.TextBox();
     this.txtPrice        = new System.Windows.Forms.TextBox();
     this.cmbQuantity     = new System.Windows.Forms.ComboBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdPack         = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this._LBL_6          = new System.Windows.Forms.Label();
     this._LBL_4          = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.lblPComp        = new System.Windows.Forms.Label();
     this.lblSComp        = new System.Windows.Forms.Label();
     this.lblStockItemS   = new System.Windows.Forms.Label();
     this._LBL_5          = new System.Windows.Forms.Label();
     this._LBL_0          = new System.Windows.Forms.Label();
     this._LBL_3          = new System.Windows.Forms.Label();
     this._LBL_2          = new System.Windows.Forms.Label();
     this._LBL_1          = new System.Windows.Forms.Label();
     this.lblStockItem    = new System.Windows.Forms.Label();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.LBL, 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 Transfer Item";
     this.ClientSize                   = new System.Drawing.Size(400, 249);
     this.Location                     = new System.Drawing.Point(3, 22);
     this.ControlBox                   = false;
     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                         = "frmStockTransferItem";
     this.txtQtyT.AutoSize             = false;
     this.txtQtyT.TextAlign            = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQtyT.Size                 = new System.Drawing.Size(67, 19);
     this.txtQtyT.Location             = new System.Drawing.Point(96, 97);
     this.txtQtyT.TabIndex             = 20;
     this.txtQtyT.Text                 = "0";
     this.txtQtyT.AcceptsReturn        = true;
     this.txtQtyT.BackColor            = System.Drawing.SystemColors.Window;
     this.txtQtyT.CausesValidation     = true;
     this.txtQtyT.Enabled              = true;
     this.txtQtyT.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtQtyT.HideSelection        = true;
     this.txtQtyT.ReadOnly             = false;
     this.txtQtyT.MaxLength            = 0;
     this.txtQtyT.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtQtyT.Multiline            = false;
     this.txtQtyT.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtQtyT.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtQtyT.TabStop              = true;
     this.txtQtyT.Visible              = true;
     this.txtQtyT.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtQtyT.Name                 = "txtQtyT";
     this.txtPSize.AutoSize            = false;
     this.txtPSize.TextAlign           = System.Windows.Forms.HorizontalAlignment.Center;
     this.txtPSize.Enabled             = false;
     this.txtPSize.Size                = new System.Drawing.Size(27, 19);
     this.txtPSize.Location            = new System.Drawing.Point(184, 97);
     this.txtPSize.TabIndex            = 19;
     this.txtPSize.Text                = "1";
     this.txtPSize.AcceptsReturn       = true;
     this.txtPSize.BackColor           = System.Drawing.SystemColors.Window;
     this.txtPSize.CausesValidation    = true;
     this.txtPSize.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtPSize.HideSelection       = true;
     this.txtPSize.ReadOnly            = false;
     this.txtPSize.MaxLength           = 0;
     this.txtPSize.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtPSize.Multiline           = false;
     this.txtPSize.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtPSize.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtPSize.TabStop             = true;
     this.txtPSize.Visible             = true;
     this.txtPSize.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPSize.Name                = "txtPSize";
     this.txtPack.AutoSize             = false;
     this.txtPack.Size                 = new System.Drawing.Size(41, 19);
     this.txtPack.Location             = new System.Drawing.Point(352, 160);
     this.txtPack.TabIndex             = 17;
     this.txtPack.Text                 = "0";
     this.txtPack.AcceptsReturn        = true;
     this.txtPack.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtPack.BackColor            = System.Drawing.SystemColors.Window;
     this.txtPack.CausesValidation     = true;
     this.txtPack.Enabled              = true;
     this.txtPack.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtPack.HideSelection        = true;
     this.txtPack.ReadOnly             = false;
     this.txtPack.MaxLength            = 0;
     this.txtPack.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtPack.Multiline            = false;
     this.txtPack.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtPack.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtPack.TabStop              = true;
     this.txtPack.Visible              = true;
     this.txtPack.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPack.Name                 = "txtPack";
     this.txtPriceS.AutoSize           = false;
     this.txtPriceS.TextAlign          = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPriceS.Enabled            = false;
     this.txtPriceS.Size               = new System.Drawing.Size(91, 19);
     this.txtPriceS.Location           = new System.Drawing.Point(291, 234);
     this.txtPriceS.TabIndex           = 9;
     this.txtPriceS.Text               = "0.00";
     this.txtPriceS.Visible            = false;
     this.txtPriceS.AcceptsReturn      = true;
     this.txtPriceS.BackColor          = System.Drawing.SystemColors.Window;
     this.txtPriceS.CausesValidation   = true;
     this.txtPriceS.ForeColor          = System.Drawing.SystemColors.WindowText;
     this.txtPriceS.HideSelection      = true;
     this.txtPriceS.ReadOnly           = false;
     this.txtPriceS.MaxLength          = 0;
     this.txtPriceS.Cursor             = System.Windows.Forms.Cursors.IBeam;
     this.txtPriceS.Multiline          = false;
     this.txtPriceS.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.txtPriceS.ScrollBars         = System.Windows.Forms.ScrollBars.None;
     this.txtPriceS.TabStop            = true;
     this.txtPriceS.BorderStyle        = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPriceS.Name               = "txtPriceS";
     this.txtQty.AutoSize              = false;
     this.txtQty.TextAlign             = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQty.Size                  = new System.Drawing.Size(67, 19);
     this.txtQty.Location              = new System.Drawing.Point(316, 97);
     this.txtQty.ReadOnly              = true;
     this.txtQty.TabIndex              = 8;
     this.txtQty.Text                  = "0";
     this.txtQty.AcceptsReturn         = true;
     this.txtQty.BackColor             = System.Drawing.SystemColors.Window;
     this.txtQty.CausesValidation      = true;
     this.txtQty.Enabled               = true;
     this.txtQty.ForeColor             = System.Drawing.SystemColors.WindowText;
     this.txtQty.HideSelection         = true;
     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.Fixed3D;
     this.txtQty.Name                  = "txtQty";
     this.txtPrice.AutoSize            = false;
     this.txtPrice.TextAlign           = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPrice.Enabled             = false;
     this.txtPrice.Size                = new System.Drawing.Size(91, 19);
     this.txtPrice.Location            = new System.Drawing.Point(293, 121);
     this.txtPrice.TabIndex            = 4;
     this.txtPrice.Text                = "0.00";
     this.txtPrice.AcceptsReturn       = true;
     this.txtPrice.BackColor           = System.Drawing.SystemColors.Window;
     this.txtPrice.CausesValidation    = true;
     this.txtPrice.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtPrice.HideSelection       = true;
     this.txtPrice.ReadOnly            = false;
     this.txtPrice.MaxLength           = 0;
     this.txtPrice.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtPrice.Multiline           = false;
     this.txtPrice.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtPrice.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtPrice.TabStop             = true;
     this.txtPrice.Visible             = true;
     this.txtPrice.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPrice.Name                = "txtPrice";
     this.cmbQuantity.Size             = new System.Drawing.Size(79, 21);
     this.cmbQuantity.Location         = new System.Drawing.Point(184, 96);
     this.cmbQuantity.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbQuantity.TabIndex         = 3;
     this.cmbQuantity.Visible          = false;
     this.cmbQuantity.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbQuantity.CausesValidation = true;
     this.cmbQuantity.Enabled          = true;
     this.cmbQuantity.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbQuantity.IntegralHeight   = true;
     this.cmbQuantity.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbQuantity.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbQuantity.Sorted           = false;
     this.cmbQuantity.TabStop          = true;
     this.cmbQuantity.Name             = "cmbQuantity";
     this.picButtons.Dock              = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor         = System.Drawing.Color.Blue;
     this.picButtons.Size              = new System.Drawing.Size(400, 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.cmdPack.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPack.Text                 = "Break / Build P&ack";
     this.cmdPack.Size                 = new System.Drawing.Size(105, 29);
     this.cmdPack.Location             = new System.Drawing.Point(88, 3);
     this.cmdPack.TabIndex             = 18;
     this.cmdPack.TabStop              = false;
     this.cmdPack.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdPack.CausesValidation     = true;
     this.cmdPack.Enabled              = true;
     this.cmdPack.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdPack.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdPack.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdPack.Name                 = "cmdPack";
     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(8, 3);
     this.cmdCancel.TabIndex           = 16;
     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(312, 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_6.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_6.Text                  = "Item Qty:";
     this._LBL_6.Size                  = new System.Drawing.Size(42, 13);
     this._LBL_6.Location              = new System.Drawing.Point(52, 99);
     this._LBL_6.TabIndex              = 22;
     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              = true;
     this._LBL_6.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_6.Name                  = "_LBL_6";
     this._LBL_4.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_4.Text                  = "x";
     this._LBL_4.Size                  = new System.Drawing.Size(8, 16);
     this._LBL_4.Location              = new System.Drawing.Point(170, 98);
     this._LBL_4.TabIndex              = 21;
     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.Label2.Text                  = "Please verify products from both locations";
     this.Label2.ForeColor             = System.Drawing.Color.FromArgb(192, 0, 0);
     this.Label2.Size                  = new System.Drawing.Size(296, 23);
     this.Label2.Location              = new System.Drawing.Point(56, 160);
     this.Label2.TabIndex              = 15;
     this.Label2.TextAlign             = System.Drawing.ContentAlignment.TopLeft;
     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.lblPComp.Text                = "Promotion Name:";
     this.lblPComp.Size                = new System.Drawing.Size(352, 24);
     this.lblPComp.Location            = new System.Drawing.Point(16, 52);
     this.lblPComp.TabIndex            = 14;
     this.lblPComp.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblPComp.BackColor           = System.Drawing.Color.Transparent;
     this.lblPComp.Enabled             = true;
     this.lblPComp.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.lblPComp.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblPComp.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblPComp.UseMnemonic         = true;
     this.lblPComp.Visible             = true;
     this.lblPComp.AutoSize            = false;
     this.lblPComp.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.lblPComp.Name                = "lblPComp";
     this.lblSComp.Text                = "Promotion Name:";
     this.lblSComp.Size                = new System.Drawing.Size(360, 24);
     this.lblSComp.Location            = new System.Drawing.Point(16, 192);
     this.lblSComp.TabIndex            = 13;
     this.lblSComp.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblSComp.BackColor           = System.Drawing.Color.Transparent;
     this.lblSComp.Enabled             = true;
     this.lblSComp.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.lblSComp.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblSComp.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblSComp.UseMnemonic         = true;
     this.lblSComp.Visible             = true;
     this.lblSComp.AutoSize            = false;
     this.lblSComp.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.lblSComp.Name                = "lblSComp";
     this.lblStockItemS.Text           = "Label1";
     this.lblStockItemS.Size           = new System.Drawing.Size(286, 17);
     this.lblStockItemS.Location       = new System.Drawing.Point(98, 216);
     this.lblStockItemS.TabIndex       = 12;
     this.lblStockItemS.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this.lblStockItemS.BackColor      = System.Drawing.SystemColors.Control;
     this.lblStockItemS.Enabled        = true;
     this.lblStockItemS.ForeColor      = System.Drawing.SystemColors.ControlText;
     this.lblStockItemS.Cursor         = System.Windows.Forms.Cursors.Default;
     this.lblStockItemS.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.lblStockItemS.UseMnemonic    = true;
     this.lblStockItemS.Visible        = true;
     this.lblStockItemS.AutoSize       = false;
     this.lblStockItemS.BorderStyle    = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblStockItemS.Name           = "lblStockItemS";
     this._LBL_5.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_5.Text                  = "Stock Item Name:";
     this._LBL_5.Size                  = new System.Drawing.Size(85, 13);
     this._LBL_5.Location              = new System.Drawing.Point(10, 184);
     this._LBL_5.TabIndex              = 11;
     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              = true;
     this._LBL_5.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_5.Name                  = "_LBL_5";
     this._LBL_0.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_0.Text                  = "Price:";
     this._LBL_0.Size                  = new System.Drawing.Size(27, 13);
     this._LBL_0.Location              = new System.Drawing.Point(260, 237);
     this._LBL_0.TabIndex              = 10;
     this._LBL_0.Visible               = false;
     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.AutoSize              = true;
     this._LBL_0.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_0.Name                  = "_LBL_0";
     this._LBL_3.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_3.Text                  = "Cost Price (singles) :";
     this._LBL_3.Size                  = new System.Drawing.Size(95, 13);
     this._LBL_3.Location              = new System.Drawing.Point(194, 124);
     this._LBL_3.TabIndex              = 7;
     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              = true;
     this._LBL_3.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_3.Name                  = "_LBL_3";
     this._LBL_2.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_2.Text                  = "Total Qty:";
     this._LBL_2.Size                  = new System.Drawing.Size(46, 13);
     this._LBL_2.Location              = new System.Drawing.Point(268, 99);
     this._LBL_2.TabIndex              = 6;
     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              = true;
     this._LBL_2.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_2.Name                  = "_LBL_2";
     this._LBL_1.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_1.Text                  = "Stock Item Name:";
     this._LBL_1.Size                  = new System.Drawing.Size(85, 13);
     this._LBL_1.Location              = new System.Drawing.Point(10, 79);
     this._LBL_1.TabIndex              = 5;
     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.lblStockItem.Text            = "Label1";
     this.lblStockItem.Size            = new System.Drawing.Size(286, 17);
     this.lblStockItem.Location        = new System.Drawing.Point(98, 79);
     this.lblStockItem.TabIndex        = 2;
     this.lblStockItem.TextAlign       = System.Drawing.ContentAlignment.TopLeft;
     this.lblStockItem.BackColor       = System.Drawing.SystemColors.Control;
     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.Fixed3D;
     this.lblStockItem.Name            = "lblStockItem";
     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(383, 104);
     this._Shape1_2.Location           = new System.Drawing.Point(7, 48);
     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._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(383, 56);
     this._Shape1_0.Location           = new System.Drawing.Point(7, 184);
     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(txtQtyT);
     this.Controls.Add(txtPSize);
     this.Controls.Add(txtPack);
     this.Controls.Add(txtPriceS);
     this.Controls.Add(txtQty);
     this.Controls.Add(txtPrice);
     this.Controls.Add(cmbQuantity);
     this.Controls.Add(picButtons);
     this.Controls.Add(_LBL_6);
     this.Controls.Add(_LBL_4);
     this.Controls.Add(Label2);
     this.Controls.Add(lblPComp);
     this.Controls.Add(lblSComp);
     this.Controls.Add(lblStockItemS);
     this.Controls.Add(_LBL_5);
     this.Controls.Add(_LBL_0);
     this.Controls.Add(_LBL_3);
     this.Controls.Add(_LBL_2);
     this.Controls.Add(_LBL_1);
     this.Controls.Add(lblStockItem);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this.ShapeContainer1.Shapes.Add(_Shape1_0);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdPack);
     this.picButtons.Controls.Add(cmdCancel);
     this.picButtons.Controls.Add(cmdClose);
     //Me.LBL.SetIndex(_LBL_6, CType(6, Short))
     //Me.LBL.SetIndex(_LBL_4, CType(4, Short))
     //Me.LBL.SetIndex(_LBL_5, CType(5, Short))
     //Me.LBL.SetIndex(_LBL_0, CType(0, Short))
     //Me.LBL.SetIndex(_LBL_3, CType(3, Short))
     //Me.LBL.SetIndex(_LBL_2, CType(2, Short))
     //Me.LBL.SetIndex(_LBL_1, CType(1, 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.LBL, System.ComponentModel.ISupportInitialize).EndInit()
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 33
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cboColumns      = new System.Windows.Forms.ComboBox();
     this.cboSet          = new System.Windows.Forms.ComboBox();
     this.cmdCopy         = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cboJoinOperator = new System.Windows.Forms.ComboBox();
     this.lstSummaryDef   = new System.Windows.Forms.ListBox();
     this.Label2          = new System.Windows.Forms.Label();
     this.Shape1          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.Label1          = new System.Windows.Forms.Label();
     this.SuspendLayout();
     this.ToolTip1.Active             = true;
     this.Text                        = "Form1";
     this.ClientSize                  = new System.Drawing.Size(705, 348);
     this.Location                    = new System.Drawing.Point(5, 29);
     this.StartPosition               = System.Windows.Forms.FormStartPosition.WindowsDefaultLocation;
     this.Font                        = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.Sizable;
     this.ControlBox                  = true;
     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.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "Form1";
     this.cboColumns.Size             = new System.Drawing.Size(514, 27);
     this.cboColumns.Location         = new System.Drawing.Point(139, 154);
     this.cboColumns.TabIndex         = 6;
     this.cboColumns.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboColumns.BackColor        = System.Drawing.SystemColors.Window;
     this.cboColumns.CausesValidation = true;
     this.cboColumns.Enabled          = true;
     this.cboColumns.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cboColumns.IntegralHeight   = true;
     this.cboColumns.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cboColumns.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cboColumns.Sorted           = false;
     this.cboColumns.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboColumns.TabStop          = true;
     this.cboColumns.Visible          = true;
     this.cboColumns.Name             = "cboColumns";
     this.cboSet.Size                 = new System.Drawing.Size(67, 27);
     this.cboSet.Location             = new System.Drawing.Point(139, 185);
     this.cboSet.Items.AddRange(new object[] {
         "And",
         "Or"
     });
     this.cboSet.TabIndex            = 5;
     this.cboSet.Font                = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboSet.BackColor           = System.Drawing.SystemColors.Window;
     this.cboSet.CausesValidation    = true;
     this.cboSet.Enabled             = true;
     this.cboSet.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.cboSet.IntegralHeight      = true;
     this.cboSet.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cboSet.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cboSet.Sorted              = false;
     this.cboSet.DropDownStyle       = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboSet.TabStop             = true;
     this.cboSet.Visible             = true;
     this.cboSet.Name                = "cboSet";
     this.cmdCopy.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCopy.Text               = "Copy";
     this.cmdCopy.Size               = new System.Drawing.Size(80, 28);
     this.cmdCopy.Location           = new System.Drawing.Point(268, 237);
     this.cmdCopy.TabIndex           = 4;
     this.cmdCopy.Font               = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cmdCopy.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdCopy.CausesValidation   = true;
     this.cmdCopy.Enabled            = true;
     this.cmdCopy.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdCopy.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdCopy.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdCopy.TabStop            = true;
     this.cmdCopy.Name               = "cmdCopy";
     this.cmdCancel.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCancel.Text             = "Cancel";
     this.cmdCancel.Size             = new System.Drawing.Size(80, 28);
     this.cmdCancel.Location         = new System.Drawing.Point(358, 237);
     this.cmdCancel.TabIndex         = 3;
     this.cmdCancel.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     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.TabStop          = true;
     this.cmdCancel.Name             = "cmdCancel";
     this.cboJoinOperator.Size       = new System.Drawing.Size(67, 27);
     this.cboJoinOperator.Location   = new System.Drawing.Point(373, 185);
     this.cboJoinOperator.Items.AddRange(new object[] {
         "And",
         "Or"
     });
     this.cboJoinOperator.TabIndex         = 2;
     this.cboJoinOperator.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.cboJoinOperator.BackColor        = System.Drawing.SystemColors.Window;
     this.cboJoinOperator.CausesValidation = true;
     this.cboJoinOperator.Enabled          = true;
     this.cboJoinOperator.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cboJoinOperator.IntegralHeight   = true;
     this.cboJoinOperator.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cboJoinOperator.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cboJoinOperator.Sorted           = false;
     this.cboJoinOperator.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDown;
     this.cboJoinOperator.TabStop          = true;
     this.cboJoinOperator.Visible          = true;
     this.cboJoinOperator.Name             = "cboJoinOperator";
     this.lstSummaryDef.Size             = new System.Drawing.Size(688, 90);
     this.lstSummaryDef.Location         = new System.Drawing.Point(10, 30);
     this.lstSummaryDef.TabIndex         = 0;
     this.lstSummaryDef.Font             = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.lstSummaryDef.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lstSummaryDef.BackColor        = System.Drawing.SystemColors.Window;
     this.lstSummaryDef.CausesValidation = true;
     this.lstSummaryDef.Enabled          = true;
     this.lstSummaryDef.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.lstSummaryDef.IntegralHeight   = true;
     this.lstSummaryDef.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lstSummaryDef.SelectionMode    = System.Windows.Forms.SelectionMode.One;
     this.lstSummaryDef.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lstSummaryDef.Sorted           = false;
     this.lstSummaryDef.TabStop          = true;
     this.lstSummaryDef.Visible          = true;
     this.lstSummaryDef.MultiColumn      = false;
     this.lstSummaryDef.Name             = "lstSummaryDef";
     this.Label2.Text        = "To:";
     this.Label2.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label2.ForeColor   = System.Drawing.Color.Red;
     this.Label2.Size        = new System.Drawing.Size(37, 24);
     this.Label2.Location    = new System.Drawing.Point(20, 149);
     this.Label2.TabIndex    = 7;
     this.Label2.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     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.Shape1.Size        = new System.Drawing.Size(599, 88);
     this.Shape1.Location    = new System.Drawing.Point(70, 140);
     this.Shape1.BackColor   = System.Drawing.SystemColors.Window;
     this.Shape1.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Transparent;
     this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Shape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Shape1.BorderWidth = 1;
     this.Shape1.FillColor   = System.Drawing.Color.Black;
     this.Shape1.FillStyle   = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this.Shape1.Visible     = true;
     this.Shape1.Name        = "Shape1";
     this.Label1.Text        = "Selected Criteria Sets to Copy:";
     this.Label1.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label1.ForeColor   = System.Drawing.Color.Red;
     this.Label1.Size        = new System.Drawing.Size(262, 22);
     this.Label1.Location    = new System.Drawing.Point(10, 10);
     this.Label1.TabIndex    = 1;
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.Enabled     = true;
     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(cboColumns);
     this.Controls.Add(cboSet);
     this.Controls.Add(cmdCopy);
     this.Controls.Add(cmdCancel);
     this.Controls.Add(cboJoinOperator);
     this.Controls.Add(lstSummaryDef);
     this.Controls.Add(Label2);
     this.ShapeContainer1.Shapes.Add(Shape1);
     this.Controls.Add(Label1);
     this.Controls.Add(ShapeContainer1);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 34
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmVegTestGRV));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.lstSupplier     = new System.Windows.Forms.ListBox();
     this.Picture1        = new System.Windows.Forms.Panel();
     this.lblPath         = new System.Windows.Forms.Label();
     this.lvItems         = new System.Windows.Forms.ListView();
     this._lbl_0          = new System.Windows.Forms.Label();
     this._lbl_1          = new System.Windows.Forms.Label();
     this._Shape1_1       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.Picture1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     this.ControlBox                   = false;
     this.FormBorderStyle              = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.ClientSize                   = new System.Drawing.Size(622, 444);
     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.BackColor                    = System.Drawing.SystemColors.Control;
     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                         = "frmVegTestGRV";
     this.lstSupplier.Size             = new System.Drawing.Size(151, 384);
     this.lstSupplier.Location         = new System.Drawing.Point(12, 48);
     this.lstSupplier.TabIndex         = 1;
     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.Picture1.Dock                = System.Windows.Forms.DockStyle.Top;
     this.Picture1.BackColor           = System.Drawing.Color.Blue;
     this.Picture1.Size                = new System.Drawing.Size(622, 25);
     this.Picture1.Location            = new System.Drawing.Point(0, 0);
     this.Picture1.TabIndex            = 4;
     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.lblPath.BackColor            = System.Drawing.Color.Transparent;
     this.lblPath.Text                 = "Select Market/GRV to use QTY";
     this.lblPath.ForeColor            = System.Drawing.Color.White;
     this.lblPath.Size                 = new System.Drawing.Size(251, 20);
     this.lblPath.Location             = new System.Drawing.Point(0, 0);
     this.lblPath.TabIndex             = 5;
     this.lblPath.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     this.lblPath.Enabled              = true;
     this.lblPath.Cursor               = System.Windows.Forms.Cursors.Default;
     this.lblPath.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.lblPath.UseMnemonic          = true;
     this.lblPath.Visible              = true;
     this.lblPath.AutoSize             = true;
     this.lblPath.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.lblPath.Name                 = "lblPath";
     this.lvItems.Size                 = new System.Drawing.Size(424, 382);
     this.lvItems.Location             = new System.Drawing.Point(183, 48);
     this.lvItems.TabIndex             = 3;
     this.lvItems.View                 = System.Windows.Forms.View.Details;
     this.lvItems.LabelEdit            = false;
     this.lvItems.LabelWrap            = true;
     this.lvItems.HideSelection        = true;
     this.lvItems.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.lvItems.BackColor            = System.Drawing.SystemColors.Window;
     this.lvItems.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvItems.Name                 = "lvItems";
     this._lbl_0.BackColor             = System.Drawing.Color.Transparent;
     this._lbl_0.Text                  = "&1. Select a Supplier";
     this._lbl_0.ForeColor             = System.Drawing.SystemColors.WindowText;
     this._lbl_0.Size                  = new System.Drawing.Size(113, 13);
     this._lbl_0.Location              = new System.Drawing.Point(9, 27);
     this._lbl_0.TabIndex              = 0;
     this._lbl_0.TextAlign             = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_0.Enabled               = true;
     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._lbl_1.BackColor             = System.Drawing.Color.Transparent;
     this._lbl_1.Text                  = "&2. Select an Invoice";
     this._lbl_1.ForeColor             = System.Drawing.SystemColors.WindowText;
     this._lbl_1.Size                  = new System.Drawing.Size(116, 13);
     this._lbl_1.Location              = new System.Drawing.Point(180, 27);
     this._lbl_1.TabIndex              = 2;
     this._lbl_1.TextAlign             = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_1.Enabled               = true;
     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._Shape1_1.BackColor          = System.Drawing.Color.FromArgb(192, 192, 255);
     this._Shape1_1.BackStyle          = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_1.Size               = new System.Drawing.Size(436, 394);
     this._Shape1_1.Location           = new System.Drawing.Point(177, 42);
     this._Shape1_1.BorderColor        = System.Drawing.SystemColors.WindowText;
     this._Shape1_1.BorderStyle        = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_1.BorderWidth        = 1;
     this._Shape1_1.FillColor          = System.Drawing.Color.Black;
     this._Shape1_1.FillStyle          = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_1.Visible            = true;
     this._Shape1_1.Name               = "_Shape1_1";
     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(163, 394);
     this._Shape1_0.Location           = new System.Drawing.Point(6, 42);
     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(lstSupplier);
     this.Controls.Add(Picture1);
     this.Controls.Add(lvItems);
     this.Controls.Add(_lbl_0);
     this.Controls.Add(_lbl_1);
     this.ShapeContainer1.Shapes.Add(_Shape1_1);
     this.ShapeContainer1.Shapes.Add(_Shape1_0);
     this.Controls.Add(ShapeContainer1);
     this.Picture1.Controls.Add(lblPath);
     //Me.lbl.SetIndex(_lbl_0, CType(0, Short))
     //Me.lbl.SetIndex(_lbl_1, CType(1, Short))
     this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1));
     this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     this.Picture1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 35
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.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.chkSelectAll = new System.Windows.Forms.CheckBox();
			this.lstSecurity = new System.Windows.Forms.CheckedListBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.lbl = 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.Shape1 });
			this.ShapeContainer1.Size = new System.Drawing.Size(359, 415);
			this.ShapeContainer1.TabIndex = 6;
			this.ShapeContainer1.TabStop = false;
			//
			//Shape1
			//
			this.Shape1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape1.FillColor = System.Drawing.Color.Black;
			this.Shape1.Location = new System.Drawing.Point(4, 62);
			this.Shape1.Name = "Shape1";
			this.Shape1.Size = new System.Drawing.Size(340, 328);
			//
			//chkSelectAll
			//
			this.chkSelectAll.BackColor = System.Drawing.SystemColors.Control;
			this.chkSelectAll.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkSelectAll.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.chkSelectAll.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkSelectAll.Location = new System.Drawing.Point(8, 396);
			this.chkSelectAll.Name = "chkSelectAll";
			this.chkSelectAll.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkSelectAll.Size = new System.Drawing.Size(211, 17);
			this.chkSelectAll.TabIndex = 5;
			this.chkSelectAll.Text = "Select All";
			this.chkSelectAll.UseVisualStyleBackColor = false;
			//
			//lstSecurity
			//
			this.lstSecurity.BackColor = System.Drawing.SystemColors.Window;
			this.lstSecurity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.lstSecurity.Cursor = System.Windows.Forms.Cursors.Default;
			this.lstSecurity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lstSecurity.Location = new System.Drawing.Point(16, 72);
			this.lstSecurity.Name = "lstSecurity";
			this.lstSecurity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lstSecurity.Size = new System.Drawing.Size(316, 302);
			this.lstSecurity.TabIndex = 3;
			this.lstSecurity.Tag = "0";
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdExit);
			this.picButtons.Controls.Add(this.cmdCancel);
			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(359, 39);
			this.picButtons.TabIndex = 0;
			//
			//cmdExit
			//
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Location = new System.Drawing.Point(276, 3);
			this.cmdExit.Name = "cmdExit";
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Size = new System.Drawing.Size(73, 29);
			this.cmdExit.TabIndex = 2;
			this.cmdExit.TabStop = false;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.UseVisualStyleBackColor = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.TabIndex = 1;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//lbl
			//
			this.lbl.AutoSize = true;
			this.lbl.BackColor = System.Drawing.Color.Transparent;
			this.lbl.Cursor = System.Windows.Forms.Cursors.Default;
			this.lbl.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lbl.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lbl.Location = new System.Drawing.Point(12, 48);
			this.lbl.Name = "lbl";
			this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lbl.Size = new System.Drawing.Size(62, 14);
			this.lbl.TabIndex = 4;
			this.lbl.Text = "&1. General";
			//
			//frmBOSecurity
			//
			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(359, 415);
			this.ControlBox = false;
			this.Controls.Add(this.chkSelectAll);
			this.Controls.Add(this.lstSecurity);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.lbl);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(3, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmBOSecurity";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Employee Back Office Permissions";
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Exemplo n.º 36
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockGroup));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._chkFields_1 = new System.Windows.Forms.CheckBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._lblLabels_38 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._lbl_5 = new System.Windows.Forms.Label();
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(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.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.chkFields, 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 Stock Group Details";
			this.ClientSize = new System.Drawing.Size(527, 117);
			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 = "frmStockGroup";
			this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_1.Text = "Disable this Stock Group";
			this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_1.Size = new System.Drawing.Size(139, 13);
			this._chkFields_1.Location = new System.Drawing.Point(360, 90);
			this._chkFields_1.TabIndex = 6;
			this._chkFields_1.CausesValidation = true;
			this._chkFields_1.Enabled = true;
			this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_1.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_1.TabStop = true;
			this._chkFields_1.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_1.Visible = true;
			this._chkFields_1.Name = "_chkFields_1";
			this._txtFields_0.AutoSize = false;
			this._txtFields_0.Size = new System.Drawing.Size(375, 19);
			this._txtFields_0.Location = new System.Drawing.Point(126, 66);
			this._txtFields_0.TabIndex = 5;
			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(527, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 2;
			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.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 = 1;
			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(441, 4);
			this.cmdClose.TabIndex = 0;
			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._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_38.Text = "Stock Group Name:";
			this._lblLabels_38.Size = new System.Drawing.Size(94, 13);
			this._lblLabels_38.Location = new System.Drawing.Point(27, 69);
			this._lblLabels_38.TabIndex = 4;
			this._lblLabels_38.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_38.Enabled = true;
			this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_38.UseMnemonic = true;
			this._lblLabels_38.Visible = true;
			this._lblLabels_38.AutoSize = true;
			this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_38.Name = "_lblLabels_38";
			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(502, 49);
			this._Shape1_2.Location = new System.Drawing.Point(15, 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.Size = new System.Drawing.Size(60, 13);
			this._lbl_5.Location = new System.Drawing.Point(15, 45);
			this._lbl_5.TabIndex = 3;
			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.Controls.Add(_chkFields_1);
			this.Controls.Add(_txtFields_0);
			this.Controls.Add(picButtons);
			this.Controls.Add(_lblLabels_38);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.chkFields.SetIndex(_chkFields_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short))
			//Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
			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.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			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()
 {
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.rectangleShape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.button1 = new System.Windows.Forms.Button();
     this.button2 = new System.Windows.Forms.Button();
     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.rectangleShape3,
     this.rectangleShape2,
     this.rectangleShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(670, 466);
     this.shapeContainer1.TabIndex = 0;
     this.shapeContainer1.TabStop = false;
     //
     // rectangleShape1
     //
     this.rectangleShape1.Location = new System.Drawing.Point(45, 43);
     this.rectangleShape1.Name = "rectangleShape1";
     this.rectangleShape1.Size = new System.Drawing.Size(244, 61);
     //
     // rectangleShape2
     //
     this.rectangleShape2.Location = new System.Drawing.Point(65, 148);
     this.rectangleShape2.Name = "rectangleShape2";
     this.rectangleShape2.Size = new System.Drawing.Size(246, 54);
     //
     // rectangleShape3
     //
     this.rectangleShape3.Location = new System.Drawing.Point(90, 262);
     this.rectangleShape3.Name = "rectangleShape3";
     this.rectangleShape3.Size = new System.Drawing.Size(249, 62);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(468, 184);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(97, 18);
     this.button1.TabIndex = 1;
     this.button1.Text = "button1";
     this.button1.UseVisualStyleBackColor = true;
     //
     // button2
     //
     this.button2.Location = new System.Drawing.Point(458, 261);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(133, 21);
     this.button2.TabIndex = 2;
     this.button2.Text = "button2";
     this.button2.UseVisualStyleBackColor = true;
     //
     // VbPowerPacksTabbing
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(670, 466);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.button1);
     this.Controls.Add(this.shapeContainer1);
     this.Name = "VbPowerPacksTabbing";
     this.Text = "Form1";
     this.ResumeLayout(false);
 }
Exemplo n.º 38
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmChannel));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this._optType_1 = new System.Windows.Forms.RadioButton();
			this._optType_0 = new System.Windows.Forms.RadioButton();
			this.cmbChannelPrice = new System.Windows.Forms.ComboBox();
			this._chkFields_5 = new System.Windows.Forms.CheckBox();
			this._chkFields_4 = new System.Windows.Forms.CheckBox();
			this._chkFields_3 = new System.Windows.Forms.CheckBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._Label1_1 = new System.Windows.Forms.Label();
			this._Label1_0 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._lbl_5 = new System.Windows.Forms.Label();
			//Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.optType = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
			//Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.optType, 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 Sale Channel Details";
			this.ClientSize = new System.Drawing.Size(432, 298);
			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 = "frmChannel";
			this._txtFields_0.AutoSize = false;
			this._txtFields_0.Size = new System.Drawing.Size(67, 19);
			this._txtFields_0.Location = new System.Drawing.Point(264, 234);
			this._txtFields_0.MaxLength = 5;
			this._txtFields_0.TabIndex = 16;
			this._txtFields_0.Visible = false;
			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.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.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Name = "_txtFields_0";
			this._optType_1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optType_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._optType_1.Text = "Price of default sales channel plus pricing group percentage";
			this._optType_1.Size = new System.Drawing.Size(346, 16);
			this._optType_1.Location = new System.Drawing.Point(54, 252);
			this._optType_1.TabIndex = 15;
			this._optType_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optType_1.CausesValidation = true;
			this._optType_1.Enabled = true;
			this._optType_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optType_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._optType_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optType_1.Appearance = System.Windows.Forms.Appearance.Normal;
			this._optType_1.TabStop = true;
			this._optType_1.Checked = false;
			this._optType_1.Visible = true;
			this._optType_1.Name = "_optType_1";
			this._optType_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optType_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._optType_0.Text = "Cost plus pricing group percentage";
			this._optType_0.Size = new System.Drawing.Size(346, 16);
			this._optType_0.Location = new System.Drawing.Point(54, 234);
			this._optType_0.TabIndex = 13;
			this._optType_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optType_0.CausesValidation = true;
			this._optType_0.Enabled = true;
			this._optType_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optType_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._optType_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optType_0.Appearance = System.Windows.Forms.Appearance.Normal;
			this._optType_0.TabStop = true;
			this._optType_0.Checked = false;
			this._optType_0.Visible = true;
			this._optType_0.Name = "_optType_0";
			this.cmbChannelPrice.Size = new System.Drawing.Size(196, 21);
			this.cmbChannelPrice.Location = new System.Drawing.Point(78, 174);
			this.cmbChannelPrice.Items.AddRange(new object[] {
				"No relationship",
				"Always the same or cheaper",
				"Always the same or more expensive"
			});
			this.cmbChannelPrice.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbChannelPrice.TabIndex = 11;
			this.cmbChannelPrice.BackColor = System.Drawing.SystemColors.Window;
			this.cmbChannelPrice.CausesValidation = true;
			this.cmbChannelPrice.Enabled = true;
			this.cmbChannelPrice.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbChannelPrice.IntegralHeight = true;
			this.cmbChannelPrice.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbChannelPrice.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbChannelPrice.Sorted = false;
			this.cmbChannelPrice.TabStop = true;
			this.cmbChannelPrice.Visible = true;
			this.cmbChannelPrice.Name = "cmbChannelPrice";
			this._chkFields_5.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_5.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_5.Text = "Treat a case/carton price as the unit price when doing the pricing update:";
			this._chkFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_5.Size = new System.Drawing.Size(373, 19);
			this._chkFields_5.Location = new System.Drawing.Point(33, 135);
			this._chkFields_5.TabIndex = 10;
			this._chkFields_5.CausesValidation = true;
			this._chkFields_5.Enabled = true;
			this._chkFields_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_5.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_5.TabStop = true;
			this._chkFields_5.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_5.Visible = true;
			this._chkFields_5.Name = "_chkFields_5";
			this._chkFields_4.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_4.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_4.Text = "Do not use Pricing Strategy when doing pricing update:";
			this._chkFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_4.Size = new System.Drawing.Size(283, 19);
			this._chkFields_4.Location = new System.Drawing.Point(123, 114);
			this._chkFields_4.TabIndex = 9;
			this._chkFields_4.CausesValidation = true;
			this._chkFields_4.Enabled = true;
			this._chkFields_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_4.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_4.TabStop = true;
			this._chkFields_4.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_4.Visible = true;
			this._chkFields_4.Name = "_chkFields_4";
			this._chkFields_3.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_3.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_3.Text = "Disable this sale channel on the POS:";
			this._chkFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_3.Size = new System.Drawing.Size(202, 19);
			this._chkFields_3.Location = new System.Drawing.Point(204, 93);
			this._chkFields_3.TabIndex = 8;
			this._chkFields_3.CausesValidation = true;
			this._chkFields_3.Enabled = true;
			this._chkFields_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_3.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_3.TabStop = true;
			this._chkFields_3.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_3.Visible = true;
			this._chkFields_3.Name = "_chkFields_3";
			this._txtFields_2.AutoSize = false;
			this._txtFields_2.Size = new System.Drawing.Size(49, 19);
			this._txtFields_2.Location = new System.Drawing.Point(357, 69);
			this._txtFields_2.MaxLength = 5;
			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.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_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(217, 19);
			this._txtFields_1.Location = new System.Drawing.Point(66, 69);
			this._txtFields_1.TabIndex = 5;
			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.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(432, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 2;
			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.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 = 1;
			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(351, 3);
			this.cmdClose.TabIndex = 0;
			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._Label1_1.Text = "When calculating exit price percentages, prices are calculated as,";
			this._Label1_1.Size = new System.Drawing.Size(388, 16);
			this._Label1_1.Location = new System.Drawing.Point(21, 216);
			this._Label1_1.TabIndex = 14;
			this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._Label1_1.BackColor = System.Drawing.Color.Transparent;
			this._Label1_1.Enabled = true;
			this._Label1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			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 = false;
			this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_1.Name = "_Label1_1";
			this._Label1_0.Text = "When doing the pricing calculation this Sale Channel relationship to the First Sale Channel is,";
			this._Label1_0.Size = new System.Drawing.Size(388, 43);
			this._Label1_0.Location = new System.Drawing.Point(21, 159);
			this._Label1_0.TabIndex = 12;
			this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._Label1_0.BackColor = System.Drawing.Color.Transparent;
			this._Label1_0.Enabled = true;
			this._Label1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			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 = false;
			this._Label1_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_0.Name = "_Label1_0";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Text = "Short Name:";
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_2.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(291, 72);
			this._lblLabels_2.TabIndex = 6;
			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_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Text = "Name:";
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_1.Size = new System.Drawing.Size(31, 13);
			this._lblLabels_1.Location = new System.Drawing.Point(27, 72);
			this._lblLabels_1.TabIndex = 4;
			this._lblLabels_1.Enabled = true;
			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._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(403, 220);
			this._Shape1_2.Location = new System.Drawing.Point(15, 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.Size = new System.Drawing.Size(60, 13);
			this._lbl_5.Location = new System.Drawing.Point(15, 45);
			this._lbl_5.TabIndex = 3;
			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.Controls.Add(_txtFields_0);
			this.Controls.Add(_optType_1);
			this.Controls.Add(_optType_0);
			this.Controls.Add(cmbChannelPrice);
			this.Controls.Add(_chkFields_5);
			this.Controls.Add(_chkFields_4);
			this.Controls.Add(_chkFields_3);
			this.Controls.Add(_txtFields_2);
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(picButtons);
			this.Controls.Add(_Label1_1);
			this.Controls.Add(_Label1_0);
			this.Controls.Add(_lblLabels_2);
			this.Controls.Add(_lblLabels_1);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.Label1.SetIndex(_Label1_1, CType(1, Short))
			//Me.Label1.SetIndex(_Label1_0, CType(0, Short))
			//Me.chkFields.SetIndex(_chkFields_5, CType(5, Short))
			//Me.chkFields.SetIndex(_chkFields_4, CType(4, Short))
			//Me.chkFields.SetIndex(_chkFields_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.optType.SetIndex(_optType_1, CType(1, Short))
			//Me.optType.SetIndex(_optType_0, CType(0, Short))
			//Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
			//Me.txtFields.SetIndex(_txtFields_2, CType(2, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//Me.Shape1.SetIndex(_Shape1_2, CType(2, Short))
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.optType, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit()
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemplo n.º 39
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmItemItem));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._cmdClear_10 = new System.Windows.Forms.Button();
			this._cmdStockItem_10 = new System.Windows.Forms.Button();
			this._cmdClear_9 = new System.Windows.Forms.Button();
			this._cmdStockItem_9 = new System.Windows.Forms.Button();
			this._cmdClear_8 = new System.Windows.Forms.Button();
			this._cmdStockItem_8 = new System.Windows.Forms.Button();
			this._cmdClear_7 = new System.Windows.Forms.Button();
			this._cmdStockItem_7 = new System.Windows.Forms.Button();
			this._cmdClear_6 = new System.Windows.Forms.Button();
			this._cmdStockItem_6 = new System.Windows.Forms.Button();
			this._cmdClear_5 = new System.Windows.Forms.Button();
			this._cmdStockItem_5 = new System.Windows.Forms.Button();
			this._cmdClear_4 = new System.Windows.Forms.Button();
			this._cmdStockItem_4 = new System.Windows.Forms.Button();
			this._cmdClear_3 = new System.Windows.Forms.Button();
			this._cmdStockItem_3 = new System.Windows.Forms.Button();
			this._cmdClear_2 = new System.Windows.Forms.Button();
			this._cmdStockItem_2 = new System.Windows.Forms.Button();
			this._cmdClear_1 = new System.Windows.Forms.Button();
			this._cmdStockItem_1 = new System.Windows.Forms.Button();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdLoad = new System.Windows.Forms.Button();
			this._optDataType_1 = new System.Windows.Forms.RadioButton();
			this._optDataType_0 = new System.Windows.Forms.RadioButton();
			this._lbl_11 = new System.Windows.Forms.Label();
			this._lbl_10 = new System.Windows.Forms.Label();
			this._lbl_9 = new System.Windows.Forms.Label();
			this._lbl_8 = new System.Windows.Forms.Label();
			this._lbl_7 = new System.Windows.Forms.Label();
			this._lbl_6 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lblItem_10 = new System.Windows.Forms.Label();
			this._lblItem_9 = new System.Windows.Forms.Label();
			this._lblItem_8 = new System.Windows.Forms.Label();
			this._lblItem_7 = new System.Windows.Forms.Label();
			this._lblItem_6 = new System.Windows.Forms.Label();
			this._lblItem_5 = new System.Windows.Forms.Label();
			this._lblItem_4 = new System.Windows.Forms.Label();
			this._lblItem_3 = new System.Windows.Forms.Label();
			this._lblItem_2 = new System.Windows.Forms.Label();
			this._lblItem_1 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.cmdClear = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components)
			//Me.cmdStockItem = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblItem = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.optDataType = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.cmdClear, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.cmdStockItem, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblItem, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.optDataType, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Compare Stock Item to Stock Item";
			this.ClientSize = new System.Drawing.Size(506, 369);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			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.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 = "frmItemItem";
			this._cmdClear_10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_10.Text = "&Clear";
			this._cmdClear_10.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_10.Location = new System.Drawing.Point(453, 282);
			this._cmdClear_10.TabIndex = 34;
			this._cmdClear_10.TabStop = false;
			this._cmdClear_10.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_10.CausesValidation = true;
			this._cmdClear_10.Enabled = true;
			this._cmdClear_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_10.Name = "_cmdClear_10";
			this._cmdStockItem_10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_10.Text = "...";
			this._cmdStockItem_10.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_10.Location = new System.Drawing.Point(414, 282);
			this._cmdStockItem_10.TabIndex = 32;
			this._cmdStockItem_10.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_10.CausesValidation = true;
			this._cmdStockItem_10.Enabled = true;
			this._cmdStockItem_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_10.TabStop = true;
			this._cmdStockItem_10.Name = "_cmdStockItem_10";
			this._cmdClear_9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_9.Text = "&Clear";
			this._cmdClear_9.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_9.Location = new System.Drawing.Point(453, 255);
			this._cmdClear_9.TabIndex = 31;
			this._cmdClear_9.TabStop = false;
			this._cmdClear_9.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_9.CausesValidation = true;
			this._cmdClear_9.Enabled = true;
			this._cmdClear_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_9.Name = "_cmdClear_9";
			this._cmdStockItem_9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_9.Text = "...";
			this._cmdStockItem_9.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_9.Location = new System.Drawing.Point(414, 255);
			this._cmdStockItem_9.TabIndex = 29;
			this._cmdStockItem_9.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_9.CausesValidation = true;
			this._cmdStockItem_9.Enabled = true;
			this._cmdStockItem_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_9.TabStop = true;
			this._cmdStockItem_9.Name = "_cmdStockItem_9";
			this._cmdClear_8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_8.Text = "&Clear";
			this._cmdClear_8.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_8.Location = new System.Drawing.Point(453, 228);
			this._cmdClear_8.TabIndex = 28;
			this._cmdClear_8.TabStop = false;
			this._cmdClear_8.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_8.CausesValidation = true;
			this._cmdClear_8.Enabled = true;
			this._cmdClear_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_8.Name = "_cmdClear_8";
			this._cmdStockItem_8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_8.Text = "...";
			this._cmdStockItem_8.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_8.Location = new System.Drawing.Point(414, 228);
			this._cmdStockItem_8.TabIndex = 26;
			this._cmdStockItem_8.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_8.CausesValidation = true;
			this._cmdStockItem_8.Enabled = true;
			this._cmdStockItem_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_8.TabStop = true;
			this._cmdStockItem_8.Name = "_cmdStockItem_8";
			this._cmdClear_7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_7.Text = "&Clear";
			this._cmdClear_7.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_7.Location = new System.Drawing.Point(453, 201);
			this._cmdClear_7.TabIndex = 25;
			this._cmdClear_7.TabStop = false;
			this._cmdClear_7.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_7.CausesValidation = true;
			this._cmdClear_7.Enabled = true;
			this._cmdClear_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_7.Name = "_cmdClear_7";
			this._cmdStockItem_7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_7.Text = "...";
			this._cmdStockItem_7.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_7.Location = new System.Drawing.Point(414, 201);
			this._cmdStockItem_7.TabIndex = 23;
			this._cmdStockItem_7.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_7.CausesValidation = true;
			this._cmdStockItem_7.Enabled = true;
			this._cmdStockItem_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_7.TabStop = true;
			this._cmdStockItem_7.Name = "_cmdStockItem_7";
			this._cmdClear_6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_6.Text = "&Clear";
			this._cmdClear_6.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_6.Location = new System.Drawing.Point(453, 174);
			this._cmdClear_6.TabIndex = 22;
			this._cmdClear_6.TabStop = false;
			this._cmdClear_6.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_6.CausesValidation = true;
			this._cmdClear_6.Enabled = true;
			this._cmdClear_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_6.Name = "_cmdClear_6";
			this._cmdStockItem_6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_6.Text = "...";
			this._cmdStockItem_6.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_6.Location = new System.Drawing.Point(414, 174);
			this._cmdStockItem_6.TabIndex = 20;
			this._cmdStockItem_6.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_6.CausesValidation = true;
			this._cmdStockItem_6.Enabled = true;
			this._cmdStockItem_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_6.TabStop = true;
			this._cmdStockItem_6.Name = "_cmdStockItem_6";
			this._cmdClear_5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_5.Text = "&Clear";
			this._cmdClear_5.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_5.Location = new System.Drawing.Point(453, 147);
			this._cmdClear_5.TabIndex = 19;
			this._cmdClear_5.TabStop = false;
			this._cmdClear_5.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_5.CausesValidation = true;
			this._cmdClear_5.Enabled = true;
			this._cmdClear_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_5.Name = "_cmdClear_5";
			this._cmdStockItem_5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_5.Text = "...";
			this._cmdStockItem_5.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_5.Location = new System.Drawing.Point(414, 147);
			this._cmdStockItem_5.TabIndex = 17;
			this._cmdStockItem_5.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_5.CausesValidation = true;
			this._cmdStockItem_5.Enabled = true;
			this._cmdStockItem_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_5.TabStop = true;
			this._cmdStockItem_5.Name = "_cmdStockItem_5";
			this._cmdClear_4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_4.Text = "&Clear";
			this._cmdClear_4.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_4.Location = new System.Drawing.Point(453, 120);
			this._cmdClear_4.TabIndex = 16;
			this._cmdClear_4.TabStop = false;
			this._cmdClear_4.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_4.CausesValidation = true;
			this._cmdClear_4.Enabled = true;
			this._cmdClear_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_4.Name = "_cmdClear_4";
			this._cmdStockItem_4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_4.Text = "...";
			this._cmdStockItem_4.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_4.Location = new System.Drawing.Point(414, 120);
			this._cmdStockItem_4.TabIndex = 14;
			this._cmdStockItem_4.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_4.CausesValidation = true;
			this._cmdStockItem_4.Enabled = true;
			this._cmdStockItem_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_4.TabStop = true;
			this._cmdStockItem_4.Name = "_cmdStockItem_4";
			this._cmdClear_3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_3.Text = "&Clear";
			this._cmdClear_3.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_3.Location = new System.Drawing.Point(453, 93);
			this._cmdClear_3.TabIndex = 13;
			this._cmdClear_3.TabStop = false;
			this._cmdClear_3.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_3.CausesValidation = true;
			this._cmdClear_3.Enabled = true;
			this._cmdClear_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_3.Name = "_cmdClear_3";
			this._cmdStockItem_3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_3.Text = "...";
			this._cmdStockItem_3.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_3.Location = new System.Drawing.Point(414, 93);
			this._cmdStockItem_3.TabIndex = 11;
			this._cmdStockItem_3.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_3.CausesValidation = true;
			this._cmdStockItem_3.Enabled = true;
			this._cmdStockItem_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_3.TabStop = true;
			this._cmdStockItem_3.Name = "_cmdStockItem_3";
			this._cmdClear_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_2.Text = "&Clear";
			this._cmdClear_2.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_2.Location = new System.Drawing.Point(453, 66);
			this._cmdClear_2.TabIndex = 10;
			this._cmdClear_2.TabStop = false;
			this._cmdClear_2.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_2.CausesValidation = true;
			this._cmdClear_2.Enabled = true;
			this._cmdClear_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_2.Name = "_cmdClear_2";
			this._cmdStockItem_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_2.Text = "...";
			this._cmdStockItem_2.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_2.Location = new System.Drawing.Point(414, 66);
			this._cmdStockItem_2.TabIndex = 8;
			this._cmdStockItem_2.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_2.CausesValidation = true;
			this._cmdStockItem_2.Enabled = true;
			this._cmdStockItem_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_2.TabStop = true;
			this._cmdStockItem_2.Name = "_cmdStockItem_2";
			this._cmdClear_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdClear_1.Text = "&Clear";
			this._cmdClear_1.Size = new System.Drawing.Size(34, 19);
			this._cmdClear_1.Location = new System.Drawing.Point(453, 39);
			this._cmdClear_1.TabIndex = 7;
			this._cmdClear_1.TabStop = false;
			this._cmdClear_1.BackColor = System.Drawing.SystemColors.Control;
			this._cmdClear_1.CausesValidation = true;
			this._cmdClear_1.Enabled = true;
			this._cmdClear_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdClear_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdClear_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdClear_1.Name = "_cmdClear_1";
			this._cmdStockItem_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdStockItem_1.Text = "...";
			this._cmdStockItem_1.Size = new System.Drawing.Size(34, 19);
			this._cmdStockItem_1.Location = new System.Drawing.Point(414, 39);
			this._cmdStockItem_1.TabIndex = 5;
			this._cmdStockItem_1.BackColor = System.Drawing.SystemColors.Control;
			this._cmdStockItem_1.CausesValidation = true;
			this._cmdStockItem_1.Enabled = true;
			this._cmdStockItem_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdStockItem_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdStockItem_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdStockItem_1.TabStop = true;
			this._cmdStockItem_1.Name = "_cmdStockItem_1";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(79, 31);
			this.cmdExit.Location = new System.Drawing.Point(12, 321);
			this.cmdExit.TabIndex = 4;
			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.TabStop = true;
			this.cmdExit.Name = "cmdExit";
			this.cmdLoad.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdLoad.Text = "&Load report >>";
			this.cmdLoad.Size = new System.Drawing.Size(79, 31);
			this.cmdLoad.Location = new System.Drawing.Point(417, 321);
			this.cmdLoad.TabIndex = 3;
			this.cmdLoad.BackColor = System.Drawing.SystemColors.Control;
			this.cmdLoad.CausesValidation = true;
			this.cmdLoad.Enabled = true;
			this.cmdLoad.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdLoad.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdLoad.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdLoad.TabStop = true;
			this.cmdLoad.Name = "cmdLoad";
			this._optDataType_1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optDataType_1.Text = "Sales &Value";
			this._optDataType_1.Size = new System.Drawing.Size(145, 13);
			this._optDataType_1.Location = new System.Drawing.Point(267, 339);
			this._optDataType_1.TabIndex = 2;
			this._optDataType_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optDataType_1.BackColor = System.Drawing.SystemColors.Control;
			this._optDataType_1.CausesValidation = true;
			this._optDataType_1.Enabled = true;
			this._optDataType_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optDataType_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._optDataType_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optDataType_1.Appearance = System.Windows.Forms.Appearance.Normal;
			this._optDataType_1.TabStop = true;
			this._optDataType_1.Checked = false;
			this._optDataType_1.Visible = true;
			this._optDataType_1.Name = "_optDataType_1";
			this._optDataType_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optDataType_0.Text = "Sales &Quantity";
			this._optDataType_0.Size = new System.Drawing.Size(145, 13);
			this._optDataType_0.Location = new System.Drawing.Point(267, 321);
			this._optDataType_0.TabIndex = 1;
			this._optDataType_0.Checked = true;
			this._optDataType_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optDataType_0.BackColor = System.Drawing.SystemColors.Control;
			this._optDataType_0.CausesValidation = true;
			this._optDataType_0.Enabled = true;
			this._optDataType_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optDataType_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._optDataType_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optDataType_0.Appearance = System.Windows.Forms.Appearance.Normal;
			this._optDataType_0.TabStop = true;
			this._optDataType_0.Visible = true;
			this._optDataType_0.Name = "_optDataType_0";
			this._lbl_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_11.Text = "1&0";
			this._lbl_11.Size = new System.Drawing.Size(17, 13);
			this._lbl_11.Location = new System.Drawing.Point(9, 285);
			this._lbl_11.TabIndex = 44;
			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_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_10.Text = "&9";
			this._lbl_10.Size = new System.Drawing.Size(17, 13);
			this._lbl_10.Location = new System.Drawing.Point(9, 258);
			this._lbl_10.TabIndex = 43;
			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_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_9.Text = "&8";
			this._lbl_9.Size = new System.Drawing.Size(17, 13);
			this._lbl_9.Location = new System.Drawing.Point(9, 231);
			this._lbl_9.TabIndex = 42;
			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_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_8.Text = "&7";
			this._lbl_8.Size = new System.Drawing.Size(17, 13);
			this._lbl_8.Location = new System.Drawing.Point(9, 204);
			this._lbl_8.TabIndex = 41;
			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_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_7.Text = "&6";
			this._lbl_7.Size = new System.Drawing.Size(17, 13);
			this._lbl_7.Location = new System.Drawing.Point(9, 177);
			this._lbl_7.TabIndex = 40;
			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_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_6.Text = "&5";
			this._lbl_6.Size = new System.Drawing.Size(17, 13);
			this._lbl_6.Location = new System.Drawing.Point(9, 150);
			this._lbl_6.TabIndex = 39;
			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._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_5.Text = "&4";
			this._lbl_5.Size = new System.Drawing.Size(17, 13);
			this._lbl_5.Location = new System.Drawing.Point(9, 123);
			this._lbl_5.TabIndex = 38;
			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_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "&3";
			this._lbl_4.Size = new System.Drawing.Size(17, 13);
			this._lbl_4.Location = new System.Drawing.Point(9, 96);
			this._lbl_4.TabIndex = 37;
			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_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_3.Text = "&2";
			this._lbl_3.Size = new System.Drawing.Size(17, 13);
			this._lbl_3.Location = new System.Drawing.Point(9, 69);
			this._lbl_3.TabIndex = 36;
			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_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_2.Text = "&1";
			this._lbl_2.Size = new System.Drawing.Size(17, 13);
			this._lbl_2.Location = new System.Drawing.Point(9, 42);
			this._lbl_2.TabIndex = 35;
			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._lblItem_10.Size = new System.Drawing.Size(382, 19);
			this._lblItem_10.Location = new System.Drawing.Point(30, 282);
			this._lblItem_10.TabIndex = 33;
			this._lblItem_10.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_10.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_10.Enabled = true;
			this._lblItem_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_10.UseMnemonic = true;
			this._lblItem_10.Visible = true;
			this._lblItem_10.AutoSize = false;
			this._lblItem_10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_10.Name = "_lblItem_10";
			this._lblItem_9.Size = new System.Drawing.Size(382, 19);
			this._lblItem_9.Location = new System.Drawing.Point(30, 255);
			this._lblItem_9.TabIndex = 30;
			this._lblItem_9.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_9.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_9.Enabled = true;
			this._lblItem_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_9.UseMnemonic = true;
			this._lblItem_9.Visible = true;
			this._lblItem_9.AutoSize = false;
			this._lblItem_9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_9.Name = "_lblItem_9";
			this._lblItem_8.Size = new System.Drawing.Size(382, 19);
			this._lblItem_8.Location = new System.Drawing.Point(30, 228);
			this._lblItem_8.TabIndex = 27;
			this._lblItem_8.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_8.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_8.Enabled = true;
			this._lblItem_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_8.UseMnemonic = true;
			this._lblItem_8.Visible = true;
			this._lblItem_8.AutoSize = false;
			this._lblItem_8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_8.Name = "_lblItem_8";
			this._lblItem_7.Size = new System.Drawing.Size(382, 19);
			this._lblItem_7.Location = new System.Drawing.Point(30, 201);
			this._lblItem_7.TabIndex = 24;
			this._lblItem_7.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_7.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_7.Enabled = true;
			this._lblItem_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_7.UseMnemonic = true;
			this._lblItem_7.Visible = true;
			this._lblItem_7.AutoSize = false;
			this._lblItem_7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_7.Name = "_lblItem_7";
			this._lblItem_6.Size = new System.Drawing.Size(382, 19);
			this._lblItem_6.Location = new System.Drawing.Point(30, 174);
			this._lblItem_6.TabIndex = 21;
			this._lblItem_6.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_6.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_6.Enabled = true;
			this._lblItem_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_6.UseMnemonic = true;
			this._lblItem_6.Visible = true;
			this._lblItem_6.AutoSize = false;
			this._lblItem_6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_6.Name = "_lblItem_6";
			this._lblItem_5.Size = new System.Drawing.Size(382, 19);
			this._lblItem_5.Location = new System.Drawing.Point(30, 147);
			this._lblItem_5.TabIndex = 18;
			this._lblItem_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_5.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_5.Enabled = true;
			this._lblItem_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_5.UseMnemonic = true;
			this._lblItem_5.Visible = true;
			this._lblItem_5.AutoSize = false;
			this._lblItem_5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_5.Name = "_lblItem_5";
			this._lblItem_4.Size = new System.Drawing.Size(382, 19);
			this._lblItem_4.Location = new System.Drawing.Point(30, 120);
			this._lblItem_4.TabIndex = 15;
			this._lblItem_4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_4.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_4.Enabled = true;
			this._lblItem_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_4.UseMnemonic = true;
			this._lblItem_4.Visible = true;
			this._lblItem_4.AutoSize = false;
			this._lblItem_4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_4.Name = "_lblItem_4";
			this._lblItem_3.Size = new System.Drawing.Size(382, 19);
			this._lblItem_3.Location = new System.Drawing.Point(30, 93);
			this._lblItem_3.TabIndex = 12;
			this._lblItem_3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_3.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_3.Enabled = true;
			this._lblItem_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_3.UseMnemonic = true;
			this._lblItem_3.Visible = true;
			this._lblItem_3.AutoSize = false;
			this._lblItem_3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_3.Name = "_lblItem_3";
			this._lblItem_2.Size = new System.Drawing.Size(382, 19);
			this._lblItem_2.Location = new System.Drawing.Point(30, 66);
			this._lblItem_2.TabIndex = 9;
			this._lblItem_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_2.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_2.Enabled = true;
			this._lblItem_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_2.UseMnemonic = true;
			this._lblItem_2.Visible = true;
			this._lblItem_2.AutoSize = false;
			this._lblItem_2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_2.Name = "_lblItem_2";
			this._lblItem_1.Size = new System.Drawing.Size(382, 19);
			this._lblItem_1.Location = new System.Drawing.Point(30, 39);
			this._lblItem_1.TabIndex = 6;
			this._lblItem_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblItem_1.BackColor = System.Drawing.SystemColors.Control;
			this._lblItem_1.Enabled = true;
			this._lblItem_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblItem_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblItem_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblItem_1.UseMnemonic = true;
			this._lblItem_1.Visible = true;
			this._lblItem_1.AutoSize = false;
			this._lblItem_1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this._lblItem_1.Name = "_lblItem_1";
			this._lbl_0.Text = "&1. Select Stock Items";
			this._lbl_0.Size = new System.Drawing.Size(123, 13);
			this._lbl_0.Location = new System.Drawing.Point(9, 9);
			this._lbl_0.TabIndex = 0;
			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._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.Size = new System.Drawing.Size(487, 283);
			this._Shape1_1.Location = new System.Drawing.Point(9, 30);
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_1.BorderWidth = 1;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_1.Visible = true;
			this._Shape1_1.Name = "_Shape1_1";
			this.Controls.Add(_cmdClear_10);
			this.Controls.Add(_cmdStockItem_10);
			this.Controls.Add(_cmdClear_9);
			this.Controls.Add(_cmdStockItem_9);
			this.Controls.Add(_cmdClear_8);
			this.Controls.Add(_cmdStockItem_8);
			this.Controls.Add(_cmdClear_7);
			this.Controls.Add(_cmdStockItem_7);
			this.Controls.Add(_cmdClear_6);
			this.Controls.Add(_cmdStockItem_6);
			this.Controls.Add(_cmdClear_5);
			this.Controls.Add(_cmdStockItem_5);
			this.Controls.Add(_cmdClear_4);
			this.Controls.Add(_cmdStockItem_4);
			this.Controls.Add(_cmdClear_3);
			this.Controls.Add(_cmdStockItem_3);
			this.Controls.Add(_cmdClear_2);
			this.Controls.Add(_cmdStockItem_2);
			this.Controls.Add(_cmdClear_1);
			this.Controls.Add(_cmdStockItem_1);
			this.Controls.Add(cmdExit);
			this.Controls.Add(cmdLoad);
			this.Controls.Add(_optDataType_1);
			this.Controls.Add(_optDataType_0);
			this.Controls.Add(_lbl_11);
			this.Controls.Add(_lbl_10);
			this.Controls.Add(_lbl_9);
			this.Controls.Add(_lbl_8);
			this.Controls.Add(_lbl_7);
			this.Controls.Add(_lbl_6);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(_lbl_4);
			this.Controls.Add(_lbl_3);
			this.Controls.Add(_lbl_2);
			this.Controls.Add(_lblItem_10);
			this.Controls.Add(_lblItem_9);
			this.Controls.Add(_lblItem_8);
			this.Controls.Add(_lblItem_7);
			this.Controls.Add(_lblItem_6);
			this.Controls.Add(_lblItem_5);
			this.Controls.Add(_lblItem_4);
			this.Controls.Add(_lblItem_3);
			this.Controls.Add(_lblItem_2);
			this.Controls.Add(_lblItem_1);
			this.Controls.Add(_lbl_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_1);
			this.Controls.Add(ShapeContainer1);
			//Me.cmdClear.SetIndex(_cmdClear_10, CType(10, Short))
			//Me.cmdClear.SetIndex(_cmdClear_9, CType(9, Short))
			//Me.cmdClear.SetIndex(_cmdClear_8, CType(8, Short))
			//Me.cmdClear.SetIndex(_cmdClear_7, CType(7, Short))
			//Me.cmdClear.SetIndex(_cmdClear_6, CType(6, Short))
			//Me.cmdClear.SetIndex(_cmdClear_5, CType(5, Short))
			//Me.cmdClear.SetIndex(_cmdClear_4, CType(4, Short))
			//Me.cmdClear.SetIndex(_cmdClear_3, CType(3, Short))
			//Me.cmdClear.SetIndex(_cmdClear_2, CType(2, Short))
			//Me.cmdClear.SetIndex(_cmdClear_1, CType(1, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_10, CType(10, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_9, CType(9, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_8, CType(8, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_7, CType(7, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_6, CType(6, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_5, CType(5, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_4, CType(4, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_3, CType(3, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_2, CType(2, Short))
			//Me.cmdStockItem.SetIndex(_cmdStockItem_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_11, CType(11, Short))
			//Me.lbl.SetIndex(_lbl_10, CType(10, Short))
			//Me.lbl.SetIndex(_lbl_9, CType(9, Short))
			//Me.lbl.SetIndex(_lbl_8, CType(8, Short))
			//Me.lbl.SetIndex(_lbl_7, CType(7, Short))
			//Me.lbl.SetIndex(_lbl_6, CType(6, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lblItem.SetIndex(_lblItem_10, CType(10, Short))
			//Me.lblItem.SetIndex(_lblItem_9, CType(9, Short))
			//Me.lblItem.SetIndex(_lblItem_8, CType(8, Short))
			//Me.lblItem.SetIndex(_lblItem_7, CType(7, Short))
			//Me.lblItem.SetIndex(_lblItem_6, CType(6, Short))
			//Me.lblItem.SetIndex(_lblItem_5, CType(5, Short))
			//Me.lblItem.SetIndex(_lblItem_4, CType(4, Short))
			//Me.lblItem.SetIndex(_lblItem_3, CType(3, Short))
			//Me.lblItem.SetIndex(_lblItem_2, CType(2, Short))
			//Me.lblItem.SetIndex(_lblItem_1, CType(1, Short))
			//Me.optDataType.SetIndex(_optDataType_1, CType(1, Short))
			//Me.optDataType.SetIndex(_optDataType_0, CType(0, Short))
			this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.optDataType, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblItem, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.cmdStockItem, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.cmdClear, System.ComponentModel.ISupportInitialize).EndInit()
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmVegTestStockBack));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.txtQtyB = new System.Windows.Forms.TextBox();
			this.txtPriceB = new System.Windows.Forms.TextBox();
			this.cmdSelectChild = new System.Windows.Forms.Button();
			this.txtPack = new System.Windows.Forms.TextBox();
			this.txtPriceS = new System.Windows.Forms.TextBox();
			this.txtQty = new System.Windows.Forms.TextBox();
			this.txtPrice = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._LBL_6 = new System.Windows.Forms.Label();
			this._LBL_4 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.lblPComp = new System.Windows.Forms.Label();
			this.lblSComp = new System.Windows.Forms.Label();
			this.lblStockItemB = new System.Windows.Forms.Label();
			this._LBL_5 = new System.Windows.Forms.Label();
			this._LBL_0 = new System.Windows.Forms.Label();
			this._LBL_3 = new System.Windows.Forms.Label();
			this._LBL_2 = new System.Windows.Forms.Label();
			this._LBL_1 = new System.Windows.Forms.Label();
			this.lblStockItem = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.LBL, 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 = "Stock Receiving";
			this.ClientSize = new System.Drawing.Size(397, 287);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			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 = "frmVegTestStockBack";
			this.txtQtyB.AutoSize = false;
			this.txtQtyB.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQtyB.Enabled = false;
			this.txtQtyB.Size = new System.Drawing.Size(91, 19);
			this.txtQtyB.Location = new System.Drawing.Point(293, 227);
			this.txtQtyB.TabIndex = 19;
			this.txtQtyB.Text = "0.00";
			this.txtQtyB.AcceptsReturn = true;
			this.txtQtyB.BackColor = System.Drawing.SystemColors.Window;
			this.txtQtyB.CausesValidation = true;
			this.txtQtyB.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQtyB.HideSelection = true;
			this.txtQtyB.ReadOnly = false;
			this.txtQtyB.MaxLength = 0;
			this.txtQtyB.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQtyB.Multiline = false;
			this.txtQtyB.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQtyB.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQtyB.TabStop = true;
			this.txtQtyB.Visible = true;
			this.txtQtyB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtQtyB.Name = "txtQtyB";
			this.txtPriceB.AutoSize = false;
			this.txtPriceB.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPriceB.Enabled = false;
			this.txtPriceB.Size = new System.Drawing.Size(91, 19);
			this.txtPriceB.Location = new System.Drawing.Point(293, 251);
			this.txtPriceB.TabIndex = 18;
			this.txtPriceB.Text = "0";
			this.txtPriceB.AcceptsReturn = true;
			this.txtPriceB.BackColor = System.Drawing.SystemColors.Window;
			this.txtPriceB.CausesValidation = true;
			this.txtPriceB.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPriceB.HideSelection = true;
			this.txtPriceB.ReadOnly = false;
			this.txtPriceB.MaxLength = 0;
			this.txtPriceB.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPriceB.Multiline = false;
			this.txtPriceB.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPriceB.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPriceB.TabStop = true;
			this.txtPriceB.Visible = true;
			this.txtPriceB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPriceB.Name = "txtPriceB";
			this.cmdSelectChild.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdSelectChild.Text = "Select Item you wish above QTY to add on";
			this.cmdSelectChild.Size = new System.Drawing.Size(217, 29);
			this.cmdSelectChild.Location = new System.Drawing.Point(173, 136);
			this.cmdSelectChild.TabIndex = 17;
			this.cmdSelectChild.TabStop = false;
			this.cmdSelectChild.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSelectChild.CausesValidation = true;
			this.cmdSelectChild.Enabled = true;
			this.cmdSelectChild.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSelectChild.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSelectChild.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSelectChild.Name = "cmdSelectChild";
			this.txtPack.AutoSize = false;
			this.txtPack.Size = new System.Drawing.Size(41, 19);
			this.txtPack.Location = new System.Drawing.Point(336, 320);
			this.txtPack.TabIndex = 16;
			this.txtPack.Text = "0";
			this.txtPack.Visible = false;
			this.txtPack.AcceptsReturn = true;
			this.txtPack.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtPack.BackColor = System.Drawing.SystemColors.Window;
			this.txtPack.CausesValidation = true;
			this.txtPack.Enabled = true;
			this.txtPack.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPack.HideSelection = true;
			this.txtPack.ReadOnly = false;
			this.txtPack.MaxLength = 0;
			this.txtPack.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPack.Multiline = false;
			this.txtPack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPack.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPack.TabStop = true;
			this.txtPack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPack.Name = "txtPack";
			this.txtPriceS.AutoSize = false;
			this.txtPriceS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPriceS.Enabled = false;
			this.txtPriceS.Size = new System.Drawing.Size(91, 19);
			this.txtPriceS.Location = new System.Drawing.Point(291, 354);
			this.txtPriceS.TabIndex = 8;
			this.txtPriceS.Text = "0.00";
			this.txtPriceS.Visible = false;
			this.txtPriceS.AcceptsReturn = true;
			this.txtPriceS.BackColor = System.Drawing.SystemColors.Window;
			this.txtPriceS.CausesValidation = true;
			this.txtPriceS.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPriceS.HideSelection = true;
			this.txtPriceS.ReadOnly = false;
			this.txtPriceS.MaxLength = 0;
			this.txtPriceS.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPriceS.Multiline = false;
			this.txtPriceS.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPriceS.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPriceS.TabStop = true;
			this.txtPriceS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPriceS.Name = "txtPriceS";
			this.txtQty.AutoSize = false;
			this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQty.Enabled = false;
			this.txtQty.Size = new System.Drawing.Size(67, 19);
			this.txtQty.Location = new System.Drawing.Point(96, 97);
			this.txtQty.TabIndex = 7;
			this.txtQty.Text = "0";
			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.Fixed3D;
			this.txtQty.Name = "txtQty";
			this.txtPrice.AutoSize = false;
			this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPrice.Enabled = false;
			this.txtPrice.Size = new System.Drawing.Size(91, 19);
			this.txtPrice.Location = new System.Drawing.Point(293, 97);
			this.txtPrice.TabIndex = 3;
			this.txtPrice.Text = "0.00";
			this.txtPrice.AcceptsReturn = true;
			this.txtPrice.BackColor = System.Drawing.SystemColors.Window;
			this.txtPrice.CausesValidation = true;
			this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPrice.HideSelection = true;
			this.txtPrice.ReadOnly = false;
			this.txtPrice.MaxLength = 0;
			this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPrice.Multiline = false;
			this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPrice.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPrice.TabStop = true;
			this.txtPrice.Visible = true;
			this.txtPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPrice.Name = "txtPrice";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(397, 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.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(8, 3);
			this.cmdCancel.TabIndex = 15;
			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 = "Process && E&xit";
			this.cmdClose.Size = new System.Drawing.Size(97, 29);
			this.cmdClose.Location = new System.Drawing.Point(288, 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_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_6.Text = "Total Receiving QTY in KG:";
			this._LBL_6.Size = new System.Drawing.Size(132, 13);
			this._LBL_6.Location = new System.Drawing.Point(157, 254);
			this._LBL_6.TabIndex = 21;
			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 = true;
			this._LBL_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_6.Name = "_LBL_6";
			this._LBL_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_4.Text = "Total Receiving QTY:";
			this._LBL_4.Size = new System.Drawing.Size(103, 13);
			this._LBL_4.Location = new System.Drawing.Point(186, 230);
			this._LBL_4.TabIndex = 20;
			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.Label2.Text = "Please verify products from both locations";
			this.Label2.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label2.ForeColor = System.Drawing.Color.FromArgb(192, 0, 0);
			this.Label2.Size = new System.Drawing.Size(296, 23);
			this.Label2.Location = new System.Drawing.Point(40, 320);
			this.Label2.TabIndex = 14;
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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.lblPComp.Text = "From";
			this.lblPComp.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblPComp.Size = new System.Drawing.Size(352, 24);
			this.lblPComp.Location = new System.Drawing.Point(16, 52);
			this.lblPComp.TabIndex = 13;
			this.lblPComp.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblPComp.BackColor = System.Drawing.Color.Transparent;
			this.lblPComp.Enabled = true;
			this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblPComp.UseMnemonic = true;
			this.lblPComp.Visible = true;
			this.lblPComp.AutoSize = false;
			this.lblPComp.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblPComp.Name = "lblPComp";
			this.lblSComp.Text = "To";
			this.lblSComp.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblSComp.Size = new System.Drawing.Size(360, 24);
			this.lblSComp.Location = new System.Drawing.Point(16, 184);
			this.lblSComp.TabIndex = 12;
			this.lblSComp.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblSComp.BackColor = System.Drawing.Color.Transparent;
			this.lblSComp.Enabled = true;
			this.lblSComp.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblSComp.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblSComp.UseMnemonic = true;
			this.lblSComp.Visible = true;
			this.lblSComp.AutoSize = false;
			this.lblSComp.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblSComp.Name = "lblSComp";
			this.lblStockItemB.Text = " <Receiving Stock Item>";
			this.lblStockItemB.Size = new System.Drawing.Size(286, 17);
			this.lblStockItemB.Location = new System.Drawing.Point(98, 208);
			this.lblStockItemB.TabIndex = 11;
			this.lblStockItemB.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockItemB.BackColor = System.Drawing.SystemColors.Control;
			this.lblStockItemB.Enabled = true;
			this.lblStockItemB.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblStockItemB.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblStockItemB.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblStockItemB.UseMnemonic = true;
			this.lblStockItemB.Visible = true;
			this.lblStockItemB.AutoSize = false;
			this.lblStockItemB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblStockItemB.Name = "lblStockItemB";
			this._LBL_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_5.Text = "Stock Item Name:";
			this._LBL_5.Size = new System.Drawing.Size(85, 13);
			this._LBL_5.Location = new System.Drawing.Point(10, 208);
			this._LBL_5.TabIndex = 10;
			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 = true;
			this._LBL_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_5.Name = "_LBL_5";
			this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_0.Text = "Price:";
			this._LBL_0.Size = new System.Drawing.Size(27, 13);
			this._LBL_0.Location = new System.Drawing.Point(260, 357);
			this._LBL_0.TabIndex = 9;
			this._LBL_0.Visible = false;
			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.AutoSize = true;
			this._LBL_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_0.Name = "_LBL_0";
			this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_3.Text = "Available QTY in KG:";
			this._LBL_3.Size = new System.Drawing.Size(100, 13);
			this._LBL_3.Location = new System.Drawing.Point(189, 100);
			this._LBL_3.TabIndex = 6;
			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 = true;
			this._LBL_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_3.Name = "_LBL_3";
			this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_2.Text = "Available QTY:";
			this._LBL_2.Size = new System.Drawing.Size(71, 13);
			this._LBL_2.Location = new System.Drawing.Point(24, 100);
			this._LBL_2.TabIndex = 5;
			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 = true;
			this._LBL_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_2.Name = "_LBL_2";
			this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_1.Text = "Stock Item Name:";
			this._LBL_1.Size = new System.Drawing.Size(85, 13);
			this._LBL_1.Location = new System.Drawing.Point(10, 79);
			this._LBL_1.TabIndex = 4;
			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.lblStockItem.Text = "Label1";
			this.lblStockItem.Size = new System.Drawing.Size(286, 17);
			this.lblStockItem.Location = new System.Drawing.Point(98, 79);
			this.lblStockItem.TabIndex = 2;
			this.lblStockItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockItem.BackColor = System.Drawing.SystemColors.Control;
			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.Fixed3D;
			this.lblStockItem.Name = "lblStockItem";
			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(383, 80);
			this._Shape1_2.Location = new System.Drawing.Point(7, 48);
			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._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(383, 104);
			this._Shape1_0.Location = new System.Drawing.Point(7, 176);
			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(txtQtyB);
			this.Controls.Add(txtPriceB);
			this.Controls.Add(cmdSelectChild);
			this.Controls.Add(txtPack);
			this.Controls.Add(txtPriceS);
			this.Controls.Add(txtQty);
			this.Controls.Add(txtPrice);
			this.Controls.Add(picButtons);
			this.Controls.Add(_LBL_6);
			this.Controls.Add(_LBL_4);
			this.Controls.Add(Label2);
			this.Controls.Add(lblPComp);
			this.Controls.Add(lblSComp);
			this.Controls.Add(lblStockItemB);
			this.Controls.Add(_LBL_5);
			this.Controls.Add(_LBL_0);
			this.Controls.Add(_LBL_3);
			this.Controls.Add(_LBL_2);
			this.Controls.Add(_LBL_1);
			this.Controls.Add(lblStockItem);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.LBL.SetIndex(_LBL_6, CType(6, Short))
			//Me.LBL.SetIndex(_LBL_4, CType(4, Short))
			//Me.LBL.SetIndex(_LBL_5, CType(5, Short))
			//Me.LBL.SetIndex(_LBL_0, CType(0, Short))
			//Me.LBL.SetIndex(_LBL_3, CType(3, Short))
			//Me.LBL.SetIndex(_LBL_2, CType(2, Short))
			//Me.LBL.SetIndex(_LBL_1, CType(1, 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.LBL, System.ComponentModel.ISupportInitialize).EndInit()
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
        private void InitializeComponent()
        {
            this.components = new System.ComponentModel.Container();
            System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = 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();
            this.LblInvoice = new System.Windows.Forms.Label();
            this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
            this.RectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
            this.Panel1 = new System.Windows.Forms.Panel();
            this.ChkTaxInclusive = new System.Windows.Forms.CheckBox();
            this.BsServiceInvoice = new System.Windows.Forms.BindingSource(this.components);
            this.TextTotalAmount = new System.Windows.Forms.TextBox();
            this.LabelTotal = new System.Windows.Forms.Label();
            this.TextTax = new System.Windows.Forms.TextBox();
            this.LabelTax = new System.Windows.Forms.Label();
            this.TextSubtotal = new System.Windows.Forms.TextBox();
            this.LabelSubtotal = new System.Windows.Forms.Label();
            this.GrdServiceLines = new System.Windows.Forms.DataGridView();
            this.RowId = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColDescription = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColAccount = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.ColAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.ColJob = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.ColTax = new System.Windows.Forms.DataGridViewComboBoxColumn();
            this.RowVersion = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DtDate = new System.Windows.Forms.DateTimePicker();
            this.Label1 = new System.Windows.Forms.Label();
            this.TxtInvoiceNo = new System.Windows.Forms.TextBox();
            this.V = new System.Windows.Forms.Label();
            this.LblAddress = new System.Windows.Forms.Label();
            this.TxtAddress = new System.Windows.Forms.TextBox();
            this.CmboCustomer = new System.Windows.Forms.ComboBox();
            this.LblCustomer = new System.Windows.Forms.Label();
            this.ShapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
            this.RectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
            this.BtnRecord = new System.Windows.Forms.Button();
            this.DataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.DataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
            this.Panel1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BsServiceInvoice)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrdServiceLines)).BeginInit();
            this.SuspendLayout();
            // 
            // LblInvoice
            // 
            this.LblInvoice.AutoSize = true;
            this.LblInvoice.BackColor = System.Drawing.Color.Transparent;
            this.LblInvoice.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.LblInvoice.Location = new System.Drawing.Point(15, 3);
            this.LblInvoice.Name = "LblInvoice";
            this.LblInvoice.Size = new System.Drawing.Size(153, 18);
            this.LblInvoice.TabIndex = 4;
            this.LblInvoice.Text = "Invoice - Service Layout";
            // 
            // 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.RectangleShape1});
            this.ShapeContainer1.Size = new System.Drawing.Size(784, 562);
            this.ShapeContainer1.TabIndex = 5;
            this.ShapeContainer1.TabStop = false;
            // 
            // RectangleShape1
            // 
            this.RectangleShape1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.RectangleShape1.BackColor = System.Drawing.Color.White;
            this.RectangleShape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
            this.RectangleShape1.Location = new System.Drawing.Point(10, 25);
            this.RectangleShape1.Name = "RectangleShape1";
            this.RectangleShape1.Size = new System.Drawing.Size(760, 490);
            // 
            // Panel1
            // 
            this.Panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.Panel1.BackColor = System.Drawing.Color.PowderBlue;
            this.Panel1.Controls.Add(this.ChkTaxInclusive);
            this.Panel1.Controls.Add(this.TextTotalAmount);
            this.Panel1.Controls.Add(this.LabelTotal);
            this.Panel1.Controls.Add(this.TextTax);
            this.Panel1.Controls.Add(this.LabelTax);
            this.Panel1.Controls.Add(this.TextSubtotal);
            this.Panel1.Controls.Add(this.LabelSubtotal);
            this.Panel1.Controls.Add(this.GrdServiceLines);
            this.Panel1.Controls.Add(this.DtDate);
            this.Panel1.Controls.Add(this.Label1);
            this.Panel1.Controls.Add(this.TxtInvoiceNo);
            this.Panel1.Controls.Add(this.V);
            this.Panel1.Controls.Add(this.LblAddress);
            this.Panel1.Controls.Add(this.TxtAddress);
            this.Panel1.Controls.Add(this.CmboCustomer);
            this.Panel1.Controls.Add(this.LblCustomer);
            this.Panel1.Controls.Add(this.ShapeContainer2);
            this.Panel1.Location = new System.Drawing.Point(14, 30);
            this.Panel1.Name = "Panel1";
            this.Panel1.Size = new System.Drawing.Size(752, 480);
            this.Panel1.TabIndex = 6;
            // 
            // ChkTaxInclusive
            // 
            this.ChkTaxInclusive.AutoSize = true;
            this.ChkTaxInclusive.Checked = true;
            this.ChkTaxInclusive.CheckState = System.Windows.Forms.CheckState.Checked;
            this.ChkTaxInclusive.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.BsServiceInvoice, "IsTaxInclusive", true));
            this.ChkTaxInclusive.Location = new System.Drawing.Point(550, 9);
            this.ChkTaxInclusive.Name = "ChkTaxInclusive";
            this.ChkTaxInclusive.Size = new System.Drawing.Size(89, 17);
            this.ChkTaxInclusive.TabIndex = 16;
            this.ChkTaxInclusive.Text = "Tax Inclusive";
            this.ChkTaxInclusive.UseVisualStyleBackColor = true;
            // 
            // BsServiceInvoice
            // 
            this.BsServiceInvoice.DataSource = typeof(MYOB.AccountRight.SDK.Contracts.Version2.Sale.ServiceInvoice);
            // 
            // TextTotalAmount
            // 
            this.TextTotalAmount.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "TotalAmount", true));
            this.TextTotalAmount.Enabled = false;
            this.TextTotalAmount.Location = new System.Drawing.Point(550, 432);
            this.TextTotalAmount.Name = "TextTotalAmount";
            this.TextTotalAmount.Size = new System.Drawing.Size(130, 20);
            this.TextTotalAmount.TabIndex = 15;
            // 
            // LabelTotal
            // 
            this.LabelTotal.AutoSize = true;
            this.LabelTotal.BackColor = System.Drawing.Color.Transparent;
            this.LabelTotal.Location = new System.Drawing.Point(471, 435);
            this.LabelTotal.Name = "LabelTotal";
            this.LabelTotal.Size = new System.Drawing.Size(73, 13);
            this.LabelTotal.TabIndex = 14;
            this.LabelTotal.Text = "Total Amount:";
            this.LabelTotal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // TextTax
            // 
            this.TextTax.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "TotalTax", true));
            this.TextTax.Enabled = false;
            this.TextTax.Location = new System.Drawing.Point(550, 406);
            this.TextTax.Name = "TextTax";
            this.TextTax.Size = new System.Drawing.Size(130, 20);
            this.TextTax.TabIndex = 13;
            // 
            // LabelTax
            // 
            this.LabelTax.AutoSize = true;
            this.LabelTax.BackColor = System.Drawing.Color.Transparent;
            this.LabelTax.Location = new System.Drawing.Point(516, 409);
            this.LabelTax.Name = "LabelTax";
            this.LabelTax.Size = new System.Drawing.Size(28, 13);
            this.LabelTax.TabIndex = 12;
            this.LabelTax.Text = "Tax:";
            this.LabelTax.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // TextSubtotal
            // 
            this.TextSubtotal.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "Subtotal", true));
            this.TextSubtotal.Enabled = false;
            this.TextSubtotal.Location = new System.Drawing.Point(550, 380);
            this.TextSubtotal.Name = "TextSubtotal";
            this.TextSubtotal.Size = new System.Drawing.Size(130, 20);
            this.TextSubtotal.TabIndex = 11;
            // 
            // LabelSubtotal
            // 
            this.LabelSubtotal.AutoSize = true;
            this.LabelSubtotal.BackColor = System.Drawing.Color.Transparent;
            this.LabelSubtotal.Location = new System.Drawing.Point(495, 383);
            this.LabelSubtotal.Name = "LabelSubtotal";
            this.LabelSubtotal.Size = new System.Drawing.Size(49, 13);
            this.LabelSubtotal.TabIndex = 10;
            this.LabelSubtotal.Text = "Subtotal:";
            this.LabelSubtotal.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // GrdServiceLines
            // 
            this.GrdServiceLines.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.GrdServiceLines.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
            this.GrdServiceLines.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
            this.RowId,
            this.ColDescription,
            this.ColAccount,
            this.ColAmount,
            this.ColJob,
            this.ColTax,
            this.RowVersion});
            this.GrdServiceLines.Location = new System.Drawing.Point(19, 149);
            this.GrdServiceLines.Name = "GrdServiceLines";
            this.GrdServiceLines.Size = new System.Drawing.Size(713, 208);
            this.GrdServiceLines.TabIndex = 9;
            this.GrdServiceLines.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.GrdServiceLinesDataError);
            // 
            // RowId
            // 
            this.RowId.DataPropertyName = "RowId";
            this.RowId.HeaderText = "RowId";
            this.RowId.Name = "RowId";
            this.RowId.Visible = false;
            // 
            // ColDescription
            // 
            this.ColDescription.DataPropertyName = "Description";
            this.ColDescription.FillWeight = 200F;
            this.ColDescription.HeaderText = "Description";
            this.ColDescription.Name = "ColDescription";
            this.ColDescription.Width = 200;
            // 
            // ColAccount
            // 
            this.ColAccount.DataPropertyName = "AccountUID";
            this.ColAccount.HeaderText = "Account";
            this.ColAccount.Name = "ColAccount";
            this.ColAccount.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.ColAccount.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            this.ColAccount.Width = 150;
            // 
            // ColAmount
            // 
            this.ColAmount.DataPropertyName = "Total";
            dataGridViewCellStyle7.Format = "C2";
            dataGridViewCellStyle7.NullValue = "0.00";
            this.ColAmount.DefaultCellStyle = dataGridViewCellStyle7;
            this.ColAmount.HeaderText = "Amount";
            this.ColAmount.Name = "ColAmount";
            // 
            // ColJob
            // 
            this.ColJob.DataPropertyName = "JobUID";
            this.ColJob.HeaderText = "Job";
            this.ColJob.Name = "ColJob";
            this.ColJob.Resizable = System.Windows.Forms.DataGridViewTriState.True;
            this.ColJob.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            // 
            // ColTax
            // 
            this.ColTax.DataPropertyName = "TaxUID";
            this.ColTax.HeaderText = "Tax";
            this.ColTax.Name = "ColTax";
            this.ColTax.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
            // 
            // RowVersion
            // 
            this.RowVersion.DataPropertyName = "RowVersion";
            this.RowVersion.HeaderText = "RowVersion";
            this.RowVersion.Name = "RowVersion";
            this.RowVersion.Visible = false;
            // 
            // DtDate
            // 
            this.DtDate.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BsServiceInvoice, "Date", true));
            this.DtDate.Format = System.Windows.Forms.DateTimePickerFormat.Short;
            this.DtDate.Location = new System.Drawing.Point(550, 84);
            this.DtDate.Name = "DtDate";
            this.DtDate.Size = new System.Drawing.Size(130, 20);
            this.DtDate.TabIndex = 8;
            this.DtDate.Value = new System.DateTime(2013, 8, 9, 23, 56, 56, 0);
            // 
            // Label1
            // 
            this.Label1.AutoSize = true;
            this.Label1.BackColor = System.Drawing.Color.White;
            this.Label1.Location = new System.Drawing.Point(511, 84);
            this.Label1.Name = "Label1";
            this.Label1.Size = new System.Drawing.Size(33, 13);
            this.Label1.TabIndex = 7;
            this.Label1.Text = "Date:";
            this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // TxtInvoiceNo
            // 
            this.TxtInvoiceNo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "Number", true));
            this.TxtInvoiceNo.Location = new System.Drawing.Point(550, 54);
            this.TxtInvoiceNo.Name = "TxtInvoiceNo";
            this.TxtInvoiceNo.Size = new System.Drawing.Size(130, 20);
            this.TxtInvoiceNo.TabIndex = 6;
            // 
            // V
            // 
            this.V.AutoSize = true;
            this.V.BackColor = System.Drawing.Color.White;
            this.V.Location = new System.Drawing.Point(482, 57);
            this.V.Name = "V";
            this.V.Size = new System.Drawing.Size(62, 13);
            this.V.TabIndex = 5;
            this.V.Text = "Invoice No:";
            this.V.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
            // 
            // LblAddress
            // 
            this.LblAddress.AutoSize = true;
            this.LblAddress.BackColor = System.Drawing.Color.White;
            this.LblAddress.Location = new System.Drawing.Point(133, 57);
            this.LblAddress.Name = "LblAddress";
            this.LblAddress.Size = new System.Drawing.Size(45, 13);
            this.LblAddress.TabIndex = 4;
            this.LblAddress.Text = "Address";
            // 
            // TxtAddress
            // 
            this.TxtAddress.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "ShipToAddress", true));
            this.TxtAddress.Location = new System.Drawing.Point(188, 54);
            this.TxtAddress.Multiline = true;
            this.TxtAddress.Name = "TxtAddress";
            this.TxtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
            this.TxtAddress.Size = new System.Drawing.Size(249, 89);
            this.TxtAddress.TabIndex = 3;
            // 
            // CmboCustomer
            // 
            this.CmboCustomer.DisplayMember = "UID";
            this.CmboCustomer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.CmboCustomer.FormattingEnabled = true;
            this.CmboCustomer.Location = new System.Drawing.Point(184, 6);
            this.CmboCustomer.Name = "CmboCustomer";
            this.CmboCustomer.Size = new System.Drawing.Size(254, 21);
            this.CmboCustomer.TabIndex = 1;
            this.CmboCustomer.ValueMember = "UID";
            this.CmboCustomer.SelectedIndexChanged += new System.EventHandler(this.CmboCustomerSelectedIndexChanged);
            this.CmboCustomer.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.CmboCustomerFormat);
            // 
            // LblCustomer
            // 
            this.LblCustomer.AutoSize = true;
            this.LblCustomer.Location = new System.Drawing.Point(127, 9);
            this.LblCustomer.Name = "LblCustomer";
            this.LblCustomer.Size = new System.Drawing.Size(51, 13);
            this.LblCustomer.TabIndex = 0;
            this.LblCustomer.Text = "Customer";
            // 
            // 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.RectangleShape2});
            this.ShapeContainer2.Size = new System.Drawing.Size(752, 480);
            this.ShapeContainer2.TabIndex = 2;
            this.ShapeContainer2.TabStop = false;
            // 
            // RectangleShape2
            // 
            this.RectangleShape2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
            this.RectangleShape2.BackColor = System.Drawing.Color.White;
            this.RectangleShape2.FillColor = System.Drawing.Color.White;
            this.RectangleShape2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Solid;
            this.RectangleShape2.Location = new System.Drawing.Point(8, 40);
            this.RectangleShape2.Name = "RectangleShape2";
            this.RectangleShape2.Size = new System.Drawing.Size(735, 326);
            // 
            // BtnRecord
            // 
            this.BtnRecord.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
            this.BtnRecord.Location = new System.Drawing.Point(616, 527);
            this.BtnRecord.Name = "BtnRecord";
            this.BtnRecord.Size = new System.Drawing.Size(75, 23);
            this.BtnRecord.TabIndex = 7;
            this.BtnRecord.Text = "Record";
            this.BtnRecord.UseVisualStyleBackColor = true;
            this.BtnRecord.Click += new System.EventHandler(this.BtnRecordClick);
            // 
            // DataGridViewTextBoxColumn1
            // 
            this.DataGridViewTextBoxColumn1.DataPropertyName = "Description";
            this.DataGridViewTextBoxColumn1.FillWeight = 200F;
            this.DataGridViewTextBoxColumn1.HeaderText = "Description";
            this.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1";
            this.DataGridViewTextBoxColumn1.Width = 200;
            // 
            // DataGridViewTextBoxColumn2
            // 
            this.DataGridViewTextBoxColumn2.DataPropertyName = "Total";
            dataGridViewCellStyle8.Format = "C2";
            dataGridViewCellStyle8.NullValue = "0.00";
            this.DataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle8;
            this.DataGridViewTextBoxColumn2.FillWeight = 200F;
            this.DataGridViewTextBoxColumn2.HeaderText = "Amount";
            this.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2";
            this.DataGridViewTextBoxColumn2.Width = 200;
            // 
            // DataGridViewTextBoxColumn3
            // 
            this.DataGridViewTextBoxColumn3.DataPropertyName = "RowVersion";
            dataGridViewCellStyle9.Format = "C2";
            dataGridViewCellStyle9.NullValue = "0.00";
            this.DataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle9;
            this.DataGridViewTextBoxColumn3.HeaderText = "RowVersion";
            this.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3";
            this.DataGridViewTextBoxColumn3.Visible = false;
            // 
            // DataGridViewTextBoxColumn4
            // 
            this.DataGridViewTextBoxColumn4.DataPropertyName = "RowVersion";
            this.DataGridViewTextBoxColumn4.HeaderText = "RowVersion";
            this.DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4";
            // 
            // InvoiceForm
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.ClientSize = new System.Drawing.Size(784, 562);
            this.Controls.Add(this.BtnRecord);
            this.Controls.Add(this.Panel1);
            this.Controls.Add(this.LblInvoice);
            this.Controls.Add(this.ShapeContainer1);
            this.Name = "InvoiceForm";
            this.Load += new System.EventHandler(this.InvoiceFormLoad);
            this.Controls.SetChildIndex(this.ShapeContainer1, 0);
            this.Controls.SetChildIndex(this.LblInvoice, 0);
            this.Controls.SetChildIndex(this.Panel1, 0);
            this.Controls.SetChildIndex(this.BtnRecord, 0);
            this.Panel1.ResumeLayout(false);
            this.Panel1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.BsServiceInvoice)).EndInit();
            ((System.ComponentModel.ISupportInitialize)(this.GrdServiceLines)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
Exemplo n.º 42
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPromotion));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this._DTFields_3 = new System.Windows.Forms.DateTimePicker();
     this._DTFields_2 = new System.Windows.Forms.DateTimePicker();
     this._chkFields_2 = new System.Windows.Forms.CheckBox();
     this.cmdDelete = new System.Windows.Forms.Button();
     this.cmdAdd = new System.Windows.Forms.Button();
     this.lvPromotion = new System.Windows.Forms.ListView();
     this._chkFields_1 = new System.Windows.Forms.CheckBox();
     this._chkFields_0 = new System.Windows.Forms.CheckBox();
     this._DTFields_0 = new System.Windows.Forms.DateTimePicker();
     this._txtFields_0 = new System.Windows.Forms.TextBox();
     this.picButtons = new System.Windows.Forms.Panel();
     this.cmdPrint = new System.Windows.Forms.Button();
     this.cmdClose = new System.Windows.Forms.Button();
     this.cmdCancel = new System.Windows.Forms.Button();
     this._DTFields_1 = new System.Windows.Forms.DateTimePicker();
     this.Label2 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this._lblLabels_1 = new System.Windows.Forms.Label();
     this._lblLabels_0 = new System.Windows.Forms.Label();
     this._lblLabels_38 = new System.Windows.Forms.Label();
     this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._lbl_5 = new System.Windows.Forms.Label();
     //Me.DTFields = New AxDTPickerArray(components)
     //Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(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.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize)this._DTFields_3).BeginInit();
     ((System.ComponentModel.ISupportInitialize)this._DTFields_2).BeginInit();
     ((System.ComponentModel.ISupportInitialize)this._DTFields_0).BeginInit();
     ((System.ComponentModel.ISupportInitialize)this._DTFields_1).BeginInit();
     //CType(Me.DTFields, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.chkFields, 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 Promotion Details";
     this.ClientSize = new System.Drawing.Size(455, 460);
     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 = "frmPromotion";
     //_DTFields_3.OcxState = CType(resources.GetObject("_DTFields_3.OcxState"), System.Windows.Forms.AxHost.State)
     this._DTFields_3.Size = new System.Drawing.Size(130, 21);
     this._DTFields_3.Location = new System.Drawing.Point(291, 112);
     this._DTFields_3.TabIndex = 20;
     this._DTFields_3.Name = "_DTFields_3";
     //_DTFields_2.OcxState = CType(resources.GetObject("_DTFields_2.OcxState"), System.Windows.Forms.AxHost.State)
     this._DTFields_2.Size = new System.Drawing.Size(130, 21);
     this._DTFields_2.Location = new System.Drawing.Point(104, 112);
     this._DTFields_2.TabIndex = 19;
     this._DTFields_2.Name = "_DTFields_2";
     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 = "Only for Specific Time";
     this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
     this._chkFields_2.Size = new System.Drawing.Size(151, 17);
     this._chkFields_2.Location = new System.Drawing.Point(270, 152);
     this._chkFields_2.TabIndex = 16;
     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.cmdDelete.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelete.Text = "&Delete";
     this.cmdDelete.Size = new System.Drawing.Size(94, 25);
     this.cmdDelete.Location = new System.Drawing.Point(352, 176);
     this.cmdDelete.TabIndex = 14;
     this.cmdDelete.TabStop = false;
     this.cmdDelete.BackColor = System.Drawing.SystemColors.Control;
     this.cmdDelete.CausesValidation = true;
     this.cmdDelete.Enabled = true;
     this.cmdDelete.ForeColor = System.Drawing.SystemColors.ControlText;
     this.cmdDelete.Cursor = System.Windows.Forms.Cursors.Default;
     this.cmdDelete.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmdDelete.Name = "cmdDelete";
     this.cmdAdd.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdAdd.Text = "&Add";
     this.cmdAdd.Size = new System.Drawing.Size(94, 25);
     this.cmdAdd.Location = new System.Drawing.Point(2, 176);
     this.cmdAdd.TabIndex = 13;
     this.cmdAdd.TabStop = false;
     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.Name = "cmdAdd";
     this.lvPromotion.Size = new System.Drawing.Size(445, 250);
     this.lvPromotion.Location = new System.Drawing.Point(2, 206);
     this.lvPromotion.TabIndex = 11;
     this.lvPromotion.View = System.Windows.Forms.View.Details;
     this.lvPromotion.LabelWrap = true;
     this.lvPromotion.HideSelection = false;
     this.lvPromotion.FullRowSelect = true;
     this.lvPromotion.GridLines = true;
     this.lvPromotion.ForeColor = System.Drawing.SystemColors.WindowText;
     this.lvPromotion.BackColor = System.Drawing.SystemColors.Window;
     this.lvPromotion.LabelEdit = true;
     this.lvPromotion.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvPromotion.Name = "lvPromotion";
     this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
     this._chkFields_1.Text = "Disabled:";
     this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
     this._chkFields_1.Size = new System.Drawing.Size(64, 13);
     this._chkFields_1.Location = new System.Drawing.Point(54, 138);
     this._chkFields_1.TabIndex = 7;
     this._chkFields_1.CausesValidation = true;
     this._chkFields_1.Enabled = true;
     this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default;
     this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._chkFields_1.Appearance = System.Windows.Forms.Appearance.Normal;
     this._chkFields_1.TabStop = true;
     this._chkFields_1.CheckState = System.Windows.Forms.CheckState.Unchecked;
     this._chkFields_1.Visible = true;
     this._chkFields_1.Name = "_chkFields_1";
     this._chkFields_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
     this._chkFields_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this._chkFields_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
     this._chkFields_0.Text = "Apply Only to POS Channel";
     this._chkFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
     this._chkFields_0.Size = new System.Drawing.Size(151, 13);
     this._chkFields_0.Location = new System.Drawing.Point(270, 138);
     this._chkFields_0.TabIndex = 8;
     this._chkFields_0.CausesValidation = true;
     this._chkFields_0.Enabled = true;
     this._chkFields_0.Cursor = System.Windows.Forms.Cursors.Default;
     this._chkFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._chkFields_0.Appearance = System.Windows.Forms.Appearance.Normal;
     this._chkFields_0.TabStop = true;
     this._chkFields_0.CheckState = System.Windows.Forms.CheckState.Unchecked;
     this._chkFields_0.Visible = true;
     this._chkFields_0.Name = "_chkFields_0";
     //_DTFields_0.OcxState = CType(resources.GetObject("_DTFields_0.OcxState"), System.Windows.Forms.AxHost.State)
     this._DTFields_0.Size = new System.Drawing.Size(130, 22);
     this._DTFields_0.Location = new System.Drawing.Point(105, 87);
     this._DTFields_0.TabIndex = 4;
     this._DTFields_0.Name = "_DTFields_0";
     this._txtFields_0.AutoSize = false;
     this._txtFields_0.Size = new System.Drawing.Size(315, 19);
     this._txtFields_0.Location = new System.Drawing.Point(105, 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(455, 39);
     this.picButtons.Location = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex = 10;
     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(192, 3);
     this.cmdPrint.TabIndex = 15;
     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.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(369, 3);
     this.cmdClose.TabIndex = 12;
     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.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 = 9;
     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";
     //_DTFields_1.OcxState = CType(resources.GetObject("_DTFields_1.OcxState"), System.Windows.Forms.AxHost.State)
     this._DTFields_1.Size = new System.Drawing.Size(130, 22);
     this._DTFields_1.Location = new System.Drawing.Point(291, 87);
     this._DTFields_1.TabIndex = 6;
     this._DTFields_1.Name = "_DTFields_1";
     this.Label2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
     this.Label2.Text = "To Time:";
     this.Label2.Size = new System.Drawing.Size(51, 15);
     this.Label2.Location = new System.Drawing.Point(238, 116);
     this.Label2.TabIndex = 18;
     this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     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.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
     this.Label1.Text = "From Time:";
     this.Label1.Size = new System.Drawing.Size(57, 17);
     this.Label1.Location = new System.Drawing.Point(48, 116);
     this.Label1.TabIndex = 17;
     this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
     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_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_1.Text = "End Date:";
     this._lblLabels_1.Size = new System.Drawing.Size(48, 13);
     this._lblLabels_1.Location = new System.Drawing.Point(240, 90);
     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 = "Start Date:";
     this._lblLabels_0.Size = new System.Drawing.Size(51, 13);
     this._lblLabels_0.Location = new System.Drawing.Point(52, 90);
     this._lblLabels_0.TabIndex = 3;
     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._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_38.Text = "Promotion Name:";
     this._lblLabels_38.Size = new System.Drawing.Size(81, 13);
     this._lblLabels_38.Location = new System.Drawing.Point(19, 69);
     this._lblLabels_38.TabIndex = 1;
     this._lblLabels_38.BackColor = System.Drawing.Color.Transparent;
     this._lblLabels_38.Enabled = true;
     this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText;
     this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default;
     this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_38.UseMnemonic = true;
     this._lblLabels_38.Visible = true;
     this._lblLabels_38.AutoSize = true;
     this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_38.Name = "_lblLabels_38";
     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(415, 112);
     this._Shape1_2.Location = new System.Drawing.Point(15, 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.Size = new System.Drawing.Size(60, 13);
     this._lbl_5.Location = new System.Drawing.Point(15, 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.Controls.Add(_DTFields_3);
     this.Controls.Add(_DTFields_2);
     this.Controls.Add(_chkFields_2);
     this.Controls.Add(cmdDelete);
     this.Controls.Add(cmdAdd);
     this.Controls.Add(lvPromotion);
     this.Controls.Add(_chkFields_1);
     this.Controls.Add(_chkFields_0);
     this.Controls.Add(_DTFields_0);
     this.Controls.Add(_txtFields_0);
     this.Controls.Add(picButtons);
     this.Controls.Add(_DTFields_1);
     this.Controls.Add(Label2);
     this.Controls.Add(Label1);
     this.Controls.Add(_lblLabels_1);
     this.Controls.Add(_lblLabels_0);
     this.Controls.Add(_lblLabels_38);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this.Controls.Add(_lbl_5);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdCancel);
     //Me.DTFields.SetIndex(_DTFields_3, CType(3, Short))
     //Me.DTFields.SetIndex(_DTFields_2, CType(2, Short))
     //Me.DTFields.SetIndex(_DTFields_0, CType(0, Short))
     //Me.DTFields.SetIndex(_DTFields_1, CType(1, Short))
     //Me.chkFields.SetIndex(_chkFields_2, CType(2, Short))
     //Me.chkFields.SetIndex(_chkFields_1, CType(1, Short))
     //Me.chkFields.SetIndex(_chkFields_0, CType(0, Short))
     //Me.lbl.SetIndex(_lbl_5, CType(5, Short))
     //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
     //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
     //Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short))
     //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
     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.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.DTFields, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize)this._DTFields_1).EndInit();
     ((System.ComponentModel.ISupportInitialize)this._DTFields_0).EndInit();
     ((System.ComponentModel.ISupportInitialize)this._DTFields_2).EndInit();
     ((System.ComponentModel.ISupportInitialize)this._DTFields_3).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 43
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._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.txtholdvalue = new System.Windows.Forms.TextBox();
			this.cmdEdit = new System.Windows.Forms.Button();
			this.cmdEmulate = new System.Windows.Forms.Button();
			this._chkFields_0 = new System.Windows.Forms.CheckBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdPrintAll = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this.lblStockItem = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lbl_5 = 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._Shape1_2 });
			this.ShapeContainer1.Size = new System.Drawing.Size(408, 204);
			this.ShapeContainer1.TabIndex = 13;
			this.ShapeContainer1.TabStop = false;
			//
			//_Shape1_2
			//
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.Location = new System.Drawing.Point(9, 60);
			this._Shape1_2.Name = "_Shape1_2";
			this._Shape1_2.Size = new System.Drawing.Size(322, 112);
			//
			//txtholdvalue
			//
			this.txtholdvalue.AcceptsReturn = true;
			this.txtholdvalue.BackColor = System.Drawing.SystemColors.Window;
			this.txtholdvalue.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtholdvalue.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtholdvalue.Location = new System.Drawing.Point(90, 236);
			this.txtholdvalue.MaxLength = 0;
			this.txtholdvalue.Name = "txtholdvalue";
			this.txtholdvalue.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtholdvalue.Size = new System.Drawing.Size(71, 19);
			this.txtholdvalue.TabIndex = 12;
			//
			//cmdEdit
			//
			this.cmdEdit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdEdit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdEdit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdEdit.Location = new System.Drawing.Point(282, 147);
			this.cmdEdit.Name = "cmdEdit";
			this.cmdEdit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdEdit.Size = new System.Drawing.Size(37, 17);
			this.cmdEdit.TabIndex = 11;
			this.cmdEdit.Text = "&Edit";
			this.cmdEdit.UseVisualStyleBackColor = false;
			//
			//cmdEmulate
			//
			this.cmdEmulate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdEmulate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdEmulate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdEmulate.Location = new System.Drawing.Point(282, 128);
			this.cmdEmulate.Name = "cmdEmulate";
			this.cmdEmulate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdEmulate.Size = new System.Drawing.Size(37, 17);
			this.cmdEmulate.TabIndex = 10;
			this.cmdEmulate.Text = "...";
			this.cmdEmulate.UseVisualStyleBackColor = false;
			//
			//_chkFields_0
			//
			this._chkFields_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_0.Location = new System.Drawing.Point(222, 90);
			this._chkFields_0.Name = "_chkFields_0";
			this._chkFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_0.Size = new System.Drawing.Size(97, 19);
			this._chkFields_0.TabIndex = 6;
			this._chkFields_0.Text = "Disable this Set:";
			this._chkFields_0.UseVisualStyleBackColor = false;
			//
			//_txtFields_0
			//
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.Location = new System.Drawing.Point(96, 66);
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Name = "_txtFields_0";
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.Size = new System.Drawing.Size(226, 19);
			this._txtFields_0.TabIndex = 5;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdPrintAll);
			this.picButtons.Controls.Add(this.cmdPrint);
			this.picButtons.Controls.Add(this.cmdCancel);
			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(408, 39);
			this.picButtons.TabIndex = 2;
			//
			//cmdPrintAll
			//
			this.cmdPrintAll.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrintAll.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrintAll.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrintAll.Location = new System.Drawing.Point(96, 3);
			this.cmdPrintAll.Name = "cmdPrintAll";
			this.cmdPrintAll.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrintAll.Size = new System.Drawing.Size(73, 29);
			this.cmdPrintAll.TabIndex = 13;
			this.cmdPrintAll.Text = "&Print All";
			this.cmdPrintAll.UseVisualStyleBackColor = false;
			//
			//cmdPrint
			//
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Location = new System.Drawing.Point(183, 3);
			this.cmdPrint.Name = "cmdPrint";
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.TabIndex = 7;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.UseVisualStyleBackColor = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.TabIndex = 1;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//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(261, 3);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.TabIndex = 0;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//_lblLabels_1
			//
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Location = new System.Drawing.Point(16, 114);
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.Size = new System.Drawing.Size(98, 13);
			this._lblLabels_1.TabIndex = 9;
			this._lblLabels_1.Text = "Primary Stock Item:";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//lblStockItem
			//
			this.lblStockItem.BackColor = System.Drawing.SystemColors.Control;
			this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblStockItem.Location = new System.Drawing.Point(15, 129);
			this.lblStockItem.Name = "lblStockItem";
			this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblStockItem.Size = new System.Drawing.Size(262, 16);
			this.lblStockItem.TabIndex = 8;
			this.lblStockItem.Text = "No Stock Item Selected";
			//
			//_lblLabels_0
			//
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Location = new System.Drawing.Point(14, 69);
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.Size = new System.Drawing.Size(84, 13);
			this._lblLabels_0.TabIndex = 4;
			this._lblLabels_0.Text = "Price Set Name:";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.AutoSize = true;
			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(9, 45);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(56, 13);
			this._lbl_5.TabIndex = 3;
			this._lbl_5.Text = "&1. General";
			//
			//frmPriceSet
			//
			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(408, 204);
			this.ControlBox = false;
			this.Controls.Add(this.txtholdvalue);
			this.Controls.Add(this.cmdEdit);
			this.Controls.Add(this.cmdEmulate);
			this.Controls.Add(this._chkFields_0);
			this.Controls.Add(this._txtFields_0);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this._lblLabels_1);
			this.Controls.Add(this.lblStockItem);
			this.Controls.Add(this._lblLabels_0);
			this.Controls.Add(this._lbl_5);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmPriceSet";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Pricing Set Details";
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}
Exemplo n.º 44
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(Vip_room));
     this.textBox20 = new System.Windows.Forms.TextBox();
     this.label24 = new System.Windows.Forms.Label();
     this.label46 = new System.Windows.Forms.Label();
     this.EnterPatientAddress = new System.Windows.Forms.TextBox();
     this.patient = new System.Windows.Forms.Label();
     this.label43 = new System.Windows.Forms.Label();
     this.label42 = new System.Windows.Forms.Label();
     this.label41 = new System.Windows.Forms.Label();
     this.label31 = new System.Windows.Forms.Label();
     this.label30 = new System.Windows.Forms.Label();
     this.label29 = new System.Windows.Forms.Label();
     this.label28 = new System.Windows.Forms.Label();
     this.EnterPatientPhoneNumber = new System.Windows.Forms.TextBox();
     this.EnterpatientLastName = new System.Windows.Forms.TextBox();
     this.EnterPatientFirstName = new System.Windows.Forms.TextBox();
     this.EnterPatiendId = new System.Windows.Forms.TextBox();
     this.EnterCheckId = new System.Windows.Forms.Button();
     this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.Vip2Photo = 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.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.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.Vip1photo = new System.Windows.Forms.PictureBox();
     this.Vip3Photo = new System.Windows.Forms.PictureBox();
     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.label17 = new System.Windows.Forms.Label();
     this.label6 = new System.Windows.Forms.Label();
     this.menuStrip1 = new System.Windows.Forms.MenuStrip();
     this.searchInNormalRoomsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.goBackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.Vip2Photo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip3Photo)).BeginInit();
     this.menuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // textBox20
     //
     this.textBox20.Location = new System.Drawing.Point(191, 215);
     this.textBox20.Name = "textBox20";
     this.textBox20.Size = new System.Drawing.Size(135, 20);
     this.textBox20.TabIndex = 196;
     //
     // 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(27, 216);
     this.label24.Name = "label24";
     this.label24.Size = new System.Drawing.Size(136, 19);
     this.label24.TabIndex = 195;
     this.label24.Text = "Patient email address";
     //
     // 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(405, 55);
     this.label46.Name = "label46";
     this.label46.Size = new System.Drawing.Size(280, 23);
     this.label46.TabIndex = 193;
     this.label46.Text = "Search for patients In VIP rooms";
     //
     // EnterPatientAddress
     //
     this.EnterPatientAddress.Location = new System.Drawing.Point(604, 217);
     this.EnterPatientAddress.Name = "EnterPatientAddress";
     this.EnterPatientAddress.Size = new System.Drawing.Size(135, 20);
     this.EnterPatientAddress.TabIndex = 192;
     //
     // 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(27, 154);
     this.patient.Name = "patient";
     this.patient.Size = new System.Drawing.Size(121, 19);
     this.patient.TabIndex = 191;
     this.patient.Text = "Patient Last Name";
     //
     // 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(353, 216);
     this.label43.Name = "label43";
     this.label43.Size = new System.Drawing.Size(31, 19);
     this.label43.TabIndex = 190;
     this.label43.Text = "OR";
     //
     // 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(353, 154);
     this.label42.Name = "label42";
     this.label42.Size = new System.Drawing.Size(31, 19);
     this.label42.TabIndex = 189;
     this.label42.Text = "OR";
     //
     // 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(353, 98);
     this.label41.Name = "label41";
     this.label41.Size = new System.Drawing.Size(31, 19);
     this.label41.TabIndex = 188;
     this.label41.Text = "OR";
     //
     // 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(420, 216);
     this.label31.Name = "label31";
     this.label31.Size = new System.Drawing.Size(101, 19);
     this.label31.TabIndex = 187;
     this.label31.Text = "Patient address";
     //
     // 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(420, 153);
     this.label30.Name = "label30";
     this.label30.Size = new System.Drawing.Size(141, 19);
     this.label30.TabIndex = 186;
     this.label30.Text = "Patient Phone number";
     //
     // 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(420, 98);
     this.label29.Name = "label29";
     this.label29.Size = new System.Drawing.Size(122, 19);
     this.label29.TabIndex = 185;
     this.label29.Text = "Patient First Name";
     //
     // 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(27, 97);
     this.label28.Name = "label28";
     this.label28.Size = new System.Drawing.Size(106, 19);
     this.label28.TabIndex = 184;
     this.label28.Text = "Enter Patient ID";
     //
     // EnterPatientPhoneNumber
     //
     this.EnterPatientPhoneNumber.Location = new System.Drawing.Point(604, 155);
     this.EnterPatientPhoneNumber.Name = "EnterPatientPhoneNumber";
     this.EnterPatientPhoneNumber.Size = new System.Drawing.Size(135, 20);
     this.EnterPatientPhoneNumber.TabIndex = 183;
     //
     // EnterpatientLastName
     //
     this.EnterpatientLastName.Location = new System.Drawing.Point(191, 153);
     this.EnterpatientLastName.Name = "EnterpatientLastName";
     this.EnterpatientLastName.Size = new System.Drawing.Size(135, 20);
     this.EnterpatientLastName.TabIndex = 182;
     //
     // EnterPatientFirstName
     //
     this.EnterPatientFirstName.Location = new System.Drawing.Point(604, 96);
     this.EnterPatientFirstName.Name = "EnterPatientFirstName";
     this.EnterPatientFirstName.Size = new System.Drawing.Size(135, 20);
     this.EnterPatientFirstName.TabIndex = 181;
     //
     // EnterPatiendId
     //
     this.EnterPatiendId.Location = new System.Drawing.Point(191, 97);
     this.EnterPatiendId.Name = "EnterPatiendId";
     this.EnterPatiendId.Size = new System.Drawing.Size(135, 20);
     this.EnterPatiendId.TabIndex = 180;
     //
     // 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(835, 149);
     this.EnterCheckId.Name = "EnterCheckId";
     this.EnterCheckId.Size = new System.Drawing.Size(122, 28);
     this.EnterCheckId.TabIndex = 194;
     this.EnterCheckId.Text = "Enter";
     this.EnterCheckId.UseVisualStyleBackColor = true;
     this.EnterCheckId.Click += new System.EventHandler(this.EnterCheckId_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.rectangleShape1});
     this.shapeContainer1.Size = new System.Drawing.Size(1008, 682);
     this.shapeContainer1.TabIndex = 197;
     this.shapeContainer1.TabStop = false;
     //
     // rectangleShape1
     //
     this.rectangleShape1.Location = new System.Drawing.Point(0, 45);
     this.rectangleShape1.Name = "rectangleShape1";
     this.rectangleShape1.Size = new System.Drawing.Size(979, 202);
     //
     // Vip2Photo
     //
     this.Vip2Photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip2Photo.Image")));
     this.Vip2Photo.Location = new System.Drawing.Point(533, 493);
     this.Vip2Photo.Name = "Vip2Photo";
     this.Vip2Photo.Size = new System.Drawing.Size(85, 88);
     this.Vip2Photo.TabIndex = 230;
     this.Vip2Photo.TabStop = false;
     //
     // 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(8, 388);
     this.label7.Name = "label7";
     this.label7.Size = new System.Drawing.Size(103, 19);
     this.label7.TabIndex = 229;
     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(8, 465);
     this.label8.Name = "label8";
     this.label8.Size = new System.Drawing.Size(94, 19);
     this.label8.TabIndex = 228;
     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(8, 354);
     this.label9.Name = "label9";
     this.label9.Size = new System.Drawing.Size(69, 19);
     this.label9.TabIndex = 227;
     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(8, 428);
     this.label10.Name = "label10";
     this.label10.Size = new System.Drawing.Size(73, 19);
     this.label10.TabIndex = 226;
     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(8, 533);
     this.label11.Name = "label11";
     this.label11.Size = new System.Drawing.Size(147, 19);
     this.label11.TabIndex = 225;
     this.label11.Text = "Patient personal photo:";
     //
     // Vip1PatientName
     //
     this.Vip1PatientName.Location = new System.Drawing.Point(173, 465);
     this.Vip1PatientName.Name = "Vip1PatientName";
     this.Vip1PatientName.Size = new System.Drawing.Size(135, 20);
     this.Vip1PatientName.TabIndex = 224;
     //
     // Vip1PatientID
     //
     this.Vip1PatientID.Location = new System.Drawing.Point(173, 425);
     this.Vip1PatientID.Name = "Vip1PatientID";
     this.Vip1PatientID.Size = new System.Drawing.Size(135, 20);
     this.Vip1PatientID.TabIndex = 223;
     //
     // Vip1RoomNumber
     //
     this.Vip1RoomNumber.Location = new System.Drawing.Point(173, 385);
     this.Vip1RoomNumber.Name = "Vip1RoomNumber";
     this.Vip1RoomNumber.Size = new System.Drawing.Size(135, 20);
     this.Vip1RoomNumber.TabIndex = 222;
     //
     // vip1RoomIdText
     //
     this.vip1RoomIdText.Location = new System.Drawing.Point(173, 351);
     this.vip1RoomIdText.Name = "vip1RoomIdText";
     this.vip1RoomIdText.Size = new System.Drawing.Size(135, 20);
     this.vip1RoomIdText.TabIndex = 221;
     //
     // 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(340, 388);
     this.label12.Name = "label12";
     this.label12.Size = new System.Drawing.Size(103, 19);
     this.label12.TabIndex = 220;
     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(340, 465);
     this.label13.Name = "label13";
     this.label13.Size = new System.Drawing.Size(94, 19);
     this.label13.TabIndex = 219;
     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(340, 354);
     this.label14.Name = "label14";
     this.label14.Size = new System.Drawing.Size(69, 19);
     this.label14.TabIndex = 218;
     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(340, 428);
     this.label15.Name = "label15";
     this.label15.Size = new System.Drawing.Size(73, 19);
     this.label15.TabIndex = 217;
     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(340, 533);
     this.label16.Name = "label16";
     this.label16.Size = new System.Drawing.Size(147, 19);
     this.label16.TabIndex = 216;
     this.label16.Text = "Patient personal photo:";
     //
     // Vip2PatientName
     //
     this.Vip2PatientName.Location = new System.Drawing.Point(519, 465);
     this.Vip2PatientName.Name = "Vip2PatientName";
     this.Vip2PatientName.Size = new System.Drawing.Size(135, 20);
     this.Vip2PatientName.TabIndex = 215;
     //
     // Vip2PatientID
     //
     this.Vip2PatientID.Location = new System.Drawing.Point(519, 428);
     this.Vip2PatientID.Name = "Vip2PatientID";
     this.Vip2PatientID.Size = new System.Drawing.Size(135, 20);
     this.Vip2PatientID.TabIndex = 214;
     //
     // Vip2RoomNumber
     //
     this.Vip2RoomNumber.Location = new System.Drawing.Point(519, 385);
     this.Vip2RoomNumber.Name = "Vip2RoomNumber";
     this.Vip2RoomNumber.Size = new System.Drawing.Size(135, 20);
     this.Vip2RoomNumber.TabIndex = 213;
     //
     // Vip2RoomId
     //
     this.Vip2RoomId.Location = new System.Drawing.Point(519, 351);
     this.Vip2RoomId.Name = "Vip2RoomId";
     this.Vip2RoomId.Size = new System.Drawing.Size(135, 20);
     this.Vip2RoomId.TabIndex = 212;
     //
     // Vip1photo
     //
     this.Vip1photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip1photo.Image")));
     this.Vip1photo.Location = new System.Drawing.Point(227, 502);
     this.Vip1photo.Name = "Vip1photo";
     this.Vip1photo.Size = new System.Drawing.Size(81, 88);
     this.Vip1photo.TabIndex = 211;
     this.Vip1photo.TabStop = false;
     //
     // Vip3Photo
     //
     this.Vip3Photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip3Photo.Image")));
     this.Vip3Photo.Location = new System.Drawing.Point(893, 491);
     this.Vip3Photo.Name = "Vip3Photo";
     this.Vip3Photo.Size = new System.Drawing.Size(87, 97);
     this.Vip3Photo.TabIndex = 210;
     this.Vip3Photo.TabStop = false;
     //
     // 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(683, 388);
     this.label18.Name = "label18";
     this.label18.Size = new System.Drawing.Size(103, 19);
     this.label18.TabIndex = 209;
     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(683, 465);
     this.label19.Name = "label19";
     this.label19.Size = new System.Drawing.Size(94, 19);
     this.label19.TabIndex = 208;
     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(683, 354);
     this.label20.Name = "label20";
     this.label20.Size = new System.Drawing.Size(69, 19);
     this.label20.TabIndex = 207;
     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(683, 428);
     this.label21.Name = "label21";
     this.label21.Size = new System.Drawing.Size(73, 19);
     this.label21.TabIndex = 206;
     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(683, 533);
     this.label22.Name = "label22";
     this.label22.Size = new System.Drawing.Size(147, 19);
     this.label22.TabIndex = 205;
     this.label22.Text = "Patient personal photo:";
     //
     // Vip3PatientName
     //
     this.Vip3PatientName.Location = new System.Drawing.Point(845, 465);
     this.Vip3PatientName.Name = "Vip3PatientName";
     this.Vip3PatientName.Size = new System.Drawing.Size(135, 20);
     this.Vip3PatientName.TabIndex = 204;
     //
     // Vip3PatientID
     //
     this.Vip3PatientID.Location = new System.Drawing.Point(845, 428);
     this.Vip3PatientID.Name = "Vip3PatientID";
     this.Vip3PatientID.Size = new System.Drawing.Size(135, 20);
     this.Vip3PatientID.TabIndex = 203;
     //
     // Vip3RoomNumber
     //
     this.Vip3RoomNumber.Location = new System.Drawing.Point(845, 388);
     this.Vip3RoomNumber.Name = "Vip3RoomNumber";
     this.Vip3RoomNumber.Size = new System.Drawing.Size(135, 20);
     this.Vip3RoomNumber.TabIndex = 202;
     //
     // Vip3RoomID
     //
     this.Vip3RoomID.Location = new System.Drawing.Point(845, 351);
     this.Vip3RoomID.Name = "Vip3RoomID";
     this.Vip3RoomID.Size = new System.Drawing.Size(135, 20);
     this.Vip3RoomID.TabIndex = 201;
     //
     // 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(673, 313);
     this.label23.Name = "label23";
     this.label23.Size = new System.Drawing.Size(322, 23);
     this.label23.TabIndex = 200;
     this.label23.Text = "VIP Patient Rooms Room number : 3";
     //
     // 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(340, 313);
     this.label17.Name = "label17";
     this.label17.Size = new System.Drawing.Size(322, 23);
     this.label17.TabIndex = 199;
     this.label17.Text = "VIP Patient Rooms Room number : 2";
     //
     // 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(-1, 313);
     this.label6.Name = "label6";
     this.label6.Size = new System.Drawing.Size(322, 23);
     this.label6.TabIndex = 198;
     this.label6.Text = "VIP Patient Rooms Room number : 1";
     //
     // menuStrip1
     //
     this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.searchInNormalRoomsToolStripMenuItem,
     this.goBackToolStripMenuItem});
     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 = 231;
     this.menuStrip1.Text = "menuStrip1";
     //
     // searchInNormalRoomsToolStripMenuItem
     //
     this.searchInNormalRoomsToolStripMenuItem.Name = "searchInNormalRoomsToolStripMenuItem";
     this.searchInNormalRoomsToolStripMenuItem.Size = new System.Drawing.Size(145, 20);
     this.searchInNormalRoomsToolStripMenuItem.Text = "Search in normal rooms";
     this.searchInNormalRoomsToolStripMenuItem.Click += new System.EventHandler(this.searchInNormalRoomsToolStripMenuItem_Click);
     //
     // goBackToolStripMenuItem
     //
     this.goBackToolStripMenuItem.Name = "goBackToolStripMenuItem";
     this.goBackToolStripMenuItem.Size = new System.Drawing.Size(62, 20);
     this.goBackToolStripMenuItem.Text = "Go back";
     this.goBackToolStripMenuItem.Click += new System.EventHandler(this.goBackToolStripMenuItem_Click);
     //
     // Vip_room
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor = System.Drawing.SystemColors.ActiveCaption;
     this.ClientSize = new System.Drawing.Size(1008, 682);
     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.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.label6);
     this.Controls.Add(this.textBox20);
     this.Controls.Add(this.label24);
     this.Controls.Add(this.label46);
     this.Controls.Add(this.EnterPatientAddress);
     this.Controls.Add(this.patient);
     this.Controls.Add(this.label43);
     this.Controls.Add(this.label42);
     this.Controls.Add(this.label41);
     this.Controls.Add(this.label31);
     this.Controls.Add(this.label30);
     this.Controls.Add(this.label29);
     this.Controls.Add(this.label28);
     this.Controls.Add(this.EnterPatientPhoneNumber);
     this.Controls.Add(this.EnterpatientLastName);
     this.Controls.Add(this.EnterPatientFirstName);
     this.Controls.Add(this.EnterPatiendId);
     this.Controls.Add(this.EnterCheckId);
     this.Controls.Add(this.menuStrip1);
     this.Controls.Add(this.shapeContainer1);
     this.MainMenuStrip = this.menuStrip1;
     this.Name = "Vip_room";
     this.Text = "Vip_room";
     ((System.ComponentModel.ISupportInitialize)(this.Vip2Photo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.Vip3Photo)).EndInit();
     this.menuStrip1.ResumeLayout(false);
     this.menuStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTransferItem));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.txtQtyT = new System.Windows.Forms.TextBox();
			this.txtPSize = new System.Windows.Forms.TextBox();
			this.txtPack = new System.Windows.Forms.TextBox();
			this.txtPriceS = new System.Windows.Forms.TextBox();
			this.txtQty = new System.Windows.Forms.TextBox();
			this.txtPrice = new System.Windows.Forms.TextBox();
			this.cmbQuantity = new System.Windows.Forms.ComboBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdPack = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._LBL_6 = new System.Windows.Forms.Label();
			this._LBL_4 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.lblPComp = new System.Windows.Forms.Label();
			this.lblSComp = new System.Windows.Forms.Label();
			this.lblStockItemS = new System.Windows.Forms.Label();
			this._LBL_5 = new System.Windows.Forms.Label();
			this._LBL_0 = new System.Windows.Forms.Label();
			this._LBL_3 = new System.Windows.Forms.Label();
			this._LBL_2 = new System.Windows.Forms.Label();
			this._LBL_1 = new System.Windows.Forms.Label();
			this.lblStockItem = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//CType(Me.LBL, 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 Transfer Item";
			this.ClientSize = new System.Drawing.Size(400, 249);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			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 = "frmStockTransferItem";
			this.txtQtyT.AutoSize = false;
			this.txtQtyT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQtyT.Size = new System.Drawing.Size(67, 19);
			this.txtQtyT.Location = new System.Drawing.Point(96, 97);
			this.txtQtyT.TabIndex = 20;
			this.txtQtyT.Text = "0";
			this.txtQtyT.AcceptsReturn = true;
			this.txtQtyT.BackColor = System.Drawing.SystemColors.Window;
			this.txtQtyT.CausesValidation = true;
			this.txtQtyT.Enabled = true;
			this.txtQtyT.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQtyT.HideSelection = true;
			this.txtQtyT.ReadOnly = false;
			this.txtQtyT.MaxLength = 0;
			this.txtQtyT.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQtyT.Multiline = false;
			this.txtQtyT.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQtyT.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQtyT.TabStop = true;
			this.txtQtyT.Visible = true;
			this.txtQtyT.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtQtyT.Name = "txtQtyT";
			this.txtPSize.AutoSize = false;
			this.txtPSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
			this.txtPSize.Enabled = false;
			this.txtPSize.Size = new System.Drawing.Size(27, 19);
			this.txtPSize.Location = new System.Drawing.Point(184, 97);
			this.txtPSize.TabIndex = 19;
			this.txtPSize.Text = "1";
			this.txtPSize.AcceptsReturn = true;
			this.txtPSize.BackColor = System.Drawing.SystemColors.Window;
			this.txtPSize.CausesValidation = true;
			this.txtPSize.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPSize.HideSelection = true;
			this.txtPSize.ReadOnly = false;
			this.txtPSize.MaxLength = 0;
			this.txtPSize.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPSize.Multiline = false;
			this.txtPSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPSize.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPSize.TabStop = true;
			this.txtPSize.Visible = true;
			this.txtPSize.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPSize.Name = "txtPSize";
			this.txtPack.AutoSize = false;
			this.txtPack.Size = new System.Drawing.Size(41, 19);
			this.txtPack.Location = new System.Drawing.Point(352, 160);
			this.txtPack.TabIndex = 17;
			this.txtPack.Text = "0";
			this.txtPack.AcceptsReturn = true;
			this.txtPack.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtPack.BackColor = System.Drawing.SystemColors.Window;
			this.txtPack.CausesValidation = true;
			this.txtPack.Enabled = true;
			this.txtPack.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPack.HideSelection = true;
			this.txtPack.ReadOnly = false;
			this.txtPack.MaxLength = 0;
			this.txtPack.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPack.Multiline = false;
			this.txtPack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPack.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPack.TabStop = true;
			this.txtPack.Visible = true;
			this.txtPack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPack.Name = "txtPack";
			this.txtPriceS.AutoSize = false;
			this.txtPriceS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPriceS.Enabled = false;
			this.txtPriceS.Size = new System.Drawing.Size(91, 19);
			this.txtPriceS.Location = new System.Drawing.Point(291, 234);
			this.txtPriceS.TabIndex = 9;
			this.txtPriceS.Text = "0.00";
			this.txtPriceS.Visible = false;
			this.txtPriceS.AcceptsReturn = true;
			this.txtPriceS.BackColor = System.Drawing.SystemColors.Window;
			this.txtPriceS.CausesValidation = true;
			this.txtPriceS.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPriceS.HideSelection = true;
			this.txtPriceS.ReadOnly = false;
			this.txtPriceS.MaxLength = 0;
			this.txtPriceS.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPriceS.Multiline = false;
			this.txtPriceS.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPriceS.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPriceS.TabStop = true;
			this.txtPriceS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPriceS.Name = "txtPriceS";
			this.txtQty.AutoSize = false;
			this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQty.Size = new System.Drawing.Size(67, 19);
			this.txtQty.Location = new System.Drawing.Point(316, 97);
			this.txtQty.ReadOnly = true;
			this.txtQty.TabIndex = 8;
			this.txtQty.Text = "0";
			this.txtQty.AcceptsReturn = true;
			this.txtQty.BackColor = System.Drawing.SystemColors.Window;
			this.txtQty.CausesValidation = true;
			this.txtQty.Enabled = true;
			this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQty.HideSelection = true;
			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.Fixed3D;
			this.txtQty.Name = "txtQty";
			this.txtPrice.AutoSize = false;
			this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPrice.Enabled = false;
			this.txtPrice.Size = new System.Drawing.Size(91, 19);
			this.txtPrice.Location = new System.Drawing.Point(293, 121);
			this.txtPrice.TabIndex = 4;
			this.txtPrice.Text = "0.00";
			this.txtPrice.AcceptsReturn = true;
			this.txtPrice.BackColor = System.Drawing.SystemColors.Window;
			this.txtPrice.CausesValidation = true;
			this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPrice.HideSelection = true;
			this.txtPrice.ReadOnly = false;
			this.txtPrice.MaxLength = 0;
			this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPrice.Multiline = false;
			this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPrice.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPrice.TabStop = true;
			this.txtPrice.Visible = true;
			this.txtPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPrice.Name = "txtPrice";
			this.cmbQuantity.Size = new System.Drawing.Size(79, 21);
			this.cmbQuantity.Location = new System.Drawing.Point(184, 96);
			this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbQuantity.TabIndex = 3;
			this.cmbQuantity.Visible = false;
			this.cmbQuantity.BackColor = System.Drawing.SystemColors.Window;
			this.cmbQuantity.CausesValidation = true;
			this.cmbQuantity.Enabled = true;
			this.cmbQuantity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbQuantity.IntegralHeight = true;
			this.cmbQuantity.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbQuantity.Sorted = false;
			this.cmbQuantity.TabStop = true;
			this.cmbQuantity.Name = "cmbQuantity";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(400, 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.cmdPack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPack.Text = "Break / Build P&ack";
			this.cmdPack.Size = new System.Drawing.Size(105, 29);
			this.cmdPack.Location = new System.Drawing.Point(88, 3);
			this.cmdPack.TabIndex = 18;
			this.cmdPack.TabStop = false;
			this.cmdPack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPack.CausesValidation = true;
			this.cmdPack.Enabled = true;
			this.cmdPack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPack.Name = "cmdPack";
			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(8, 3);
			this.cmdCancel.TabIndex = 16;
			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(312, 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_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_6.Text = "Item Qty:";
			this._LBL_6.Size = new System.Drawing.Size(42, 13);
			this._LBL_6.Location = new System.Drawing.Point(52, 99);
			this._LBL_6.TabIndex = 22;
			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 = true;
			this._LBL_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_6.Name = "_LBL_6";
			this._LBL_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_4.Text = "x";
			this._LBL_4.Size = new System.Drawing.Size(8, 16);
			this._LBL_4.Location = new System.Drawing.Point(170, 98);
			this._LBL_4.TabIndex = 21;
			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.Label2.Text = "Please verify products from both locations";
			this.Label2.ForeColor = System.Drawing.Color.FromArgb(192, 0, 0);
			this.Label2.Size = new System.Drawing.Size(296, 23);
			this.Label2.Location = new System.Drawing.Point(56, 160);
			this.Label2.TabIndex = 15;
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			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.lblPComp.Text = "Promotion Name:";
			this.lblPComp.Size = new System.Drawing.Size(352, 24);
			this.lblPComp.Location = new System.Drawing.Point(16, 52);
			this.lblPComp.TabIndex = 14;
			this.lblPComp.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblPComp.BackColor = System.Drawing.Color.Transparent;
			this.lblPComp.Enabled = true;
			this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblPComp.UseMnemonic = true;
			this.lblPComp.Visible = true;
			this.lblPComp.AutoSize = false;
			this.lblPComp.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblPComp.Name = "lblPComp";
			this.lblSComp.Text = "Promotion Name:";
			this.lblSComp.Size = new System.Drawing.Size(360, 24);
			this.lblSComp.Location = new System.Drawing.Point(16, 192);
			this.lblSComp.TabIndex = 13;
			this.lblSComp.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblSComp.BackColor = System.Drawing.Color.Transparent;
			this.lblSComp.Enabled = true;
			this.lblSComp.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblSComp.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblSComp.UseMnemonic = true;
			this.lblSComp.Visible = true;
			this.lblSComp.AutoSize = false;
			this.lblSComp.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblSComp.Name = "lblSComp";
			this.lblStockItemS.Text = "Label1";
			this.lblStockItemS.Size = new System.Drawing.Size(286, 17);
			this.lblStockItemS.Location = new System.Drawing.Point(98, 216);
			this.lblStockItemS.TabIndex = 12;
			this.lblStockItemS.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockItemS.BackColor = System.Drawing.SystemColors.Control;
			this.lblStockItemS.Enabled = true;
			this.lblStockItemS.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblStockItemS.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblStockItemS.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblStockItemS.UseMnemonic = true;
			this.lblStockItemS.Visible = true;
			this.lblStockItemS.AutoSize = false;
			this.lblStockItemS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblStockItemS.Name = "lblStockItemS";
			this._LBL_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_5.Text = "Stock Item Name:";
			this._LBL_5.Size = new System.Drawing.Size(85, 13);
			this._LBL_5.Location = new System.Drawing.Point(10, 184);
			this._LBL_5.TabIndex = 11;
			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 = true;
			this._LBL_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_5.Name = "_LBL_5";
			this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_0.Text = "Price:";
			this._LBL_0.Size = new System.Drawing.Size(27, 13);
			this._LBL_0.Location = new System.Drawing.Point(260, 237);
			this._LBL_0.TabIndex = 10;
			this._LBL_0.Visible = false;
			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.AutoSize = true;
			this._LBL_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_0.Name = "_LBL_0";
			this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_3.Text = "Cost Price (singles) :";
			this._LBL_3.Size = new System.Drawing.Size(95, 13);
			this._LBL_3.Location = new System.Drawing.Point(194, 124);
			this._LBL_3.TabIndex = 7;
			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 = true;
			this._LBL_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_3.Name = "_LBL_3";
			this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_2.Text = "Total Qty:";
			this._LBL_2.Size = new System.Drawing.Size(46, 13);
			this._LBL_2.Location = new System.Drawing.Point(268, 99);
			this._LBL_2.TabIndex = 6;
			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 = true;
			this._LBL_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._LBL_2.Name = "_LBL_2";
			this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._LBL_1.Text = "Stock Item Name:";
			this._LBL_1.Size = new System.Drawing.Size(85, 13);
			this._LBL_1.Location = new System.Drawing.Point(10, 79);
			this._LBL_1.TabIndex = 5;
			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.lblStockItem.Text = "Label1";
			this.lblStockItem.Size = new System.Drawing.Size(286, 17);
			this.lblStockItem.Location = new System.Drawing.Point(98, 79);
			this.lblStockItem.TabIndex = 2;
			this.lblStockItem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockItem.BackColor = System.Drawing.SystemColors.Control;
			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.Fixed3D;
			this.lblStockItem.Name = "lblStockItem";
			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(383, 104);
			this._Shape1_2.Location = new System.Drawing.Point(7, 48);
			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._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(383, 56);
			this._Shape1_0.Location = new System.Drawing.Point(7, 184);
			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(txtQtyT);
			this.Controls.Add(txtPSize);
			this.Controls.Add(txtPack);
			this.Controls.Add(txtPriceS);
			this.Controls.Add(txtQty);
			this.Controls.Add(txtPrice);
			this.Controls.Add(cmbQuantity);
			this.Controls.Add(picButtons);
			this.Controls.Add(_LBL_6);
			this.Controls.Add(_LBL_4);
			this.Controls.Add(Label2);
			this.Controls.Add(lblPComp);
			this.Controls.Add(lblSComp);
			this.Controls.Add(lblStockItemS);
			this.Controls.Add(_LBL_5);
			this.Controls.Add(_LBL_0);
			this.Controls.Add(_LBL_3);
			this.Controls.Add(_LBL_2);
			this.Controls.Add(_LBL_1);
			this.Controls.Add(lblStockItem);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdPack);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.LBL.SetIndex(_LBL_6, CType(6, Short))
			//Me.LBL.SetIndex(_LBL_4, CType(4, Short))
			//Me.LBL.SetIndex(_LBL_5, CType(5, Short))
			//Me.LBL.SetIndex(_LBL_0, CType(0, Short))
			//Me.LBL.SetIndex(_LBL_3, CType(3, Short))
			//Me.LBL.SetIndex(_LBL_2, CType(2, Short))
			//Me.LBL.SetIndex(_LBL_1, CType(1, 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.LBL, System.ComponentModel.ISupportInitialize).EndInit()
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemplo n.º 46
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();
 }
 /// <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();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMakeRepairItem));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.txtQtyTaken     = new System.Windows.Forms.TextBox();
     this.txtQty          = new System.Windows.Forms.TextBox();
     this.txtPrice        = new System.Windows.Forms.TextBox();
     this.cmbQuantity     = new System.Windows.Forms.ComboBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this._LBL_0          = new System.Windows.Forms.Label();
     this.lblPComp        = new System.Windows.Forms.Label();
     this._LBL_3          = new System.Windows.Forms.Label();
     this._LBL_2          = new System.Windows.Forms.Label();
     this._LBL_1          = new System.Windows.Forms.Label();
     this.lblStockItem    = new System.Windows.Forms.Label();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.LBL, 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                         = "Repair product - 4VEG";
     this.ClientSize                   = new System.Drawing.Size(468, 143);
     this.Location                     = new System.Drawing.Point(3, 22);
     this.ControlBox                   = false;
     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                         = "frmMakeRepairItem";
     this.txtQtyTaken.AutoSize         = false;
     this.txtQtyTaken.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQtyTaken.Size             = new System.Drawing.Size(67, 19);
     this.txtQtyTaken.Location         = new System.Drawing.Point(98, 103);
     this.txtQtyTaken.TabIndex         = 0;
     this.txtQtyTaken.Text             = "0";
     this.txtQtyTaken.AcceptsReturn    = true;
     this.txtQtyTaken.BackColor        = System.Drawing.SystemColors.Window;
     this.txtQtyTaken.CausesValidation = true;
     this.txtQtyTaken.Enabled          = true;
     this.txtQtyTaken.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtQtyTaken.HideSelection    = true;
     this.txtQtyTaken.ReadOnly         = false;
     this.txtQtyTaken.MaxLength        = 0;
     this.txtQtyTaken.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtQtyTaken.Multiline        = false;
     this.txtQtyTaken.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtQtyTaken.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtQtyTaken.TabStop          = true;
     this.txtQtyTaken.Visible          = true;
     this.txtQtyTaken.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtQtyTaken.Name             = "txtQtyTaken";
     this.txtQty.AutoSize              = false;
     this.txtQty.TextAlign             = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQty.Size                  = new System.Drawing.Size(67, 19);
     this.txtQty.Location              = new System.Drawing.Point(248, 103);
     this.txtQty.TabIndex              = 1;
     this.txtQty.Text                  = "0";
     this.txtQty.AcceptsReturn         = true;
     this.txtQty.BackColor             = System.Drawing.SystemColors.Window;
     this.txtQty.CausesValidation      = true;
     this.txtQty.Enabled               = 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.Fixed3D;
     this.txtQty.Name                  = "txtQty";
     this.txtPrice.AutoSize            = false;
     this.txtPrice.TextAlign           = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtPrice.Enabled             = false;
     this.txtPrice.Size                = new System.Drawing.Size(91, 19);
     this.txtPrice.Location            = new System.Drawing.Point(357, 103);
     this.txtPrice.TabIndex            = 7;
     this.txtPrice.Text                = "0.00";
     this.txtPrice.AcceptsReturn       = true;
     this.txtPrice.BackColor           = System.Drawing.SystemColors.Window;
     this.txtPrice.CausesValidation    = true;
     this.txtPrice.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtPrice.HideSelection       = true;
     this.txtPrice.ReadOnly            = false;
     this.txtPrice.MaxLength           = 0;
     this.txtPrice.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtPrice.Multiline           = false;
     this.txtPrice.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtPrice.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtPrice.TabStop             = true;
     this.txtPrice.Visible             = true;
     this.txtPrice.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPrice.Name                = "txtPrice";
     this.cmbQuantity.Size             = new System.Drawing.Size(79, 21);
     this.cmbQuantity.Location         = new System.Drawing.Point(184, 176);
     this.cmbQuantity.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbQuantity.TabIndex         = 6;
     this.cmbQuantity.Visible          = false;
     this.cmbQuantity.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbQuantity.CausesValidation = true;
     this.cmbQuantity.Enabled          = true;
     this.cmbQuantity.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbQuantity.IntegralHeight   = true;
     this.cmbQuantity.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbQuantity.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbQuantity.Sorted           = false;
     this.cmbQuantity.TabStop          = true;
     this.cmbQuantity.Name             = "cmbQuantity";
     this.picButtons.Dock              = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor         = System.Drawing.Color.Blue;
     this.picButtons.Size              = new System.Drawing.Size(468, 39);
     this.picButtons.Location          = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex          = 4;
     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.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(8, 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                = "Process && E&xit";
     this.cmdClose.Size                = new System.Drawing.Size(97, 29);
     this.cmdClose.Location            = new System.Drawing.Point(360, 3);
     this.cmdClose.TabIndex            = 2;
     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_0.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_0.Text                  = "Shelf Qty Taken:";
     this._LBL_0.Size                  = new System.Drawing.Size(80, 13);
     this._LBL_0.Location              = new System.Drawing.Point(18, 106);
     this._LBL_0.TabIndex              = 12;
     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.lblPComp.Text                = "Please enter the Qty you wish to make:";
     this.lblPComp.Font                = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblPComp.Size                = new System.Drawing.Size(352, 20);
     this.lblPComp.Location            = new System.Drawing.Point(10, 56);
     this.lblPComp.TabIndex            = 11;
     this.lblPComp.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblPComp.BackColor           = System.Drawing.Color.Transparent;
     this.lblPComp.Enabled             = true;
     this.lblPComp.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.lblPComp.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblPComp.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblPComp.UseMnemonic         = true;
     this.lblPComp.Visible             = true;
     this.lblPComp.AutoSize            = false;
     this.lblPComp.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.lblPComp.Name                = "lblPComp";
     this._LBL_3.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_3.Text                  = "Price:";
     this._LBL_3.Size                  = new System.Drawing.Size(35, 13);
     this._LBL_3.Location              = new System.Drawing.Point(320, 106);
     this._LBL_3.TabIndex              = 10;
     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              = true;
     this._LBL_3.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_3.Name                  = "_LBL_3";
     this._LBL_2.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_2.Text                  = "New Qty Made:";
     this._LBL_2.Size                  = new System.Drawing.Size(74, 13);
     this._LBL_2.Location              = new System.Drawing.Point(173, 106);
     this._LBL_2.TabIndex              = 9;
     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              = true;
     this._LBL_2.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this._LBL_2.Name                  = "_LBL_2";
     this._LBL_1.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this._LBL_1.Text                  = "Stock Item Name:";
     this._LBL_1.Size                  = new System.Drawing.Size(85, 13);
     this._LBL_1.Location              = new System.Drawing.Point(10, 79);
     this._LBL_1.TabIndex              = 8;
     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.lblStockItem.Text            = "Label1";
     this.lblStockItem.Size            = new System.Drawing.Size(350, 17);
     this.lblStockItem.Location        = new System.Drawing.Point(98, 80);
     this.lblStockItem.TabIndex        = 5;
     this.lblStockItem.TextAlign       = System.Drawing.ContentAlignment.TopLeft;
     this.lblStockItem.BackColor       = System.Drawing.SystemColors.Control;
     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.Fixed3D;
     this.lblStockItem.Name            = "lblStockItem";
     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(452, 87);
     this._Shape1_2.Location           = new System.Drawing.Point(7, 48);
     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(txtQtyTaken);
     this.Controls.Add(txtQty);
     this.Controls.Add(txtPrice);
     this.Controls.Add(cmbQuantity);
     this.Controls.Add(picButtons);
     this.Controls.Add(_LBL_0);
     this.Controls.Add(lblPComp);
     this.Controls.Add(_LBL_3);
     this.Controls.Add(_LBL_2);
     this.Controls.Add(_LBL_1);
     this.Controls.Add(lblStockItem);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this.Controls.Add(ShapeContainer1);
     this.picButtons.Controls.Add(cmdCancel);
     this.picButtons.Controls.Add(cmdClose);
     //Me.LBL.SetIndex(_LBL_0, CType(0, Short))
     //Me.LBL.SetIndex(_LBL_3, CType(3, Short))
     //Me.LBL.SetIndex(_LBL_2, CType(2, Short))
     //Me.LBL.SetIndex(_LBL_1, CType(1, Short))
     this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.LBL, System.ComponentModel.ISupportInitialize).EndInit()
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 49
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();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMaintainWeight));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdNew          = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.Frame1          = new System.Windows.Forms.GroupBox();
     this.grdDataGrid     = new myDataGridView();
     this.Frame2          = new System.Windows.Forms.GroupBox();
     this._txtFields_4    = new System.Windows.Forms.TextBox();
     this._txtFields_1    = new System.Windows.Forms.TextBox();
     this._txtFields_3    = new System.Windows.Forms.TextBox();
     this._txtFields_2    = new System.Windows.Forms.TextBox();
     this._txtFields_0    = new System.Windows.Forms.TextBox();
     this.Label5          = new System.Windows.Forms.Label();
     this.Label4          = new System.Windows.Forms.Label();
     this.Label3          = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.Label1          = new System.Windows.Forms.Label();
     this.Shape1          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
     this.picButtons.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.Frame2.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit();
     //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
     this.Text                        = "Maintain Scale Weight Codes";
     this.ClientSize                  = new System.Drawing.Size(398, 289);
     this.Location                    = new System.Drawing.Point(4, 23);
     this.ControlBox                  = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     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.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmMaintainWeight";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(398, 39);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 5;
     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.cmdNew.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNew.Text                 = "&New";
     this.cmdNew.Size                 = new System.Drawing.Size(79, 25);
     this.cmdNew.Location             = new System.Drawing.Point(4, 4);
     this.cmdNew.TabIndex             = 8;
     this.cmdNew.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdNew.CausesValidation     = true;
     this.cmdNew.Enabled              = true;
     this.cmdNew.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdNew.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdNew.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdNew.TabStop              = true;
     this.cmdNew.Name                 = "cmdNew";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(79, 25);
     this.cmdClose.Location           = new System.Drawing.Point(312, 4);
     this.cmdClose.TabIndex           = 7;
     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.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     this.cmdCancel.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCancel.Text              = "Cancel";
     this.cmdCancel.Size              = new System.Drawing.Size(79, 25);
     this.cmdCancel.Location          = new System.Drawing.Point(120, 4);
     this.cmdCancel.TabIndex          = 6;
     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.TabStop           = true;
     this.cmdCancel.Name              = "cmdCancel";
     this.Frame1.Size                 = new System.Drawing.Size(391, 237);
     this.Frame1.Location             = new System.Drawing.Point(2, 46);
     this.Frame1.TabIndex             = 15;
     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";
     //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid.Size              = new System.Drawing.Size(373, 217);
     this.grdDataGrid.Location          = new System.Drawing.Point(8, 14);
     this.grdDataGrid.TabIndex          = 16;
     this.grdDataGrid.Name              = "grdDataGrid";
     this.Frame2.Text                   = "New Weight Code";
     this.Frame2.Size                   = new System.Drawing.Size(391, 237);
     this.Frame2.Location               = new System.Drawing.Point(2, 46);
     this.Frame2.TabIndex               = 9;
     this.Frame2.BackColor              = System.Drawing.SystemColors.Control;
     this.Frame2.Enabled                = true;
     this.Frame2.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Frame2.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Visible                = true;
     this.Frame2.Padding                = new System.Windows.Forms.Padding(0);
     this.Frame2.Name                   = "Frame2";
     this._txtFields_4.AutoSize         = false;
     this._txtFields_4.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_4.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_4.Location         = new System.Drawing.Point(340, 72);
     this._txtFields_4.TabIndex         = 4;
     this._txtFields_4.AcceptsReturn    = true;
     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_1.AutoSize         = false;
     this._txtFields_1.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_1.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_1.Location         = new System.Drawing.Point(340, 28);
     this._txtFields_1.TabIndex         = 2;
     this._txtFields_1.AcceptsReturn    = true;
     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_3.AutoSize         = false;
     this._txtFields_3.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_3.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_3.Location         = new System.Drawing.Point(340, 50);
     this._txtFields_3.TabIndex         = 3;
     this._txtFields_3.AcceptsReturn    = true;
     this._txtFields_3.BackColor        = System.Drawing.SystemColors.Window;
     this._txtFields_3.CausesValidation = true;
     this._txtFields_3.Enabled          = true;
     this._txtFields_3.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtFields_3.HideSelection    = true;
     this._txtFields_3.ReadOnly         = false;
     this._txtFields_3.MaxLength        = 0;
     this._txtFields_3.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_3.Multiline        = false;
     this._txtFields_3.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtFields_3.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtFields_3.TabStop          = true;
     this._txtFields_3.Visible          = true;
     this._txtFields_3.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_3.Name             = "_txtFields_3";
     this._txtFields_2.AutoSize         = false;
     this._txtFields_2.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_2.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_2.Location         = new System.Drawing.Point(160, 50);
     this._txtFields_2.TabIndex         = 1;
     this._txtFields_2.AcceptsReturn    = true;
     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_0.AutoSize         = false;
     this._txtFields_0.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_0.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_0.Location         = new System.Drawing.Point(160, 28);
     this._txtFields_0.TabIndex         = 0;
     this._txtFields_0.AcceptsReturn    = true;
     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.Label5.Text                   = "Number of Decimals";
     this.Label5.Size                   = new System.Drawing.Size(131, 17);
     this.Label5.Location               = new System.Drawing.Point(204, 52);
     this.Label5.TabIndex               = 14;
     this.Label5.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label5.BackColor              = System.Drawing.Color.Transparent;
     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                   = "Price Length";
     this.Label4.Size                   = new System.Drawing.Size(135, 17);
     this.Label4.Location               = new System.Drawing.Point(16, 52);
     this.Label4.TabIndex               = 13;
     this.Label4.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label4.BackColor              = System.Drawing.Color.Transparent;
     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                   = "Check Digit";
     this.Label3.Size                   = new System.Drawing.Size(107, 17);
     this.Label3.Location               = new System.Drawing.Point(204, 74);
     this.Label3.TabIndex               = 12;
     this.Label3.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label3.BackColor              = System.Drawing.Color.Transparent;
     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.Label2.Text                   = "Barcode";
     this.Label2.Size                   = new System.Drawing.Size(105, 17);
     this.Label2.Location               = new System.Drawing.Point(204, 32);
     this.Label2.TabIndex               = 11;
     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.Label1.Text                   = "Scale Prefix";
     this.Label1.Size                   = new System.Drawing.Size(111, 17);
     this.Label1.Location               = new System.Drawing.Point(16, 32);
     this.Label1.TabIndex               = 10;
     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.Shape1.BackColor              = System.Drawing.Color.FromArgb(192, 192, 255);
     this.Shape1.BackStyle              = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this.Shape1.Size                   = new System.Drawing.Size(375, 209);
     this.Shape1.Location               = new System.Drawing.Point(8, 7);
     this.Shape1.BorderColor            = System.Drawing.SystemColors.WindowText;
     this.Shape1.BorderStyle            = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Shape1.BorderWidth            = 1;
     this.Shape1.FillColor              = System.Drawing.Color.Black;
     this.Shape1.FillStyle              = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this.Shape1.Visible                = true;
     this.Shape1.Name                   = "Shape1";
     this.Controls.Add(picButtons);
     this.Controls.Add(Frame1);
     this.Controls.Add(Frame2);
     this.picButtons.Controls.Add(cmdNew);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdCancel);
     this.Frame1.Controls.Add(grdDataGrid);
     this.Frame2.Controls.Add(_txtFields_4);
     this.Frame2.Controls.Add(_txtFields_1);
     this.Frame2.Controls.Add(_txtFields_3);
     this.Frame2.Controls.Add(_txtFields_2);
     this.Frame2.Controls.Add(_txtFields_0);
     this.Frame2.Controls.Add(Label5);
     this.Frame2.Controls.Add(Label4);
     this.Frame2.Controls.Add(Label3);
     this.Frame2.Controls.Add(Label2);
     this.Frame2.Controls.Add(Label1);
     this.ShapeContainer1.Shapes.Add(Shape1);
     this.Frame2.Controls.Add(ShapeContainer1);
     //Me.txtFields.SetIndex(_txtFields_4, CType(4, Short))
     //Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
     //Me.txtFields.SetIndex(_txtFields_3, CType(3, Short))
     //Me.txtFields.SetIndex(_txtFields_2, CType(2, Short))
     //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
     //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit();
     this.picButtons.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.Frame2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 51
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 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();
 }
 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);
 }
Exemplo n.º 54
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.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.cmdExit = new System.Windows.Forms.Button();
			this.Label2 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			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.Shape1 });
			this.ShapeContainer1.Size = new System.Drawing.Size(240, 296);
			this.ShapeContainer1.TabIndex = 4;
			this.ShapeContainer1.TabStop = false;
			//
			//Shape1
			//
			this.Shape1.BackColor = System.Drawing.SystemColors.Window;
			this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape1.FillColor = System.Drawing.Color.Black;
			this.Shape1.Location = new System.Drawing.Point(6, 186);
			this.Shape1.Name = "Shape1";
			this.Shape1.Size = new System.Drawing.Size(231, 73);
			//
			//cmdExit
			//
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Location = new System.Drawing.Point(152, 264);
			this.cmdExit.Name = "cmdExit";
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Size = new System.Drawing.Size(85, 28);
			this.cmdExit.TabIndex = 1;
			this.cmdExit.TabStop = false;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.UseVisualStyleBackColor = false;
			//
			//Label2
			//
			this.Label2.BackColor = System.Drawing.Color.Transparent;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Location = new System.Drawing.Point(10, 208);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(219, 45);
			this.Label2.TabIndex = 3;
			//
			//Label1
			//
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(10, 190);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(137, 15);
			this.Label1.TabIndex = 2;
			this.Label1.Text = "Available Presets";
			//
			//frmPresetList
			//
			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(240, 296);
			this.ControlBox = false;
			this.Controls.Add(this.cmdExit);
			this.Controls.Add(this.Label2);
			this.Controls.Add(this.Label1);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.Location = new System.Drawing.Point(4, 23);
			this.Name = "frmPresetList";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Denomination List";
			this.ResumeLayout(false);

		}
Exemplo n.º 55
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmVegTestCode));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.Timer1 = new System.Windows.Forms.Timer(components);
			this.Command2 = new System.Windows.Forms.Button();
			this.Command1 = new System.Windows.Forms.Button();
			//Me.Drive1 = New Microsoft.VisualBasic.Compatibility.VB6.DriveListBox
			this.chkFields = new System.Windows.Forms.CheckBox();
			this.txtFields = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._lbl_5 = new System.Windows.Forms.Label();
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			//	CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//	CType(Me.lblLabels, 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 = "4VEG Registration";
			this.ClientSize = new System.Drawing.Size(345, 120);
			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 = "frmVegTestCode";
			this.Timer1.Interval = 1;
			this.Timer1.Enabled = true;
			this.Command2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command2.Text = "Close CD Tray and Register";
			this.Command2.Size = new System.Drawing.Size(151, 19);
			this.Command2.Location = new System.Drawing.Point(184, 256);
			this.Command2.TabIndex = 10;
			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.TabStop = true;
			this.Command2.Name = "Command2";
			this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command1.Text = "Open";
			this.Command1.Size = new System.Drawing.Size(59, 19);
			this.Command1.Location = new System.Drawing.Point(216, 280);
			this.Command1.TabIndex = 8;
			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";
			//Me.Drive1.Enabled = False
			//Me.Drive1.Size = New System.Drawing.Size(111, 21)
			//Me.Drive1.Location = New System.Drawing.Point(64, 256)
			//Me.Drive1.TabIndex = 7
			//Me.Drive1.BackColor = System.Drawing.SystemColors.Window
			//Me.Drive1.CausesValidation = True
			//Me.Drive1.ForeColor = System.Drawing.SystemColors.WindowText
			//Me.Drive1.Cursor = System.Windows.Forms.Cursors.Default
			//Me.Drive1.TabStop = True
			//Me.Drive1.Visible = True
			//Me.Drive1.Name = "Drive1"
			this.chkFields.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this.chkFields.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkFields.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.chkFields.Text = "Manual :";
			this.chkFields.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkFields.Size = new System.Drawing.Size(68, 17);
			this.chkFields.Location = new System.Drawing.Point(264, 231);
			this.chkFields.TabIndex = 2;
			this.chkFields.CausesValidation = true;
			this.chkFields.Enabled = true;
			this.chkFields.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkFields.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkFields.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkFields.TabStop = true;
			this.chkFields.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkFields.Visible = true;
			this.chkFields.Name = "chkFields";
			this.txtFields.AutoSize = false;
			this.txtFields.BackColor = System.Drawing.Color.White;
			this.txtFields.Size = new System.Drawing.Size(270, 27);
			this.txtFields.ImeMode = System.Windows.Forms.ImeMode.Disable;
			this.txtFields.Location = new System.Drawing.Point(64, 76);
			this.txtFields.TabIndex = 1;
			this.txtFields.AcceptsReturn = true;
			this.txtFields.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtFields.CausesValidation = true;
			this.txtFields.Enabled = true;
			this.txtFields.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtFields.HideSelection = true;
			this.txtFields.ReadOnly = false;
			this.txtFields.MaxLength = 0;
			this.txtFields.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtFields.Multiline = false;
			this.txtFields.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtFields.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtFields.TabStop = true;
			this.txtFields.Visible = true;
			this.txtFields.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtFields.Name = "txtFields";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(345, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 6;
			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.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 = 5;
			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 = "N&ext";
			this.cmdClose.Size = new System.Drawing.Size(81, 29);
			this.cmdClose.Location = new System.Drawing.Point(256, 2);
			this.cmdClose.TabIndex = 4;
			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._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Text = "CD Drive :";
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_0.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(8, 258);
			this._lblLabels_0.TabIndex = 9;
			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._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Text = "CD Key :";
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_1.Size = new System.Drawing.Size(51, 16);
			this._lblLabels_1.Location = new System.Drawing.Point(8, 79);
			this._lblLabels_1.TabIndex = 0;
			this._lblLabels_1.Enabled = true;
			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._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(338, 49);
			this._Shape1_2.Location = new System.Drawing.Point(4, 64);
			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 = "Please type in your 4VEG CD Key. [ without dashes ]";
			this._lbl_5.Size = new System.Drawing.Size(333, 21);
			this._lbl_5.Location = new System.Drawing.Point(6, 48);
			this._lbl_5.TabIndex = 3;
			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 = false;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this.Controls.Add(Command2);
			this.Controls.Add(Command1);
			//Me.Controls.Add(Drive1)
			this.Controls.Add(chkFields);
			this.Controls.Add(txtFields);
			this.Controls.Add(picButtons);
			this.Controls.Add(_lblLabels_0);
			this.Controls.Add(_lblLabels_1);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.Shape1.SetIndex(_Shape1_2, CType(2, Short))
			//CType(Me.Shape1, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmRegister));
     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.cmdExit         = new System.Windows.Forms.Button();
     this._picMode_0      = new System.Windows.Forms.Panel();
     this.txtCompany      = new System.Windows.Forms.TextBox();
     this._lbl_0          = 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._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_1       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._picMode_1      = new System.Windows.Forms.Panel();
     this.txtKey          = new System.Windows.Forms.TextBox();
     this.lblCompany      = new System.Windows.Forms.Label();
     this._Label2_2       = new System.Windows.Forms.Label();
     this._Label1_1       = new System.Windows.Forms.Label();
     this._Label2_0       = new System.Windows.Forms.Label();
     this.lblCode         = new System.Windows.Forms.Label();
     this._Label2_1       = new System.Windows.Forms.Label();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_3       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.cmdNext         = new System.Windows.Forms.Button();
     this.Label4          = new System.Windows.Forms.Label();
     this.Label3          = new System.Windows.Forms.Label();
     //Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.Label2 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.picMode = New Microsoft.VisualBasic.Compatibility.VB6.PanelArray(components)
     this.Shape1 = new OvalShapeArray(components);
     this._picMode_0.SuspendLayout();
     this._picMode_1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.Label2, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.picMode, 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                        = "Registration Wizard";
     this.ClientSize                  = new System.Drawing.Size(296, 282);
     this.Location                    = new System.Drawing.Point(3, 22);
     this.ControlBox                  = false;
     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                        = "frmRegister";
     this.cmdExit.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text                = "E&xit";
     this.cmdExit.Size                = new System.Drawing.Size(97, 28);
     this.cmdExit.Location            = new System.Drawing.Point(8, 249);
     this.cmdExit.TabIndex            = 8;
     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.TabStop             = true;
     this.cmdExit.Name                = "cmdExit";
     this._picMode_0.BackColor        = System.Drawing.Color.FromArgb(224, 224, 224);
     this._picMode_0.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._picMode_0.Size             = new System.Drawing.Size(283, 232);
     this._picMode_0.Location         = new System.Drawing.Point(6, 9);
     this._picMode_0.TabIndex         = 13;
     this._picMode_0.TabStop          = false;
     this._picMode_0.Dock             = System.Windows.Forms.DockStyle.None;
     this._picMode_0.CausesValidation = true;
     this._picMode_0.Enabled          = true;
     this._picMode_0.Cursor           = System.Windows.Forms.Cursors.Default;
     this._picMode_0.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._picMode_0.Visible          = true;
     this._picMode_0.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this._picMode_0.Name             = "_picMode_0";
     this.txtCompany.AutoSize         = false;
     this.txtCompany.Size             = new System.Drawing.Size(271, 19);
     this.txtCompany.Location         = new System.Drawing.Point(6, 201);
     this.txtCompany.MaxLength        = 50;
     this.txtCompany.TabIndex         = 6;
     this.txtCompany.AcceptsReturn    = true;
     this.txtCompany.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtCompany.BackColor        = System.Drawing.SystemColors.Window;
     this.txtCompany.CausesValidation = true;
     this.txtCompany.Enabled          = true;
     this.txtCompany.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtCompany.HideSelection    = true;
     this.txtCompany.ReadOnly         = false;
     this.txtCompany.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtCompany.Multiline        = false;
     this.txtCompany.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtCompany.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtCompany.TabStop          = true;
     this.txtCompany.Visible          = true;
     this.txtCompany.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCompany.Name             = "txtCompany";
     this._lbl_0.Text                 = "Store Name:";
     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(178, 16);
     this._lbl_0.Location             = new System.Drawing.Point(6, 186);
     this._lbl_0.TabIndex             = 5;
     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             = false;
     this._lbl_0.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this._lbl_0.Name                 = "_lbl_0";
     this._lbl_1.TextAlign            = System.Drawing.ContentAlignment.TopCenter;
     this._lbl_1.Text                 = "Welcome to the 4POS Application Suite of products designed for the Retailer.";
     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(280, 43);
     this._lbl_1.Location             = new System.Drawing.Point(0, 0);
     this._lbl_1.TabIndex             = 2;
     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.Text                 = "In the text box below, please capture your store's name. It is imperative that you capture you stores name correctly as this makes up part of your licensing agreement with 4POS.";
     this._lbl_2.Size                 = new System.Drawing.Size(274, 64);
     this._lbl_2.Location             = new System.Drawing.Point(6, 36);
     this._lbl_2.TabIndex             = 3;
     this._lbl_2.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     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.Text                 = "To bypass this registration process, press the \"Exit\" button. This will activate the demo version of this software, which is fully functional except that you may only complete ten \"Day End\" runs.";
     this._lbl_3.Size                 = new System.Drawing.Size(274, 64);
     this._lbl_3.Location             = new System.Drawing.Point(6, 99);
     this._lbl_3.TabIndex             = 4;
     this._lbl_3.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     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._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(283, 133);
     this._Shape1_0.Location          = new System.Drawing.Point(0, 30);
     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._Shape1_1.BackColor         = System.Drawing.Color.FromArgb(255, 192, 192);
     this._Shape1_1.BackStyle         = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_1.Size              = new System.Drawing.Size(283, 46);
     this._Shape1_1.Location          = new System.Drawing.Point(0, 183);
     this._Shape1_1.BorderColor       = System.Drawing.SystemColors.WindowText;
     this._Shape1_1.BorderStyle       = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_1.BorderWidth       = 1;
     this._Shape1_1.FillColor         = System.Drawing.Color.Black;
     this._Shape1_1.FillStyle         = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_1.Visible           = true;
     this._Shape1_1.Name              = "_Shape1_1";
     this._picMode_1.BackColor        = System.Drawing.Color.FromArgb(224, 224, 224);
     this._picMode_1.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._picMode_1.Size             = new System.Drawing.Size(283, 232);
     this._picMode_1.Location         = new System.Drawing.Point(333, 57);
     this._picMode_1.TabIndex         = 9;
     this._picMode_1.TabStop          = false;
     this._picMode_1.Visible          = false;
     this._picMode_1.Dock             = System.Windows.Forms.DockStyle.None;
     this._picMode_1.CausesValidation = true;
     this._picMode_1.Enabled          = true;
     this._picMode_1.Cursor           = System.Windows.Forms.Cursors.Default;
     this._picMode_1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._picMode_1.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this._picMode_1.Name             = "_picMode_1";
     this.txtKey.AutoSize             = false;
     this.txtKey.Size                 = new System.Drawing.Size(175, 19);
     this.txtKey.Location             = new System.Drawing.Point(99, 186);
     this.txtKey.TabIndex             = 1;
     this.txtKey.AcceptsReturn        = true;
     this.txtKey.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtKey.BackColor            = System.Drawing.SystemColors.Window;
     this.txtKey.CausesValidation     = true;
     this.txtKey.Enabled              = true;
     this.txtKey.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtKey.HideSelection        = true;
     this.txtKey.ReadOnly             = false;
     this.txtKey.MaxLength            = 0;
     this.txtKey.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtKey.Multiline            = false;
     this.txtKey.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtKey.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtKey.TabStop              = true;
     this.txtKey.Visible              = true;
     this.txtKey.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtKey.Name                 = "txtKey";
     this.lblCompany.BackColor        = System.Drawing.Color.Transparent;
     this.lblCompany.Text             = "123456789012345";
     this.lblCompany.Font             = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblCompany.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.lblCompany.Size             = new System.Drawing.Size(276, 18);
     this.lblCompany.Location         = new System.Drawing.Point(3, 87);
     this.lblCompany.TabIndex         = 15;
     this.lblCompany.TextAlign        = System.Drawing.ContentAlignment.TopLeft;
     this.lblCompany.Enabled          = true;
     this.lblCompany.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lblCompany.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lblCompany.UseMnemonic      = true;
     this.lblCompany.Visible          = true;
     this.lblCompany.AutoSize         = false;
     this.lblCompany.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.lblCompany.Name             = "lblCompany";
     this._Label2_2.TextAlign         = System.Drawing.ContentAlignment.TopRight;
     this._Label2_2.Text              = "Company Name:";
     this._Label2_2.Size              = new System.Drawing.Size(93, 13);
     this._Label2_2.Location          = new System.Drawing.Point(-12, 75);
     this._Label2_2.TabIndex          = 14;
     this._Label2_2.BackColor         = System.Drawing.Color.Transparent;
     this._Label2_2.Enabled           = true;
     this._Label2_2.ForeColor         = System.Drawing.SystemColors.ControlText;
     this._Label2_2.Cursor            = System.Windows.Forms.Cursors.Default;
     this._Label2_2.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this._Label2_2.UseMnemonic       = true;
     this._Label2_2.Visible           = true;
     this._Label2_2.AutoSize          = false;
     this._Label2_2.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this._Label2_2.Name              = "_Label2_2";
     this._Label1_1.Text              = "Please contact a \"4POS\" representative and quote the company name and registration code below to get your new activation key for the product.";
     this._Label1_1.Size              = new System.Drawing.Size(280, 58);
     this._Label1_1.Location          = new System.Drawing.Point(3, 0);
     this._Label1_1.TabIndex          = 12;
     this._Label1_1.TextAlign         = System.Drawing.ContentAlignment.TopLeft;
     this._Label1_1.BackColor         = System.Drawing.Color.Transparent;
     this._Label1_1.Enabled           = true;
     this._Label1_1.ForeColor         = System.Drawing.SystemColors.ControlText;
     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          = false;
     this._Label1_1.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this._Label1_1.Name              = "_Label1_1";
     this._Label2_0.TextAlign         = System.Drawing.ContentAlignment.TopRight;
     this._Label2_0.Text              = "Registration code:";
     this._Label2_0.Size              = new System.Drawing.Size(93, 13);
     this._Label2_0.Location          = new System.Drawing.Point(-3, 102);
     this._Label2_0.TabIndex          = 11;
     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.lblCode.BackColor           = System.Drawing.Color.Transparent;
     this.lblCode.Text                = "123456789012345";
     this.lblCode.Font                = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblCode.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.lblCode.Size                = new System.Drawing.Size(123, 18);
     this.lblCode.Location            = new System.Drawing.Point(3, 114);
     this.lblCode.TabIndex            = 10;
     this.lblCode.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblCode.Enabled             = true;
     this.lblCode.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblCode.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblCode.UseMnemonic         = true;
     this.lblCode.Visible             = true;
     this.lblCode.AutoSize            = false;
     this.lblCode.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.lblCode.Name                = "lblCode";
     this._Label2_1.Text              = "Activation key:";
     this._Label2_1.Size              = new System.Drawing.Size(70, 13);
     this._Label2_1.Location          = new System.Drawing.Point(21, 189);
     this._Label2_1.TabIndex          = 0;
     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          = true;
     this._Label2_1.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this._Label2_1.Name              = "_Label2_1";
     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(283, 67);
     this._Shape1_2.Location          = new System.Drawing.Point(0, 72);
     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._Shape1_3.BackColor         = System.Drawing.Color.FromArgb(255, 192, 192);
     this._Shape1_3.BackStyle         = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_3.Size              = new System.Drawing.Size(283, 31);
     this._Shape1_3.Location          = new System.Drawing.Point(0, 180);
     this._Shape1_3.BorderColor       = System.Drawing.SystemColors.WindowText;
     this._Shape1_3.BorderStyle       = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_3.BorderWidth       = 1;
     this._Shape1_3.FillColor         = System.Drawing.Color.Black;
     this._Shape1_3.FillStyle         = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_3.Visible           = true;
     this._Shape1_3.Name              = "_Shape1_3";
     this.cmdNext.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text                = "&Next";
     this.cmdNext.Size                = new System.Drawing.Size(97, 28);
     this.cmdNext.Location            = new System.Drawing.Point(186, 249);
     this.cmdNext.TabIndex            = 7;
     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.Label4.Text                 = "Label4";
     this.Label4.Size                 = new System.Drawing.Size(273, 33);
     this.Label4.Location             = new System.Drawing.Point(16, 320);
     this.Label4.TabIndex             = 17;
     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                 = "Label3";
     this.Label3.Size                 = new System.Drawing.Size(265, 25);
     this.Label3.Location             = new System.Drawing.Point(16, 288);
     this.Label3.TabIndex             = 16;
     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.Controls.Add(cmdExit);
     this.Controls.Add(_picMode_0);
     this.Controls.Add(_picMode_1);
     this.Controls.Add(cmdNext);
     this.Controls.Add(Label4);
     this.Controls.Add(Label3);
     this._picMode_0.Controls.Add(txtCompany);
     this._picMode_0.Controls.Add(_lbl_0);
     this._picMode_0.Controls.Add(_lbl_1);
     this._picMode_0.Controls.Add(_lbl_2);
     this._picMode_0.Controls.Add(_lbl_3);
     this.ShapeContainer1.Shapes.Add(_Shape1_0);
     this.ShapeContainer1.Shapes.Add(_Shape1_1);
     this._picMode_0.Controls.Add(ShapeContainer1);
     this._picMode_1.Controls.Add(txtKey);
     this._picMode_1.Controls.Add(lblCompany);
     this._picMode_1.Controls.Add(_Label2_2);
     this._picMode_1.Controls.Add(_Label1_1);
     this._picMode_1.Controls.Add(_Label2_0);
     this._picMode_1.Controls.Add(lblCode);
     this._picMode_1.Controls.Add(_Label2_1);
     this.ShapeContainer2.Shapes.Add(_Shape1_2);
     this.ShapeContainer2.Shapes.Add(_Shape1_3);
     this._picMode_1.Controls.Add(ShapeContainer2);
     //Me.Label1.SetIndex(_Label1_1, CType(1, Short))
     //Me.Label2.SetIndex(_Label2_2, CType(2, Short))
     //Me.Label2.SetIndex(_Label2_0, CType(0, Short))
     //Me.Label2.SetIndex(_Label2_1, CType(1, Short))
     //Me.lbl.SetIndex(_lbl_0, CType(0, 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.picMode.SetIndex(_picMode_0, CType(0, Short))
     //Me.picMode.SetIndex(_picMode_1, CType(1, Short))
     //Me.Shape1.SetIndex(_Shape1_0, CType(0, Short))
     //Me.Shape1.SetIndex(_Shape1_1, CType(1, Short))
     //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short))
     //Me.Shape1.SetIndex(_Shape1_3, CType(3, Short))
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.picMode, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.Label2, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit()
     this._picMode_0.ResumeLayout(false);
     this._picMode_1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStock));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cmdLoad         = new System.Windows.Forms.Button();
     this.cmdExit         = new System.Windows.Forms.Button();
     this.cmdGroup        = new System.Windows.Forms.Button();
     this.picOuter        = new System.Windows.Forms.Panel();
     this.picInner        = new System.Windows.Forms.PictureBox();
     this._lbl_1          = new System.Windows.Forms.Label();
     this.lblGroup        = new System.Windows.Forms.Label();
     this._Shape1_1       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new RectangleShapeArray(components);
     this.picOuter.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     this.Text                      = "All StockItems GRV, Sales & Shrink Analysis";
     this.ClientSize                = new System.Drawing.Size(276, 208);
     this.Location                  = new System.Drawing.Point(4, 23);
     this.ControlBox                = false;
     this.StartPosition             = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode             = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                 = System.Drawing.SystemColors.Control;
     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.WindowState               = System.Windows.Forms.FormWindowState.Normal;
     this.Name                      = "frmStock";
     this.cmdLoad.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdLoad.Text              = "&Load Report";
     this.cmdLoad.Size              = new System.Drawing.Size(79, 31);
     this.cmdLoad.Location          = new System.Drawing.Point(184, 168);
     this.cmdLoad.TabIndex          = 3;
     this.cmdLoad.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdLoad.CausesValidation  = true;
     this.cmdLoad.Enabled           = true;
     this.cmdLoad.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdLoad.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdLoad.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdLoad.TabStop           = true;
     this.cmdLoad.Name              = "cmdLoad";
     this.cmdExit.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text              = "&Exit";
     this.cmdExit.Size              = new System.Drawing.Size(85, 31);
     this.cmdExit.Location          = new System.Drawing.Point(8, 168);
     this.cmdExit.TabIndex          = 1;
     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.TabStop           = true;
     this.cmdExit.Name              = "cmdExit";
     this.cmdGroup.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdGroup.Text             = "Filter";
     this.cmdGroup.Size             = new System.Drawing.Size(65, 27);
     this.cmdGroup.Location         = new System.Drawing.Point(192, 112);
     this.cmdGroup.TabIndex         = 0;
     this.cmdGroup.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdGroup.CausesValidation = true;
     this.cmdGroup.Enabled          = true;
     this.cmdGroup.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdGroup.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdGroup.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdGroup.TabStop          = true;
     this.cmdGroup.Name             = "cmdGroup";
     this.picOuter.BackColor        = System.Drawing.Color.White;
     this.picOuter.Size             = new System.Drawing.Size(257, 33);
     this.picOuter.Location         = new System.Drawing.Point(8, 168);
     this.picOuter.TabIndex         = 5;
     this.picOuter.Visible          = false;
     this.picOuter.Dock             = System.Windows.Forms.DockStyle.None;
     this.picOuter.CausesValidation = true;
     this.picOuter.Enabled          = true;
     this.picOuter.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.picOuter.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picOuter.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picOuter.TabStop          = true;
     this.picOuter.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picOuter.Name             = "picOuter";
     this.picInner.BackColor        = System.Drawing.Color.FromArgb(0, 0, 192);
     this.picInner.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picInner.Size             = new System.Drawing.Size(58, 34);
     this.picInner.Location         = new System.Drawing.Point(0, 0);
     this.picInner.TabIndex         = 6;
     this.picInner.Dock             = System.Windows.Forms.DockStyle.None;
     this.picInner.CausesValidation = true;
     this.picInner.Enabled          = true;
     this.picInner.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picInner.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picInner.TabStop          = true;
     this.picInner.Visible          = true;
     this.picInner.SizeMode         = System.Windows.Forms.PictureBoxSizeMode.Normal;
     this.picInner.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picInner.Name             = "picInner";
     this._lbl_1.Text               = "Filter";
     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(29, 13);
     this._lbl_1.Location           = new System.Drawing.Point(8, 16);
     this._lbl_1.TabIndex           = 4;
     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.lblGroup.Text             = "lblGroup";
     this.lblGroup.Size             = new System.Drawing.Size(232, 58);
     this.lblGroup.Location         = new System.Drawing.Point(32, 44);
     this.lblGroup.TabIndex         = 2;
     this.lblGroup.TextAlign        = System.Drawing.ContentAlignment.TopLeft;
     this.lblGroup.BackColor        = System.Drawing.SystemColors.Control;
     this.lblGroup.Enabled          = true;
     this.lblGroup.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.lblGroup.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lblGroup.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lblGroup.UseMnemonic      = true;
     this.lblGroup.Visible          = true;
     this.lblGroup.AutoSize         = false;
     this.lblGroup.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblGroup.Name             = "lblGroup";
     this._Shape1_1.BackColor       = System.Drawing.Color.FromArgb(192, 192, 255);
     this._Shape1_1.BackStyle       = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_1.Size            = new System.Drawing.Size(259, 124);
     this._Shape1_1.Location        = new System.Drawing.Point(8, 32);
     this._Shape1_1.BorderColor     = System.Drawing.SystemColors.WindowText;
     this._Shape1_1.BorderStyle     = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_1.BorderWidth     = 1;
     this._Shape1_1.FillColor       = System.Drawing.Color.Black;
     this._Shape1_1.FillStyle       = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_1.Visible         = true;
     this._Shape1_1.Name            = "_Shape1_1";
     this.Controls.Add(cmdLoad);
     this.Controls.Add(cmdExit);
     this.Controls.Add(cmdGroup);
     this.Controls.Add(picOuter);
     this.Controls.Add(_lbl_1);
     this.Controls.Add(lblGroup);
     this.ShapeContainer1.Shapes.Add(_Shape1_1);
     this.Controls.Add(ShapeContainer1);
     this.picOuter.Controls.Add(picInner);
     //Me.lbl.SetIndex(_lbl_1, CType(1, Short))
     this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     this.picOuter.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 58
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.Shape2          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.Shape1          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.cbmChangeType   = new System.Windows.Forms.ComboBox();
     this._txtFloat_3     = new System.Windows.Forms.TextBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.Command1        = new System.Windows.Forms.Button();
     this.chkDisable      = new System.Windows.Forms.CheckBox();
     this._txtFloat_2     = new System.Windows.Forms.TextBox();
     this._txtFloat_0     = new System.Windows.Forms.TextBox();
     this._txtFloat_1     = new System.Windows.Forms.TextBox();
     this.chkKey          = new System.Windows.Forms.CheckBox();
     this._txtKey_0       = new System.Windows.Forms.TextBox();
     this._txtKey_1       = new System.Windows.Forms.TextBox();
     this.Label8          = new System.Windows.Forms.Label();
     this.Label9          = new System.Windows.Forms.Label();
     this.Label1          = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.Label3          = new System.Windows.Forms.Label();
     this.Label4          = new System.Windows.Forms.Label();
     this.Label5          = new System.Windows.Forms.Label();
     this.Label6          = new System.Windows.Forms.Label();
     this.Label7          = 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.Shape2,
         this.Shape1
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(343, 231);
     this.ShapeContainer1.TabIndex = 20;
     this.ShapeContainer1.TabStop  = false;
     //
     //Shape2
     //
     this.Shape2.BackColor   = System.Drawing.SystemColors.Window;
     this.Shape2.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Shape2.FillColor   = System.Drawing.Color.Black;
     this.Shape2.Location    = new System.Drawing.Point(4, 160);
     this.Shape2.Name        = "Shape2";
     this.Shape2.Size        = new System.Drawing.Size(337, 67);
     //
     //Shape1
     //
     this.Shape1.BackColor   = System.Drawing.SystemColors.Window;
     this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText;
     this.Shape1.FillColor   = System.Drawing.Color.Black;
     this.Shape1.Location    = new System.Drawing.Point(4, 66);
     this.Shape1.Name        = "Shape1";
     this.Shape1.Size        = new System.Drawing.Size(337, 75);
     //
     //cbmChangeType
     //
     this.cbmChangeType.BackColor     = System.Drawing.SystemColors.Window;
     this.cbmChangeType.Cursor        = System.Windows.Forms.Cursors.Default;
     this.cbmChangeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cbmChangeType.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.cbmChangeType.Items.AddRange(new object[] {
         "Coin",
         "Note"
     });
     this.cbmChangeType.Location    = new System.Drawing.Point(256, 92);
     this.cbmChangeType.Name        = "cbmChangeType";
     this.cbmChangeType.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cbmChangeType.Size        = new System.Drawing.Size(79, 21);
     this.cbmChangeType.TabIndex    = 18;
     //
     //_txtFloat_3
     //
     this._txtFloat_3.AcceptsReturn = true;
     this._txtFloat_3.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_3.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_3.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_3.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_3.Location      = new System.Drawing.Point(70, 116);
     this._txtFloat_3.MaxLength     = 0;
     this._txtFloat_3.Name          = "_txtFloat_3";
     this._txtFloat_3.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_3.Size          = new System.Drawing.Size(75, 20);
     this._txtFloat_3.TabIndex      = 16;
     this._txtFloat_3.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     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(343, 38);
     this.picButtons.TabIndex    = 14;
     //
     //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(244, 4);
     this.Command1.Name                    = "Command1";
     this.Command1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command1.Size                    = new System.Drawing.Size(93, 25);
     this.Command1.TabIndex                = 15;
     this.Command1.Text                    = "E&xit";
     this.Command1.UseVisualStyleBackColor = false;
     //
     //chkDisable
     //
     this.chkDisable.BackColor               = System.Drawing.SystemColors.Control;
     this.chkDisable.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     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(218, 120);
     this.chkDisable.Name                    = "chkDisable";
     this.chkDisable.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkDisable.Size                    = new System.Drawing.Size(117, 16);
     this.chkDisable.TabIndex                = 6;
     this.chkDisable.Text                    = "Float Disabled";
     this.chkDisable.UseVisualStyleBackColor = false;
     //
     //_txtFloat_2
     //
     this._txtFloat_2.AcceptsReturn = true;
     this._txtFloat_2.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_2.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_2.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_2.Enabled       = false;
     this._txtFloat_2.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_2.Location      = new System.Drawing.Point(70, 94);
     this._txtFloat_2.MaxLength     = 0;
     this._txtFloat_2.Name          = "_txtFloat_2";
     this._txtFloat_2.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_2.Size          = new System.Drawing.Size(49, 20);
     this._txtFloat_2.TabIndex      = 5;
     //
     //_txtFloat_0
     //
     this._txtFloat_0.AcceptsReturn = true;
     this._txtFloat_0.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_0.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_0.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_0.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_0.Location      = new System.Drawing.Point(70, 72);
     this._txtFloat_0.MaxLength     = 0;
     this._txtFloat_0.Name          = "_txtFloat_0";
     this._txtFloat_0.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_0.Size          = new System.Drawing.Size(75, 20);
     this._txtFloat_0.TabIndex      = 0;
     //
     //_txtFloat_1
     //
     this._txtFloat_1.AcceptsReturn = true;
     this._txtFloat_1.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_1.Location      = new System.Drawing.Point(288, 70);
     this._txtFloat_1.MaxLength     = 0;
     this._txtFloat_1.Name          = "_txtFloat_1";
     this._txtFloat_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_1.Size          = new System.Drawing.Size(47, 20);
     this._txtFloat_1.TabIndex      = 1;
     this._txtFloat_1.Text          = "0";
     this._txtFloat_1.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //chkKey
     //
     this.chkKey.BackColor               = System.Drawing.SystemColors.Control;
     this.chkKey.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this.chkKey.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkKey.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkKey.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkKey.Location                = new System.Drawing.Point(8, 165);
     this.chkKey.Name                    = "chkKey";
     this.chkKey.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkKey.Size                    = new System.Drawing.Size(329, 19);
     this.chkKey.TabIndex                = 4;
     this.chkKey.Text                    = "Float set as a Fast Preset Tender on POS";
     this.chkKey.UseVisualStyleBackColor = false;
     //
     //_txtKey_0
     //
     this._txtKey_0.AcceptsReturn = true;
     this._txtKey_0.BackColor     = System.Drawing.SystemColors.Window;
     this._txtKey_0.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtKey_0.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtKey_0.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtKey_0.Location      = new System.Drawing.Point(252, 184);
     this._txtKey_0.MaxLength     = 0;
     this._txtKey_0.Name          = "_txtKey_0";
     this._txtKey_0.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtKey_0.Size          = new System.Drawing.Size(85, 20);
     this._txtKey_0.TabIndex      = 3;
     this._txtKey_0.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtKey_1
     //
     this._txtKey_1.AcceptsReturn = true;
     this._txtKey_1.BackColor     = System.Drawing.SystemColors.Window;
     this._txtKey_1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtKey_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtKey_1.Enabled       = false;
     this._txtKey_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtKey_1.Location      = new System.Drawing.Point(252, 204);
     this._txtKey_1.MaxLength     = 0;
     this._txtKey_1.Name          = "_txtKey_1";
     this._txtKey_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtKey_1.Size          = new System.Drawing.Size(85, 20);
     this._txtKey_1.TabIndex      = 2;
     this._txtKey_1.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //Label8
     //
     this.Label8.BackColor   = System.Drawing.Color.Transparent;
     this.Label8.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(160, 96);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(91, 15);
     this.Label8.TabIndex    = 19;
     this.Label8.Text        = "Change Float Type";
     //
     //Label9
     //
     this.Label9.BackColor   = System.Drawing.Color.Transparent;
     this.Label9.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label9.Location    = new System.Drawing.Point(8, 118);
     this.Label9.Name        = "Label9";
     this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label9.Size        = new System.Drawing.Size(69, 15);
     this.Label9.TabIndex    = 17;
     this.Label9.Text        = "Float Value";
     //
     //Label1
     //
     this.Label1.BackColor   = System.Drawing.Color.Transparent;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(6, 50);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(95, 15);
     this.Label1.TabIndex    = 13;
     this.Label1.Text        = "1. Float Details";
     //
     //Label2
     //
     this.Label2.BackColor   = System.Drawing.Color.Transparent;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(4, 144);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(101, 15);
     this.Label2.TabIndex    = 12;
     this.Label2.Text        = "2. Preset Details";
     //
     //Label3
     //
     this.Label3.BackColor   = System.Drawing.Color.Transparent;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(8, 72);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(77, 15);
     this.Label3.TabIndex    = 11;
     this.Label3.Text        = "Float Name";
     //
     //Label4
     //
     this.Label4.BackColor   = System.Drawing.Color.Transparent;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(160, 74);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(67, 15);
     this.Label4.TabIndex    = 10;
     this.Label4.Text        = "Float Pack";
     //
     //Label5
     //
     this.Label5.BackColor   = System.Drawing.Color.Transparent;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(8, 96);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(69, 15);
     this.Label5.TabIndex    = 9;
     this.Label5.Text        = "Float Type";
     //
     //Label6
     //
     this.Label6.BackColor   = System.Drawing.Color.Transparent;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(160, 188);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(93, 13);
     this.Label6.TabIndex    = 8;
     this.Label6.Text        = "Keyboard Name:";
     //
     //Label7
     //
     this.Label7.BackColor   = System.Drawing.Color.Transparent;
     this.Label7.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label7.Location    = new System.Drawing.Point(160, 206);
     this.Label7.Name        = "Label7";
     this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label7.Size        = new System.Drawing.Size(89, 15);
     this.Label7.TabIndex    = 7;
     this.Label7.Text        = "Keyboard Key(s)";
     //
     //frmFloatRepre
     //
     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(343, 231);
     this.ControlBox          = false;
     this.Controls.Add(this.cbmChangeType);
     this.Controls.Add(this._txtFloat_3);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this.chkDisable);
     this.Controls.Add(this._txtFloat_2);
     this.Controls.Add(this._txtFloat_0);
     this.Controls.Add(this._txtFloat_1);
     this.Controls.Add(this.chkKey);
     this.Controls.Add(this._txtKey_0);
     this.Controls.Add(this._txtKey_1);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.Label1);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.Label5);
     this.Controls.Add(this.Label6);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor        = System.Windows.Forms.Cursors.Default;
     this.Location      = new System.Drawing.Point(4, 23);
     this.Name          = "frmFloatRepre";
     this.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Denomination Details";
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmQuoteDelete));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.cmdDelete       = new System.Windows.Forms.Button();
     this.cmdExit         = new System.Windows.Forms.Button();
     this.lvData          = new System.Windows.Forms.ListView();
     this.Label1          = new System.Windows.Forms.Label();
     this._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.Shape1          = new RectangleShapeArray(components);
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     this.FormBorderStyle            = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                       = "Delete unwanted quotes";
     this.ClientSize                 = new System.Drawing.Size(695, 473);
     this.Location                   = new System.Drawing.Point(3, 22);
     this.ControlBox                 = false;
     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.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                       = "frmQuoteDelete";
     this.cmdDelete.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelete.Text             = "&Delete";
     this.cmdDelete.Size             = new System.Drawing.Size(79, 34);
     this.cmdDelete.Location         = new System.Drawing.Point(3, 3);
     this.cmdDelete.TabIndex         = 3;
     this.cmdDelete.TabStop          = false;
     this.cmdDelete.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdDelete.CausesValidation = true;
     this.cmdDelete.Enabled          = true;
     this.cmdDelete.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdDelete.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdDelete.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdDelete.Name             = "cmdDelete";
     this.cmdExit.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text               = "E&xit";
     this.cmdExit.Size               = new System.Drawing.Size(79, 34);
     this.cmdExit.Location           = new System.Drawing.Point(609, 3);
     this.cmdExit.TabIndex           = 2;
     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.lvData.Size                = new System.Drawing.Size(664, 337);
     this.lvData.Location            = new System.Drawing.Point(15, 114);
     this.lvData.TabIndex            = 1;
     this.lvData.View                = System.Windows.Forms.View.Details;
     this.lvData.LabelEdit           = false;
     this.lvData.LabelWrap           = true;
     this.lvData.HideSelection       = true;
     this.lvData.CheckBoxes          = true;
     this.lvData.FullRowSelect       = true;
     this.lvData.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.lvData.BackColor           = System.Drawing.SystemColors.Window;
     this.lvData.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvData.Name                = "lvData";
     this.Label1.Text                = "&1. Affected Stock Items";
     this.Label1.Size                = new System.Drawing.Size(135, 13);
     this.Label1.Location            = new System.Drawing.Point(18, 90);
     this.Label1.TabIndex            = 0;
     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            = true;
     this.Label1.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name                = "Label1";
     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(682, 355);
     this._Shape1_0.Location         = new System.Drawing.Point(6, 105);
     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(cmdDelete);
     this.Controls.Add(cmdExit);
     this.Controls.Add(lvData);
     this.Controls.Add(Label1);
     this.ShapeContainer1.Shapes.Add(_Shape1_0);
     this.Controls.Add(ShapeContainer1);
     this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemplo n.º 60
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._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this.txtFields       = new System.Windows.Forms.TextBox();
     this.Timer1          = new System.Windows.Forms.Timer(this.components);
     this.Command2        = new System.Windows.Forms.Button();
     this.Command1        = new System.Windows.Forms.Button();
     this.chkFields       = new System.Windows.Forms.CheckBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this._lblLabels_1    = new System.Windows.Forms.Label();
     this._lbl_0          = new System.Windows.Forms.Label();
     this._lblLabels_0    = new System.Windows.Forms.Label();
     this._lbl_5          = 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._Shape1_2 });
     this.ShapeContainer1.Size     = new System.Drawing.Size(347, 120);
     this.ShapeContainer1.TabIndex = 12;
     this.ShapeContainer1.TabStop  = false;
     //
     //_Shape1_2
     //
     this._Shape1_2.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_2.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_2.FillColor   = System.Drawing.Color.Black;
     this._Shape1_2.Location    = new System.Drawing.Point(4, 64);
     this._Shape1_2.Name        = "_Shape1_2";
     this._Shape1_2.Size        = new System.Drawing.Size(338, 49);
     //
     //txtFields
     //
     this.txtFields.AcceptsReturn = true;
     this.txtFields.BackColor     = System.Drawing.Color.White;
     this.txtFields.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFields.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtFields.Font          = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.txtFields.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtFields.ImeMode       = System.Windows.Forms.ImeMode.Disable;
     this.txtFields.Location      = new System.Drawing.Point(64, 76);
     this.txtFields.MaxLength     = 0;
     this.txtFields.Name          = "txtFields";
     this.txtFields.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtFields.Size          = new System.Drawing.Size(270, 28);
     this.txtFields.TabIndex      = 10;
     //
     //Timer1
     //
     this.Timer1.Enabled  = true;
     this.Timer1.Interval = 1;
     //
     //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(184, 344);
     this.Command2.Name                    = "Command2";
     this.Command2.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command2.Size                    = new System.Drawing.Size(151, 19);
     this.Command2.TabIndex                = 8;
     this.Command2.Text                    = "Close CD Tray and Register";
     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(208, 384);
     this.Command1.Name                    = "Command1";
     this.Command1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.Command1.Size                    = new System.Drawing.Size(59, 19);
     this.Command1.TabIndex                = 6;
     this.Command1.Text                    = "Open";
     this.Command1.UseVisualStyleBackColor = false;
     //
     //chkFields
     //
     this.chkFields.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this.chkFields.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this.chkFields.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkFields.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkFields.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.chkFields.Location                = new System.Drawing.Point(264, 319);
     this.chkFields.Name                    = "chkFields";
     this.chkFields.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkFields.Size                    = new System.Drawing.Size(68, 17);
     this.chkFields.TabIndex                = 0;
     this.chkFields.Text                    = "Manual :";
     this.chkFields.UseVisualStyleBackColor = false;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.cmdCancel);
     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(347, 39);
     this.picButtons.TabIndex    = 4;
     //
     //cmdCancel
     //
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCancel.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdCancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Location                = new System.Drawing.Point(5, 3);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(73, 29);
     this.cmdCancel.TabIndex                = 3;
     this.cmdCancel.TabStop                 = false;
     this.cmdCancel.Text                    = "&Undo";
     this.cmdCancel.UseVisualStyleBackColor = false;
     //
     //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(256, 2);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(81, 29);
     this.cmdClose.TabIndex                = 2;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "N&ext";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //_lblLabels_1
     //
     this._lblLabels_1.AutoSize    = true;
     this._lblLabels_1.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_1.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_1.Font        = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lblLabels_1.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_1.Location    = new System.Drawing.Point(8, 79);
     this._lblLabels_1.Name        = "_lblLabels_1";
     this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_1.Size        = new System.Drawing.Size(61, 16);
     this._lblLabels_1.TabIndex    = 11;
     this._lblLabels_1.Text        = "CD Key :";
     this._lblLabels_1.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(6, 48);
     this._lbl_0.Name        = "_lbl_0";
     this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.Size        = new System.Drawing.Size(333, 21);
     this._lbl_0.TabIndex    = 9;
     this._lbl_0.Text        = "Please type in your 4POS CD Key. [ without dashes ]";
     //
     //_lblLabels_0
     //
     this._lblLabels_0.AutoSize    = true;
     this._lblLabels_0.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_0.ForeColor   = System.Drawing.SystemColors.WindowText;
     this._lblLabels_0.Location    = new System.Drawing.Point(8, 346);
     this._lblLabels_0.Name        = "_lblLabels_0";
     this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_0.Size        = new System.Drawing.Size(56, 13);
     this._lblLabels_0.TabIndex    = 7;
     this._lblLabels_0.Text        = "CD Drive :";
     this._lblLabels_0.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.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lbl_5.Location    = new System.Drawing.Point(6, 274);
     this._lbl_5.Name        = "_lbl_5";
     this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_5.Size        = new System.Drawing.Size(333, 29);
     this._lbl_5.TabIndex    = 1;
     this._lbl_5.Text        = "It looks you don't have CD-ROM drive. Please type the CD Key Manually.";
     //
     //frmPOSCode
     //
     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(347, 120);
     this.ControlBox          = false;
     this.Controls.Add(this.txtFields);
     this.Controls.Add(this.Command2);
     this.Controls.Add(this.Command1);
     this.Controls.Add(this.chkFields);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this._lblLabels_1);
     this.Controls.Add(this._lbl_0);
     this.Controls.Add(this._lblLabels_0);
     this.Controls.Add(this._lbl_5);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.Location        = new System.Drawing.Point(73, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmPOSCode";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "4POS Registration";
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }