private void MakeTextBoxVisible(TextBox txtBox, UpgradeHelpers.DataGridViewFlex grid)
 {
     txtBox.Text = Convert.ToString(grid[grid.CurrentRowIndex, grid.CurrentColumnIndex].Value);
     //txtBox.Move .CellLeft + .Left, .CellTop + .Top, .CellWidth, .CellHeight
     txtBox.Visible = true;
     txtBox.Enabled = true;
     //DoEvents
     txtBox.Focus();
     modFunctions.SelectAll(txtBox);
 }
Beispiel #2
0
        private void MakeTextBoxVisible(TextBox txtBox, UpgradeHelpers.DataGridViewFlex grid)
        {
            if (grid.CurrentRowIndex < 0 || grid.CurrentColumnIndex < 0)
            {
                return;
            }
            txtBox.Text    = Convert.ToString(grid[grid.CurrentRowIndex, grid.CurrentColumnIndex].Value);
            txtBox.Enabled = true;

            txtBox.Focus();
            Application.DoEvents();
            editingQuantity = true;
        }
        private void EditKeyCode(UpgradeHelpers.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(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.DataGridViewFlex(this.components);
     this.sbStatusBar = new System.Windows.Forms.StatusStrip();
     this.sbStatusBar_Panels_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.Gui.ListControlHelper(this.components);
     ((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).BeginInit();
     //
     // cmdApprove
     //
     this.cmdApprove.AllowDrop               = true;
     this.cmdApprove.BackColor               = System.Drawing.SystemColors.Control;
     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";
     this.cmdApprove.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdApprove.UseVisualStyleBackColor = false;
     this.cmdApprove.Click                  += new System.EventHandler(this.cmdApprove_Click);
     //
     // cmdInfo
     //
     this.cmdInfo.AllowDrop               = true;
     this.cmdInfo.BackColor               = System.Drawing.SystemColors.Control;
     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                    = "&Info";
     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.AllowDrop         = true;
     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.AllowDrop        = true;
     this.sbStatusBar.BackColor        = System.Drawing.SystemColors.Control;
     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_Panels_Panel1 });
     //
     // sbStatusBar_Panels_Panel1
     //
     this.sbStatusBar_Panels_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_Panels_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this.sbStatusBar_Panels_Panel1.DoubleClickEnabled = true;
     this.sbStatusBar_Panels_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this.sbStatusBar_Panels_Panel1.Size              = new System.Drawing.Size(523, 25);
     this.sbStatusBar_Panels_Panel1.Spring            = true;
     this.sbStatusBar_Panels_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this.sbStatusBar_Panels_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // cmdCancel
     //
     this.cmdCancel.AllowDrop               = true;
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     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";
     this.cmdCancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click                  += new System.EventHandler(this.cmdCancel_Click);
     //
     // cmdClose
     //
     this.cmdClose.AllowDrop               = true;
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     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.AllowDrop = true;
     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.AllowDrop        = true;
     this.cmbStatus.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbStatus.CausesValidation = true;
     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.AllowDrop        = true;
     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.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.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkTo.Visible          = true;
     //
     // chkFrom
     //
     this.chkFrom.AllowDrop        = true;
     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.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.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkFrom.Visible          = true;
     //
     // txtProductID
     //
     this.txtProductID.AcceptsReturn = true;
     this.txtProductID.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop               = true;
     this.cmdCustomers.BackColor               = System.Drawing.SystemColors.Control;
     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.AllowDrop     = 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.AllowDrop     = true;
     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.AllowDrop     = true;
     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.AllowDrop   = true;
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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(73, 17);
     this.Label8.TabIndex    = 21;
     this.Label8.Text        = "Product";
     //
     // Label1
     //
     this.Label1.AllowDrop   = true;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // Label6
     //
     this.Label6.AllowDrop   = true;
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Location    = new System.Drawing.Point(256, 48);
     this.Label3.Name        = "Label3";
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.Size        = new System.Drawing.Size(65, 17);
     this.Label3.TabIndex    = 17;
     this.Label3.Text        = "Last Name";
     //
     // Label4
     //
     this.Label4.AllowDrop   = true;
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // Label2
     //
     this.Label2.AllowDrop   = true;
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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        = "First Name";
     //
     // frmRequestApproval
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Location        = new System.Drawing.Point(3, 25);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmRequestApproval";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Create Invoice";
     this.listBoxComboBoxHelper1.SetItemData(this.cmbStatus, new int[] { 0, 0, 0, 0 });
     this.Closed += new System.EventHandler(this.Form_Closed);
     ((System.ComponentModel.ISupportInitialize) this.listBoxComboBoxHelper1).EndInit();
     this.sbStatusBar.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #5
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmPayment));
     this.ToolTipMain       = new System.Windows.Forms.ToolTip(this.components);
     this.gbPayments        = new System.Windows.Forms.GroupBox();
     this.cbCash            = new System.Windows.Forms.Button();
     this.cbCreditCard      = new System.Windows.Forms.Button();
     this.cbCheck           = new System.Windows.Forms.Button();
     this.cbGiftCard        = new System.Windows.Forms.Button();
     this.ucNumbers         = new ucNumbersPad();
     this.cbFinishPayment   = new System.Windows.Forms.Button();
     this.fgPayments        = new UpgradeHelpers.DataGridViewFlex(this.components);
     this.cb_Cancel         = new System.Windows.Forms.Button();
     this.lblPaymentReady   = new System.Windows.Forms.Label();
     this.lblChange         = new System.Windows.Forms.Label();
     this.lblChangeTitle    = new System.Windows.Forms.Label();
     this.lblPaidSoFarTitle = new System.Windows.Forms.Label();
     this.lblRemaining      = new System.Windows.Forms.Label();
     this.lblRemaingTitle   = new System.Windows.Forms.Label();
     this.gbPayments.SuspendLayout();
     this.SuspendLayout();
     this.commandButtonHelper1 = new UpgradeHelpers.Gui.CommandButtonHelper(this.components);
     //
     // gbPayments
     //
     this.gbPayments.AllowDrop = true;
     this.gbPayments.BackColor = System.Drawing.Color.White;
     this.gbPayments.Controls.Add(this.cbCash);
     this.gbPayments.Controls.Add(this.cbCreditCard);
     this.gbPayments.Controls.Add(this.cbCheck);
     this.gbPayments.Controls.Add(this.cbGiftCard);
     this.gbPayments.Controls.Add(this.ucNumbers);
     this.gbPayments.Enabled     = true;
     this.gbPayments.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.gbPayments.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.gbPayments.Location    = new System.Drawing.Point(16, 24);
     this.gbPayments.Name        = "gbPayments";
     this.gbPayments.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gbPayments.Size        = new System.Drawing.Size(729, 529);
     this.gbPayments.TabIndex    = 1;
     this.gbPayments.Text        = "Payments";
     this.gbPayments.Visible     = true;
     //
     // cbCash
     //
     this.cbCash.AllowDrop               = true;
     this.cbCash.BackColor               = System.Drawing.Color.White;
     this.cbCash.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbCash.Location                = new System.Drawing.Point(368, 56);
     this.cbCash.Name                    = "cbCash";
     this.cbCash.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbCash.Size                    = new System.Drawing.Size(313, 81);
     this.cbCash.TabIndex                = 3;
     this.cbCash.Text                    = "Cash";
     this.cbCash.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbCash.UseVisualStyleBackColor = false;
     this.cbCash.Click                  += new System.EventHandler(this.cbCash_Click);
     //
     // cbCreditCard
     //
     this.cbCreditCard.AllowDrop               = true;
     this.cbCreditCard.BackColor               = System.Drawing.Color.White;
     this.cbCreditCard.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbCreditCard.Location                = new System.Drawing.Point(368, 144);
     this.cbCreditCard.Name                    = "cbCreditCard";
     this.cbCreditCard.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbCreditCard.Size                    = new System.Drawing.Size(313, 81);
     this.cbCreditCard.TabIndex                = 4;
     this.cbCreditCard.Text                    = "Credit Card";
     this.cbCreditCard.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbCreditCard.UseVisualStyleBackColor = false;
     this.cbCreditCard.Click                  += new System.EventHandler(this.cbCreditCard_Click);
     //
     // cbCheck
     //
     this.cbCheck.AllowDrop               = true;
     this.cbCheck.BackColor               = System.Drawing.Color.White;
     this.cbCheck.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbCheck.Location                = new System.Drawing.Point(368, 232);
     this.cbCheck.Name                    = "cbCheck";
     this.cbCheck.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbCheck.Size                    = new System.Drawing.Size(313, 81);
     this.cbCheck.TabIndex                = 5;
     this.cbCheck.Text                    = "Check";
     this.cbCheck.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbCheck.UseVisualStyleBackColor = false;
     this.cbCheck.Click                  += new System.EventHandler(this.cbCheck_Click);
     //
     // cbGiftCard
     //
     this.cbGiftCard.AllowDrop               = true;
     this.cbGiftCard.BackColor               = System.Drawing.Color.White;
     this.cbGiftCard.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbGiftCard.Location                = new System.Drawing.Point(368, 320);
     this.cbGiftCard.Name                    = "cbGiftCard";
     this.cbGiftCard.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbGiftCard.Size                    = new System.Drawing.Size(313, 81);
     this.cbGiftCard.TabIndex                = 6;
     this.cbGiftCard.Text                    = "Gift Card";
     this.cbGiftCard.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbGiftCard.UseVisualStyleBackColor = false;
     this.cbGiftCard.Click                  += new System.EventHandler(this.cbGiftCard_Click);
     //
     // ucNumbers
     //
     this.ucNumbers.AllowDrop = true;
     this.ucNumbers.Location  = new System.Drawing.Point(8, 48);
     this.ucNumbers.Name      = "ucNumbers";
     this.ucNumbers.Size      = new System.Drawing.Size(361, 457);
     this.ucNumbers.TabIndex  = 2;
     //
     // cbFinishPayment
     //
     this.cbFinishPayment.AllowDrop               = true;
     this.cbFinishPayment.BackColor               = System.Drawing.Color.FromArgb(97, 44, 67);
     this.cbFinishPayment.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbFinishPayment.Location                = new System.Drawing.Point(624, 568);
     this.cbFinishPayment.Name                    = "cbFinishPayment";
     this.cbFinishPayment.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbFinishPayment.Size                    = new System.Drawing.Size(289, 81);
     this.cbFinishPayment.TabIndex                = 13;
     this.cbFinishPayment.Text                    = "Continue";
     this.cbFinishPayment.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbFinishPayment.UseVisualStyleBackColor = false;
     this.cbFinishPayment.Click                  += new System.EventHandler(this.cbFinishPayment_Click);
     //
     // fgPayments
     //
     this.fgPayments.AllowDrop                   = true;
     this.fgPayments.AllowUserToAddRows          = false;
     this.fgPayments.AllowUserToDeleteRows       = false;
     this.fgPayments.AllowUserToResizeColumns    = false;
     this.fgPayments.AllowUserToResizeRows       = false;
     this.fgPayments.BackgroundColor             = System.Drawing.Color.White;
     this.fgPayments.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.fgPayments.ColumnsCount                = 3;
     this.fgPayments.Font        = new System.Drawing.Font("Arial", 14.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.fgPayments.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.fgPayments.Location    = new System.Drawing.Point(816, 256);
     this.fgPayments.Name        = "fgPayments";
     this.fgPayments.ReadOnly    = true;
     this.fgPayments.RowsCount   = 1;
     this.fgPayments.Size        = new System.Drawing.Size(385, 281);
     this.fgPayments.StandardTab = true;
     this.fgPayments.TabIndex    = 12;
     //
     // cb_Cancel
     //
     this.cb_Cancel.AllowDrop               = true;
     this.cb_Cancel.BackColor               = System.Drawing.Color.White;
     this.cb_Cancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cb_Cancel.Location                = new System.Drawing.Point(928, 568);
     this.cb_Cancel.Name                    = "cb_Cancel";
     this.cb_Cancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cb_Cancel.Size                    = new System.Drawing.Size(265, 81);
     this.cb_Cancel.TabIndex                = 14;
     this.cb_Cancel.Text                    = "Cancel";
     this.cb_Cancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cb_Cancel.UseVisualStyleBackColor = false;
     this.cb_Cancel.Click                  += new System.EventHandler(this.cb_Cancel_Click);
     //
     // lblPaymentReady
     //
     this.lblPaymentReady.AllowDrop   = true;
     this.lblPaymentReady.BackColor   = System.Drawing.SystemColors.Control;
     this.lblPaymentReady.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblPaymentReady.Font        = new System.Drawing.Font("Arial", 24f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblPaymentReady.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblPaymentReady.Location    = new System.Drawing.Point(48, 184);
     this.lblPaymentReady.Name        = "lblPaymentReady";
     this.lblPaymentReady.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblPaymentReady.Size        = new System.Drawing.Size(401, 193);
     this.lblPaymentReady.TabIndex    = 10;
     this.lblPaymentReady.Text        = "Payment Ready. Press Continue to Print the Receipt";
     this.lblPaymentReady.Visible     = false;
     //
     // lblChange
     //
     this.lblChange.AllowDrop   = true;
     this.lblChange.BackColor   = System.Drawing.Color.White;
     this.lblChange.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblChange.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblChange.Location    = new System.Drawing.Point(832, 152);
     this.lblChange.Name        = "lblChange";
     this.lblChange.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChange.Size        = new System.Drawing.Size(361, 41);
     this.lblChange.TabIndex    = 9;
     this.lblChange.Text        = "$0.00";
     this.lblChange.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblChangeTitle
     //
     this.lblChangeTitle.AllowDrop   = true;
     this.lblChangeTitle.BackColor   = System.Drawing.Color.White;
     this.lblChangeTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblChangeTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblChangeTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblChangeTitle.Location    = new System.Drawing.Point(864, 104);
     this.lblChangeTitle.Name        = "lblChangeTitle";
     this.lblChangeTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblChangeTitle.Size        = new System.Drawing.Size(329, 49);
     this.lblChangeTitle.TabIndex    = 8;
     this.lblChangeTitle.Text        = "Change Due";
     this.lblChangeTitle.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblPaidSoFarTitle
     //
     this.lblPaidSoFarTitle.AllowDrop   = true;
     this.lblPaidSoFarTitle.BackColor   = System.Drawing.Color.White;
     this.lblPaidSoFarTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblPaidSoFarTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblPaidSoFarTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblPaidSoFarTitle.Location    = new System.Drawing.Point(864, 200);
     this.lblPaidSoFarTitle.Name        = "lblPaidSoFarTitle";
     this.lblPaidSoFarTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblPaidSoFarTitle.Size        = new System.Drawing.Size(329, 49);
     this.lblPaidSoFarTitle.TabIndex    = 11;
     this.lblPaidSoFarTitle.Text        = "Paid So Far";
     this.lblPaidSoFarTitle.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblRemaining
     //
     this.lblRemaining.AllowDrop   = true;
     this.lblRemaining.BackColor   = System.Drawing.Color.White;
     this.lblRemaining.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblRemaining.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblRemaining.Location    = new System.Drawing.Point(832, 56);
     this.lblRemaining.Name        = "lblRemaining";
     this.lblRemaining.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblRemaining.Size        = new System.Drawing.Size(361, 41);
     this.lblRemaining.TabIndex    = 7;
     this.lblRemaining.Text        = "$0.00";
     this.lblRemaining.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblRemaingTitle
     //
     this.lblRemaingTitle.AllowDrop   = true;
     this.lblRemaingTitle.BackColor   = System.Drawing.Color.White;
     this.lblRemaingTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblRemaingTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblRemaingTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblRemaingTitle.Location    = new System.Drawing.Point(864, 8);
     this.lblRemaingTitle.Name        = "lblRemaingTitle";
     this.lblRemaingTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblRemaingTitle.Size        = new System.Drawing.Size(329, 49);
     this.lblRemaingTitle.TabIndex    = 0;
     this.lblRemaingTitle.Text        = "Amount Remaining";
     this.lblRemaingTitle.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // frmPayment
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(0, 0);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(1219, 659);
     this.Controls.Add(this.gbPayments);
     this.Controls.Add(this.cbFinishPayment);
     this.Controls.Add(this.fgPayments);
     this.Controls.Add(this.cb_Cancel);
     this.Controls.Add(this.lblPaymentReady);
     this.Controls.Add(this.lblChange);
     this.Controls.Add(this.lblChangeTitle);
     this.Controls.Add(this.lblPaidSoFarTitle);
     this.Controls.Add(this.lblRemaining);
     this.Controls.Add(this.lblRemaingTitle);
     this.Font          = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.Location      = new System.Drawing.Point(4, 27);
     this.MaximizeBox   = true;
     this.MinimizeBox   = true;
     this.Name          = "frmPayment";
     this.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Pay";
     commandButtonHelper1.SetStyle(this.cbCash, 1);
     commandButtonHelper1.SetStyle(this.cbCreditCard, 1);
     commandButtonHelper1.SetStyle(this.cbCheck, 1);
     commandButtonHelper1.SetStyle(this.cbGiftCard, 1);
     commandButtonHelper1.SetStyle(this.cbFinishPayment, 1);
     commandButtonHelper1.SetStyle(this.cb_Cancel, 1);
     this.Closed += new System.EventHandler(this.Form_Closed);
     this.gbPayments.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #6
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSales));
     this.ToolTipMain       = new System.Windows.Forms.ToolTip(this.components);
     this.cbRePrint         = new System.Windows.Forms.Button();
     this.ucNumericKeyPad   = new ucNumbersPad();
     this.cbQuantity        = new System.Windows.Forms.Button();
     this.fgItems           = new UpgradeHelpers.DataGridViewFlex(this.components);
     this.gbCustomerInfo    = new System.Windows.Forms.GroupBox();
     this.lblCustomerInfo   = new System.Windows.Forms.Label();
     this.cbBreak           = new System.Windows.Forms.Button();
     this.cbLogOff          = new System.Windows.Forms.Button();
     this.cbVoidTransaction = new System.Windows.Forms.Button();
     this.cbVoidItem        = new System.Windows.Forms.Button();
     this.cbAddCustomer     = new System.Windows.Forms.Button();
     this.cbCustomerSearch  = new System.Windows.Forms.Button();
     this.cbPayment         = new System.Windows.Forms.Button();
     this.frSubTotals       = new System.Windows.Forms.GroupBox();
     this.lblTotal          = new System.Windows.Forms.Label();
     this.lblTax            = new System.Windows.Forms.Label();
     this.lblSubTotal       = new System.Windows.Forms.Label();
     this.lblTotalTitle     = new System.Windows.Forms.Label();
     this.lblTaxTitle       = new System.Windows.Forms.Label();
     this.lblSubTotalTitle  = new System.Windows.Forms.Label();
     this.picLogo           = new System.Windows.Forms.PictureBox();
     this.lblPOS            = new System.Windows.Forms.Label();
     this.lblPOSTitle       = new System.Windows.Forms.Label();
     this.lblCashier        = new System.Windows.Forms.Label();
     this.lblCashierTitle   = new System.Windows.Forms.Label();
     this.gbCustomerInfo.SuspendLayout();
     this.frSubTotals.SuspendLayout();
     this.SuspendLayout();
     this.commandButtonHelper1 = new UpgradeHelpers.Gui.CommandButtonHelper(this.components);
     //
     // cbRePrint
     //
     this.cbRePrint.AllowDrop               = true;
     this.cbRePrint.BackColor               = System.Drawing.Color.White;
     this.cbRePrint.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbRePrint.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbRePrint.Location                = new System.Drawing.Point(800, 384);
     this.cbRePrint.Name                    = "cbRePrint";
     this.cbRePrint.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbRePrint.Size                    = new System.Drawing.Size(185, 114);
     this.cbRePrint.TabIndex                = 7;
     this.cbRePrint.Text                    = "PRINT LAST TICKET";
     this.cbRePrint.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbRePrint.UseVisualStyleBackColor = false;
     this.cbRePrint.Click                  += new System.EventHandler(this.cbRePrint_Click);
     //
     // ucNumericKeyPad
     //
     this.ucNumericKeyPad.AllowDrop     = true;
     this.ucNumericKeyPad.Location      = new System.Drawing.Point(8, 464);
     this.ucNumericKeyPad.Name          = "ucNumericKeyPad";
     this.ucNumericKeyPad.Size          = new System.Drawing.Size(337, 417);
     this.ucNumericKeyPad.TabIndex      = 9;
     this.ucNumericKeyPad.OnEnterEvent += new ucNumbersPad.OnEnterEventHandler(this.ucNumericKeyPad_OnEnterEvent);
     //
     // cbQuantity
     //
     this.cbQuantity.AllowDrop               = true;
     this.cbQuantity.BackColor               = System.Drawing.Color.White;
     this.cbQuantity.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbQuantity.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbQuantity.Location                = new System.Drawing.Point(800, 264);
     this.cbQuantity.Name                    = "cbQuantity";
     this.cbQuantity.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbQuantity.Size                    = new System.Drawing.Size(185, 114);
     this.cbQuantity.TabIndex                = 5;
     this.cbQuantity.Text                    = "CHANGE QUANTITY";
     this.cbQuantity.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbQuantity.UseVisualStyleBackColor = false;
     this.cbQuantity.Click                  += new System.EventHandler(this.cbQuantity_Click);
     //
     // fgItems
     //
     this.fgItems.AllowDrop                   = true;
     this.fgItems.AllowUserToAddRows          = false;
     this.fgItems.AllowUserToDeleteRows       = false;
     this.fgItems.AllowUserToResizeColumns    = false;
     this.fgItems.AllowUserToResizeRows       = false;
     this.fgItems.BackgroundColor             = System.Drawing.Color.White;
     this.fgItems.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.fgItems.ColumnsCount                = 6;
     this.fgItems.FixedColumns                = 0;
     this.fgItems.FocusRect                   = UpgradeHelpers.FocusRectSettings.FocusNone;
     this.fgItems.Font          = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.fgItems.Location      = new System.Drawing.Point(8, 8);
     this.fgItems.Name          = "fgItems";
     this.fgItems.ReadOnly      = true;
     this.fgItems.RowsCount     = 1;
     this.fgItems.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.fgItems.Size          = new System.Drawing.Size(777, 449);
     this.fgItems.StandardTab   = true;
     this.fgItems.TabIndex      = 0;
     //
     // gbCustomerInfo
     //
     this.gbCustomerInfo.AllowDrop = true;
     this.gbCustomerInfo.BackColor = System.Drawing.Color.White;
     this.gbCustomerInfo.Controls.Add(this.lblCustomerInfo);
     this.gbCustomerInfo.Enabled     = true;
     this.gbCustomerInfo.Font        = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.gbCustomerInfo.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.gbCustomerInfo.Location    = new System.Drawing.Point(800, 136);
     this.gbCustomerInfo.Name        = "gbCustomerInfo";
     this.gbCustomerInfo.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.gbCustomerInfo.Size        = new System.Drawing.Size(393, 114);
     this.gbCustomerInfo.TabIndex    = 3;
     this.gbCustomerInfo.Text        = "Customer Info";
     this.gbCustomerInfo.Visible     = true;
     //
     // lblCustomerInfo
     //
     this.lblCustomerInfo.AllowDrop   = true;
     this.lblCustomerInfo.BackColor   = System.Drawing.Color.White;
     this.lblCustomerInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblCustomerInfo.Font        = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblCustomerInfo.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblCustomerInfo.Location    = new System.Drawing.Point(24, 40);
     this.lblCustomerInfo.Name        = "lblCustomerInfo";
     this.lblCustomerInfo.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCustomerInfo.Size        = new System.Drawing.Size(337, 49);
     this.lblCustomerInfo.TabIndex    = 4;
     //
     // cbBreak
     //
     this.cbBreak.AllowDrop               = true;
     this.cbBreak.BackColor               = System.Drawing.Color.White;
     this.cbBreak.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbBreak.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbBreak.Location                = new System.Drawing.Point(800, 504);
     this.cbBreak.Name                    = "cbBreak";
     this.cbBreak.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbBreak.Size                    = new System.Drawing.Size(185, 114);
     this.cbBreak.TabIndex                = 17;
     this.cbBreak.Text                    = "PAUSE";
     this.cbBreak.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbBreak.UseVisualStyleBackColor = false;
     this.cbBreak.Click                  += new System.EventHandler(this.cbBreak_Click);
     //
     // cbLogOff
     //
     this.cbLogOff.AllowDrop               = true;
     this.cbLogOff.BackColor               = System.Drawing.Color.White;
     this.cbLogOff.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbLogOff.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbLogOff.Location                = new System.Drawing.Point(1008, 504);
     this.cbLogOff.Name                    = "cbLogOff";
     this.cbLogOff.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbLogOff.Size                    = new System.Drawing.Size(185, 114);
     this.cbLogOff.TabIndex                = 18;
     this.cbLogOff.Text                    = "LOG OFF";
     this.cbLogOff.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbLogOff.UseVisualStyleBackColor = false;
     this.cbLogOff.Click                  += new System.EventHandler(this.cbLogOff_Click);
     //
     // cbVoidTransaction
     //
     this.cbVoidTransaction.AllowDrop               = true;
     this.cbVoidTransaction.BackColor               = System.Drawing.Color.White;
     this.cbVoidTransaction.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbVoidTransaction.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbVoidTransaction.Location                = new System.Drawing.Point(1008, 384);
     this.cbVoidTransaction.Name                    = "cbVoidTransaction";
     this.cbVoidTransaction.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbVoidTransaction.Size                    = new System.Drawing.Size(185, 114);
     this.cbVoidTransaction.TabIndex                = 8;
     this.cbVoidTransaction.Text                    = "VOID TRANSACTION";
     this.cbVoidTransaction.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbVoidTransaction.UseVisualStyleBackColor = false;
     this.cbVoidTransaction.Click                  += new System.EventHandler(this.cbVoidTransaction_Click);
     //
     // cbVoidItem
     //
     this.cbVoidItem.AllowDrop               = true;
     this.cbVoidItem.BackColor               = System.Drawing.Color.White;
     this.cbVoidItem.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbVoidItem.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbVoidItem.Location                = new System.Drawing.Point(1008, 264);
     this.cbVoidItem.Name                    = "cbVoidItem";
     this.cbVoidItem.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbVoidItem.Size                    = new System.Drawing.Size(185, 114);
     this.cbVoidItem.TabIndex                = 6;
     this.cbVoidItem.Text                    = "VOID ITEM";
     this.cbVoidItem.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbVoidItem.UseVisualStyleBackColor = false;
     this.cbVoidItem.Click                  += new System.EventHandler(this.cbVoidItem_Click);
     //
     // cbAddCustomer
     //
     this.cbAddCustomer.AllowDrop               = true;
     this.cbAddCustomer.BackColor               = System.Drawing.Color.White;
     this.cbAddCustomer.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbAddCustomer.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbAddCustomer.Location                = new System.Drawing.Point(800, 8);
     this.cbAddCustomer.Name                    = "cbAddCustomer";
     this.cbAddCustomer.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbAddCustomer.Size                    = new System.Drawing.Size(185, 114);
     this.cbAddCustomer.TabIndex                = 1;
     this.cbAddCustomer.Text                    = "ADD CUSTOMER";
     this.cbAddCustomer.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbAddCustomer.UseVisualStyleBackColor = false;
     this.cbAddCustomer.Click                  += new System.EventHandler(this.cbAddCustomer_Click);
     //
     // cbCustomerSearch
     //
     this.cbCustomerSearch.AllowDrop               = true;
     this.cbCustomerSearch.BackColor               = System.Drawing.Color.White;
     this.cbCustomerSearch.Font                    = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbCustomerSearch.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbCustomerSearch.Location                = new System.Drawing.Point(1008, 8);
     this.cbCustomerSearch.Name                    = "cbCustomerSearch";
     this.cbCustomerSearch.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbCustomerSearch.Size                    = new System.Drawing.Size(185, 114);
     this.cbCustomerSearch.TabIndex                = 2;
     this.cbCustomerSearch.Text                    = "CUSTOMER SEARCH";
     this.cbCustomerSearch.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbCustomerSearch.UseVisualStyleBackColor = false;
     this.cbCustomerSearch.Click                  += new System.EventHandler(this.cbCustomerSearch_Click);
     //
     // cbPayment
     //
     this.cbPayment.AllowDrop               = true;
     this.cbPayment.BackColor               = System.Drawing.Color.FromArgb(0, 192, 0);
     this.cbPayment.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbPayment.Location                = new System.Drawing.Point(360, 688);
     this.cbPayment.Name                    = "cbPayment";
     this.cbPayment.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbPayment.Size                    = new System.Drawing.Size(353, 73);
     this.cbPayment.TabIndex                = 21;
     this.cbPayment.Text                    = "PAY";
     this.cbPayment.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbPayment.UseVisualStyleBackColor = false;
     this.cbPayment.Click                  += new System.EventHandler(this.cbPayment_Click);
     //
     // frSubTotals
     //
     this.frSubTotals.AllowDrop = true;
     this.frSubTotals.BackColor = System.Drawing.Color.White;
     this.frSubTotals.Controls.Add(this.lblTotal);
     this.frSubTotals.Controls.Add(this.lblTax);
     this.frSubTotals.Controls.Add(this.lblSubTotal);
     this.frSubTotals.Controls.Add(this.lblTotalTitle);
     this.frSubTotals.Controls.Add(this.lblTaxTitle);
     this.frSubTotals.Controls.Add(this.lblSubTotalTitle);
     this.frSubTotals.Enabled     = true;
     this.frSubTotals.Font        = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.frSubTotals.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.frSubTotals.Location    = new System.Drawing.Point(360, 464);
     this.frSubTotals.Name        = "frSubTotals";
     this.frSubTotals.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.frSubTotals.Size        = new System.Drawing.Size(353, 217);
     this.frSubTotals.TabIndex    = 10;
     this.frSubTotals.Visible     = true;
     //
     // lblTotal
     //
     this.lblTotal.AllowDrop   = true;
     this.lblTotal.BackColor   = System.Drawing.Color.White;
     this.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblTotal.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblTotal.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblTotal.Location    = new System.Drawing.Point(168, 128);
     this.lblTotal.Name        = "lblTotal";
     this.lblTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblTotal.Size        = new System.Drawing.Size(129, 33);
     this.lblTotal.TabIndex    = 16;
     this.lblTotal.Text        = "0.00";
     this.lblTotal.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblTax
     //
     this.lblTax.AllowDrop   = true;
     this.lblTax.BackColor   = System.Drawing.Color.White;
     this.lblTax.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblTax.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblTax.Location    = new System.Drawing.Point(168, 80);
     this.lblTax.Name        = "lblTax";
     this.lblTax.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblTax.Size        = new System.Drawing.Size(129, 33);
     this.lblTax.TabIndex    = 14;
     this.lblTax.Text        = "0.00";
     this.lblTax.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblSubTotal
     //
     this.lblSubTotal.AllowDrop   = true;
     this.lblSubTotal.BackColor   = System.Drawing.Color.White;
     this.lblSubTotal.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblSubTotal.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblSubTotal.Location    = new System.Drawing.Point(168, 32);
     this.lblSubTotal.Name        = "lblSubTotal";
     this.lblSubTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblSubTotal.Size        = new System.Drawing.Size(129, 33);
     this.lblSubTotal.TabIndex    = 12;
     this.lblSubTotal.Text        = "0.00";
     this.lblSubTotal.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     // lblTotalTitle
     //
     this.lblTotalTitle.AllowDrop   = true;
     this.lblTotalTitle.BackColor   = System.Drawing.Color.White;
     this.lblTotalTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblTotalTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblTotalTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblTotalTitle.Location    = new System.Drawing.Point(16, 128);
     this.lblTotalTitle.Name        = "lblTotalTitle";
     this.lblTotalTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblTotalTitle.Size        = new System.Drawing.Size(97, 41);
     this.lblTotalTitle.TabIndex    = 15;
     this.lblTotalTitle.Text        = "Total:";
     //
     // lblTaxTitle
     //
     this.lblTaxTitle.AllowDrop   = true;
     this.lblTaxTitle.BackColor   = System.Drawing.Color.White;
     this.lblTaxTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblTaxTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblTaxTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblTaxTitle.Location    = new System.Drawing.Point(16, 80);
     this.lblTaxTitle.Name        = "lblTaxTitle";
     this.lblTaxTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblTaxTitle.Size        = new System.Drawing.Size(81, 41);
     this.lblTaxTitle.TabIndex    = 13;
     this.lblTaxTitle.Text        = "Tax:";
     //
     // lblSubTotalTitle
     //
     this.lblSubTotalTitle.AllowDrop   = true;
     this.lblSubTotalTitle.BackColor   = System.Drawing.Color.White;
     this.lblSubTotalTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblSubTotalTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblSubTotalTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblSubTotalTitle.Location    = new System.Drawing.Point(16, 32);
     this.lblSubTotalTitle.Name        = "lblSubTotalTitle";
     this.lblSubTotalTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblSubTotalTitle.Size        = new System.Drawing.Size(129, 33);
     this.lblSubTotalTitle.TabIndex    = 11;
     this.lblSubTotalTitle.Text        = "SubTotal:";
     //
     // picLogo
     //
     this.picLogo.AllowDrop        = true;
     this.picLogo.BackColor        = System.Drawing.SystemColors.Window;
     this.picLogo.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.picLogo.CausesValidation = true;
     this.picLogo.Dock             = System.Windows.Forms.DockStyle.None;
     this.picLogo.Enabled          = true;
     this.picLogo.Font             = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.picLogo.Image            = (System.Drawing.Image)resources.GetObject("picLogo.Image");
     this.picLogo.Location         = new System.Drawing.Point(960, 696);
     this.picLogo.Name             = "picLogo";
     this.picLogo.Size             = new System.Drawing.Size(230, 206);
     this.picLogo.SizeMode         = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.picLogo.TabIndex         = 24;
     this.picLogo.TabStop          = true;
     this.picLogo.Visible          = true;
     //
     // lblPOS
     //
     this.lblPOS.AllowDrop   = true;
     this.lblPOS.BackColor   = System.Drawing.Color.White;
     this.lblPOS.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblPOS.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblPOS.Location    = new System.Drawing.Point(752, 768);
     this.lblPOS.Name        = "lblPOS";
     this.lblPOS.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblPOS.Size        = new System.Drawing.Size(153, 49);
     this.lblPOS.TabIndex    = 23;
     this.lblPOS.Text        = "POSName";
     //
     // lblPOSTitle
     //
     this.lblPOSTitle.AllowDrop   = true;
     this.lblPOSTitle.BackColor   = System.Drawing.Color.White;
     this.lblPOSTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblPOSTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblPOSTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblPOSTitle.Location    = new System.Drawing.Point(752, 704);
     this.lblPOSTitle.Name        = "lblPOSTitle";
     this.lblPOSTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblPOSTitle.Size        = new System.Drawing.Size(105, 57);
     this.lblPOSTitle.TabIndex    = 22;
     this.lblPOSTitle.Text        = "POS:";
     //
     // lblCashier
     //
     this.lblCashier.AllowDrop   = true;
     this.lblCashier.BackColor   = System.Drawing.Color.White;
     this.lblCashier.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblCashier.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblCashier.Location    = new System.Drawing.Point(960, 632);
     this.lblCashier.Name        = "lblCashier";
     this.lblCashier.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCashier.Size        = new System.Drawing.Size(185, 57);
     this.lblCashier.TabIndex    = 20;
     this.lblCashier.Text        = "CashierID";
     //
     // lblCashierTitle
     //
     this.lblCashierTitle.AllowDrop   = true;
     this.lblCashierTitle.BackColor   = System.Drawing.Color.White;
     this.lblCashierTitle.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lblCashierTitle.Font        = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.lblCashierTitle.ForeColor   = System.Drawing.Color.FromArgb(47, 75, 102);
     this.lblCashierTitle.Location    = new System.Drawing.Point(752, 632);
     this.lblCashierTitle.Name        = "lblCashierTitle";
     this.lblCashierTitle.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblCashierTitle.Size        = new System.Drawing.Size(145, 49);
     this.lblCashierTitle.TabIndex    = 19;
     this.lblCashierTitle.Text        = "Cashier:";
     //
     // frmSales
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(0, 0);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(1202, 909);
     this.ControlBox          = false;
     this.Controls.Add(this.cbRePrint);
     this.Controls.Add(this.ucNumericKeyPad);
     this.Controls.Add(this.cbQuantity);
     this.Controls.Add(this.fgItems);
     this.Controls.Add(this.gbCustomerInfo);
     this.Controls.Add(this.cbBreak);
     this.Controls.Add(this.cbLogOff);
     this.Controls.Add(this.cbVoidTransaction);
     this.Controls.Add(this.cbVoidItem);
     this.Controls.Add(this.cbAddCustomer);
     this.Controls.Add(this.cbCustomerSearch);
     this.Controls.Add(this.cbPayment);
     this.Controls.Add(this.frSubTotals);
     this.Controls.Add(this.picLogo);
     this.Controls.Add(this.lblPOS);
     this.Controls.Add(this.lblPOSTitle);
     this.Controls.Add(this.lblCashier);
     this.Controls.Add(this.lblCashierTitle);
     this.Font            = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Location        = new System.Drawing.Point(3, 26);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmSales";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Sales";
     commandButtonHelper1.SetStyle(this.cbRePrint, 1);
     commandButtonHelper1.SetStyle(this.cbQuantity, 1);
     commandButtonHelper1.SetStyle(this.cbBreak, 1);
     commandButtonHelper1.SetStyle(this.cbLogOff, 1);
     commandButtonHelper1.SetStyle(this.cbVoidTransaction, 1);
     commandButtonHelper1.SetStyle(this.cbVoidItem, 1);
     commandButtonHelper1.SetStyle(this.cbAddCustomer, 1);
     commandButtonHelper1.SetStyle(this.cbCustomerSearch, 1);
     commandButtonHelper1.SetStyle(this.cbPayment, 1);
     this.Closed += new System.EventHandler(this.Form_Closed);
     this.gbCustomerInfo.ResumeLayout(false);
     this.frSubTotals.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Beispiel #7
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.DataGridViewFlex(this.components);
     this.sbStatusBar               = new System.Windows.Forms.StatusStrip();
     this.sbStatusBar_Panels_Panel1 = new System.Windows.Forms.ToolStripStatusLabel();
     this.dtRequired                = new System.Windows.Forms.DateTimePicker();
     this.cmdSave                     = new System.Windows.Forms.Button();
     this.cmdAddProducts              = new System.Windows.Forms.Button();
     this.cmdClose                    = 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.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.Gui.ListViewHelper(this.components);
     ((System.ComponentModel.ISupportInitialize) this.listViewHelper1).BeginInit();
     //
     // txtSubTotal
     //
     this.txtSubTotal.AcceptsReturn = true;
     this.txtSubTotal.AllowDrop     = 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, 576);
     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      = 32;
     this.txtSubTotal.TabStop       = false;
     this.txtSubTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotal
     //
     this.txtTotal.AcceptsReturn = true;
     this.txtTotal.AllowDrop     = 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, 600);
     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      = 30;
     this.txtTotal.TabStop       = false;
     this.txtTotal.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtTotalTax
     //
     this.txtTotalTax.AcceptsReturn = true;
     this.txtTotalTax.AllowDrop     = 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, 544);
     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      = 28;
     this.txtTotalTax.TabStop       = false;
     this.txtTotalTax.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     // txtFreightCharge
     //
     this.txtFreightCharge.AcceptsReturn = true;
     this.txtFreightCharge.AllowDrop     = 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, 576);
     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.AllowDrop     = 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, 552);
     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.AllowDrop     = 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.Enabled       = false;
     this.txtEntry.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtEntry.Location      = new System.Drawing.Point(88, 528);
     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      = 25;
     this.txtEntry.Leave        += new System.EventHandler(this.txtEntry_Leave);
     //
     // fgProducts
     //
     this.fgProducts.AllowDrop    = true;
     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, 344);
     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.AllowDrop        = true;
     this.sbStatusBar.BackColor        = System.Drawing.SystemColors.Control;
     this.sbStatusBar.Dock             = System.Windows.Forms.DockStyle.Bottom;
     this.sbStatusBar.Location         = new System.Drawing.Point(0, 675);
     this.sbStatusBar.Name             = "sbStatusBar";
     this.sbStatusBar.ShowItemToolTips = true;
     this.sbStatusBar.Size             = new System.Drawing.Size(533, 25);
     this.sbStatusBar.TabIndex         = 24;
     this.sbStatusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.sbStatusBar_Panels_Panel1 });
     //
     // sbStatusBar_Panels_Panel1
     //
     this.sbStatusBar_Panels_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_Panels_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this.sbStatusBar_Panels_Panel1.DoubleClickEnabled = true;
     this.sbStatusBar_Panels_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this.sbStatusBar_Panels_Panel1.Size              = new System.Drawing.Size(533, 25);
     this.sbStatusBar_Panels_Panel1.Spring            = true;
     this.sbStatusBar_Panels_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this.sbStatusBar_Panels_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // dtRequired
     //
     this.dtRequired.AllowDrop     = true;
     this.dtRequired.Checked       = false;
     this.dtRequired.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtRequired.Location      = new System.Drawing.Point(120, 304);
     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.AllowDrop               = true;
     this.cmdSave.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdSave.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdSave.Location                = new System.Drawing.Point(320, 632);
     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);
     //
     // cmdAddProducts
     //
     this.cmdAddProducts.AllowDrop               = true;
     this.cmdAddProducts.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdAddProducts.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdAddProducts.Location                = new System.Drawing.Point(488, 320);
     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);
     //
     // cmdClose
     //
     this.cmdClose.AllowDrop               = true;
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(416, 632);
     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);
     //
     // Frame1
     //
     this.Frame1.AllowDrop = true;
     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, 225);
     this.Frame1.TabIndex    = 13;
     this.Frame1.Text        = "Search ";
     this.Frame1.Visible     = true;
     //
     // txtContactLastName
     //
     this.txtContactLastName.AcceptsReturn = true;
     this.txtContactLastName.AllowDrop     = 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.AllowDrop     = 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.AllowDrop               = true;
     this.cmdCustomers.BackColor               = System.Drawing.SystemColors.Control;
     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.AllowDrop     = 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.AllowDrop     = true;
     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.MultiSelect   = false;
     this.lvCustomers.Name          = "lvCustomers";
     this.lvCustomers.Size          = new System.Drawing.Size(489, 129);
     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";
     this.lvCustomers_ColumnHeader_1_.Width = 97;
     //
     // lvCustomers_ColumnHeader_2_
     //
     this.lvCustomers_ColumnHeader_2_.Text  = "Company";
     this.lvCustomers_ColumnHeader_2_.Width = 97;
     //
     // lvCustomers_ColumnHeader_3_
     //
     this.lvCustomers_ColumnHeader_3_.Text  = "First Name";
     this.lvCustomers_ColumnHeader_3_.Width = 97;
     //
     // lvCustomers_ColumnHeader_4_
     //
     this.lvCustomers_ColumnHeader_4_.Text  = "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.AllowDrop   = true;
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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        = "Last Name";
     //
     // Label4
     //
     this.Label4.AllowDrop   = true;
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // Label2
     //
     this.Label2.AllowDrop   = true;
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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        = "First Name";
     //
     // Frame2
     //
     this.Frame2.AllowDrop = true;
     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, 240);
     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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop   = true;
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // dtPromised
     //
     this.dtPromised.AllowDrop     = true;
     this.dtPromised.Checked       = false;
     this.dtPromised.Format        = System.Windows.Forms.DateTimePickerFormat.Short;
     this.dtPromised.Location      = new System.Drawing.Point(352, 304);
     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.AllowDrop   = true;
     this.Label13.BackColor   = System.Drawing.SystemColors.Control;
     this.Label13.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label13.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label13.Location    = new System.Drawing.Point(8, 528);
     this.Label13.Name        = "Label13";
     this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label13.Size        = new System.Drawing.Size(89, 17);
     this.Label13.TabIndex    = 34;
     this.Label13.Text        = "Quantity";
     //
     // Label12
     //
     this.Label12.AllowDrop   = true;
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label12.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label12.Location    = new System.Drawing.Point(8, 576);
     this.Label12.Name        = "Label12";
     this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label12.Size        = new System.Drawing.Size(89, 17);
     this.Label12.TabIndex    = 33;
     this.Label12.Text        = "Freight";
     //
     // Label11
     //
     this.Label11.AllowDrop   = true;
     this.Label11.BackColor   = System.Drawing.SystemColors.Control;
     this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label11.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label11.Location    = new System.Drawing.Point(8, 600);
     this.Label11.Name        = "Label11";
     this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label11.Size        = new System.Drawing.Size(89, 17);
     this.Label11.TabIndex    = 31;
     this.Label11.Text        = "Total";
     //
     // Label10
     //
     this.Label10.AllowDrop   = true;
     this.Label10.BackColor   = System.Drawing.SystemColors.Control;
     this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label10.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label10.Location    = new System.Drawing.Point(288, 544);
     this.Label10.Name        = "Label10";
     this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label10.Size        = new System.Drawing.Size(89, 17);
     this.Label10.TabIndex    = 29;
     this.Label10.Text        = "Total Tax";
     //
     // Label9
     //
     this.Label9.AllowDrop   = true;
     this.Label9.BackColor   = System.Drawing.SystemColors.Control;
     this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label9.Location    = new System.Drawing.Point(288, 576);
     this.Label9.Name        = "Label9";
     this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label9.Size        = new System.Drawing.Size(89, 17);
     this.Label9.TabIndex    = 27;
     this.Label9.Text        = "Sub Total";
     //
     // Label8
     //
     this.Label8.AllowDrop   = true;
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label8.Location    = new System.Drawing.Point(8, 552);
     this.Label8.Name        = "Label8";
     this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label8.Size        = new System.Drawing.Size(89, 17);
     this.Label8.TabIndex    = 26;
     this.Label8.Text        = "Sales Tax";
     //
     // Label7
     //
     this.Label7.AllowDrop   = true;
     this.Label7.BackColor   = System.Drawing.SystemColors.Control;
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label7.Location    = new System.Drawing.Point(256, 304);
     this.Label7.Name        = "Label7";
     this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label7.Size        = new System.Drawing.Size(81, 17);
     this.Label7.TabIndex    = 23;
     this.Label7.Text        = "Promised by";
     //
     // Label6
     //
     this.Label6.AllowDrop   = true;
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label6.Location    = new System.Drawing.Point(40, 304);
     this.Label6.Name        = "Label6";
     this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label6.Size        = new System.Drawing.Size(65, 17);
     this.Label6.TabIndex    = 11;
     this.Label6.Text        = "Required by";
     //
     // frmOrderRequest
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(533, 700);
     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.cmdAddProducts);
     this.Controls.Add(this.cmdClose);
     this.Controls.Add(this.Frame1);
     this.Controls.Add(this.Frame2);
     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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Location        = new System.Drawing.Point(3, 25);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmOrderRequest";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Create Order";
     this.Closed         += new System.EventHandler(this.Form_Closed);
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.Form_FormClosing);
     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);
 }
