Example #1
0
 private void MakeTextBoxVisible(TextBox txtBox, UpgradeHelpers.Windows.Forms.DataGridViewFlex grid)
 {
     txtBox.Text = Convert.ToString(grid[grid.CurrentRowIndex, grid.CurrentColumnIndex].Value);
     txtBox.SetBounds(Convert.ToInt32((float)(grid.CellLeft / 15 + grid.Left)), Convert.ToInt32((float)(grid.CellTop / 15 + grid.Top)), Convert.ToInt32((float)(grid.CellWidth / 15)), Convert.ToInt32((float)(grid.CellHeight / 15)));
     txtBox.Visible = true;
     Application.DoEvents();
     txtBox.Focus();
     modFunctions.SelectAll(txtBox);
 }
Example #2
0
 private void MakeTextBoxVisible(TextBox txtBox, UpgradeHelpers.Windows.Forms.DataGridViewFlex grid)
 {
     //  If .Row < 0 Or .col < 0 Then Exit Sub
     //  txtBox.Text = .TextMatrix(.Row, .col)
     //  txtBox.Move .CellLeft + .Left, .CellTop + .Top, .CellWidth, .CellHeight
     //   txtBox.Visible = True
     //  DoEvents
     editingQuantity = true;
     txtBox.Focus();
 }