Beispiel #8
0
 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.DataGridViewFlex(this.components);
     this.sbStatusBar               = new System.Windows.Forms.StatusStrip();
     this.sbStatusBar_Panels_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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop               = true;
     this.cmdApprove.BackColor               = System.Drawing.SystemColors.Control;
     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";
     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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop    = true;
     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.AllowDrop        = true;
     this.sbStatusBar.BackColor        = System.Drawing.SystemColors.Control;
     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_Panels_Panel1 });
     //
     // sbStatusBar_Panels_Panel1
     //
     this.sbStatusBar_Panels_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_Panels_Panel1.BorderStyle        = System.Windows.Forms.Border3DStyle.SunkenOuter;
     this.sbStatusBar_Panels_Panel1.DoubleClickEnabled = true;
     this.sbStatusBar_Panels_Panel1.Margin             = new System.Windows.Forms.Padding(0);
     this.sbStatusBar_Panels_Panel1.Size              = new System.Drawing.Size(523, 25);
     this.sbStatusBar_Panels_Panel1.Spring            = true;
     this.sbStatusBar_Panels_Panel1.TextAlign         = System.Drawing.ContentAlignment.MiddleLeft;
     this.sbStatusBar_Panels_Panel1.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
     //
     // cmdCancel
     //
     this.cmdCancel.AllowDrop               = true;
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     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";
     this.cmdCancel.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cmdCancel.UseVisualStyleBackColor = false;
     this.cmdCancel.Click                  += new System.EventHandler(this.cmdCancel_Click);
     //
     // cmdClose
     //
     this.cmdClose.AllowDrop               = true;
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     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.AllowDrop = true;
     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.AllowDrop     = 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.AllowDrop     = 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.AllowDrop   = true;
     this.Label5.BackColor   = System.Drawing.SystemColors.Control;
     this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label13.BackColor   = System.Drawing.SystemColors.Control;
     this.Label13.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // Label2
     //
     this.Label2.AllowDrop   = true;
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // Label7
     //
     this.Label7.AllowDrop   = true;
     this.Label7.BackColor   = System.Drawing.SystemColors.Control;
     this.Label7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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        = "By";
     //
     // Label3
     //
     this.Label3.AllowDrop   = true;
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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:";
     //
     // Label19
     //
     this.Label19.AllowDrop   = true;
     this.Label19.BackColor   = System.Drawing.SystemColors.Control;
     this.Label19.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.lblChangedBy.BackColor   = System.Drawing.SystemColors.Control;
     this.lblChangedBy.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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        = "By";
     //
     // Label4
     //
     this.Label4.AllowDrop   = true;
     this.Label4.BackColor   = System.Drawing.SystemColors.Control;
     this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.lblChanged.BackColor   = System.Drawing.SystemColors.Control;
     this.lblChanged.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label12.BackColor   = System.Drawing.SystemColors.Control;
     this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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";
     //
     // Label11
     //
     this.Label11.AllowDrop   = true;
     this.Label11.BackColor   = System.Drawing.SystemColors.Control;
     this.Label11.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label10.BackColor   = System.Drawing.SystemColors.Control;
     this.Label10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label9.BackColor   = System.Drawing.SystemColors.Control;
     this.Label9.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label8.BackColor   = System.Drawing.SystemColors.Control;
     this.Label8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop   = true;
     this.Label6.BackColor   = System.Drawing.SystemColors.Control;
     this.Label6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     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.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 13);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.AutoScroll          = true;
     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.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Location        = new System.Drawing.Point(3, 25);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmActionOrderRequest";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Create Invoice";
     this.Closed         += new System.EventHandler(this.Form_Closed);
     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(frmSearchCust));
     this.ToolTipMain  = new System.Windows.Forms.ToolTip(this.components);
     this.ucLettersPad = new ucLettersPad();
     this.cbClose      = new System.Windows.Forms.Button();
     this.fgCustomers  = new UpgradeHelpers.DataGridViewFlex(this.components);
     this.SuspendLayout();
     this.commandButtonHelper1 = new UpgradeHelpers.Gui.CommandButtonHelper(this.components);
     //
     // ucLettersPad
     //
     this.ucLettersPad.AllowDrop     = true;
     this.ucLettersPad.Location      = new System.Drawing.Point(8, 24);
     this.ucLettersPad.Name          = "ucLettersPad";
     this.ucLettersPad.Size          = new System.Drawing.Size(633, 569);
     this.ucLettersPad.TabIndex      = 0;
     this.ucLettersPad.OnEnterEvent += new ucLettersPad.OnEnterEventHandler(this.ucLettersPad_OnEnterEvent);
     //
     // cbClose
     //
     this.cbClose.AllowDrop               = true;
     this.cbClose.BackColor               = System.Drawing.Color.FromArgb(97, 44, 67);
     this.cbClose.Font                    = new System.Drawing.Font("Arial", 24f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.cbClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cbClose.Location                = new System.Drawing.Point(1248, 640);
     this.cbClose.Name                    = "cbClose";
     this.cbClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cbClose.Size                    = new System.Drawing.Size(241, 57);
     this.cbClose.TabIndex                = 2;
     this.cbClose.Text                    = "Close";
     this.cbClose.TextImageRelation       = System.Windows.Forms.TextImageRelation.ImageAboveText;
     this.cbClose.UseVisualStyleBackColor = false;
     this.cbClose.Click                  += new System.EventHandler(this.cbClose_Click);
     //
     // fgCustomers
     //
     this.fgCustomers.AllowDrop                   = true;
     this.fgCustomers.AllowUserToAddRows          = false;
     this.fgCustomers.AllowUserToDeleteRows       = false;
     this.fgCustomers.AllowUserToResizeColumns    = false;
     this.fgCustomers.AllowUserToResizeRows       = false;
     this.fgCustomers.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.fgCustomers.ColumnsCount                = 5;
     this.fgCustomers.FixedColumns                = 0;
     this.fgCustomers.FocusRect                   = UpgradeHelpers.FocusRectSettings.FocusNone;
     this.fgCustomers.Font          = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.fgCustomers.Location      = new System.Drawing.Point(648, 24);
     this.fgCustomers.Name          = "fgCustomers";
     this.fgCustomers.ReadOnly      = true;
     this.fgCustomers.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
     this.fgCustomers.Size          = new System.Drawing.Size(849, 577);
     this.fgCustomers.StandardTab   = true;
     this.fgCustomers.TabIndex      = 1;
     this.fgCustomers.DoubleClick  += new System.EventHandler(this.fgCustomers_DoubleClick);
     //
     // frmSearchCust
     //
     this.AllowDrop           = true;
     this.AutoScaleDimensions = new System.Drawing.SizeF(0, 0);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.White;
     this.ClientSize          = new System.Drawing.Size(1496, 737);
     this.Controls.Add(this.ucLettersPad);
     this.Controls.Add(this.cbClose);
     this.Controls.Add(this.fgCustomers);
     this.Font          = new System.Drawing.Font("Arial", 21.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
     this.Location      = new System.Drawing.Point(11, 34);
     this.MaximizeBox   = true;
     this.MinimizeBox   = true;
     this.Name          = "frmSearchCust";
     this.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Customer Search";
     commandButtonHelper1.SetStyle(this.cbClose, 1);
     this.Closed += new System.EventHandler(this.Form_Closed);
     this.ResumeLayout(false);
 }