Example #3
0
        private void EditKeyCode(UpgradeHelpers.Windows.Forms.DataGridViewFlex grid, ref TextBox txtBox, int KeyCode, int Shift)
        {
            switch (KeyCode)
            {
            case 27:                       //ESC
                txtBox.Text    = "";
                txtBox.Visible = false;
                grid.Focus();
                break;

            case 13:                       //Return
                grid.Focus();
                break;

            case 37:                       //Left Arrow
                grid.Focus();
                Application.DoEvents();
                if (grid.CurrentColumnIndex > grid.FixedColumns)
                {
                    grid.CurrentColumnIndex--;
                }
                break;

            case 38:                       //Up Arrow
                grid.Focus();
                Application.DoEvents();
                if (grid.CurrentRowIndex > grid.FixedRows)
                {
                    grid.CurrentRowIndex--;
                }
                break;

            case 39:                       //Right Arrow
                grid.Focus();
                Application.DoEvents();
                if (grid.CurrentColumnIndex < grid.ColumnsCount - 1)
                {
                    grid.CurrentColumnIndex++;
                }
                break;

            case 40:                       //Down Arrow
                grid.Focus();
                Application.DoEvents();
                if (grid.CurrentRowIndex < grid.RowsCount - 1)
                {
                    grid.CurrentRowIndex++;
                }
                break;
            }
        }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmActionOrderRequest));
     this.ToolTipMain         = new System.Windows.Forms.ToolTip(this.components);
     this.txtPromisedBy       = new System.Windows.Forms.TextBox();
     this.txtRequiredBy       = new System.Windows.Forms.TextBox();
     this.txtReceivedBy       = new System.Windows.Forms.TextBox();
     this.cmdApprove          = new System.Windows.Forms.Button();
     this.txtStatus           = new System.Windows.Forms.TextBox();
     this.txtReceived         = new System.Windows.Forms.TextBox();
     this.txtChangedBy        = new System.Windows.Forms.TextBox();
     this.txtChanged          = new System.Windows.Forms.TextBox();
     this.txtOrderID          = new System.Windows.Forms.TextBox();
     this.txtNotes            = new System.Windows.Forms.TextBox();
     this.txtSubTotal         = new System.Windows.Forms.TextBox();
     this.txtTotal            = new System.Windows.Forms.TextBox();
     this.txtTotalTax         = new System.Windows.Forms.TextBox();
     this.txtFreightCharge    = new System.Windows.Forms.TextBox();
     this.txtSalesTax         = new System.Windows.Forms.TextBox();
     this.txtEntry            = new System.Windows.Forms.TextBox();
     this.fgDetails           = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
     this.sbStatusBar         = new System.Windows.Forms.StatusStrip();
     this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.cmdCancel           = new System.Windows.Forms.Button();
     this.cmdClose            = new System.Windows.Forms.Button();
     this.Frame2             = new System.Windows.Forms.GroupBox();
     this.txtCustomerContact = new System.Windows.Forms.TextBox();
     this.txtCustomerCompany = new System.Windows.Forms.TextBox();
     this.Label5             = new System.Windows.Forms.Label();
     this.Label1             = new System.Windows.Forms.Label();
     this.Label13            = new System.Windows.Forms.Label();
     this.Label2             = new System.Windows.Forms.Label();
     this.Label7             = new System.Windows.Forms.Label();
     this.Label3             = new System.Windows.Forms.Label();
     this.Label19            = new System.Windows.Forms.Label();
     this.lblChangedBy       = new System.Windows.Forms.Label();
     this.Label4             = new System.Windows.Forms.Label();
     this.lblChanged         = new System.Windows.Forms.Label();
     this.Label12            = new System.Windows.Forms.Label();
     this.Label11            = new System.Windows.Forms.Label();
     this.Label10            = new System.Windows.Forms.Label();
     this.Label9             = new System.Windows.Forms.Label();
     this.Label8             = new System.Windows.Forms.Label();
     this.Label6             = new System.Windows.Forms.Label();
     this.sbStatusBar.SuspendLayout();
     this.Frame2.SuspendLayout();
     this.SuspendLayout();
     //
     // txtPromisedBy
     //
     this.txtPromisedBy.AcceptsReturn = true;
     this.txtPromisedBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtPromisedBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtPromisedBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtPromisedBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtPromisedBy.Location      = new System.Drawing.Point(368, 200);
     this.txtPromisedBy.MaxLength     = 0;
     this.txtPromisedBy.Name          = "txtPromisedBy";
     this.txtPromisedBy.ReadOnly      = true;
     this.txtPromisedBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtPromisedBy.Size          = new System.Drawing.Size(105, 20);
     this.txtPromisedBy.TabIndex      = 38;
     this.txtPromisedBy.TabStop       = false;
     //
     // txtRequiredBy
     //
     this.txtRequiredBy.AcceptsReturn = true;
     this.txtRequiredBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtRequiredBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtRequiredBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtRequiredBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtRequiredBy.Location      = new System.Drawing.Point(120, 200);
     this.txtRequiredBy.MaxLength     = 0;
     this.txtRequiredBy.Name          = "txtRequiredBy";
     this.txtRequiredBy.ReadOnly      = true;
     this.txtRequiredBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtRequiredBy.Size          = new System.Drawing.Size(105, 20);
     this.txtRequiredBy.TabIndex      = 37;
     this.txtRequiredBy.TabStop       = false;
     //
     // txtReceivedBy
     //
     this.txtReceivedBy.AcceptsReturn = true;
     this.txtReceivedBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtReceivedBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtReceivedBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtReceivedBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtReceivedBy.Location      = new System.Drawing.Point(96, 64);
     this.txtReceivedBy.MaxLength     = 0;
     this.txtReceivedBy.Name          = "txtReceivedBy";
     this.txtReceivedBy.ReadOnly      = true;
     this.txtReceivedBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtReceivedBy.Size          = new System.Drawing.Size(105, 20);
     this.txtReceivedBy.TabIndex      = 33;
     this.txtReceivedBy.TabStop       = false;
     //
     // cmdApprove
     //
     this.cmdApprove.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdApprove.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdApprove.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdApprove.Location                = new System.Drawing.Point(232, 480);
     this.cmdApprove.Name                    = "cmdApprove";
     this.cmdApprove.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdApprove.Size                    = new System.Drawing.Size(89, 25);
     this.cmdApprove.TabIndex                = 0;
     this.cmdApprove.Text                    = "&Create Invoice";
     this.cmdApprove.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdApprove.UseVisualStyleBackColor = false;
     this.cmdApprove.Click                  += new System.EventHandler(this.cmdApprove_Click);
     //
     // txtStatus
     //
     this.txtStatus.AcceptsReturn = true;
     this.txtStatus.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtStatus.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtStatus.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtStatus.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtStatus.Location      = new System.Drawing.Point(408, 8);
     this.txtStatus.MaxLength     = 0;
     this.txtStatus.Name          = "txtStatus";
     this.txtStatus.ReadOnly      = true;
     this.txtStatus.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtStatus.Size          = new System.Drawing.Size(105, 20);
     this.txtStatus.TabIndex      = 31;
     this.txtStatus.TabStop       = false;
     //
     // txtReceived
     //
     this.txtReceived.AcceptsReturn = true;
     this.txtReceived.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtReceived.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtReceived.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtReceived.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtReceived.Location      = new System.Drawing.Point(96, 36);
     this.txtReceived.MaxLength     = 0;
     this.txtReceived.Name          = "txtReceived";
     this.txtReceived.ReadOnly      = true;
     this.txtReceived.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtReceived.Size          = new System.Drawing.Size(105, 20);
     this.txtReceived.TabIndex      = 29;
     this.txtReceived.TabStop       = false;
     //
     // txtChangedBy
     //
     this.txtChangedBy.AcceptsReturn = true;
     this.txtChangedBy.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtChangedBy.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtChangedBy.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtChangedBy.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtChangedBy.Location      = new System.Drawing.Point(408, 64);
     this.txtChangedBy.MaxLength     = 0;
     this.txtChangedBy.Name          = "txtChangedBy";
     this.txtChangedBy.ReadOnly      = true;
     this.txtChangedBy.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtChangedBy.Size          = new System.Drawing.Size(105, 20);
     this.txtChangedBy.TabIndex      = 25;
     this.txtChangedBy.TabStop       = false;
     //
     // txtChanged
     //
     this.txtChanged.AcceptsReturn = true;
     this.txtChanged.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtChanged.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtChanged.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtChanged.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtChanged.Location      = new System.Drawing.Point(408, 36);
     this.txtChanged.MaxLength     = 0;
     this.txtChanged.Name          = "txtChanged";
     this.txtChanged.ReadOnly      = true;
     this.txtChanged.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtChanged.Size          = new System.Drawing.Size(105, 20);
     this.txtChanged.TabIndex      = 24;
     this.txtChanged.TabStop       = false;
     //
     // txtOrderID
     //
     this.txtOrderID.AcceptsReturn = true;
     this.txtOrderID.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtOrderID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtOrderID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtOrderID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtOrderID.Location      = new System.Drawing.Point(96, 8);
     this.txtOrderID.MaxLength     = 0;
     this.txtOrderID.Name          = "txtOrderID";
     this.txtOrderID.ReadOnly      = true;
     this.txtOrderID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtOrderID.Size          = new System.Drawing.Size(105, 20);
     this.txtOrderID.TabIndex      = 23;
     this.txtOrderID.TabStop       = false;
     //
     // txtNotes
     //
     this.txtNotes.AcceptsReturn = true;
     this.txtNotes.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtNotes.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtNotes.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtNotes.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtNotes.Location      = new System.Drawing.Point(56, 152);
     this.txtNotes.MaxLength     = 0;
     this.txtNotes.Multiline     = true;
     this.txtNotes.Name          = "txtNotes";
     this.txtNotes.ReadOnly      = true;
     this.txtNotes.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtNotes.Size          = new System.Drawing.Size(457, 44);
     this.txtNotes.TabIndex      = 3;
     this.txtNotes.TabStop       = false;
     //
     // txtSubTotal
     //
     this.txtSubTotal.AcceptsReturn = true;
     this.txtSubTotal.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtSubTotal.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSubTotal.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSubTotal.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSubTotal.Location      = new System.Drawing.Point(368, 432);
     this.txtSubTotal.MaxLength     = 0;
     this.txtSubTotal.Name          = "txtSubTotal";
     this.txtSubTotal.ReadOnly      = true;
     this.txtSubTotal.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSubTotal.Size          = new System.Drawing.Size(145, 20);
     this.txtSubTotal.TabIndex      = 21;
     this.txtSubTotal.TabStop       = false;
     this.txtSubTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotal
     //
     this.txtTotal.AcceptsReturn = true;
     this.txtTotal.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtTotal.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtTotal.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtTotal.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtTotal.Location      = new System.Drawing.Point(88, 456);
     this.txtTotal.MaxLength     = 0;
     this.txtTotal.Name          = "txtTotal";
     this.txtTotal.ReadOnly      = true;
     this.txtTotal.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtTotal.Size          = new System.Drawing.Size(145, 20);
     this.txtTotal.TabIndex      = 19;
     this.txtTotal.TabStop       = false;
     this.txtTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotalTax
     //
     this.txtTotalTax.AcceptsReturn = true;
     this.txtTotalTax.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtTotalTax.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtTotalTax.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtTotalTax.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtTotalTax.Location      = new System.Drawing.Point(368, 408);
     this.txtTotalTax.MaxLength     = 0;
     this.txtTotalTax.Name          = "txtTotalTax";
     this.txtTotalTax.ReadOnly      = true;
     this.txtTotalTax.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtTotalTax.Size          = new System.Drawing.Size(145, 20);
     this.txtTotalTax.TabIndex      = 17;
     this.txtTotalTax.TabStop       = false;
     this.txtTotalTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtFreightCharge
     //
     this.txtFreightCharge.AcceptsReturn = true;
     this.txtFreightCharge.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtFreightCharge.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtFreightCharge.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtFreightCharge.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtFreightCharge.Location      = new System.Drawing.Point(88, 432);
     this.txtFreightCharge.MaxLength     = 0;
     this.txtFreightCharge.Name          = "txtFreightCharge";
     this.txtFreightCharge.ReadOnly      = true;
     this.txtFreightCharge.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtFreightCharge.Size          = new System.Drawing.Size(145, 20);
     this.txtFreightCharge.TabIndex      = 6;
     this.txtFreightCharge.TabStop       = false;
     this.txtFreightCharge.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtSalesTax
     //
     this.txtSalesTax.AcceptsReturn = true;
     this.txtSalesTax.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtSalesTax.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSalesTax.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSalesTax.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSalesTax.Location      = new System.Drawing.Point(88, 408);
     this.txtSalesTax.MaxLength     = 0;
     this.txtSalesTax.Name          = "txtSalesTax";
     this.txtSalesTax.ReadOnly      = true;
     this.txtSalesTax.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSalesTax.Size          = new System.Drawing.Size(145, 20);
     this.txtSalesTax.TabIndex      = 5;
     this.txtSalesTax.TabStop       = false;
     this.txtSalesTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtEntry
     //
     this.txtEntry.AcceptsReturn = true;
     this.txtEntry.BackColor     = System.Drawing.SystemColors.Window;
     this.txtEntry.BorderStyle   = System.Windows.Forms.BorderStyle.None;
     this.txtEntry.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtEntry.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtEntry.Location      = new System.Drawing.Point(416, 336);
     this.txtEntry.MaxLength     = 0;
     this.txtEntry.Name          = "txtEntry";
     this.txtEntry.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtEntry.Size          = new System.Drawing.Size(73, 19);
     this.txtEntry.TabIndex      = 14;
     this.txtEntry.Visible       = false;
     //
     // fgDetails
     //
     this.fgDetails.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.fgDetails.ColumnsCount = 0;
     this.fgDetails.FixedColumns = 0;
     this.fgDetails.FixedRows    = 0;
     this.fgDetails.Location     = new System.Drawing.Point(8, 224);
     this.fgDetails.Name         = "fgDetails";
     this.fgDetails.Size         = new System.Drawing.Size(505, 177);
     this.fgDetails.TabIndex     = 4;
     this.fgDetails.TabStop      = false;
     //
     // sbStatusBar
     //
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 509);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(523, 25);
     this.sbStatusBar.TabIndex         = 13;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel1 });
     //
     // _sbStatusBar_Panel1
     //
     this._sbStatusBar_Panel1.AutoSize           = true;
     this._sbStatusBar_Panel1.AutoSize           = false;
     this._sbStatusBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel1.DoubleClickEnabled = true;
     this._sbStatusBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel1.Size              = new System.Drawing.Size(505, 25);
     this._sbStatusBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // 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(328, 480);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(89, 25);
     this.cmdCancel.TabIndex                = 1;
     this.cmdCancel.Text                    = "&Cancel Order";
     this.cmdCancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click                  += new System.EventHandler(this.cmdCancel_Click);
     //
     // 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(424, 480);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(89, 25);
     this.cmdClose.TabIndex                = 2;
     this.cmdClose.Text                    = "&Close";
     this.cmdClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdClose.UseVisualStyleBackColor = false;
     this.cmdClose.Click                  += new System.EventHandler(this.cmdClose_Click);
     //
     // Frame2
     //
     this.Frame2.BackColor = System.Drawing.SystemColors.Control;
     this.Frame2.Controls.Add(this.txtCustomerContact);
     this.Frame2.Controls.Add(this.txtCustomerCompany);
     this.Frame2.Controls.Add(this.Label5);
     this.Frame2.Controls.Add(this.Label1);
     this.Frame2.Enabled     = true;
     this.Frame2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame2.Location    = new System.Drawing.Point(8, 96);
     this.Frame2.Name        = "Frame2";
     this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Size        = new System.Drawing.Size(505, 49);
     this.Frame2.TabIndex    = 7;
     this.Frame2.Text        = "Customer";
     this.Frame2.Visible     = true;
     //
     // txtCustomerContact
     //
     this.txtCustomerContact.AcceptsReturn = true;
     this.txtCustomerContact.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtCustomerContact.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCustomerContact.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomerContact.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCustomerContact.Location      = new System.Drawing.Point(288, 16);
     this.txtCustomerContact.MaxLength     = 0;
     this.txtCustomerContact.Name          = "txtCustomerContact";
     this.txtCustomerContact.ReadOnly      = true;
     this.txtCustomerContact.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCustomerContact.Size          = new System.Drawing.Size(209, 20);
     this.txtCustomerContact.TabIndex      = 11;
     this.txtCustomerContact.TabStop       = false;
     //
     // txtCustomerCompany
     //
     this.txtCustomerCompany.AcceptsReturn = true;
     this.txtCustomerCompany.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtCustomerCompany.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCustomerCompany.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomerCompany.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCustomerCompany.Location      = new System.Drawing.Point(72, 16);
     this.txtCustomerCompany.MaxLength     = 0;
     this.txtCustomerCompany.Name          = "txtCustomerCompany";
     this.txtCustomerCompany.ReadOnly      = true;
     this.txtCustomerCompany.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCustomerCompany.Size          = new System.Drawing.Size(145, 20);
     this.txtCustomerCompany.TabIndex      = 10;
     this.txtCustomerCompany.TabStop       = false;
     //
     // Label5
     //
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(8, 16);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(57, 17);
     this.Label5.TabIndex    = 9;
     this.Label5.Text        = "Name:";
     //
     // Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(232, 16);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(57, 17);
     this.Label1.TabIndex    = 8;
     this.Label1.Text        = "Contact:";
     //
     // Label13
     //
     this.Label13.BackColor   = System.Drawing.SystemColors.Control;
     this.Label13.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label13.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label13.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label13.Location    = new System.Drawing.Point(16, 200);
     this.Label13.Name        = "Label13";
     this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label13.Size        = new System.Drawing.Size(105, 17);
     this.Label13.TabIndex    = 36;
     this.Label13.Text        = "Required by date:";
     //
     // Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(264, 200);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(105, 17);
     this.Label2.TabIndex    = 35;
     this.Label2.Text        = "Promised by date:";
     //
     // Label7
     //
     this.Label7.BackColor   = System.Drawing.SystemColors.Control;
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label7.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label7.Location    = new System.Drawing.Point(8, 64);
     this.Label7.Name        = "Label7";
     this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label7.Size        = new System.Drawing.Size(73, 17);
     this.Label7.TabIndex    = 34;
     this.Label7.Text        = "Requested by:";
     //
     // Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(320, 8);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(49, 17);
     this.Label3.TabIndex    = 32;
     this.Label3.Text        = "Status:";
     this.Label3.Click      += new System.EventHandler(this.Label3_Click);
     //
     // Label19
     //
     this.Label19.BackColor   = System.Drawing.SystemColors.Control;
     this.Label19.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label19.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label19.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label19.Location    = new System.Drawing.Point(8, 32);
     this.Label19.Name        = "Label19";
     this.Label19.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label19.Size        = new System.Drawing.Size(57, 17);
     this.Label19.TabIndex    = 30;
     this.Label19.Text        = "Requested:";
     //
     // lblChangedBy
     //
     this.lblChangedBy.BackColor   = System.Drawing.SystemColors.Control;
     this.lblChangedBy.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblChangedBy.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblChangedBy.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblChangedBy.Location    = new System.Drawing.Point(320, 64);
     this.lblChangedBy.Name        = "lblChangedBy";
     this.lblChangedBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChangedBy.Size        = new System.Drawing.Size(89, 17);
     this.lblChangedBy.TabIndex    = 28;
     this.lblChangedBy.Text        = "Changed by:";
     //
     // Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(12, 8);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(49, 17);
     this.Label4.TabIndex    = 27;
     this.Label4.Text        = "Order Id:";
     //
     // lblChanged
     //
     this.lblChanged.BackColor   = System.Drawing.SystemColors.Control;
     this.lblChanged.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblChanged.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblChanged.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblChanged.Location    = new System.Drawing.Point(320, 36);
     this.lblChanged.Name        = "lblChanged";
     this.lblChanged.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChanged.Size        = new System.Drawing.Size(89, 17);
     this.lblChanged.TabIndex    = 26;
     this.lblChanged.Text        = "Changed:";
     //
     // Label12
     //
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label12.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label12.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label12.Location    = new System.Drawing.Point(8, 432);
     this.Label12.Name        = "Label12";
     this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label12.Size        = new System.Drawing.Size(89, 17);
     this.Label12.TabIndex    = 22;
     this.Label12.Text        = "Freight Charge:";
     //
     // Label11
     //
     this.Label11.BackColor   = System.Drawing.SystemColors.Control;
     this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label11.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label11.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label11.Location    = new System.Drawing.Point(8, 456);
     this.Label11.Name        = "Label11";
     this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label11.Size        = new System.Drawing.Size(89, 17);
     this.Label11.TabIndex    = 20;
     this.Label11.Text        = "Total:";
     //
     // Label10
     //
     this.Label10.BackColor   = System.Drawing.SystemColors.Control;
     this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label10.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label10.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label10.Location    = new System.Drawing.Point(288, 408);
     this.Label10.Name        = "Label10";
     this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label10.Size        = new System.Drawing.Size(89, 17);
     this.Label10.TabIndex    = 18;
     this.Label10.Text        = "Total Tax:";
     //
     // Label9
     //
     this.Label9.BackColor   = System.Drawing.SystemColors.Control;
     this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label9.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label9.Location    = new System.Drawing.Point(288, 432);
     this.Label9.Name        = "Label9";
     this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label9.Size        = new System.Drawing.Size(89, 17);
     this.Label9.TabIndex    = 16;
     this.Label9.Text        = "Sub Total:";
     //
     // Label8
     //
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(8, 408);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(89, 17);
     this.Label8.TabIndex    = 15;
     this.Label8.Text        = "Sales Tax:";
     //
     // Label6
     //
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(8, 160);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(33, 17);
     this.Label6.TabIndex    = 12;
     this.Label6.Text        = "Notes:";
     //
     // frmActionOrderRequest
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(523, 534);
     this.Controls.Add(this.txtPromisedBy);
     this.Controls.Add(this.txtRequiredBy);
     this.Controls.Add(this.txtReceivedBy);
     this.Controls.Add(this.cmdApprove);
     this.Controls.Add(this.txtStatus);
     this.Controls.Add(this.txtReceived);
     this.Controls.Add(this.txtChangedBy);
     this.Controls.Add(this.txtChanged);
     this.Controls.Add(this.txtOrderID);
     this.Controls.Add(this.txtNotes);
     this.Controls.Add(this.txtSubTotal);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.txtTotalTax);
     this.Controls.Add(this.txtFreightCharge);
     this.Controls.Add(this.txtSalesTax);
     this.Controls.Add(this.txtEntry);
     this.Controls.Add(this.fgDetails);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.Frame2);
     this.Controls.Add(this.Label13);
     this.Controls.Add(this.Label2);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.Label3);
     this.Controls.Add(this.Label19);
     this.Controls.Add(this.lblChangedBy);
     this.Controls.Add(this.Label4);
     this.Controls.Add(this.lblChanged);
     this.Controls.Add(this.Label12);
     this.Controls.Add(this.Label11);
     this.Controls.Add(this.Label10);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.Label6);
     this.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Location    = new System.Drawing.Point(8, 30);
     this.MaximizeBox = true;
     this.MinimizeBox = true;
     this.Name        = "frmActionOrderRequest";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Text        = "Create Invoice";
     this.Closed     += new System.EventHandler(this.frmActionOrderRequest_Closed);
     this.Load       += new System.EventHandler(this.frmActionOrderRequest_Load);
     this.sbStatusBar.ResumeLayout(false);
     this.Frame2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmActionOrderRequest));
			this.ToolTipMain = new System.Windows.Forms.ToolTip(this.components);
			this.txtPromisedBy = new System.Windows.Forms.TextBox();
			this.txtRequiredBy = new System.Windows.Forms.TextBox();
			this.txtReceivedBy = new System.Windows.Forms.TextBox();
			this.cmdApprove = new System.Windows.Forms.Button();
			this.txtStatus = new System.Windows.Forms.TextBox();
			this.txtReceived = new System.Windows.Forms.TextBox();
			this.txtChangedBy = new System.Windows.Forms.TextBox();
			this.txtChanged = new System.Windows.Forms.TextBox();
			this.txtOrderID = new System.Windows.Forms.TextBox();
			this.txtNotes = new System.Windows.Forms.TextBox();
			this.txtSubTotal = new System.Windows.Forms.TextBox();
			this.txtTotal = new System.Windows.Forms.TextBox();
			this.txtTotalTax = new System.Windows.Forms.TextBox();
			this.txtFreightCharge = new System.Windows.Forms.TextBox();
			this.txtSalesTax = new System.Windows.Forms.TextBox();
			this.txtEntry = new System.Windows.Forms.TextBox();
			this.fgDetails = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
			this.sbStatusBar = new System.Windows.Forms.StatusStrip();
			this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.Frame2 = new System.Windows.Forms.GroupBox();
			this.txtCustomerContact = new System.Windows.Forms.TextBox();
			this.txtCustomerCompany = new System.Windows.Forms.TextBox();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this.Label13 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.Label7 = new System.Windows.Forms.Label();
			this.Label3 = new System.Windows.Forms.Label();
			this.Label19 = new System.Windows.Forms.Label();
			this.lblChangedBy = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.lblChanged = new System.Windows.Forms.Label();
			this.Label12 = new System.Windows.Forms.Label();
			this.Label11 = new System.Windows.Forms.Label();
			this.Label10 = new System.Windows.Forms.Label();
			this.Label9 = new System.Windows.Forms.Label();
			this.Label8 = new System.Windows.Forms.Label();
			this.Label6 = new System.Windows.Forms.Label();
			this.sbStatusBar.SuspendLayout();
			this.Frame2.SuspendLayout();
			this.SuspendLayout();
			// 
			// txtPromisedBy
			// 
			this.txtPromisedBy.AcceptsReturn = true;
			this.txtPromisedBy.BackColor = System.Drawing.SystemColors.Menu;
			this.txtPromisedBy.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPromisedBy.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPromisedBy.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPromisedBy.Location = new System.Drawing.Point(368, 200);
			this.txtPromisedBy.MaxLength = 0;
			this.txtPromisedBy.Name = "txtPromisedBy";
			this.txtPromisedBy.ReadOnly = true;
			this.txtPromisedBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPromisedBy.Size = new System.Drawing.Size(105, 20);
			this.txtPromisedBy.TabIndex = 38;
			this.txtPromisedBy.TabStop = false;
			// 
			// txtRequiredBy
			// 
			this.txtRequiredBy.AcceptsReturn = true;
			this.txtRequiredBy.BackColor = System.Drawing.SystemColors.Menu;
			this.txtRequiredBy.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtRequiredBy.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtRequiredBy.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtRequiredBy.Location = new System.Drawing.Point(120, 200);
			this.txtRequiredBy.MaxLength = 0;
			this.txtRequiredBy.Name = "txtRequiredBy";
			this.txtRequiredBy.ReadOnly = true;
			this.txtRequiredBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtRequiredBy.Size = new System.Drawing.Size(105, 20);
			this.txtRequiredBy.TabIndex = 37;
			this.txtRequiredBy.TabStop = false;
			// 
			// txtReceivedBy
			// 
			this.txtReceivedBy.AcceptsReturn = true;
			this.txtReceivedBy.BackColor = System.Drawing.SystemColors.Menu;
			this.txtReceivedBy.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtReceivedBy.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtReceivedBy.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtReceivedBy.Location = new System.Drawing.Point(96, 64);
			this.txtReceivedBy.MaxLength = 0;
			this.txtReceivedBy.Name = "txtReceivedBy";
			this.txtReceivedBy.ReadOnly = true;
			this.txtReceivedBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtReceivedBy.Size = new System.Drawing.Size(105, 20);
			this.txtReceivedBy.TabIndex = 33;
			this.txtReceivedBy.TabStop = false;
			// 
			// cmdApprove
			// 
			this.cmdApprove.BackColor = System.Drawing.SystemColors.Control;
			this.cmdApprove.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdApprove.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdApprove.Location = new System.Drawing.Point(232, 480);
			this.cmdApprove.Name = "cmdApprove";
			this.cmdApprove.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdApprove.Size = new System.Drawing.Size(89, 25);
			this.cmdApprove.TabIndex = 0;
			this.cmdApprove.Text = "&Create Invoice";
			this.cmdApprove.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdApprove.UseVisualStyleBackColor = false;
			this.cmdApprove.Click += new System.EventHandler(this.cmdApprove_Click);
			// 
			// txtStatus
			// 
			this.txtStatus.AcceptsReturn = true;
			this.txtStatus.BackColor = System.Drawing.SystemColors.Menu;
			this.txtStatus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtStatus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtStatus.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtStatus.Location = new System.Drawing.Point(408, 8);
			this.txtStatus.MaxLength = 0;
			this.txtStatus.Name = "txtStatus";
			this.txtStatus.ReadOnly = true;
			this.txtStatus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtStatus.Size = new System.Drawing.Size(105, 20);
			this.txtStatus.TabIndex = 31;
			this.txtStatus.TabStop = false;
			// 
			// txtReceived
			// 
			this.txtReceived.AcceptsReturn = true;
			this.txtReceived.BackColor = System.Drawing.SystemColors.Menu;
			this.txtReceived.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtReceived.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtReceived.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtReceived.Location = new System.Drawing.Point(96, 36);
			this.txtReceived.MaxLength = 0;
			this.txtReceived.Name = "txtReceived";
			this.txtReceived.ReadOnly = true;
			this.txtReceived.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtReceived.Size = new System.Drawing.Size(105, 20);
			this.txtReceived.TabIndex = 29;
			this.txtReceived.TabStop = false;
			// 
			// txtChangedBy
			// 
			this.txtChangedBy.AcceptsReturn = true;
			this.txtChangedBy.BackColor = System.Drawing.SystemColors.Menu;
			this.txtChangedBy.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtChangedBy.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtChangedBy.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtChangedBy.Location = new System.Drawing.Point(408, 64);
			this.txtChangedBy.MaxLength = 0;
			this.txtChangedBy.Name = "txtChangedBy";
			this.txtChangedBy.ReadOnly = true;
			this.txtChangedBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtChangedBy.Size = new System.Drawing.Size(105, 20);
			this.txtChangedBy.TabIndex = 25;
			this.txtChangedBy.TabStop = false;
			// 
			// txtChanged
			// 
			this.txtChanged.AcceptsReturn = true;
			this.txtChanged.BackColor = System.Drawing.SystemColors.Menu;
			this.txtChanged.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtChanged.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtChanged.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtChanged.Location = new System.Drawing.Point(408, 36);
			this.txtChanged.MaxLength = 0;
			this.txtChanged.Name = "txtChanged";
			this.txtChanged.ReadOnly = true;
			this.txtChanged.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtChanged.Size = new System.Drawing.Size(105, 20);
			this.txtChanged.TabIndex = 24;
			this.txtChanged.TabStop = false;
			// 
			// txtOrderID
			// 
			this.txtOrderID.AcceptsReturn = true;
			this.txtOrderID.BackColor = System.Drawing.SystemColors.Menu;
			this.txtOrderID.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtOrderID.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtOrderID.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtOrderID.Location = new System.Drawing.Point(96, 8);
			this.txtOrderID.MaxLength = 0;
			this.txtOrderID.Name = "txtOrderID";
			this.txtOrderID.ReadOnly = true;
			this.txtOrderID.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtOrderID.Size = new System.Drawing.Size(105, 20);
			this.txtOrderID.TabIndex = 23;
			this.txtOrderID.TabStop = false;
			// 
			// txtNotes
			// 
			this.txtNotes.AcceptsReturn = true;
			this.txtNotes.BackColor = System.Drawing.SystemColors.Menu;
			this.txtNotes.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtNotes.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtNotes.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtNotes.Location = new System.Drawing.Point(56, 152);
			this.txtNotes.MaxLength = 0;
			this.txtNotes.Multiline = true;
			this.txtNotes.Name = "txtNotes";
			this.txtNotes.ReadOnly = true;
			this.txtNotes.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtNotes.Size = new System.Drawing.Size(457, 44);
			this.txtNotes.TabIndex = 3;
			this.txtNotes.TabStop = false;
			// 
			// txtSubTotal
			// 
			this.txtSubTotal.AcceptsReturn = true;
			this.txtSubTotal.BackColor = System.Drawing.SystemColors.Menu;
			this.txtSubTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSubTotal.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSubTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSubTotal.Location = new System.Drawing.Point(368, 432);
			this.txtSubTotal.MaxLength = 0;
			this.txtSubTotal.Name = "txtSubTotal";
			this.txtSubTotal.ReadOnly = true;
			this.txtSubTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSubTotal.Size = new System.Drawing.Size(145, 20);
			this.txtSubTotal.TabIndex = 21;
			this.txtSubTotal.TabStop = false;
			this.txtSubTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtTotal
			// 
			this.txtTotal.AcceptsReturn = true;
			this.txtTotal.BackColor = System.Drawing.SystemColors.Menu;
			this.txtTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtTotal.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtTotal.Location = new System.Drawing.Point(88, 456);
			this.txtTotal.MaxLength = 0;
			this.txtTotal.Name = "txtTotal";
			this.txtTotal.ReadOnly = true;
			this.txtTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtTotal.Size = new System.Drawing.Size(145, 20);
			this.txtTotal.TabIndex = 19;
			this.txtTotal.TabStop = false;
			this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtTotalTax
			// 
			this.txtTotalTax.AcceptsReturn = true;
			this.txtTotalTax.BackColor = System.Drawing.SystemColors.Menu;
			this.txtTotalTax.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtTotalTax.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtTotalTax.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtTotalTax.Location = new System.Drawing.Point(368, 408);
			this.txtTotalTax.MaxLength = 0;
			this.txtTotalTax.Name = "txtTotalTax";
			this.txtTotalTax.ReadOnly = true;
			this.txtTotalTax.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtTotalTax.Size = new System.Drawing.Size(145, 20);
			this.txtTotalTax.TabIndex = 17;
			this.txtTotalTax.TabStop = false;
			this.txtTotalTax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtFreightCharge
			// 
			this.txtFreightCharge.AcceptsReturn = true;
			this.txtFreightCharge.BackColor = System.Drawing.SystemColors.Menu;
			this.txtFreightCharge.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtFreightCharge.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtFreightCharge.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtFreightCharge.Location = new System.Drawing.Point(88, 432);
			this.txtFreightCharge.MaxLength = 0;
			this.txtFreightCharge.Name = "txtFreightCharge";
			this.txtFreightCharge.ReadOnly = true;
			this.txtFreightCharge.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtFreightCharge.Size = new System.Drawing.Size(145, 20);
			this.txtFreightCharge.TabIndex = 6;
			this.txtFreightCharge.TabStop = false;
			this.txtFreightCharge.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtSalesTax
			// 
			this.txtSalesTax.AcceptsReturn = true;
			this.txtSalesTax.BackColor = System.Drawing.SystemColors.Menu;
			this.txtSalesTax.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSalesTax.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSalesTax.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSalesTax.Location = new System.Drawing.Point(88, 408);
			this.txtSalesTax.MaxLength = 0;
			this.txtSalesTax.Name = "txtSalesTax";
			this.txtSalesTax.ReadOnly = true;
			this.txtSalesTax.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSalesTax.Size = new System.Drawing.Size(145, 20);
			this.txtSalesTax.TabIndex = 5;
			this.txtSalesTax.TabStop = false;
			this.txtSalesTax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtEntry
			// 
			this.txtEntry.AcceptsReturn = true;
			this.txtEntry.BackColor = System.Drawing.SystemColors.Window;
			this.txtEntry.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtEntry.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtEntry.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtEntry.Location = new System.Drawing.Point(416, 336);
			this.txtEntry.MaxLength = 0;
			this.txtEntry.Name = "txtEntry";
			this.txtEntry.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtEntry.Size = new System.Drawing.Size(73, 19);
			this.txtEntry.TabIndex = 14;
			this.txtEntry.Visible = false;
			// 
			// fgDetails
			// 
			this.fgDetails.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.fgDetails.ColumnsCount = 0;
			this.fgDetails.FixedColumns = 0;
			this.fgDetails.FixedRows = 0;
			this.fgDetails.Location = new System.Drawing.Point(8, 224);
			this.fgDetails.Name = "fgDetails";
			this.fgDetails.Size = new System.Drawing.Size(505, 177);
			this.fgDetails.TabIndex = 4;
			this.fgDetails.TabStop = false;
			// 
			// sbStatusBar
			// 
			this.sbStatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.sbStatusBar.Location = new System.Drawing.Point(0, 509);
			this.sbStatusBar.Name = "sbStatusBar";
			this.sbStatusBar.ShowItemToolTips = true;
			this.sbStatusBar.Size = new System.Drawing.Size(523, 25);
			this.sbStatusBar.TabIndex = 13;
			this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this._sbStatusBar_Panel1});
			// 
			// _sbStatusBar_Panel1
			// 
			this._sbStatusBar_Panel1.AutoSize = true;
			this._sbStatusBar_Panel1.AutoSize = false;
			this._sbStatusBar_Panel1.BorderSides = (System.Windows.Forms.ToolStripStatusLabelBorderSides) (System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
			this._sbStatusBar_Panel1.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
			this._sbStatusBar_Panel1.DoubleClickEnabled = true;
			this._sbStatusBar_Panel1.Margin = new System.Windows.Forms.Padding(0);
			this._sbStatusBar_Panel1.Size = new System.Drawing.Size(505, 25);
			this._sbStatusBar_Panel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			// 
			// 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(328, 480);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(89, 25);
			this.cmdCancel.TabIndex = 1;
			this.cmdCancel.Text = "&Cancel Order";
			this.cmdCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdCancel.UseVisualStyleBackColor = false;
			this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
			// 
			// 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(424, 480);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(89, 25);
			this.cmdClose.TabIndex = 2;
			this.cmdClose.Text = "&Close";
			this.cmdClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdClose.UseVisualStyleBackColor = false;
			this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
			// 
			// Frame2
			// 
			this.Frame2.BackColor = System.Drawing.SystemColors.Control;
			this.Frame2.Controls.Add(this.txtCustomerContact);
			this.Frame2.Controls.Add(this.txtCustomerCompany);
			this.Frame2.Controls.Add(this.Label5);
			this.Frame2.Controls.Add(this.Label1);
			this.Frame2.Enabled = true;
			this.Frame2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame2.Location = new System.Drawing.Point(8, 96);
			this.Frame2.Name = "Frame2";
			this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame2.Size = new System.Drawing.Size(505, 49);
			this.Frame2.TabIndex = 7;
			this.Frame2.Text = "Customer";
			this.Frame2.Visible = true;
			// 
			// txtCustomerContact
			// 
			this.txtCustomerContact.AcceptsReturn = true;
			this.txtCustomerContact.BackColor = System.Drawing.SystemColors.Menu;
			this.txtCustomerContact.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtCustomerContact.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCustomerContact.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCustomerContact.Location = new System.Drawing.Point(288, 16);
			this.txtCustomerContact.MaxLength = 0;
			this.txtCustomerContact.Name = "txtCustomerContact";
			this.txtCustomerContact.ReadOnly = true;
			this.txtCustomerContact.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCustomerContact.Size = new System.Drawing.Size(209, 20);
			this.txtCustomerContact.TabIndex = 11;
			this.txtCustomerContact.TabStop = false;
			// 
			// txtCustomerCompany
			// 
			this.txtCustomerCompany.AcceptsReturn = true;
			this.txtCustomerCompany.BackColor = System.Drawing.SystemColors.Menu;
			this.txtCustomerCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtCustomerCompany.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCustomerCompany.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCustomerCompany.Location = new System.Drawing.Point(72, 16);
			this.txtCustomerCompany.MaxLength = 0;
			this.txtCustomerCompany.Name = "txtCustomerCompany";
			this.txtCustomerCompany.ReadOnly = true;
			this.txtCustomerCompany.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCustomerCompany.Size = new System.Drawing.Size(145, 20);
			this.txtCustomerCompany.TabIndex = 10;
			this.txtCustomerCompany.TabStop = false;
			// 
			// Label5
			// 
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label5.Location = new System.Drawing.Point(8, 16);
			this.Label5.Name = "Label5";
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.Size = new System.Drawing.Size(57, 17);
			this.Label5.TabIndex = 9;
			this.Label5.Text = "Name:";
			// 
			// Label1
			// 
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(232, 16);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(57, 17);
			this.Label1.TabIndex = 8;
			this.Label1.Text = "Contact:";
			// 
			// Label13
			// 
			this.Label13.BackColor = System.Drawing.SystemColors.Control;
			this.Label13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label13.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label13.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label13.Location = new System.Drawing.Point(16, 200);
			this.Label13.Name = "Label13";
			this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label13.Size = new System.Drawing.Size(105, 17);
			this.Label13.TabIndex = 36;
			this.Label13.Text = "Required by date:";
			// 
			// Label2
			// 
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Location = new System.Drawing.Point(264, 200);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(105, 17);
			this.Label2.TabIndex = 35;
			this.Label2.Text = "Promised by date:";
			// 
			// Label7
			// 
			this.Label7.BackColor = System.Drawing.SystemColors.Control;
			this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label7.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label7.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label7.Location = new System.Drawing.Point(8, 64);
			this.Label7.Name = "Label7";
			this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label7.Size = new System.Drawing.Size(73, 17);
			this.Label7.TabIndex = 34;
			this.Label7.Text = "Requested by:";
			// 
			// Label3
			// 
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Location = new System.Drawing.Point(320, 8);
			this.Label3.Name = "Label3";
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.Size = new System.Drawing.Size(49, 17);
			this.Label3.TabIndex = 32;
			this.Label3.Text = "Status:";
			this.Label3.Click += new System.EventHandler(this.Label3_Click);
			// 
			// Label19
			// 
			this.Label19.BackColor = System.Drawing.SystemColors.Control;
			this.Label19.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label19.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label19.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label19.Location = new System.Drawing.Point(8, 32);
			this.Label19.Name = "Label19";
			this.Label19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label19.Size = new System.Drawing.Size(57, 17);
			this.Label19.TabIndex = 30;
			this.Label19.Text = "Requested:";
			// 
			// lblChangedBy
			// 
			this.lblChangedBy.BackColor = System.Drawing.SystemColors.Control;
			this.lblChangedBy.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblChangedBy.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblChangedBy.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblChangedBy.Location = new System.Drawing.Point(320, 64);
			this.lblChangedBy.Name = "lblChangedBy";
			this.lblChangedBy.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblChangedBy.Size = new System.Drawing.Size(89, 17);
			this.lblChangedBy.TabIndex = 28;
			this.lblChangedBy.Text = "Changed by:";
			// 
			// Label4
			// 
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Location = new System.Drawing.Point(12, 8);
			this.Label4.Name = "Label4";
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.Size = new System.Drawing.Size(49, 17);
			this.Label4.TabIndex = 27;
			this.Label4.Text = "Order Id:";
			// 
			// lblChanged
			// 
			this.lblChanged.BackColor = System.Drawing.SystemColors.Control;
			this.lblChanged.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblChanged.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblChanged.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblChanged.Location = new System.Drawing.Point(320, 36);
			this.lblChanged.Name = "lblChanged";
			this.lblChanged.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblChanged.Size = new System.Drawing.Size(89, 17);
			this.lblChanged.TabIndex = 26;
			this.lblChanged.Text = "Changed:";
			// 
			// Label12
			// 
			this.Label12.BackColor = System.Drawing.SystemColors.Control;
			this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label12.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label12.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label12.Location = new System.Drawing.Point(8, 432);
			this.Label12.Name = "Label12";
			this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label12.Size = new System.Drawing.Size(89, 17);
			this.Label12.TabIndex = 22;
			this.Label12.Text = "Freight Charge:";
			// 
			// Label11
			// 
			this.Label11.BackColor = System.Drawing.SystemColors.Control;
			this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label11.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label11.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label11.Location = new System.Drawing.Point(8, 456);
			this.Label11.Name = "Label11";
			this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label11.Size = new System.Drawing.Size(89, 17);
			this.Label11.TabIndex = 20;
			this.Label11.Text = "Total:";
			// 
			// Label10
			// 
			this.Label10.BackColor = System.Drawing.SystemColors.Control;
			this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label10.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label10.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label10.Location = new System.Drawing.Point(288, 408);
			this.Label10.Name = "Label10";
			this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label10.Size = new System.Drawing.Size(89, 17);
			this.Label10.TabIndex = 18;
			this.Label10.Text = "Total Tax:";
			// 
			// Label9
			// 
			this.Label9.BackColor = System.Drawing.SystemColors.Control;
			this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label9.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label9.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label9.Location = new System.Drawing.Point(288, 432);
			this.Label9.Name = "Label9";
			this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label9.Size = new System.Drawing.Size(89, 17);
			this.Label9.TabIndex = 16;
			this.Label9.Text = "Sub Total:";
			// 
			// Label8
			// 
			this.Label8.BackColor = System.Drawing.SystemColors.Control;
			this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label8.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label8.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label8.Location = new System.Drawing.Point(8, 408);
			this.Label8.Name = "Label8";
			this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label8.Size = new System.Drawing.Size(89, 17);
			this.Label8.TabIndex = 15;
			this.Label8.Text = "Sales Tax:";
			// 
			// Label6
			// 
			this.Label6.BackColor = System.Drawing.SystemColors.Control;
			this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label6.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label6.Location = new System.Drawing.Point(8, 160);
			this.Label6.Name = "Label6";
			this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label6.Size = new System.Drawing.Size(33, 17);
			this.Label6.TabIndex = 12;
			this.Label6.Text = "Notes:";
			// 
			// frmActionOrderRequest
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.ClientSize = new System.Drawing.Size(523, 534);
			this.Controls.Add(this.txtPromisedBy);
			this.Controls.Add(this.txtRequiredBy);
			this.Controls.Add(this.txtReceivedBy);
			this.Controls.Add(this.cmdApprove);
			this.Controls.Add(this.txtStatus);
			this.Controls.Add(this.txtReceived);
			this.Controls.Add(this.txtChangedBy);
			this.Controls.Add(this.txtChanged);
			this.Controls.Add(this.txtOrderID);
			this.Controls.Add(this.txtNotes);
			this.Controls.Add(this.txtSubTotal);
			this.Controls.Add(this.txtTotal);
			this.Controls.Add(this.txtTotalTax);
			this.Controls.Add(this.txtFreightCharge);
			this.Controls.Add(this.txtSalesTax);
			this.Controls.Add(this.txtEntry);
			this.Controls.Add(this.fgDetails);
			this.Controls.Add(this.sbStatusBar);
			this.Controls.Add(this.cmdCancel);
			this.Controls.Add(this.cmdClose);
			this.Controls.Add(this.Frame2);
			this.Controls.Add(this.Label13);
			this.Controls.Add(this.Label2);
			this.Controls.Add(this.Label7);
			this.Controls.Add(this.Label3);
			this.Controls.Add(this.Label19);
			this.Controls.Add(this.lblChangedBy);
			this.Controls.Add(this.Label4);
			this.Controls.Add(this.lblChanged);
			this.Controls.Add(this.Label12);
			this.Controls.Add(this.Label11);
			this.Controls.Add(this.Label10);
			this.Controls.Add(this.Label9);
			this.Controls.Add(this.Label8);
			this.Controls.Add(this.Label6);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.Location = new System.Drawing.Point(8, 30);
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Name = "frmActionOrderRequest";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text = "Create Invoice";
			this.Closed += new System.EventHandler(this.frmActionOrderRequest_Closed);
			this.Load += new System.EventHandler(this.frmActionOrderRequest_Load);
			this.sbStatusBar.ResumeLayout(false);
			this.Frame2.ResumeLayout(false);
			this.ResumeLayout(false);
		}
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRequestApproval));
			this.ToolTipMain = new System.Windows.Forms.ToolTip(this.components);
			this.cmdApprove = new System.Windows.Forms.Button();
			this.cmdInfo = new System.Windows.Forms.Button();
			this.fgOrders = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
			this.sbStatusBar = new System.Windows.Forms.StatusStrip();
			this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.cmbStatus = new System.Windows.Forms.ComboBox();
			this.chkTo = new System.Windows.Forms.CheckBox();
			this.chkFrom = new System.Windows.Forms.CheckBox();
			this.txtProductID = new System.Windows.Forms.TextBox();
			this.txtOrderID = new System.Windows.Forms.TextBox();
			this.txtContactLastName = new System.Windows.Forms.TextBox();
			this.txtContactName = new System.Windows.Forms.TextBox();
			this.cmdCustomers = new System.Windows.Forms.Button();
			this.txtCompanyName = new System.Windows.Forms.TextBox();
			this.dtFrom = new System.Windows.Forms.DateTimePicker();
			this.dtTo = new System.Windows.Forms.DateTimePicker();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label8 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this.Label6 = new System.Windows.Forms.Label();
			this.Label3 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.sbStatusBar.SuspendLayout();
			this.Frame1.SuspendLayout();
			this.SuspendLayout();
			this.listBoxComboBoxHelper1 = new UpgradeHelpers.VB6.Gui.ListControlHelper(this.components);
			((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).BeginInit();
			// 
			// cmdApprove
			// 
			this.cmdApprove.BackColor = System.Drawing.SystemColors.Control;
			this.cmdApprove.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdApprove.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdApprove.Location = new System.Drawing.Point(232, 440);
			this.cmdApprove.Name = "cmdApprove";
			this.cmdApprove.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdApprove.Size = new System.Drawing.Size(89, 25);
			this.cmdApprove.TabIndex = 10;
			this.cmdApprove.Text = "&Create Invoice";
			this.cmdApprove.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdApprove.UseVisualStyleBackColor = false;
			this.cmdApprove.Click += new System.EventHandler(this.cmdApprove_Click);
			// 
			// cmdInfo
			// 
			this.cmdInfo.BackColor = System.Drawing.SystemColors.Control;
			this.cmdInfo.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdInfo.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdInfo.Location = new System.Drawing.Point(136, 440);
			this.cmdInfo.Name = "cmdInfo";
			this.cmdInfo.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdInfo.Size = new System.Drawing.Size(89, 25);
			this.cmdInfo.TabIndex = 9;
			this.cmdInfo.Text = "&Information";
			this.cmdInfo.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdInfo.UseVisualStyleBackColor = false;
			this.cmdInfo.Click += new System.EventHandler(this.cmdInfo_Click);
			// 
			// fgOrders
			// 
			this.fgOrders.AllowBigSelection = false;
			this.fgOrders.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.fgOrders.ColumnsCount = 1;
			this.fgOrders.FixedColumns = 0;
			this.fgOrders.FixedRows = 0;
			this.fgOrders.Location = new System.Drawing.Point(8, 168);
			this.fgOrders.Name = "fgOrders";
			this.fgOrders.RowsCount = 1;
			this.fgOrders.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
			this.fgOrders.Size = new System.Drawing.Size(505, 265);
			this.fgOrders.TabIndex = 8;
			this.fgOrders.DoubleClick += new System.EventHandler(this.fgOrders_DoubleClick);
			// 
			// sbStatusBar
			// 
			this.sbStatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.sbStatusBar.Location = new System.Drawing.Point(0, 471);
			this.sbStatusBar.Name = "sbStatusBar";
			this.sbStatusBar.ShowItemToolTips = true;
			this.sbStatusBar.Size = new System.Drawing.Size(523, 25);
			this.sbStatusBar.TabIndex = 18;
			this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this._sbStatusBar_Panel1});
			// 
			// _sbStatusBar_Panel1
			// 
			this._sbStatusBar_Panel1.AutoSize = true;
			this._sbStatusBar_Panel1.AutoSize = false;
			this._sbStatusBar_Panel1.BorderSides = (System.Windows.Forms.ToolStripStatusLabelBorderSides) (System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
			this._sbStatusBar_Panel1.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
			this._sbStatusBar_Panel1.DoubleClickEnabled = true;
			this._sbStatusBar_Panel1.Margin = new System.Windows.Forms.Padding(0);
			this._sbStatusBar_Panel1.Size = new System.Drawing.Size(505, 25);
			this._sbStatusBar_Panel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			// 
			// 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(328, 440);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(89, 25);
			this.cmdCancel.TabIndex = 11;
			this.cmdCancel.Text = "&Cancel Order";
			this.cmdCancel.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdCancel.UseVisualStyleBackColor = false;
			this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
			// 
			// 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(424, 440);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(89, 25);
			this.cmdClose.TabIndex = 12;
			this.cmdClose.Text = "&Close";
			this.cmdClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdClose.UseVisualStyleBackColor = false;
			this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
			// 
			// Frame1
			// 
			this.Frame1.BackColor = System.Drawing.SystemColors.Control;
			this.Frame1.Controls.Add(this.cmbStatus);
			this.Frame1.Controls.Add(this.chkTo);
			this.Frame1.Controls.Add(this.chkFrom);
			this.Frame1.Controls.Add(this.txtProductID);
			this.Frame1.Controls.Add(this.txtOrderID);
			this.Frame1.Controls.Add(this.txtContactLastName);
			this.Frame1.Controls.Add(this.txtContactName);
			this.Frame1.Controls.Add(this.cmdCustomers);
			this.Frame1.Controls.Add(this.txtCompanyName);
			this.Frame1.Controls.Add(this.dtFrom);
			this.Frame1.Controls.Add(this.dtTo);
			this.Frame1.Controls.Add(this.Label5);
			this.Frame1.Controls.Add(this.Label8);
			this.Frame1.Controls.Add(this.Label1);
			this.Frame1.Controls.Add(this.Label6);
			this.Frame1.Controls.Add(this.Label3);
			this.Frame1.Controls.Add(this.Label4);
			this.Frame1.Controls.Add(this.Label2);
			this.Frame1.Enabled = true;
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.Location = new System.Drawing.Point(8, 8);
			this.Frame1.Name = "Frame1";
			this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame1.Size = new System.Drawing.Size(505, 153);
			this.Frame1.TabIndex = 13;
			this.Frame1.Text = "Search customer";
			this.Frame1.Visible = true;
			// 
			// cmbStatus
			// 
			this.cmbStatus.BackColor = System.Drawing.SystemColors.Window;
			this.cmbStatus.CausesValidation = true;
			this.cmbStatus.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbStatus.Enabled = true;
			this.cmbStatus.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbStatus.IntegralHeight = true;
			this.cmbStatus.Location = new System.Drawing.Point(336, 16);
			this.cmbStatus.Name = "cmbStatus";
			this.cmbStatus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbStatus.Size = new System.Drawing.Size(145, 21);
			this.cmbStatus.Sorted = false;
			this.cmbStatus.TabIndex = 1;
			this.cmbStatus.TabStop = true;
			this.cmbStatus.Visible = true;
			this.cmbStatus.Items.AddRange(new object[]{"All", "Requested", "Cancelled", "Approved"});
			this.cmbStatus.SelectedIndexChanged += new System.EventHandler(this.cmbStatus_SelectedIndexChanged);
			// 
			// chkTo
			// 
			this.chkTo.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkTo.BackColor = System.Drawing.SystemColors.Control;
			this.chkTo.CausesValidation = true;
			this.chkTo.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkTo.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkTo.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkTo.Enabled = true;
			this.chkTo.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkTo.Location = new System.Drawing.Point(336, 80);
			this.chkTo.Name = "chkTo";
			this.chkTo.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkTo.Size = new System.Drawing.Size(41, 17);
			this.chkTo.TabIndex = 23;
			this.chkTo.TabStop = false;
			this.chkTo.Text = "To:";
			this.chkTo.Visible = true;
			// 
			// chkFrom
			// 
			this.chkFrom.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkFrom.BackColor = System.Drawing.SystemColors.Control;
			this.chkFrom.CausesValidation = true;
			this.chkFrom.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkFrom.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkFrom.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkFrom.Enabled = true;
			this.chkFrom.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkFrom.Location = new System.Drawing.Point(88, 80);
			this.chkFrom.Name = "chkFrom";
			this.chkFrom.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkFrom.Size = new System.Drawing.Size(47, 17);
			this.chkFrom.TabIndex = 22;
			this.chkFrom.TabStop = false;
			this.chkFrom.Text = "From:";
			this.chkFrom.Visible = true;
			// 
			// txtProductID
			// 
			this.txtProductID.AcceptsReturn = true;
			this.txtProductID.BackColor = System.Drawing.SystemColors.Window;
			this.txtProductID.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtProductID.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtProductID.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtProductID.Location = new System.Drawing.Point(336, 112);
			this.txtProductID.MaxLength = 0;
			this.txtProductID.Name = "txtProductID";
			this.txtProductID.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtProductID.Size = new System.Drawing.Size(145, 20);
			this.txtProductID.TabIndex = 7;
			this.txtProductID.TextChanged += new System.EventHandler(this.txtProductID_TextChanged);
			// 
			// txtOrderID
			// 
			this.txtOrderID.AcceptsReturn = true;
			this.txtOrderID.BackColor = System.Drawing.SystemColors.Window;
			this.txtOrderID.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtOrderID.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtOrderID.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtOrderID.Location = new System.Drawing.Point(88, 112);
			this.txtOrderID.MaxLength = 0;
			this.txtOrderID.Name = "txtOrderID";
			this.txtOrderID.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtOrderID.Size = new System.Drawing.Size(145, 20);
			this.txtOrderID.TabIndex = 6;
			this.txtOrderID.TextChanged += new System.EventHandler(this.txtOrderID_TextChanged);
			// 
			// txtContactLastName
			// 
			this.txtContactLastName.AcceptsReturn = true;
			this.txtContactLastName.BackColor = System.Drawing.SystemColors.Window;
			this.txtContactLastName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtContactLastName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtContactLastName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtContactLastName.Location = new System.Drawing.Point(336, 48);
			this.txtContactLastName.MaxLength = 0;
			this.txtContactLastName.Name = "txtContactLastName";
			this.txtContactLastName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtContactLastName.Size = new System.Drawing.Size(145, 20);
			this.txtContactLastName.TabIndex = 3;
			this.txtContactLastName.TextChanged += new System.EventHandler(this.txtContactLastName_TextChanged);
			// 
			// txtContactName
			// 
			this.txtContactName.AcceptsReturn = true;
			this.txtContactName.BackColor = System.Drawing.SystemColors.Window;
			this.txtContactName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtContactName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtContactName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtContactName.Location = new System.Drawing.Point(88, 48);
			this.txtContactName.MaxLength = 0;
			this.txtContactName.Name = "txtContactName";
			this.txtContactName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtContactName.Size = new System.Drawing.Size(145, 20);
			this.txtContactName.TabIndex = 2;
			this.txtContactName.TextChanged += new System.EventHandler(this.txtContactName_TextChanged);
			// 
			// cmdCustomers
			// 
			this.cmdCustomers.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCustomers.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCustomers.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCustomers.Location = new System.Drawing.Point(240, 16);
			this.cmdCustomers.Name = "cmdCustomers";
			this.cmdCustomers.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCustomers.Size = new System.Drawing.Size(25, 21);
			this.cmdCustomers.TabIndex = 14;
			this.cmdCustomers.TabStop = false;
			this.cmdCustomers.Text = "...";
			this.cmdCustomers.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdCustomers.UseVisualStyleBackColor = false;
			this.cmdCustomers.Click += new System.EventHandler(this.cmdCustomers_Click);
			// 
			// txtCompanyName
			// 
			this.txtCompanyName.AcceptsReturn = true;
			this.txtCompanyName.BackColor = System.Drawing.SystemColors.Window;
			this.txtCompanyName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtCompanyName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCompanyName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCompanyName.Location = new System.Drawing.Point(88, 16);
			this.txtCompanyName.MaxLength = 0;
			this.txtCompanyName.Name = "txtCompanyName";
			this.txtCompanyName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCompanyName.Size = new System.Drawing.Size(145, 20);
			this.txtCompanyName.TabIndex = 0;
			this.txtCompanyName.TextChanged += new System.EventHandler(this.txtCompanyName_TextChanged);
			// 
			// dtFrom
			// 
			this.dtFrom.Checked = false;
			this.dtFrom.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dtFrom.Location = new System.Drawing.Point(136, 80);
			this.dtFrom.Name = "dtFrom";
			this.dtFrom.Size = new System.Drawing.Size(97, 20);
			this.dtFrom.TabIndex = 4;
			this.dtFrom.ValueChanged += new System.EventHandler(this.dtFrom_ValueChanged);
			// 
			// dtTo
			// 
			this.dtTo.Checked = false;
			this.dtTo.Format = System.Windows.Forms.DateTimePickerFormat.Short;
			this.dtTo.Location = new System.Drawing.Point(384, 80);
			this.dtTo.Name = "dtTo";
			this.dtTo.Size = new System.Drawing.Size(97, 20);
			this.dtTo.TabIndex = 5;
			this.dtTo.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
			// 
			// Label5
			// 
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label5.Location = new System.Drawing.Point(288, 16);
			this.Label5.Name = "Label5";
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.Size = new System.Drawing.Size(41, 17);
			this.Label5.TabIndex = 24;
			this.Label5.Text = "Status:";
			// 
			// Label8
			// 
			this.Label8.BackColor = System.Drawing.SystemColors.Control;
			this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label8.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label8.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label8.Location = new System.Drawing.Point(256, 112);
			this.Label8.Name = "Label8";
			this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label8.Size = new System.Drawing.Size(89, 17);
			this.Label8.TabIndex = 21;
			this.Label8.Text = "Product code:";
			// 
			// Label1
			// 
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(8, 112);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(89, 17);
			this.Label1.TabIndex = 20;
			this.Label1.Text = "Order number:";
			// 
			// Label6
			// 
			this.Label6.BackColor = System.Drawing.SystemColors.Control;
			this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label6.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label6.Location = new System.Drawing.Point(8, 80);
			this.Label6.Name = "Label6";
			this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label6.Size = new System.Drawing.Size(65, 17);
			this.Label6.TabIndex = 19;
			this.Label6.Text = "Date range:";
			// 
			// Label3
			// 
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Location = new System.Drawing.Point(240, 48);
			this.Label3.Name = "Label3";
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.Size = new System.Drawing.Size(97, 17);
			this.Label3.TabIndex = 17;
			this.Label3.Text = "Contact last name:";
			// 
			// Label4
			// 
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Location = new System.Drawing.Point(8, 16);
			this.Label4.Name = "Label4";
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.Size = new System.Drawing.Size(89, 17);
			this.Label4.TabIndex = 16;
			this.Label4.Text = "Company name:";
			// 
			// Label2
			// 
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Location = new System.Drawing.Point(8, 48);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(89, 17);
			this.Label2.TabIndex = 15;
			this.Label2.Text = "Contact name:";
			// 
			// frmRequestApproval
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.ClientSize = new System.Drawing.Size(523, 496);
			this.Controls.Add(this.cmdApprove);
			this.Controls.Add(this.cmdInfo);
			this.Controls.Add(this.fgOrders);
			this.Controls.Add(this.sbStatusBar);
			this.Controls.Add(this.cmdCancel);
			this.Controls.Add(this.cmdClose);
			this.Controls.Add(this.Frame1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.Location = new System.Drawing.Point(8, 30);
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Name = "frmRequestApproval";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text = "Create Invoice";
			this.listBoxComboBoxHelper1.SetItemData(this.cmbStatus, new int[]{0, 0, 0, 0});
			this.Closed += new System.EventHandler(this.frmRequestApproval_Closed);
			this.Load += new System.EventHandler(this.frmRequestApproval_Load);
			((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).EndInit();
			this.sbStatusBar.ResumeLayout(false);
			this.Frame1.ResumeLayout(false);
			this.ResumeLayout(false);
		}
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOrderReception));
			this.ToolTipMain = new System.Windows.Forms.ToolTip(this.components);
			this.txtNotes = new System.Windows.Forms.TextBox();
			this.txtSubTotal = new System.Windows.Forms.TextBox();
			this.txtTotal = new System.Windows.Forms.TextBox();
			this.txtTotalTax = new System.Windows.Forms.TextBox();
			this.txtFreightCharge = new System.Windows.Forms.TextBox();
			this.txtSalesTax = new System.Windows.Forms.TextBox();
			this.txtEntry = new System.Windows.Forms.TextBox();
			this.fgProducts = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
			this.sbStatusBar = new System.Windows.Forms.StatusStrip();
			this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
			this.cmdSave = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmdAddProducts = new System.Windows.Forms.Button();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.txtProviderName = new System.Windows.Forms.TextBox();
			this.txtContactLastName = new System.Windows.Forms.TextBox();
			this.txtContactName = new System.Windows.Forms.TextBox();
			this.cmdProviders = new System.Windows.Forms.Button();
			this.lvProviders = new System.Windows.Forms.ListView();
			this._lvProviders_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
			this._lvProviders_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
			this._lvProviders_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
			this._lvProviders_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
			this._lvProviders_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
			this._lvProviders_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
			this._lvProviders_ColumnHeader_7 = new System.Windows.Forms.ColumnHeader();
			this.Label3 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.Frame2 = new System.Windows.Forms.GroupBox();
			this.txtProviderContact = new System.Windows.Forms.TextBox();
			this.txtProviderCompany = new System.Windows.Forms.TextBox();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this.Text3 = new System.Windows.Forms.TextBox();
			this.Label12 = new System.Windows.Forms.Label();
			this.Label11 = new System.Windows.Forms.Label();
			this.Label10 = new System.Windows.Forms.Label();
			this.Label9 = new System.Windows.Forms.Label();
			this.Label8 = new System.Windows.Forms.Label();
			this.Label6 = new System.Windows.Forms.Label();
			this.sbStatusBar.SuspendLayout();
			this.Frame1.SuspendLayout();
			this.lvProviders.SuspendLayout();
			this.Frame2.SuspendLayout();
			this.SuspendLayout();
			this.listViewHelper1 = new UpgradeHelpers.VB6.Gui.ListViewHelper(this.components);
			((System.ComponentModel.ISupportInitialize) this.listViewHelper1).BeginInit();
			// 
			// txtNotes
			// 
			this.txtNotes.AcceptsReturn = true;
			this.txtNotes.BackColor = System.Drawing.SystemColors.Window;
			this.txtNotes.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtNotes.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtNotes.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtNotes.Location = new System.Drawing.Point(56, 240);
			this.txtNotes.MaxLength = 0;
			this.txtNotes.Multiline = true;
			this.txtNotes.Name = "txtNotes";
			this.txtNotes.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtNotes.Size = new System.Drawing.Size(425, 44);
			this.txtNotes.TabIndex = 4;
			this.txtNotes.TextChanged += new System.EventHandler(this.txtNotes_TextChanged);
			// 
			// txtSubTotal
			// 
			this.txtSubTotal.AcceptsReturn = true;
			this.txtSubTotal.BackColor = System.Drawing.SystemColors.Menu;
			this.txtSubTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSubTotal.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSubTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSubTotal.Location = new System.Drawing.Point(352, 504);
			this.txtSubTotal.MaxLength = 0;
			this.txtSubTotal.Name = "txtSubTotal";
			this.txtSubTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSubTotal.Size = new System.Drawing.Size(145, 20);
			this.txtSubTotal.TabIndex = 31;
			this.txtSubTotal.TabStop = false;
			this.txtSubTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtTotal
			// 
			this.txtTotal.AcceptsReturn = true;
			this.txtTotal.BackColor = System.Drawing.SystemColors.Menu;
			this.txtTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtTotal.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtTotal.Location = new System.Drawing.Point(88, 528);
			this.txtTotal.MaxLength = 0;
			this.txtTotal.Name = "txtTotal";
			this.txtTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtTotal.Size = new System.Drawing.Size(145, 20);
			this.txtTotal.TabIndex = 29;
			this.txtTotal.TabStop = false;
			this.txtTotal.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtTotalTax
			// 
			this.txtTotalTax.AcceptsReturn = true;
			this.txtTotalTax.BackColor = System.Drawing.SystemColors.Menu;
			this.txtTotalTax.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtTotalTax.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtTotalTax.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtTotalTax.Location = new System.Drawing.Point(352, 480);
			this.txtTotalTax.MaxLength = 0;
			this.txtTotalTax.Name = "txtTotalTax";
			this.txtTotalTax.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtTotalTax.Size = new System.Drawing.Size(145, 20);
			this.txtTotalTax.TabIndex = 27;
			this.txtTotalTax.TabStop = false;
			this.txtTotalTax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			// 
			// txtFreightCharge
			// 
			this.txtFreightCharge.AcceptsReturn = true;
			this.txtFreightCharge.BackColor = System.Drawing.SystemColors.Window;
			this.txtFreightCharge.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtFreightCharge.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtFreightCharge.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtFreightCharge.Location = new System.Drawing.Point(88, 504);
			this.txtFreightCharge.MaxLength = 0;
			this.txtFreightCharge.Name = "txtFreightCharge";
			this.txtFreightCharge.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtFreightCharge.Size = new System.Drawing.Size(145, 20);
			this.txtFreightCharge.TabIndex = 7;
			this.txtFreightCharge.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtFreightCharge.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtFreightCharge_KeyPress);
			this.txtFreightCharge.TextChanged += new System.EventHandler(this.txtFreightCharge_TextChanged);
			// 
			// txtSalesTax
			// 
			this.txtSalesTax.AcceptsReturn = true;
			this.txtSalesTax.BackColor = System.Drawing.SystemColors.Window;
			this.txtSalesTax.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSalesTax.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSalesTax.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSalesTax.Location = new System.Drawing.Point(88, 480);
			this.txtSalesTax.MaxLength = 0;
			this.txtSalesTax.Name = "txtSalesTax";
			this.txtSalesTax.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSalesTax.Size = new System.Drawing.Size(145, 20);
			this.txtSalesTax.TabIndex = 6;
			this.txtSalesTax.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtSalesTax.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtSalesTax_KeyPress);
			this.txtSalesTax.TextChanged += new System.EventHandler(this.txtSalesTax_TextChanged);
			// 
			// txtEntry
			// 
			this.txtEntry.AcceptsReturn = true;
			this.txtEntry.BackColor = System.Drawing.SystemColors.Window;
			this.txtEntry.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtEntry.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtEntry.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtEntry.Location = new System.Drawing.Point(416, 296);
			this.txtEntry.MaxLength = 0;
			this.txtEntry.Name = "txtEntry";
			this.txtEntry.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtEntry.Size = new System.Drawing.Size(73, 19);
			this.txtEntry.TabIndex = 24;
			this.txtEntry.Visible = false;
			this.txtEntry.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEntry_KeyDown);
			this.txtEntry.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtEntry_KeyPress);
			this.txtEntry.Leave += new System.EventHandler(this.txtEntry_Leave);
			// 
			// fgProducts
			// 
			this.fgProducts.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.fgProducts.ColumnsCount = 0;
			this.fgProducts.FixedColumns = 0;
			this.fgProducts.FixedRows = 0;
			this.fgProducts.Location = new System.Drawing.Point(8, 288);
			this.fgProducts.Name = "fgProducts";
			this.fgProducts.Size = new System.Drawing.Size(505, 177);
			this.fgProducts.TabIndex = 5;
			this.fgProducts.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.fgProducts_CellLeave);
			this.fgProducts.Click += new System.EventHandler(this.fgProducts_Click);
			this.fgProducts.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.fgProducts_KeyPress);
			// 
			// sbStatusBar
			// 
			this.sbStatusBar.Dock = System.Windows.Forms.DockStyle.Bottom;
			this.sbStatusBar.Location = new System.Drawing.Point(0, 584);
			this.sbStatusBar.Name = "sbStatusBar";
			this.sbStatusBar.ShowItemToolTips = true;
			this.sbStatusBar.Size = new System.Drawing.Size(523, 25);
			this.sbStatusBar.TabIndex = 23;
			this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[]{this._sbStatusBar_Panel1});
			// 
			// _sbStatusBar_Panel1
			// 
			this._sbStatusBar_Panel1.AutoSize = true;
			this._sbStatusBar_Panel1.AutoSize = false;
			this._sbStatusBar_Panel1.BorderSides = (System.Windows.Forms.ToolStripStatusLabelBorderSides) (System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
			this._sbStatusBar_Panel1.BorderStyle = System.Windows.Forms.Border3DStyle.SunkenOuter;
			this._sbStatusBar_Panel1.DoubleClickEnabled = true;
			this._sbStatusBar_Panel1.Margin = new System.Windows.Forms.Padding(0);
			this._sbStatusBar_Panel1.Size = new System.Drawing.Size(505, 25);
			this._sbStatusBar_Panel1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
			// 
			// cmdSave
			// 
			this.cmdSave.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSave.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSave.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSave.Location = new System.Drawing.Point(320, 552);
			this.cmdSave.Name = "cmdSave";
			this.cmdSave.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSave.Size = new System.Drawing.Size(89, 25);
			this.cmdSave.TabIndex = 8;
			this.cmdSave.Text = "&Save";
			this.cmdSave.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdSave.UseVisualStyleBackColor = false;
			this.cmdSave.Click += new System.EventHandler(this.cmdSave_Click);
			// 
			// 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(424, 552);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(89, 25);
			this.cmdClose.TabIndex = 9;
			this.cmdClose.Text = "&Close";
			this.cmdClose.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdClose.UseVisualStyleBackColor = false;
			this.cmdClose.Click += new System.EventHandler(this.cmdClose_Click);
			// 
			// cmdAddProducts
			// 
			this.cmdAddProducts.BackColor = System.Drawing.SystemColors.Control;
			this.cmdAddProducts.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdAddProducts.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdAddProducts.Location = new System.Drawing.Point(488, 264);
			this.cmdAddProducts.Name = "cmdAddProducts";
			this.cmdAddProducts.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdAddProducts.Size = new System.Drawing.Size(25, 21);
			this.cmdAddProducts.TabIndex = 21;
			this.cmdAddProducts.TabStop = false;
			this.cmdAddProducts.Text = "...";
			this.cmdAddProducts.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdAddProducts.UseVisualStyleBackColor = false;
			this.cmdAddProducts.Click += new System.EventHandler(this.cmdAddProducts_Click);
			// 
			// Frame1
			// 
			this.Frame1.BackColor = System.Drawing.SystemColors.Control;
			this.Frame1.Controls.Add(this.txtProviderName);
			this.Frame1.Controls.Add(this.txtContactLastName);
			this.Frame1.Controls.Add(this.txtContactName);
			this.Frame1.Controls.Add(this.cmdProviders);
			this.Frame1.Controls.Add(this.lvProviders);
			this.Frame1.Controls.Add(this.Label3);
			this.Frame1.Controls.Add(this.Label4);
			this.Frame1.Controls.Add(this.Label2);
			this.Frame1.Enabled = true;
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.Location = new System.Drawing.Point(8, 8);
			this.Frame1.Name = "Frame1";
			this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame1.Size = new System.Drawing.Size(505, 169);
			this.Frame1.TabIndex = 12;
			this.Frame1.Text = "Search supplier";
			this.Frame1.Visible = true;
			// 
			// txtProviderName
			// 
			this.txtProviderName.AcceptsReturn = true;
			this.txtProviderName.BackColor = System.Drawing.SystemColors.Window;
			this.txtProviderName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtProviderName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtProviderName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtProviderName.Location = new System.Drawing.Point(88, 16);
			this.txtProviderName.MaxLength = 0;
			this.txtProviderName.Name = "txtProviderName";
			this.txtProviderName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtProviderName.Size = new System.Drawing.Size(145, 20);
			this.txtProviderName.TabIndex = 0;
			this.txtProviderName.TextChanged += new System.EventHandler(this.txtProviderName_TextChanged);
			// 
			// txtContactLastName
			// 
			this.txtContactLastName.AcceptsReturn = true;
			this.txtContactLastName.BackColor = System.Drawing.SystemColors.Window;
			this.txtContactLastName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtContactLastName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtContactLastName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtContactLastName.Location = new System.Drawing.Point(336, 48);
			this.txtContactLastName.MaxLength = 0;
			this.txtContactLastName.Name = "txtContactLastName";
			this.txtContactLastName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtContactLastName.Size = new System.Drawing.Size(145, 20);
			this.txtContactLastName.TabIndex = 2;
			this.txtContactLastName.TextChanged += new System.EventHandler(this.txtContactLastName_TextChanged);
			// 
			// txtContactName
			// 
			this.txtContactName.AcceptsReturn = true;
			this.txtContactName.BackColor = System.Drawing.SystemColors.Window;
			this.txtContactName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtContactName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtContactName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtContactName.Location = new System.Drawing.Point(88, 48);
			this.txtContactName.MaxLength = 0;
			this.txtContactName.Name = "txtContactName";
			this.txtContactName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtContactName.Size = new System.Drawing.Size(145, 20);
			this.txtContactName.TabIndex = 1;
			this.txtContactName.TextChanged += new System.EventHandler(this.txtContactName_TextChanged);
			// 
			// cmdProviders
			// 
			this.cmdProviders.BackColor = System.Drawing.SystemColors.Control;
			this.cmdProviders.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdProviders.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdProviders.Location = new System.Drawing.Point(456, 16);
			this.cmdProviders.Name = "cmdProviders";
			this.cmdProviders.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdProviders.Size = new System.Drawing.Size(25, 21);
			this.cmdProviders.TabIndex = 13;
			this.cmdProviders.TabStop = false;
			this.cmdProviders.Text = "...";
			this.cmdProviders.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
			this.cmdProviders.UseVisualStyleBackColor = false;
			this.cmdProviders.Click += new System.EventHandler(this.cmdProviders_Click);
			// 
			// lvProviders
			// 
			this.lvProviders.BackColor = System.Drawing.SystemColors.Window;
			this.lvProviders.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lvProviders.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lvProviders.FullRowSelect = true;
			this.lvProviders.GridLines = true;
			this.lvProviders.HideSelection = false;
			this.lvProviders.HotTracking = true;
			this.lvProviders.LabelEdit = false;
			this.lvProviders.Location = new System.Drawing.Point(8, 80);
			this.lvProviders.Name = "lvProviders";
			this.lvProviders.Size = new System.Drawing.Size(489, 81);
			this.lvProviders.TabIndex = 3;
			this.lvProviders.View = System.Windows.Forms.View.Details;
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_1);
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_2);
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_3);
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_4);
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_5);
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_6);
			this.lvProviders.Columns.Add(this._lvProviders_ColumnHeader_7);
			// 
			// _lvProviders_ColumnHeader_1
			// 
			this._lvProviders_ColumnHeader_1.Text = "Supplier ID";
			this._lvProviders_ColumnHeader_1.Width = 97;
			// 
			// _lvProviders_ColumnHeader_2
			// 
			this._lvProviders_ColumnHeader_2.Text = "Supplier Name";
			this._lvProviders_ColumnHeader_2.Width = 97;
			// 
			// _lvProviders_ColumnHeader_3
			// 
			this._lvProviders_ColumnHeader_3.Text = "Contact Name";
			this._lvProviders_ColumnHeader_3.Width = 97;
			// 
			// _lvProviders_ColumnHeader_4
			// 
			this._lvProviders_ColumnHeader_4.Text = "Contact Last Name";
			this._lvProviders_ColumnHeader_4.Width = 97;
			// 
			// _lvProviders_ColumnHeader_5
			// 
			this._lvProviders_ColumnHeader_5.Text = "City";
			this._lvProviders_ColumnHeader_5.Width = 97;
			// 
			// _lvProviders_ColumnHeader_6
			// 
			this._lvProviders_ColumnHeader_6.Text = "State";
			this._lvProviders_ColumnHeader_6.Width = 97;
			// 
			// _lvProviders_ColumnHeader_7
			// 
			this._lvProviders_ColumnHeader_7.Text = "Country";
			this._lvProviders_ColumnHeader_7.Width = 97;
			// 
			// Label3
			// 
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Location = new System.Drawing.Point(240, 48);
			this.Label3.Name = "Label3";
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.Size = new System.Drawing.Size(97, 17);
			this.Label3.TabIndex = 16;
			this.Label3.Text = "Contact last name:";
			// 
			// Label4
			// 
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Location = new System.Drawing.Point(8, 16);
			this.Label4.Name = "Label4";
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.Size = new System.Drawing.Size(89, 17);
			this.Label4.TabIndex = 15;
			this.Label4.Text = "Supplier Name:";
			// 
			// Label2
			// 
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Location = new System.Drawing.Point(8, 48);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(89, 17);
			this.Label2.TabIndex = 14;
			this.Label2.Text = "Contact name:";
			// 
			// Frame2
			// 
			this.Frame2.BackColor = System.Drawing.SystemColors.Control;
			this.Frame2.Controls.Add(this.txtProviderContact);
			this.Frame2.Controls.Add(this.txtProviderCompany);
			this.Frame2.Controls.Add(this.Label5);
			this.Frame2.Controls.Add(this.Label1);
			this.Frame2.Enabled = true;
			this.Frame2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame2.Location = new System.Drawing.Point(8, 184);
			this.Frame2.Name = "Frame2";
			this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame2.Size = new System.Drawing.Size(505, 49);
			this.Frame2.TabIndex = 11;
			this.Frame2.Text = "Supplier";
			this.Frame2.Visible = true;
			// 
			// txtProviderContact
			// 
			this.txtProviderContact.AcceptsReturn = true;
			this.txtProviderContact.BackColor = System.Drawing.SystemColors.Menu;
			this.txtProviderContact.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtProviderContact.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtProviderContact.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtProviderContact.Location = new System.Drawing.Point(288, 16);
			this.txtProviderContact.MaxLength = 0;
			this.txtProviderContact.Name = "txtProviderContact";
			this.txtProviderContact.ReadOnly = true;
			this.txtProviderContact.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtProviderContact.Size = new System.Drawing.Size(209, 20);
			this.txtProviderContact.TabIndex = 20;
			this.txtProviderContact.TabStop = false;
			// 
			// txtProviderCompany
			// 
			this.txtProviderCompany.AcceptsReturn = true;
			this.txtProviderCompany.BackColor = System.Drawing.SystemColors.Menu;
			this.txtProviderCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtProviderCompany.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtProviderCompany.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtProviderCompany.Location = new System.Drawing.Point(72, 16);
			this.txtProviderCompany.MaxLength = 0;
			this.txtProviderCompany.Name = "txtProviderCompany";
			this.txtProviderCompany.ReadOnly = true;
			this.txtProviderCompany.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtProviderCompany.Size = new System.Drawing.Size(145, 20);
			this.txtProviderCompany.TabIndex = 19;
			this.txtProviderCompany.TabStop = false;
			// 
			// Label5
			// 
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label5.Location = new System.Drawing.Point(8, 16);
			this.Label5.Name = "Label5";
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.Size = new System.Drawing.Size(57, 17);
			this.Label5.TabIndex = 18;
			this.Label5.Text = "Name:";
			// 
			// Label1
			// 
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(232, 16);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(57, 17);
			this.Label1.TabIndex = 17;
			this.Label1.Text = "Contact:";
			// 
			// Text3
			// 
			this.Text3.AcceptsReturn = true;
			this.Text3.BackColor = System.Drawing.SystemColors.Window;
			this.Text3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Text3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.Text3.ForeColor = System.Drawing.SystemColors.WindowText;
			this.Text3.Location = new System.Drawing.Point(120, 152);
			this.Text3.MaxLength = 0;
			this.Text3.Name = "Text3";
			this.Text3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text3.Size = new System.Drawing.Size(145, 20);
			this.Text3.TabIndex = 10;
			// 
			// Label12
			// 
			this.Label12.BackColor = System.Drawing.SystemColors.Control;
			this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label12.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label12.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label12.Location = new System.Drawing.Point(8, 504);
			this.Label12.Name = "Label12";
			this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label12.Size = new System.Drawing.Size(89, 17);
			this.Label12.TabIndex = 32;
			this.Label12.Text = "Freight Charge:";
			// 
			// Label11
			// 
			this.Label11.BackColor = System.Drawing.SystemColors.Control;
			this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label11.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label11.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label11.Location = new System.Drawing.Point(8, 528);
			this.Label11.Name = "Label11";
			this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label11.Size = new System.Drawing.Size(89, 17);
			this.Label11.TabIndex = 30;
			this.Label11.Text = "Total:";
			// 
			// Label10
			// 
			this.Label10.BackColor = System.Drawing.SystemColors.Control;
			this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label10.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label10.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label10.Location = new System.Drawing.Point(272, 480);
			this.Label10.Name = "Label10";
			this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label10.Size = new System.Drawing.Size(89, 17);
			this.Label10.TabIndex = 28;
			this.Label10.Text = "Total Tax:";
			// 
			// Label9
			// 
			this.Label9.BackColor = System.Drawing.SystemColors.Control;
			this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label9.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label9.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label9.Location = new System.Drawing.Point(272, 504);
			this.Label9.Name = "Label9";
			this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label9.Size = new System.Drawing.Size(89, 17);
			this.Label9.TabIndex = 26;
			this.Label9.Text = "Sub Total:";
			// 
			// Label8
			// 
			this.Label8.BackColor = System.Drawing.SystemColors.Control;
			this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label8.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label8.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label8.Location = new System.Drawing.Point(8, 480);
			this.Label8.Name = "Label8";
			this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label8.Size = new System.Drawing.Size(89, 17);
			this.Label8.TabIndex = 25;
			this.Label8.Text = "Sales Tax:";
			// 
			// Label6
			// 
			this.Label6.BackColor = System.Drawing.SystemColors.Control;
			this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label6.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label6.Location = new System.Drawing.Point(8, 248);
			this.Label6.Name = "Label6";
			this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label6.Size = new System.Drawing.Size(33, 17);
			this.Label6.TabIndex = 22;
			this.Label6.Text = "Notes:";
			// 
			// frmOrderReception
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.ClientSize = new System.Drawing.Size(523, 609);
			this.Controls.Add(this.txtNotes);
			this.Controls.Add(this.txtSubTotal);
			this.Controls.Add(this.txtTotal);
			this.Controls.Add(this.txtTotalTax);
			this.Controls.Add(this.txtFreightCharge);
			this.Controls.Add(this.txtSalesTax);
			this.Controls.Add(this.txtEntry);
			this.Controls.Add(this.fgProducts);
			this.Controls.Add(this.sbStatusBar);
			this.Controls.Add(this.cmdSave);
			this.Controls.Add(this.cmdClose);
			this.Controls.Add(this.cmdAddProducts);
			this.Controls.Add(this.Frame1);
			this.Controls.Add(this.Frame2);
			this.Controls.Add(this.Text3);
			this.Controls.Add(this.Label12);
			this.Controls.Add(this.Label11);
			this.Controls.Add(this.Label10);
			this.Controls.Add(this.Label9);
			this.Controls.Add(this.Label8);
			this.Controls.Add(this.Label6);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.Location = new System.Drawing.Point(8, 30);
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Name = "frmOrderReception";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text = "Add Stock Order";
			this.Closed += new System.EventHandler(this.frmOrderReception_Closed);
			this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmOrderReception_FormClosing);
			this.Load += new System.EventHandler(this.frmOrderReception_Load);
			this.listViewHelper1.SetItemClickMethod(this.lvProviders, "lvProviders_ItemClick");
			this.listViewHelper1.SetCorrectEventsBehavior(this.lvProviders, true);
			((System.ComponentModel.ISupportInitialize) this.listViewHelper1).EndInit();
			this.sbStatusBar.ResumeLayout(false);
			this.Frame1.ResumeLayout(false);
			this.lvProviders.ResumeLayout(false);
			this.Frame2.ResumeLayout(false);
			this.ResumeLayout(false);
		}
Example #8
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmReceptionApproval));
     this.ToolTipMain         = new System.Windows.Forms.ToolTip(this.components);
     this.cmdApprove          = new System.Windows.Forms.Button();
     this.cmdInfo             = new System.Windows.Forms.Button();
     this.fgOrders            = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
     this.sbStatusBar         = new System.Windows.Forms.StatusStrip();
     this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.cmdCancel           = new System.Windows.Forms.Button();
     this.cmdClose            = new System.Windows.Forms.Button();
     this.Frame1             = new System.Windows.Forms.GroupBox();
     this.cmbStatus          = new System.Windows.Forms.ComboBox();
     this.chkTo              = new System.Windows.Forms.CheckBox();
     this.chkFrom            = new System.Windows.Forms.CheckBox();
     this.txtProductID       = new System.Windows.Forms.TextBox();
     this.txtOrderID         = new System.Windows.Forms.TextBox();
     this.txtContactLastName = new System.Windows.Forms.TextBox();
     this.txtContactName     = new System.Windows.Forms.TextBox();
     this.cmdProviders       = new System.Windows.Forms.Button();
     this.txtProviderName    = new System.Windows.Forms.TextBox();
     this.dtFrom             = new System.Windows.Forms.DateTimePicker();
     this.dtTo   = new System.Windows.Forms.DateTimePicker();
     this.Label5 = new System.Windows.Forms.Label();
     this.Label8 = new System.Windows.Forms.Label();
     this.Label1 = new System.Windows.Forms.Label();
     this.Label6 = new System.Windows.Forms.Label();
     this.Label3 = new System.Windows.Forms.Label();
     this.Label4 = new System.Windows.Forms.Label();
     this.Label2 = new System.Windows.Forms.Label();
     this.sbStatusBar.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.SuspendLayout();
     this.listBoxComboBoxHelper1 = new UpgradeHelpers.VB6.Gui.ListControlHelper(this.components);
     ((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).BeginInit();
     //
     // cmdApprove
     //
     this.cmdApprove.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdApprove.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdApprove.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdApprove.Location                = new System.Drawing.Point(232, 440);
     this.cmdApprove.Name                    = "cmdApprove";
     this.cmdApprove.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdApprove.Size                    = new System.Drawing.Size(89, 25);
     this.cmdApprove.TabIndex                = 10;
     this.cmdApprove.Text                    = "&Approve Order";
     this.cmdApprove.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdApprove.UseVisualStyleBackColor = false;
     this.cmdApprove.Click                  += new System.EventHandler(this.cmdApprove_Click);
     //
     // cmdInfo
     //
     this.cmdInfo.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdInfo.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdInfo.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdInfo.Location                = new System.Drawing.Point(136, 440);
     this.cmdInfo.Name                    = "cmdInfo";
     this.cmdInfo.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdInfo.Size                    = new System.Drawing.Size(89, 25);
     this.cmdInfo.TabIndex                = 9;
     this.cmdInfo.Text                    = "&Information";
     this.cmdInfo.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdInfo.UseVisualStyleBackColor = false;
     this.cmdInfo.Click                  += new System.EventHandler(this.cmdInfo_Click);
     //
     // fgOrders
     //
     this.fgOrders.AllowBigSelection = false;
     this.fgOrders.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this.fgOrders.ColumnsCount      = 1;
     this.fgOrders.FixedColumns      = 0;
     this.fgOrders.FixedRows         = 0;
     this.fgOrders.Location          = new System.Drawing.Point(8, 168);
     this.fgOrders.Name          = "fgOrders";
     this.fgOrders.RowsCount     = 1;
     this.fgOrders.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.fgOrders.Size          = new System.Drawing.Size(505, 265);
     this.fgOrders.TabIndex      = 8;
     this.fgOrders.DoubleClick  += new System.EventHandler(this.fgOrders_DoubleClick);
     //
     // sbStatusBar
     //
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 471);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(523, 25);
     this.sbStatusBar.TabIndex         = 18;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel1 });
     //
     // _sbStatusBar_Panel1
     //
     this._sbStatusBar_Panel1.AutoSize           = true;
     this._sbStatusBar_Panel1.AutoSize           = false;
     this._sbStatusBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel1.DoubleClickEnabled = true;
     this._sbStatusBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel1.Size              = new System.Drawing.Size(505, 25);
     this._sbStatusBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // 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(328, 440);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(89, 25);
     this.cmdCancel.TabIndex                = 11;
     this.cmdCancel.Text                    = "&Cancel Order";
     this.cmdCancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click                  += new System.EventHandler(this.cmdCancel_Click);
     //
     // 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(424, 440);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(89, 25);
     this.cmdClose.TabIndex                = 12;
     this.cmdClose.Text                    = "&Close";
     this.cmdClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdClose.UseVisualStyleBackColor = false;
     this.cmdClose.Click                  += new System.EventHandler(this.cmdClose_Click);
     //
     // Frame1
     //
     this.Frame1.BackColor = System.Drawing.SystemColors.Control;
     this.Frame1.Controls.Add(this.cmbStatus);
     this.Frame1.Controls.Add(this.chkTo);
     this.Frame1.Controls.Add(this.chkFrom);
     this.Frame1.Controls.Add(this.txtProductID);
     this.Frame1.Controls.Add(this.txtOrderID);
     this.Frame1.Controls.Add(this.txtContactLastName);
     this.Frame1.Controls.Add(this.txtContactName);
     this.Frame1.Controls.Add(this.cmdProviders);
     this.Frame1.Controls.Add(this.txtProviderName);
     this.Frame1.Controls.Add(this.dtFrom);
     this.Frame1.Controls.Add(this.dtTo);
     this.Frame1.Controls.Add(this.Label5);
     this.Frame1.Controls.Add(this.Label8);
     this.Frame1.Controls.Add(this.Label1);
     this.Frame1.Controls.Add(this.Label6);
     this.Frame1.Controls.Add(this.Label3);
     this.Frame1.Controls.Add(this.Label4);
     this.Frame1.Controls.Add(this.Label2);
     this.Frame1.Enabled     = true;
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(8, 8);
     this.Frame1.Name        = "Frame1";
     this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Size        = new System.Drawing.Size(505, 153);
     this.Frame1.TabIndex    = 13;
     this.Frame1.Text        = "Search supplier";
     this.Frame1.Visible     = true;
     //
     // cmbStatus
     //
     this.cmbStatus.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbStatus.CausesValidation = true;
     this.cmbStatus.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbStatus.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbStatus.Enabled          = true;
     this.cmbStatus.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbStatus.IntegralHeight   = true;
     this.cmbStatus.Location         = new System.Drawing.Point(336, 16);
     this.cmbStatus.Name             = "cmbStatus";
     this.cmbStatus.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbStatus.Size             = new System.Drawing.Size(145, 21);
     this.cmbStatus.Sorted           = false;
     this.cmbStatus.TabIndex         = 1;
     this.cmbStatus.TabStop          = true;
     this.cmbStatus.Visible          = true;
     this.cmbStatus.Items.AddRange(new object[] { "All", "Received", "Cancelled", "Approved" });
     this.cmbStatus.SelectedIndexChanged += new System.EventHandler(this.cmbStatus_SelectedIndexChanged);
     //
     // chkTo
     //
     this.chkTo.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.chkTo.BackColor        = System.Drawing.SystemColors.Control;
     this.chkTo.CausesValidation = true;
     this.chkTo.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkTo.CheckState       = System.Windows.Forms.CheckState.Unchecked;
     this.chkTo.Cursor           = System.Windows.Forms.Cursors.Default;
     this.chkTo.Enabled          = true;
     this.chkTo.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.chkTo.Location         = new System.Drawing.Point(336, 80);
     this.chkTo.Name             = "chkTo";
     this.chkTo.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.chkTo.Size             = new System.Drawing.Size(41, 17);
     this.chkTo.TabIndex         = 23;
     this.chkTo.TabStop          = false;
     this.chkTo.Text             = "To:";
     this.chkTo.Visible          = true;
     //
     // chkFrom
     //
     this.chkFrom.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.chkFrom.BackColor        = System.Drawing.SystemColors.Control;
     this.chkFrom.CausesValidation = true;
     this.chkFrom.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkFrom.CheckState       = System.Windows.Forms.CheckState.Unchecked;
     this.chkFrom.Cursor           = System.Windows.Forms.Cursors.Default;
     this.chkFrom.Enabled          = true;
     this.chkFrom.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.chkFrom.Location         = new System.Drawing.Point(88, 80);
     this.chkFrom.Name             = "chkFrom";
     this.chkFrom.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.chkFrom.Size             = new System.Drawing.Size(47, 17);
     this.chkFrom.TabIndex         = 22;
     this.chkFrom.TabStop          = false;
     this.chkFrom.Text             = "From:";
     this.chkFrom.Visible          = true;
     //
     // txtProductID
     //
     this.txtProductID.AcceptsReturn = true;
     this.txtProductID.BackColor     = System.Drawing.SystemColors.Window;
     this.txtProductID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtProductID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtProductID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtProductID.Location      = new System.Drawing.Point(336, 112);
     this.txtProductID.MaxLength     = 0;
     this.txtProductID.Name          = "txtProductID";
     this.txtProductID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtProductID.Size          = new System.Drawing.Size(145, 20);
     this.txtProductID.TabIndex      = 7;
     this.txtProductID.TextChanged  += new System.EventHandler(this.txtProductID_TextChanged);
     //
     // txtOrderID
     //
     this.txtOrderID.AcceptsReturn = true;
     this.txtOrderID.BackColor     = System.Drawing.SystemColors.Window;
     this.txtOrderID.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtOrderID.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtOrderID.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtOrderID.Location      = new System.Drawing.Point(88, 112);
     this.txtOrderID.MaxLength     = 0;
     this.txtOrderID.Name          = "txtOrderID";
     this.txtOrderID.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtOrderID.Size          = new System.Drawing.Size(145, 20);
     this.txtOrderID.TabIndex      = 6;
     this.txtOrderID.TextChanged  += new System.EventHandler(this.txtOrderID_TextChanged);
     //
     // txtContactLastName
     //
     this.txtContactLastName.AcceptsReturn = true;
     this.txtContactLastName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtContactLastName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtContactLastName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtContactLastName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtContactLastName.Location      = new System.Drawing.Point(336, 48);
     this.txtContactLastName.MaxLength     = 0;
     this.txtContactLastName.Name          = "txtContactLastName";
     this.txtContactLastName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtContactLastName.Size          = new System.Drawing.Size(145, 20);
     this.txtContactLastName.TabIndex      = 3;
     this.txtContactLastName.TextChanged  += new System.EventHandler(this.txtContactLastName_TextChanged);
     //
     // txtContactName
     //
     this.txtContactName.AcceptsReturn = true;
     this.txtContactName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtContactName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtContactName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtContactName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtContactName.Location      = new System.Drawing.Point(88, 48);
     this.txtContactName.MaxLength     = 0;
     this.txtContactName.Name          = "txtContactName";
     this.txtContactName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtContactName.Size          = new System.Drawing.Size(145, 20);
     this.txtContactName.TabIndex      = 2;
     this.txtContactName.TextChanged  += new System.EventHandler(this.txtContactName_TextChanged);
     //
     // cmdProviders
     //
     this.cmdProviders.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdProviders.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdProviders.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdProviders.Location                = new System.Drawing.Point(240, 16);
     this.cmdProviders.Name                    = "cmdProviders";
     this.cmdProviders.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdProviders.Size                    = new System.Drawing.Size(25, 21);
     this.cmdProviders.TabIndex                = 14;
     this.cmdProviders.TabStop                 = false;
     this.cmdProviders.Text                    = "...";
     this.cmdProviders.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdProviders.UseVisualStyleBackColor = false;
     this.cmdProviders.Click                  += new System.EventHandler(this.cmdProviders_Click);
     //
     // txtProviderName
     //
     this.txtProviderName.AcceptsReturn = true;
     this.txtProviderName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtProviderName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtProviderName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtProviderName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtProviderName.Location      = new System.Drawing.Point(88, 16);
     this.txtProviderName.MaxLength     = 0;
     this.txtProviderName.Name          = "txtProviderName";
     this.txtProviderName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtProviderName.Size          = new System.Drawing.Size(145, 20);
     this.txtProviderName.TabIndex      = 0;
     this.txtProviderName.TextChanged  += new System.EventHandler(this.txtProviderName_TextChanged);
     //
     // dtFrom
     //
     this.dtFrom.Checked       = false;
     this.dtFrom.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtFrom.Location      = new System.Drawing.Point(136, 80);
     this.dtFrom.Name          = "dtFrom";
     this.dtFrom.Size          = new System.Drawing.Size(97, 20);
     this.dtFrom.TabIndex      = 4;
     this.dtFrom.ValueChanged += new System.EventHandler(this.dtFrom_ValueChanged);
     //
     // dtTo
     //
     this.dtTo.Checked       = false;
     this.dtTo.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtTo.Location      = new System.Drawing.Point(384, 80);
     this.dtTo.Name          = "dtTo";
     this.dtTo.Size          = new System.Drawing.Size(97, 20);
     this.dtTo.TabIndex      = 5;
     this.dtTo.ValueChanged += new System.EventHandler(this.dtTo_ValueChanged);
     //
     // Label5
     //
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(288, 16);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(41, 17);
     this.Label5.TabIndex    = 24;
     this.Label5.Text        = "Status:";
     //
     // Label8
     //
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(256, 112);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(89, 17);
     this.Label8.TabIndex    = 21;
     this.Label8.Text        = "Product code:";
     //
     // Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(8, 112);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(89, 17);
     this.Label1.TabIndex    = 20;
     this.Label1.Text        = "Order number:";
     //
     // Label6
     //
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(8, 80);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(65, 17);
     this.Label6.TabIndex    = 19;
     this.Label6.Text        = "Date range:";
     //
     // Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(240, 48);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(97, 17);
     this.Label3.TabIndex    = 17;
     this.Label3.Text        = "Contact last name:";
     //
     // Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(8, 16);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(89, 17);
     this.Label4.TabIndex    = 16;
     this.Label4.Text        = "Supplier name:";
     //
     // Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(8, 48);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(89, 17);
     this.Label2.TabIndex    = 15;
     this.Label2.Text        = "Contact name:";
     //
     // frmReceptionApproval
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(523, 496);
     this.Controls.Add(this.cmdApprove);
     this.Controls.Add(this.cmdInfo);
     this.Controls.Add(this.fgOrders);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(this.cmdCancel);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.Frame1);
     this.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Location    = new System.Drawing.Point(8, 30);
     this.MaximizeBox = true;
     this.MinimizeBox = true;
     this.Name        = "frmReceptionApproval";
     this.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Text        = "Add Stock to Inventory";
     this.listBoxComboBoxHelper1.SetItemData(this.cmbStatus, new int[] { 0, 0, 0, 0 });
     this.Closed += new System.EventHandler(this.frmReceptionApproval_Closed);
     this.Load   += new System.EventHandler(this.frmReceptionApproval_Load);
     ((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).EndInit();
     this.sbStatusBar.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Example #9
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmOrderRequest));
     this.ToolTipMain         = new System.Windows.Forms.ToolTip(this.components);
     this.txtSubTotal         = new System.Windows.Forms.TextBox();
     this.txtTotal            = new System.Windows.Forms.TextBox();
     this.txtTotalTax         = new System.Windows.Forms.TextBox();
     this.txtFreightCharge    = new System.Windows.Forms.TextBox();
     this.txtSalesTax         = new System.Windows.Forms.TextBox();
     this.txtEntry            = new System.Windows.Forms.TextBox();
     this.fgProducts          = new UpgradeHelpers.Windows.Forms.DataGridViewFlex(this.components);
     this.sbStatusBar         = new System.Windows.Forms.StatusStrip();
     this._sbStatusBar_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.dtRequired          = new System.Windows.Forms.DateTimePicker();
     this.cmdSave             = new System.Windows.Forms.Button();
     this.cmdClose            = new System.Windows.Forms.Button();
     this.cmdAddProducts      = new System.Windows.Forms.Button();
     this.Frame1                      = new System.Windows.Forms.GroupBox();
     this.txtContactLastName          = new System.Windows.Forms.TextBox();
     this.txtContactName              = new System.Windows.Forms.TextBox();
     this.cmdCustomers                = new System.Windows.Forms.Button();
     this.txtCompanyName              = new System.Windows.Forms.TextBox();
     this.lvCustomers                 = new System.Windows.Forms.ListView();
     this._lvCustomers_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
     this._lvCustomers_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
     this._lvCustomers_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
     this._lvCustomers_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
     this._lvCustomers_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
     this._lvCustomers_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
     this._lvCustomers_ColumnHeader_7 = new System.Windows.Forms.ColumnHeader();
     this.Label3                      = new System.Windows.Forms.Label();
     this.Label4                      = new System.Windows.Forms.Label();
     this.Label2                      = new System.Windows.Forms.Label();
     this.Frame2                      = new System.Windows.Forms.GroupBox();
     this.txtCustomerContact          = new System.Windows.Forms.TextBox();
     this.txtCustomerCompany          = new System.Windows.Forms.TextBox();
     this.Label5                      = new System.Windows.Forms.Label();
     this.Label1                      = new System.Windows.Forms.Label();
     this.Text3      = new System.Windows.Forms.TextBox();
     this.dtPromised = new System.Windows.Forms.DateTimePicker();
     this.Label13    = new System.Windows.Forms.Label();
     this.Label12    = new System.Windows.Forms.Label();
     this.Label11    = new System.Windows.Forms.Label();
     this.Label10    = new System.Windows.Forms.Label();
     this.Label9     = new System.Windows.Forms.Label();
     this.Label8     = new System.Windows.Forms.Label();
     this.Label7     = new System.Windows.Forms.Label();
     this.Label6     = new System.Windows.Forms.Label();
     this.sbStatusBar.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.lvCustomers.SuspendLayout();
     this.Frame2.SuspendLayout();
     this.SuspendLayout();
     this.listViewHelper1 = new UpgradeHelpers.VB6.Gui.ListViewHelper(this.components);
     ((System.ComponentModel.ISupportInitialize) this.listViewHelper1).BeginInit();
     //
     // txtSubTotal
     //
     this.txtSubTotal.AcceptsReturn = true;
     this.txtSubTotal.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtSubTotal.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSubTotal.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSubTotal.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSubTotal.Location      = new System.Drawing.Point(360, 520);
     this.txtSubTotal.MaxLength     = 0;
     this.txtSubTotal.Name          = "txtSubTotal";
     this.txtSubTotal.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSubTotal.Size          = new System.Drawing.Size(145, 20);
     this.txtSubTotal.TabIndex      = 33;
     this.txtSubTotal.TabStop       = false;
     this.txtSubTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotal
     //
     this.txtTotal.AcceptsReturn = true;
     this.txtTotal.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtTotal.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtTotal.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtTotal.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtTotal.Location      = new System.Drawing.Point(96, 544);
     this.txtTotal.MaxLength     = 0;
     this.txtTotal.Name          = "txtTotal";
     this.txtTotal.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtTotal.Size          = new System.Drawing.Size(145, 20);
     this.txtTotal.TabIndex      = 31;
     this.txtTotal.TabStop       = false;
     this.txtTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotalTax
     //
     this.txtTotalTax.AcceptsReturn = true;
     this.txtTotalTax.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtTotalTax.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtTotalTax.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtTotalTax.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtTotalTax.Location      = new System.Drawing.Point(360, 496);
     this.txtTotalTax.MaxLength     = 0;
     this.txtTotalTax.Name          = "txtTotalTax";
     this.txtTotalTax.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtTotalTax.Size          = new System.Drawing.Size(145, 20);
     this.txtTotalTax.TabIndex      = 29;
     this.txtTotalTax.TabStop       = false;
     this.txtTotalTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtFreightCharge
     //
     this.txtFreightCharge.AcceptsReturn = true;
     this.txtFreightCharge.BackColor     = System.Drawing.SystemColors.Window;
     this.txtFreightCharge.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtFreightCharge.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtFreightCharge.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtFreightCharge.Location      = new System.Drawing.Point(96, 520);
     this.txtFreightCharge.MaxLength     = 0;
     this.txtFreightCharge.Name          = "txtFreightCharge";
     this.txtFreightCharge.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtFreightCharge.Size          = new System.Drawing.Size(145, 20);
     this.txtFreightCharge.TabIndex      = 8;
     this.txtFreightCharge.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtFreightCharge.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtFreightCharge_KeyPress);
     this.txtFreightCharge.TextChanged  += new System.EventHandler(this.txtFreightCharge_TextChanged);
     //
     // txtSalesTax
     //
     this.txtSalesTax.AcceptsReturn = true;
     this.txtSalesTax.BackColor     = System.Drawing.SystemColors.Window;
     this.txtSalesTax.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSalesTax.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSalesTax.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSalesTax.Location      = new System.Drawing.Point(96, 496);
     this.txtSalesTax.MaxLength     = 0;
     this.txtSalesTax.Name          = "txtSalesTax";
     this.txtSalesTax.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSalesTax.Size          = new System.Drawing.Size(145, 20);
     this.txtSalesTax.TabIndex      = 7;
     this.txtSalesTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtSalesTax.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtSalesTax_KeyPress);
     this.txtSalesTax.TextChanged  += new System.EventHandler(this.txtSalesTax_TextChanged);
     //
     // txtEntry
     //
     this.txtEntry.AcceptsReturn = true;
     this.txtEntry.BackColor     = System.Drawing.SystemColors.Window;
     this.txtEntry.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtEntry.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtEntry.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtEntry.Location      = new System.Drawing.Point(96, 472);
     this.txtEntry.MaxLength     = 0;
     this.txtEntry.Name          = "txtEntry";
     this.txtEntry.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtEntry.Size          = new System.Drawing.Size(145, 19);
     this.txtEntry.TabIndex      = 26;
     this.txtEntry.KeyDown      += new System.Windows.Forms.KeyEventHandler(this.txtEntry_KeyDown);
     this.txtEntry.KeyPress     += new System.Windows.Forms.KeyPressEventHandler(this.txtEntry_KeyPress);
     this.txtEntry.Leave        += new System.EventHandler(this.txtEntry_Leave);
     //
     // fgProducts
     //
     this.fgProducts.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.fgProducts.ColumnsCount = 0;
     this.fgProducts.FixedColumns = 0;
     this.fgProducts.FixedRows    = 0;
     this.fgProducts.Location     = new System.Drawing.Point(8, 288);
     this.fgProducts.Name         = "fgProducts";
     this.fgProducts.Size         = new System.Drawing.Size(505, 177);
     this.fgProducts.TabIndex     = 6;
     this.fgProducts.CellLeave   += new System.Windows.Forms.DataGridViewCellEventHandler(this.fgProducts_CellLeave);
     this.fgProducts.Click       += new System.EventHandler(this.fgProducts_Click);
     this.fgProducts.KeyPress    += new System.Windows.Forms.KeyPressEventHandler(this.fgProducts_KeyPress);
     //
     // sbStatusBar
     //
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 630);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(535, 25);
     this.sbStatusBar.TabIndex         = 25;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this._sbStatusBar_Panel1 });
     //
     // _sbStatusBar_Panel1
     //
     this._sbStatusBar_Panel1.AutoSize           = true;
     this._sbStatusBar_Panel1.AutoSize           = false;
     this._sbStatusBar_Panel1.BorderSides        = (System.Windows.Forms.ToolStripStatusLabelBorderSides)(System.Windows.Forms.ToolStripStatusLabelBorderSides.Left | System.Windows.Forms.ToolStripStatusLabelBorderSides.Top | System.Windows.Forms.ToolStripStatusLabelBorderSides.Right | System.Windows.Forms.ToolStripStatusLabelBorderSides.Bottom);
     this._sbStatusBar_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this._sbStatusBar_Panel1.DoubleClickEnabled = true;
     this._sbStatusBar_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this._sbStatusBar_Panel1.Size              = new System.Drawing.Size(517, 25);
     this._sbStatusBar_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this._sbStatusBar_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // dtRequired
     //
     this.dtRequired.Checked       = false;
     this.dtRequired.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtRequired.Location      = new System.Drawing.Point(120, 248);
     this.dtRequired.Name          = "dtRequired";
     this.dtRequired.Size          = new System.Drawing.Size(97, 20);
     this.dtRequired.TabIndex      = 4;
     this.dtRequired.ValueChanged += new System.EventHandler(this.dtRequired_ValueChanged);
     //
     // cmdSave
     //
     this.cmdSave.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdSave.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdSave.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdSave.Location                = new System.Drawing.Point(328, 568);
     this.cmdSave.Name                    = "cmdSave";
     this.cmdSave.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdSave.Size                    = new System.Drawing.Size(89, 25);
     this.cmdSave.TabIndex                = 9;
     this.cmdSave.Text                    = "&Save";
     this.cmdSave.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdSave.UseVisualStyleBackColor = false;
     this.cmdSave.Click                  += new System.EventHandler(this.cmdSave_Click);
     //
     // 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, 568);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(89, 25);
     this.cmdClose.TabIndex                = 10;
     this.cmdClose.Text                    = "&Close";
     this.cmdClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdClose.UseVisualStyleBackColor = false;
     this.cmdClose.Click                  += new System.EventHandler(this.cmdClose_Click);
     //
     // cmdAddProducts
     //
     this.cmdAddProducts.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdAddProducts.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdAddProducts.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdAddProducts.Location                = new System.Drawing.Point(488, 264);
     this.cmdAddProducts.Name                    = "cmdAddProducts";
     this.cmdAddProducts.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdAddProducts.Size                    = new System.Drawing.Size(25, 21);
     this.cmdAddProducts.TabIndex                = 22;
     this.cmdAddProducts.TabStop                 = false;
     this.cmdAddProducts.Text                    = "...";
     this.cmdAddProducts.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdAddProducts.UseVisualStyleBackColor = false;
     this.cmdAddProducts.Click                  += new System.EventHandler(this.cmdAddProducts_Click);
     //
     // Frame1
     //
     this.Frame1.BackColor = System.Drawing.SystemColors.Control;
     this.Frame1.Controls.Add(this.txtContactLastName);
     this.Frame1.Controls.Add(this.txtContactName);
     this.Frame1.Controls.Add(this.cmdCustomers);
     this.Frame1.Controls.Add(this.txtCompanyName);
     this.Frame1.Controls.Add(this.lvCustomers);
     this.Frame1.Controls.Add(this.Label3);
     this.Frame1.Controls.Add(this.Label4);
     this.Frame1.Controls.Add(this.Label2);
     this.Frame1.Enabled     = true;
     this.Frame1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame1.Location    = new System.Drawing.Point(8, 8);
     this.Frame1.Name        = "Frame1";
     this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Size        = new System.Drawing.Size(505, 169);
     this.Frame1.TabIndex    = 13;
     this.Frame1.Text        = "Search customer";
     this.Frame1.Visible     = true;
     //
     // txtContactLastName
     //
     this.txtContactLastName.AcceptsReturn = true;
     this.txtContactLastName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtContactLastName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtContactLastName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtContactLastName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtContactLastName.Location      = new System.Drawing.Point(336, 48);
     this.txtContactLastName.MaxLength     = 0;
     this.txtContactLastName.Name          = "txtContactLastName";
     this.txtContactLastName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtContactLastName.Size          = new System.Drawing.Size(145, 20);
     this.txtContactLastName.TabIndex      = 2;
     this.txtContactLastName.TextChanged  += new System.EventHandler(this.txtContactLastName_TextChanged);
     //
     // txtContactName
     //
     this.txtContactName.AcceptsReturn = true;
     this.txtContactName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtContactName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtContactName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtContactName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtContactName.Location      = new System.Drawing.Point(88, 48);
     this.txtContactName.MaxLength     = 0;
     this.txtContactName.Name          = "txtContactName";
     this.txtContactName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtContactName.Size          = new System.Drawing.Size(145, 20);
     this.txtContactName.TabIndex      = 1;
     this.txtContactName.TextChanged  += new System.EventHandler(this.txtContactName_TextChanged);
     //
     // cmdCustomers
     //
     this.cmdCustomers.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCustomers.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdCustomers.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCustomers.Location                = new System.Drawing.Point(456, 16);
     this.cmdCustomers.Name                    = "cmdCustomers";
     this.cmdCustomers.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCustomers.Size                    = new System.Drawing.Size(25, 21);
     this.cmdCustomers.TabIndex                = 14;
     this.cmdCustomers.TabStop                 = false;
     this.cmdCustomers.Text                    = "...";
     this.cmdCustomers.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCustomers.UseVisualStyleBackColor = false;
     this.cmdCustomers.Click                  += new System.EventHandler(this.cmdCustomers_Click);
     //
     // txtCompanyName
     //
     this.txtCompanyName.AcceptsReturn = true;
     this.txtCompanyName.BackColor     = System.Drawing.SystemColors.Window;
     this.txtCompanyName.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCompanyName.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCompanyName.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCompanyName.Location      = new System.Drawing.Point(88, 16);
     this.txtCompanyName.MaxLength     = 0;
     this.txtCompanyName.Name          = "txtCompanyName";
     this.txtCompanyName.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCompanyName.Size          = new System.Drawing.Size(145, 20);
     this.txtCompanyName.TabIndex      = 0;
     this.txtCompanyName.TextChanged  += new System.EventHandler(this.txtCompanyName_TextChanged);
     //
     // lvCustomers
     //
     this.lvCustomers.BackColor     = System.Drawing.SystemColors.Window;
     this.lvCustomers.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvCustomers.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.lvCustomers.FullRowSelect = true;
     this.lvCustomers.GridLines     = true;
     this.lvCustomers.HideSelection = false;
     this.lvCustomers.HotTracking   = true;
     this.lvCustomers.LabelEdit     = false;
     this.lvCustomers.Location      = new System.Drawing.Point(8, 80);
     this.lvCustomers.Name          = "lvCustomers";
     this.lvCustomers.Size          = new System.Drawing.Size(489, 81);
     this.lvCustomers.TabIndex      = 3;
     this.lvCustomers.View          = System.Windows.Forms.View.Details;
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_1);
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_2);
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_3);
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_4);
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_5);
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_6);
     this.lvCustomers.Columns.Add(this._lvCustomers_ColumnHeader_7);
     //
     // _lvCustomers_ColumnHeader_1
     //
     this._lvCustomers_ColumnHeader_1.Text  = "Customer ID";
     this._lvCustomers_ColumnHeader_1.Width = 97;
     //
     // _lvCustomers_ColumnHeader_2
     //
     this._lvCustomers_ColumnHeader_2.Text  = "Company Name";
     this._lvCustomers_ColumnHeader_2.Width = 97;
     //
     // _lvCustomers_ColumnHeader_3
     //
     this._lvCustomers_ColumnHeader_3.Text  = "Contact Name";
     this._lvCustomers_ColumnHeader_3.Width = 97;
     //
     // _lvCustomers_ColumnHeader_4
     //
     this._lvCustomers_ColumnHeader_4.Text  = "Contact Last Name";
     this._lvCustomers_ColumnHeader_4.Width = 97;
     //
     // _lvCustomers_ColumnHeader_5
     //
     this._lvCustomers_ColumnHeader_5.Text  = "City";
     this._lvCustomers_ColumnHeader_5.Width = 97;
     //
     // _lvCustomers_ColumnHeader_6
     //
     this._lvCustomers_ColumnHeader_6.Text  = "State";
     this._lvCustomers_ColumnHeader_6.Width = 97;
     //
     // _lvCustomers_ColumnHeader_7
     //
     this._lvCustomers_ColumnHeader_7.Text  = "Country";
     this._lvCustomers_ColumnHeader_7.Width = 97;
     //
     // Label3
     //
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(240, 48);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(97, 17);
     this.Label3.TabIndex    = 17;
     this.Label3.Text        = "Contact last name:";
     //
     // Label4
     //
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label4.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label4.Location    = new System.Drawing.Point(8, 16);
     this.Label4.Name        = "Label4";
     this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label4.Size        = new System.Drawing.Size(89, 17);
     this.Label4.TabIndex    = 16;
     this.Label4.Text        = "Company name:";
     //
     // Label2
     //
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Location    = new System.Drawing.Point(8, 48);
     this.Label2.Name        = "Label2";
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.Size        = new System.Drawing.Size(89, 17);
     this.Label2.TabIndex    = 15;
     this.Label2.Text        = "Contact name:";
     //
     // Frame2
     //
     this.Frame2.BackColor = System.Drawing.SystemColors.Control;
     this.Frame2.Controls.Add(this.txtCustomerContact);
     this.Frame2.Controls.Add(this.txtCustomerCompany);
     this.Frame2.Controls.Add(this.Label5);
     this.Frame2.Controls.Add(this.Label1);
     this.Frame2.Enabled     = true;
     this.Frame2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame2.Location    = new System.Drawing.Point(8, 184);
     this.Frame2.Name        = "Frame2";
     this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Size        = new System.Drawing.Size(505, 49);
     this.Frame2.TabIndex    = 12;
     this.Frame2.Text        = "Customer";
     this.Frame2.Visible     = true;
     //
     // txtCustomerContact
     //
     this.txtCustomerContact.AcceptsReturn = true;
     this.txtCustomerContact.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtCustomerContact.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCustomerContact.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomerContact.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCustomerContact.Location      = new System.Drawing.Point(288, 16);
     this.txtCustomerContact.MaxLength     = 0;
     this.txtCustomerContact.Name          = "txtCustomerContact";
     this.txtCustomerContact.ReadOnly      = true;
     this.txtCustomerContact.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCustomerContact.Size          = new System.Drawing.Size(209, 20);
     this.txtCustomerContact.TabIndex      = 21;
     this.txtCustomerContact.TabStop       = false;
     //
     // txtCustomerCompany
     //
     this.txtCustomerCompany.AcceptsReturn = true;
     this.txtCustomerCompany.BackColor     = System.Drawing.SystemColors.Menu;
     this.txtCustomerCompany.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtCustomerCompany.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtCustomerCompany.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtCustomerCompany.Location      = new System.Drawing.Point(72, 16);
     this.txtCustomerCompany.MaxLength     = 0;
     this.txtCustomerCompany.Name          = "txtCustomerCompany";
     this.txtCustomerCompany.ReadOnly      = true;
     this.txtCustomerCompany.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtCustomerCompany.Size          = new System.Drawing.Size(145, 20);
     this.txtCustomerCompany.TabIndex      = 20;
     this.txtCustomerCompany.TabStop       = false;
     //
     // Label5
     //
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label5.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label5.Location    = new System.Drawing.Point(8, 16);
     this.Label5.Name        = "Label5";
     this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label5.Size        = new System.Drawing.Size(57, 17);
     this.Label5.TabIndex    = 19;
     this.Label5.Text        = "Company:";
     //
     // Label1
     //
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Location    = new System.Drawing.Point(232, 16);
     this.Label1.Name        = "Label1";
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.Size        = new System.Drawing.Size(57, 17);
     this.Label1.TabIndex    = 18;
     this.Label1.Text        = "Contact:";
     //
     // Text3
     //
     this.Text3.AcceptsReturn = true;
     this.Text3.BackColor     = System.Drawing.SystemColors.Window;
     this.Text3.BorderStyle   = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Text3.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.Text3.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.Text3.Location      = new System.Drawing.Point(120, 152);
     this.Text3.MaxLength     = 0;
     this.Text3.Name          = "Text3";
     this.Text3.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.Text3.Size          = new System.Drawing.Size(145, 20);
     this.Text3.TabIndex      = 11;
     //
     // dtPromised
     //
     this.dtPromised.Checked       = false;
     this.dtPromised.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtPromised.Location      = new System.Drawing.Point(352, 248);
     this.dtPromised.Name          = "dtPromised";
     this.dtPromised.Size          = new System.Drawing.Size(97, 20);
     this.dtPromised.TabIndex      = 5;
     this.dtPromised.ValueChanged += new System.EventHandler(this.dtPromised_ValueChanged);
     //
     // Label13
     //
     this.Label13.BackColor   = System.Drawing.SystemColors.Control;
     this.Label13.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label13.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label13.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label13.Location    = new System.Drawing.Point(16, 472);
     this.Label13.Name        = "Label13";
     this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label13.Size        = new System.Drawing.Size(81, 17);
     this.Label13.TabIndex    = 35;
     this.Label13.Text        = "Line quantity:";
     //
     // Label12
     //
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label12.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label12.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label12.Location    = new System.Drawing.Point(16, 520);
     this.Label12.Name        = "Label12";
     this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label12.Size        = new System.Drawing.Size(89, 17);
     this.Label12.TabIndex    = 34;
     this.Label12.Text        = "Freight Charge:";
     //
     // Label11
     //
     this.Label11.BackColor   = System.Drawing.SystemColors.Control;
     this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label11.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label11.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label11.Location    = new System.Drawing.Point(16, 544);
     this.Label11.Name        = "Label11";
     this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label11.Size        = new System.Drawing.Size(89, 17);
     this.Label11.TabIndex    = 32;
     this.Label11.Text        = "Total:";
     //
     // Label10
     //
     this.Label10.BackColor   = System.Drawing.SystemColors.Control;
     this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label10.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label10.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label10.Location    = new System.Drawing.Point(280, 496);
     this.Label10.Name        = "Label10";
     this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label10.Size        = new System.Drawing.Size(89, 17);
     this.Label10.TabIndex    = 30;
     this.Label10.Text        = "Total Tax:";
     //
     // Label9
     //
     this.Label9.BackColor   = System.Drawing.SystemColors.Control;
     this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label9.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label9.Location    = new System.Drawing.Point(280, 520);
     this.Label9.Name        = "Label9";
     this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label9.Size        = new System.Drawing.Size(89, 17);
     this.Label9.TabIndex    = 28;
     this.Label9.Text        = "Sub Total:";
     //
     // Label8
     //
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(16, 496);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(89, 17);
     this.Label8.TabIndex    = 27;
     this.Label8.Text        = "Sales Tax:";
     //
     // Label7
     //
     this.Label7.BackColor   = System.Drawing.SystemColors.Control;
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label7.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label7.Location    = new System.Drawing.Point(256, 248);
     this.Label7.Name        = "Label7";
     this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label7.Size        = new System.Drawing.Size(105, 17);
     this.Label7.TabIndex    = 24;
     this.Label7.Text        = "Promised by date:";
     //
     // Label6
     //
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(8, 248);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(105, 17);
     this.Label6.TabIndex    = 23;
     this.Label6.Text        = "Required by date:";
     //
     // frmOrderRequest
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(535, 655);
     this.Controls.Add(this.txtSubTotal);
     this.Controls.Add(this.txtTotal);
     this.Controls.Add(this.txtTotalTax);
     this.Controls.Add(this.txtFreightCharge);
     this.Controls.Add(this.txtSalesTax);
     this.Controls.Add(this.txtEntry);
     this.Controls.Add(this.fgProducts);
     this.Controls.Add(this.sbStatusBar);
     this.Controls.Add(this.dtRequired);
     this.Controls.Add(this.cmdSave);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.cmdAddProducts);
     this.Controls.Add(this.Frame1);
     this.Controls.Add(this.Frame2);
     this.Controls.Add(this.Text3);
     this.Controls.Add(this.dtPromised);
     this.Controls.Add(this.Label13);
     this.Controls.Add(this.Label12);
     this.Controls.Add(this.Label11);
     this.Controls.Add(this.Label10);
     this.Controls.Add(this.Label9);
     this.Controls.Add(this.Label8);
     this.Controls.Add(this.Label7);
     this.Controls.Add(this.Label6);
     this.Cursor       = System.Windows.Forms.Cursors.Default;
     this.Location     = new System.Drawing.Point(8, 30);
     this.MaximizeBox  = true;
     this.MinimizeBox  = true;
     this.Name         = "frmOrderRequest";
     this.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this.Text         = "Create Order";
     this.Closed      += new System.EventHandler(this.frmOrderRequest_Closed);
     this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.frmOrderRequest_FormClosing);
     this.Load        += new System.EventHandler(this.frmOrderRequest_Load);
     this.listViewHelper1.SetItemClickMethod(this.lvCustomers, "lvCustomers_ItemClick");
     this.listViewHelper1.SetCorrectEventsBehavior(this.lvCustomers, true);
     ((System.ComponentModel.ISupportInitialize) this.listViewHelper1).EndInit();
     this.sbStatusBar.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.lvCustomers.ResumeLayout(false);
     this.Frame2.ResumeLayout(false);
     this.ResumeLayout(false);
 }