private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string boundColumn, ref string listField)
 {
     ADODB.Recordset rs = default(ADODB.Recordset);
     rs = modRecordSet.getRS(ref sql);
     dataControl.DataSource = rs;
     dataControl.boundColumn = boundColumn;
     dataControl.listField = listField;
 }
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string boundColumn, ref string listField)
 {
     ADODB.Recordset rs = default(ADODB.Recordset);
     rs = modRecordSet.getRS(ref sql);
     dataControl.DataSource  = rs;
     dataControl.boundColumn = boundColumn;
     dataControl.listField   = listField;
 }
Exemple #3
0
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
 {
     //Dim rs As ADODB.Recordset
     //rs = getRS(sql)
     //dataControl.DataSource = rs
     //dataControl.DataSource = adoPrimaryRS
     //dataControl.DataField = DataField
     //dataControl.boundColumn = boundColumn
     //dataControl.listField = listField
 }
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
 {
     //Dim rs As ADODB.Recordset
     //rs = getRS(sql)
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.DataSource. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.DataSource = rs
     //dataControl.DataSource = adoPrimaryRS
     //dataControl.DataField = DataField
     //dataControl.boundColumn = boundColumn
     //dataControl.listField = listField
 }
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
 {
     ADODB.Recordset rs = default(ADODB.Recordset);
     rs = modRecordSet.getRS(ref sql);
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.DataSource. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     dataControl.DataSource = rs;
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.boundColumn. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     dataControl.boundColumn = boundColumn;
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.listField. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     dataControl.listField = listField;
 }
Exemple #6
0
        private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
        {
            ADODB.Recordset rs = default(ADODB.Recordset);
            rs = modRecordSet.getRS(ref sql);
            BindingSource bind = new BindingSource();

            bind.DataSource = rs;
            //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.DataSource. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
            //dataControl.DataSource = rs
            dataControl.DataBindings.Add(bind.DataSource);
            dataControl.DataBindings.Add(adoPrimaryRS);
            dataControl.DataField   = DataField;
            dataControl.boundColumn = boundColumn;
            dataControl.Columns.Add(listField, "");
        }
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
 {
     //Dim rs As ADODB.Recordset
     //rs = getRS(sql)
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.DataSource. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.DataBindings.Add(rs)
     //UPGRADE_ISSUE: Control method dataControl.DataSource was not upgraded. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="CC4C7EC0-C903-48FC-ACCC-81861D12DA4A"'
     //dataControl.DataSource = adoPrimaryRS
     //UPGRADE_ISSUE: Control method dataControl.DataField was not upgraded. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="CC4C7EC0-C903-48FC-ACCC-81861D12DA4A"'
     //dataControl.DataField = DataField
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.boundColumn. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.boundColumn = boundColumn
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.listField. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.listField = listField
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmKeyboard));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.txtName = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.gridEdit = new myDataGridView();
			this.Label1 = new System.Windows.Forms.Label();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.gridEdit).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Keyboard Layout Editor";
			this.ClientSize = new System.Drawing.Size(434, 611);
			this.Location = new System.Drawing.Point(3, 29);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmKeyboard";
			this.txtName.AutoSize = false;
			this.txtName.Size = new System.Drawing.Size(301, 24);
			this.txtName.Location = new System.Drawing.Point(125, 48);
			this.txtName.TabIndex = 4;
			this.txtName.Text = "Text1";
			this.txtName.AcceptsReturn = true;
			this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtName.BackColor = System.Drawing.SystemColors.Window;
			this.txtName.CausesValidation = true;
			this.txtName.Enabled = true;
			this.txtName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtName.HideSelection = true;
			this.txtName.ReadOnly = false;
			this.txtName.MaxLength = 0;
			this.txtName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtName.Multiline = false;
			this.txtName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtName.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtName.TabStop = true;
			this.txtName.Visible = true;
			this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtName.Name = "txtName";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.ForeColor = System.Drawing.SystemColors.WindowText;
			this.picButtons.Size = new System.Drawing.Size(434, 44);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 1;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.picButtons.Name = "picButtons";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(352, 6);
			this.cmdClose.TabIndex = 3;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.TabStop = true;
			this.cmdClose.Name = "cmdClose";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(270, 6);
			this.cmdPrint.TabIndex = 2;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			//gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
			this.gridEdit.Size = new System.Drawing.Size(419, 526);
			this.gridEdit.Location = new System.Drawing.Point(9, 75);
			this.gridEdit.TabIndex = 0;
			this.gridEdit.Name = "gridEdit";
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.Label1.Text = "Keyboard Name:";
			this.Label1.ForeColor = System.Drawing.Color.Black;
			this.Label1.Size = new System.Drawing.Size(117, 16);
			this.Label1.Location = new System.Drawing.Point(6, 51);
			this.Label1.TabIndex = 5;
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Enabled = true;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = true;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this.Controls.Add(txtName);
			this.Controls.Add(picButtons);
			this.Controls.Add(gridEdit);
			this.Controls.Add(Label1);
			this.picButtons.Controls.Add(cmdClose);
			this.picButtons.Controls.Add(cmdPrint);
			((System.ComponentModel.ISupportInitialize)this.gridEdit).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemple #9
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVimport));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.tmrAutoGRV = new System.Windows.Forms.Timer(components);
     this.cmdNext    = new System.Windows.Forms.Button();
     this.CDOpen     = new System.Windows.Forms.OpenFileDialog();
     this.cmdExit    = new System.Windows.Forms.Button();
     this._Frame1_0  = new System.Windows.Forms.GroupBox();
     this.lvImport   = new System.Windows.Forms.ListView();
     this._lvImport_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
     this._lvImport_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
     this._lvImport_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
     this._lvImport_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
     this._lvImport_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
     this._lvImport_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
     this._lvImport_ColumnHeader_7 = new System.Windows.Forms.ColumnHeader();
     this._Frame1_1 = new System.Windows.Forms.GroupBox();
     this.DataList1 = new myDataGridView();
     //Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
     this._Frame1_0.SuspendLayout();
     this.lvImport.SuspendLayout();
     this._Frame1_1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     //CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
     this.FormBorderStyle                    = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                               = "Import a GRV ...";
     this.ClientSize                         = new System.Drawing.Size(590, 462);
     this.Location                           = new System.Drawing.Point(3, 29);
     this.ControlBox                         = false;
     this.MaximizeBox                        = false;
     this.MinimizeBox                        = false;
     this.StartPosition                      = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode                      = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                          = System.Drawing.SystemColors.Control;
     this.Enabled                            = true;
     this.KeyPreview                         = false;
     this.Cursor                             = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                        = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar                      = true;
     this.HelpButton                         = false;
     this.WindowState                        = System.Windows.Forms.FormWindowState.Normal;
     this.Name                               = "frmGRVimport";
     this.tmrAutoGRV.Enabled                 = false;
     this.tmrAutoGRV.Interval                = 10;
     this.cmdNext.TextAlign                  = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text                       = "&Next";
     this.cmdNext.Size                       = new System.Drawing.Size(88, 49);
     this.cmdNext.Location                   = new System.Drawing.Point(486, 402);
     this.cmdNext.TabIndex                   = 1;
     this.cmdNext.BackColor                  = System.Drawing.SystemColors.Control;
     this.cmdNext.CausesValidation           = true;
     this.cmdNext.Enabled                    = true;
     this.cmdNext.ForeColor                  = System.Drawing.SystemColors.ControlText;
     this.cmdNext.Cursor                     = System.Windows.Forms.Cursors.Default;
     this.cmdNext.RightToLeft                = System.Windows.Forms.RightToLeft.No;
     this.cmdNext.TabStop                    = true;
     this.cmdNext.Name                       = "cmdNext";
     this.CDOpen.Title                       = "Select GRV import file ...";
     this.cmdExit.TextAlign                  = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text                       = "E&xit";
     this.cmdExit.Size                       = new System.Drawing.Size(88, 49);
     this.cmdExit.Location                   = new System.Drawing.Point(15, 402);
     this.cmdExit.TabIndex                   = 0;
     this.cmdExit.BackColor                  = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation           = true;
     this.cmdExit.Enabled                    = true;
     this.cmdExit.ForeColor                  = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor                     = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft                = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.TabStop                    = true;
     this.cmdExit.Name                       = "cmdExit";
     this._Frame1_0.Text                     = "Imported GRV Data";
     this._Frame1_0.Font                     = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._Frame1_0.Size                     = new System.Drawing.Size(559, 370);
     this._Frame1_0.Location                 = new System.Drawing.Point(15, 24);
     this._Frame1_0.TabIndex                 = 2;
     this._Frame1_0.BackColor                = System.Drawing.SystemColors.Control;
     this._Frame1_0.Enabled                  = true;
     this._Frame1_0.ForeColor                = System.Drawing.SystemColors.ControlText;
     this._Frame1_0.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this._Frame1_0.Visible                  = true;
     this._Frame1_0.Padding                  = new System.Windows.Forms.Padding(0);
     this._Frame1_0.Name                     = "_Frame1_0";
     this.lvImport.Size                      = new System.Drawing.Size(541, 346);
     this.lvImport.Location                  = new System.Drawing.Point(9, 15);
     this.lvImport.TabIndex                  = 3;
     this.lvImport.View                      = System.Windows.Forms.View.Details;
     this.lvImport.LabelEdit                 = false;
     this.lvImport.LabelWrap                 = true;
     this.lvImport.HideSelection             = false;
     this.lvImport.ForeColor                 = System.Drawing.SystemColors.WindowText;
     this.lvImport.BackColor                 = System.Drawing.SystemColors.Window;
     this.lvImport.BorderStyle               = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lvImport.Name                      = "lvImport";
     this._lvImport_ColumnHeader_1.Text      = "Barcode";
     this._lvImport_ColumnHeader_1.Width     = 118;
     this._lvImport_ColumnHeader_2.Text      = "Name";
     this._lvImport_ColumnHeader_2.Width     = 236;
     this._lvImport_ColumnHeader_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvImport_ColumnHeader_3.Text      = "Pack Size";
     this._lvImport_ColumnHeader_3.Width     = 106;
     this._lvImport_ColumnHeader_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvImport_ColumnHeader_4.Text      = "Quantity";
     this._lvImport_ColumnHeader_4.Width     = 95;
     this._lvImport_ColumnHeader_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvImport_ColumnHeader_5.Text      = "Cost";
     this._lvImport_ColumnHeader_5.Width     = 118;
     this._lvImport_ColumnHeader_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvImport_ColumnHeader_6.Text      = "Price";
     this._lvImport_ColumnHeader_6.Width     = 118;
     this._lvImport_ColumnHeader_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this._lvImport_ColumnHeader_7.Text      = "Order";
     this._lvImport_ColumnHeader_7.Width     = 71;
     this._Frame1_1.Text                     = "Select a Supplier for this GRV ...";
     this._Frame1_1.Font                     = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._Frame1_1.Size                     = new System.Drawing.Size(559, 370);
     this._Frame1_1.Location                 = new System.Drawing.Point(15, 24);
     this._Frame1_1.TabIndex                 = 4;
     this._Frame1_1.Visible                  = false;
     this._Frame1_1.BackColor                = System.Drawing.SystemColors.Control;
     this._Frame1_1.Enabled                  = true;
     this._Frame1_1.ForeColor                = System.Drawing.SystemColors.ControlText;
     this._Frame1_1.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this._Frame1_1.Padding                  = new System.Windows.Forms.Padding(0);
     this._Frame1_1.Name                     = "_Frame1_1";
     //'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataList1.Size     = new System.Drawing.Size(328, 342);
     this.DataList1.Location = new System.Drawing.Point(219, 15);
     this.DataList1.TabIndex = 5;
     this.DataList1.Name     = "DataList1";
     this.Controls.Add(cmdNext);
     this.Controls.Add(cmdExit);
     this.Controls.Add(_Frame1_0);
     this.Controls.Add(_Frame1_1);
     this._Frame1_0.Controls.Add(lvImport);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_1);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_2);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_3);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_4);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_5);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_6);
     this.lvImport.Columns.Add(_lvImport_ColumnHeader_7);
     this._Frame1_1.Controls.Add(DataList1);
     //Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
     //Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
     //CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this._Frame1_0.ResumeLayout(false);
     this.lvImport.ResumeLayout(false);
     this._Frame1_1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPastelVariables));
     this.components  = new System.ComponentModel.Container();
     this.ToolTip1    = new System.Windows.Forms.ToolTip(components);
     this.grdDataGrid = new myDataGridView();
     this.picButtons  = new System.Windows.Forms.Panel();
     this.cmdClose    = new System.Windows.Forms.Button();
     this.Label1      = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit();
     this.Text            = "Edit Export Variable";
     this.ClientSize      = new System.Drawing.Size(603, 529);
     this.Location        = new System.Drawing.Point(4, 23);
     this.ControlBox      = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode   = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor       = System.Drawing.SystemColors.Control;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
     this.Enabled         = true;
     this.KeyPreview      = false;
     this.MaximizeBox     = true;
     this.MinimizeBox     = true;
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar   = true;
     this.HelpButton      = false;
     this.WindowState     = System.Windows.Forms.FormWindowState.Normal;
     this.Name            = "frmPastelVariables";
     //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid.Size            = new System.Drawing.Size(595, 465);
     this.grdDataGrid.Location        = new System.Drawing.Point(2, 60);
     this.grdDataGrid.TabIndex        = 2;
     this.grdDataGrid.Name            = "grdDataGrid";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size             = new System.Drawing.Size(603, 35);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 0;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name             = "picButtons";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text             = "E&xit";
     this.cmdClose.Size             = new System.Drawing.Size(73, 29);
     this.cmdClose.Location         = new System.Drawing.Point(526, 2);
     this.cmdClose.TabIndex         = 1;
     this.cmdClose.TabStop          = false;
     this.cmdClose.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation = true;
     this.cmdClose.Enabled          = true;
     this.cmdClose.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Name             = "cmdClose";
     this.Label1.Text        = "Note: Account Number && Reference : Must be less or 7 Characters in Length";
     this.Label1.Size        = new System.Drawing.Size(471, 19);
     this.Label1.Location    = new System.Drawing.Point(4, 38);
     this.Label1.TabIndex    = 3;
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.Enabled     = true;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic = true;
     this.Label1.Visible     = true;
     this.Label1.AutoSize    = false;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name        = "Label1";
     this.Controls.Add(grdDataGrid);
     this.Controls.Add(picButtons);
     this.Controls.Add(Label1);
     this.picButtons.Controls.Add(cmdClose);
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockMultiBarcode));
     this.components  = new System.ComponentModel.Container();
     this.ToolTip1    = new System.Windows.Forms.ToolTip(components);
     this.picButtons  = new System.Windows.Forms.Panel();
     this.cmdClose    = new System.Windows.Forms.Button();
     this.cmdFilter   = new System.Windows.Forms.Button();
     this.cmdPrint    = new System.Windows.Forms.Button();
     this.cmbShrink   = new myDataGridView();
     this._lbl_0      = new System.Windows.Forms.Label();
     this.lblHeading  = new System.Windows.Forms.Label();
     this.grdDataGrid = new myDataGridView();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.cmbShrink).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit();
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Text                        = "Edit Stock Item Barcodes";
     this.ClientSize                  = new System.Drawing.Size(565, 493);
     this.Location                    = new System.Drawing.Point(73, 22);
     this.ControlBox                  = false;
     this.KeyPreview                  = true;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar               = true;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmStockMultiBarcode";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size             = new System.Drawing.Size(565, 89);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 1;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name             = "picButtons";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(73, 62);
     this.cmdClose.Location           = new System.Drawing.Point(489, 3);
     this.cmdClose.TabIndex           = 4;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     this.cmdFilter.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdFilter.Text              = "&Filter";
     this.cmdFilter.Size              = new System.Drawing.Size(73, 29);
     this.cmdFilter.Location          = new System.Drawing.Point(411, 3);
     this.cmdFilter.TabIndex          = 3;
     this.cmdFilter.TabStop           = false;
     this.cmdFilter.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdFilter.CausesValidation  = true;
     this.cmdFilter.Enabled           = true;
     this.cmdFilter.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdFilter.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdFilter.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdFilter.Name              = "cmdFilter";
     this.cmdPrint.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text               = "&Print";
     this.cmdPrint.Size               = new System.Drawing.Size(73, 29);
     this.cmdPrint.Location           = new System.Drawing.Point(411, 36);
     this.cmdPrint.TabIndex           = 2;
     this.cmdPrint.TabStop            = false;
     this.cmdPrint.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation   = true;
     this.cmdPrint.Enabled            = true;
     this.cmdPrint.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name               = "cmdPrint";
     //cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbShrink.Size         = new System.Drawing.Size(67, 21);
     this.cmbShrink.Location     = new System.Drawing.Point(276, 66);
     this.cmbShrink.TabIndex     = 7;
     this.cmbShrink.Name         = "cmbShrink";
     this._lbl_0.TextAlign       = System.Drawing.ContentAlignment.TopRight;
     this._lbl_0.Text            = "For which Shrink Quantity do you wish to edit";
     this._lbl_0.ForeColor       = System.Drawing.Color.White;
     this._lbl_0.Size            = new System.Drawing.Size(359, 13);
     this._lbl_0.Location        = new System.Drawing.Point(-92, 69);
     this._lbl_0.TabIndex        = 6;
     this._lbl_0.BackColor       = System.Drawing.Color.Transparent;
     this._lbl_0.Enabled         = true;
     this._lbl_0.Cursor          = System.Windows.Forms.Cursors.Default;
     this._lbl_0.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.UseMnemonic     = true;
     this._lbl_0.Visible         = true;
     this._lbl_0.AutoSize        = true;
     this._lbl_0.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this._lbl_0.Name            = "_lbl_0";
     this.lblHeading.BackColor   = System.Drawing.Color.FromArgb(192, 192, 255);
     this.lblHeading.Text        = "Using the \"Stock Item Selector\" .....";
     this.lblHeading.Size        = new System.Drawing.Size(403, 61);
     this.lblHeading.Location    = new System.Drawing.Point(3, 3);
     this.lblHeading.TabIndex    = 5;
     this.lblHeading.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.lblHeading.Enabled     = true;
     this.lblHeading.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblHeading.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.UseMnemonic = true;
     this.lblHeading.Visible     = true;
     this.lblHeading.AutoSize    = false;
     this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblHeading.Name        = "lblHeading";
     //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid.Dock     = System.Windows.Forms.DockStyle.Top;
     this.grdDataGrid.Size     = new System.Drawing.Size(565, 239);
     this.grdDataGrid.Location = new System.Drawing.Point(0, 89);
     this.grdDataGrid.TabIndex = 0;
     this.grdDataGrid.Name     = "grdDataGrid";
     this.Controls.Add(picButtons);
     this.Controls.Add(grdDataGrid);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdFilter);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(cmbShrink);
     this.picButtons.Controls.Add(_lbl_0);
     this.picButtons.Controls.Add(lblHeading);
     //Me.lbl.SetIndex(_lbl_0, CType(0, Short))
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbShrink).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #12
0
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSet));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this.chkStockItem = new System.Windows.Forms.CheckBox();
			this._txtFloat_7 = new System.Windows.Forms.TextBox();
			this._txtFloat_6 = new System.Windows.Forms.TextBox();
			this._txtFloat_5 = new System.Windows.Forms.TextBox();
			this._txtFloat_4 = new System.Windows.Forms.TextBox();
			this._txtFloat_3 = new System.Windows.Forms.TextBox();
			this._txtFloat_2 = new System.Windows.Forms.TextBox();
			this._txtFloat_1 = new System.Windows.Forms.TextBox();
			this._txtFloat_0 = new System.Windows.Forms.TextBox();
			this._chkFields_2 = new System.Windows.Forms.CheckBox();
			this._txtInteger_0 = new System.Windows.Forms.TextBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdAllocate = new System.Windows.Forms.Button();
			this.cmdEmulate = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbDeposit = new myDataGridView();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.lblStockitem = new System.Windows.Forms.Label();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lblCG_7 = new System.Windows.Forms.Label();
			this._lblCG_6 = new System.Windows.Forms.Label();
			this._lblCG_5 = new System.Windows.Forms.Label();
			this._lblCG_4 = new System.Windows.Forms.Label();
			this._lblCG_3 = new System.Windows.Forms.Label();
			this._lblCG_2 = new System.Windows.Forms.Label();
			this._lblCG_1 = new System.Windows.Forms.Label();
			this._lblCG_0 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblCG = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//'Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//M() 'e.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//M() 'e.txtFloat = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//Me.txtInteger = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).BeginInit();
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblCG, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Edit Stock Set Details";
			this.ClientSize = new System.Drawing.Size(412, 357);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmSet";
			this._txtFields_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(46, 19);
			this._txtFields_1.Location = new System.Drawing.Point(258, 210);
			this._txtFields_1.TabIndex = 11;
			this._txtFields_1.Visible = false;
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_1.CausesValidation = true;
			this._txtFields_1.Enabled = true;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.HideSelection = true;
			this._txtFields_1.ReadOnly = false;
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.Multiline = false;
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_1.TabStop = true;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Name = "_txtFields_1";
			this.chkStockItem.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.chkStockItem.Text = "This Stock Set is locked to the following Stock Item";
			this.chkStockItem.Size = new System.Drawing.Size(286, 19);
			this.chkStockItem.Location = new System.Drawing.Point(66, 192);
			this.chkStockItem.TabIndex = 9;
			this.chkStockItem.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkStockItem.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.chkStockItem.CausesValidation = true;
			this.chkStockItem.Enabled = true;
			this.chkStockItem.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkStockItem.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkStockItem.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkStockItem.TabStop = true;
			this.chkStockItem.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkStockItem.Visible = true;
			this.chkStockItem.Name = "chkStockItem";
			this._txtFloat_7.AutoSize = false;
			this._txtFloat_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_7.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_7.Location = new System.Drawing.Point(249, 309);
			this._txtFloat_7.TabIndex = 27;
			this._txtFloat_7.AcceptsReturn = true;
			this._txtFloat_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_7.CausesValidation = true;
			this._txtFloat_7.Enabled = true;
			this._txtFloat_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_7.HideSelection = true;
			this._txtFloat_7.ReadOnly = false;
			this._txtFloat_7.MaxLength = 0;
			this._txtFloat_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_7.Multiline = false;
			this._txtFloat_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_7.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_7.TabStop = true;
			this._txtFloat_7.Visible = true;
			this._txtFloat_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_7.Name = "_txtFloat_7";
			this._txtFloat_6.AutoSize = false;
			this._txtFloat_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_6.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_6.Location = new System.Drawing.Point(249, 288);
			this._txtFloat_6.TabIndex = 25;
			this._txtFloat_6.AcceptsReturn = true;
			this._txtFloat_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_6.CausesValidation = true;
			this._txtFloat_6.Enabled = true;
			this._txtFloat_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_6.HideSelection = true;
			this._txtFloat_6.ReadOnly = false;
			this._txtFloat_6.MaxLength = 0;
			this._txtFloat_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_6.Multiline = false;
			this._txtFloat_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_6.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_6.TabStop = true;
			this._txtFloat_6.Visible = true;
			this._txtFloat_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_6.Name = "_txtFloat_6";
			this._txtFloat_5.AutoSize = false;
			this._txtFloat_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_5.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_5.Location = new System.Drawing.Point(249, 267);
			this._txtFloat_5.TabIndex = 23;
			this._txtFloat_5.AcceptsReturn = true;
			this._txtFloat_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_5.CausesValidation = true;
			this._txtFloat_5.Enabled = true;
			this._txtFloat_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_5.HideSelection = true;
			this._txtFloat_5.ReadOnly = false;
			this._txtFloat_5.MaxLength = 0;
			this._txtFloat_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_5.Multiline = false;
			this._txtFloat_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_5.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_5.TabStop = true;
			this._txtFloat_5.Visible = true;
			this._txtFloat_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_5.Name = "_txtFloat_5";
			this._txtFloat_4.AutoSize = false;
			this._txtFloat_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_4.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_4.Location = new System.Drawing.Point(249, 246);
			this._txtFloat_4.TabIndex = 21;
			this._txtFloat_4.AcceptsReturn = true;
			this._txtFloat_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_4.CausesValidation = true;
			this._txtFloat_4.Enabled = true;
			this._txtFloat_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_4.HideSelection = true;
			this._txtFloat_4.ReadOnly = false;
			this._txtFloat_4.MaxLength = 0;
			this._txtFloat_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_4.Multiline = false;
			this._txtFloat_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_4.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_4.TabStop = true;
			this._txtFloat_4.Visible = true;
			this._txtFloat_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_4.Name = "_txtFloat_4";
			this._txtFloat_3.AutoSize = false;
			this._txtFloat_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_3.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_3.Location = new System.Drawing.Point(117, 309);
			this._txtFloat_3.TabIndex = 19;
			this._txtFloat_3.AcceptsReturn = true;
			this._txtFloat_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_3.CausesValidation = true;
			this._txtFloat_3.Enabled = true;
			this._txtFloat_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_3.HideSelection = true;
			this._txtFloat_3.ReadOnly = false;
			this._txtFloat_3.MaxLength = 0;
			this._txtFloat_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_3.Multiline = false;
			this._txtFloat_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_3.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_3.TabStop = true;
			this._txtFloat_3.Visible = true;
			this._txtFloat_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_3.Name = "_txtFloat_3";
			this._txtFloat_2.AutoSize = false;
			this._txtFloat_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_2.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_2.Location = new System.Drawing.Point(117, 288);
			this._txtFloat_2.TabIndex = 17;
			this._txtFloat_2.AcceptsReturn = true;
			this._txtFloat_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_2.CausesValidation = true;
			this._txtFloat_2.Enabled = true;
			this._txtFloat_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_2.HideSelection = true;
			this._txtFloat_2.ReadOnly = false;
			this._txtFloat_2.MaxLength = 0;
			this._txtFloat_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_2.Multiline = false;
			this._txtFloat_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_2.TabStop = true;
			this._txtFloat_2.Visible = true;
			this._txtFloat_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_2.Name = "_txtFloat_2";
			this._txtFloat_1.AutoSize = false;
			this._txtFloat_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_1.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_1.Location = new System.Drawing.Point(117, 267);
			this._txtFloat_1.TabIndex = 15;
			this._txtFloat_1.AcceptsReturn = true;
			this._txtFloat_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_1.CausesValidation = true;
			this._txtFloat_1.Enabled = true;
			this._txtFloat_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_1.HideSelection = true;
			this._txtFloat_1.ReadOnly = false;
			this._txtFloat_1.MaxLength = 0;
			this._txtFloat_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_1.Multiline = false;
			this._txtFloat_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_1.TabStop = true;
			this._txtFloat_1.Visible = true;
			this._txtFloat_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_1.Name = "_txtFloat_1";
			this._txtFloat_0.AutoSize = false;
			this._txtFloat_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_0.Size = new System.Drawing.Size(67, 19);
			this._txtFloat_0.Location = new System.Drawing.Point(117, 246);
			this._txtFloat_0.TabIndex = 13;
			this._txtFloat_0.AcceptsReturn = true;
			this._txtFloat_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_0.CausesValidation = true;
			this._txtFloat_0.Enabled = true;
			this._txtFloat_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_0.HideSelection = true;
			this._txtFloat_0.ReadOnly = false;
			this._txtFloat_0.MaxLength = 0;
			this._txtFloat_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_0.Multiline = false;
			this._txtFloat_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_0.TabStop = true;
			this._txtFloat_0.Visible = true;
			this._txtFloat_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_0.Name = "_txtFloat_0";
			this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_2.Text = "Disable this Set:";
			this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_2.Size = new System.Drawing.Size(97, 16);
			this._chkFields_2.Location = new System.Drawing.Point(252, 138);
			this._chkFields_2.TabIndex = 7;
			this._chkFields_2.CausesValidation = true;
			this._chkFields_2.Enabled = true;
			this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_2.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_2.TabStop = true;
			this._chkFields_2.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_2.Visible = true;
			this._chkFields_2.Name = "_chkFields_2";
			this._txtInteger_0.AutoSize = false;
			this._txtInteger_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_0.Size = new System.Drawing.Size(40, 19);
			this._txtInteger_0.Location = new System.Drawing.Point(309, 114);
			this._txtInteger_0.TabIndex = 6;
			this._txtInteger_0.AcceptsReturn = true;
			this._txtInteger_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_0.CausesValidation = true;
			this._txtInteger_0.Enabled = true;
			this._txtInteger_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_0.HideSelection = true;
			this._txtInteger_0.ReadOnly = false;
			this._txtInteger_0.MaxLength = 0;
			this._txtInteger_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_0.Multiline = false;
			this._txtInteger_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_0.TabStop = true;
			this._txtInteger_0.Visible = true;
			this._txtInteger_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_0.Name = "_txtInteger_0";
			this._txtFields_0.AutoSize = false;
			this._txtFields_0.Size = new System.Drawing.Size(226, 19);
			this._txtFields_0.Location = new System.Drawing.Point(123, 66);
			this._txtFields_0.TabIndex = 2;
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.CausesValidation = true;
			this._txtFields_0.Enabled = true;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.HideSelection = true;
			this._txtFields_0.ReadOnly = false;
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.Multiline = false;
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_0.TabStop = true;
			this._txtFields_0.Visible = true;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Name = "_txtFields_0";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(412, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 30;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(237, 3);
			this.cmdPrint.TabIndex = 33;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.cmdAllocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdAllocate.Text = "&Allocate Stock Items";
			this.cmdAllocate.Size = new System.Drawing.Size(73, 29);
			this.cmdAllocate.Location = new System.Drawing.Point(159, 3);
			this.cmdAllocate.TabIndex = 32;
			this.cmdAllocate.TabStop = false;
			this.cmdAllocate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdAllocate.CausesValidation = true;
			this.cmdAllocate.Enabled = true;
			this.cmdAllocate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdAllocate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdAllocate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdAllocate.Name = "cmdAllocate";
			this.cmdEmulate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdEmulate.Text = "&Emulate Pricing";
			this.cmdEmulate.Size = new System.Drawing.Size(73, 29);
			this.cmdEmulate.Location = new System.Drawing.Point(81, 3);
			this.cmdEmulate.TabIndex = 31;
			this.cmdEmulate.TabStop = false;
			this.cmdEmulate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdEmulate.CausesValidation = true;
			this.cmdEmulate.Enabled = true;
			this.cmdEmulate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdEmulate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdEmulate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdEmulate.Name = "cmdEmulate";
			this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.TabIndex = 29;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.CausesValidation = true;
			this.cmdCancel.Enabled = true;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Name = "cmdCancel";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(315, 3);
			this.cmdClose.TabIndex = 28;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			//cmbDeposit.OcxState = CType(resources.GetObject("cmbDeposit.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbDeposit.Size = new System.Drawing.Size(226, 21);
			this.cmbDeposit.Location = new System.Drawing.Point(123, 90);
			this.cmbDeposit.TabIndex = 4;
			this.cmbDeposit.Name = "cmbDeposit";
			this.Line1.X1 = 60;
			this.Line1.X2 = 351;
			this.Line1.Y1 = 237;
			this.Line1.Y2 = 237;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.BorderWidth = 1;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this.lblStockitem.Text = "[No stock Item ...]";
			this.lblStockitem.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblStockitem.Size = new System.Drawing.Size(267, 13);
			this.lblStockitem.Location = new System.Drawing.Point(66, 213);
			this.lblStockitem.TabIndex = 10;
			this.lblStockitem.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblStockitem.BackColor = System.Drawing.Color.Transparent;
			this.lblStockitem.Enabled = true;
			this.lblStockitem.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblStockitem.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblStockitem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblStockitem.UseMnemonic = true;
			this.lblStockitem.Visible = true;
			this.lblStockitem.AutoSize = false;
			this.lblStockitem.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblStockitem.Name = "lblStockitem";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_11.Text = "Deposit:";
			this._lblLabels_11.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_11.Location = new System.Drawing.Point(78, 96);
			this._lblLabels_11.TabIndex = 3;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Enabled = true;
			this._lblLabels_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_11.UseMnemonic = true;
			this._lblLabels_11.Visible = true;
			this._lblLabels_11.AutoSize = true;
			this._lblLabels_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_11.Name = "_lblLabels_11";
			this._lblCG_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_7.Text = "Set_Amount8:";
			this._lblCG_7.Size = new System.Drawing.Size(67, 13);
			this._lblCG_7.Location = new System.Drawing.Point(174, 312);
			this._lblCG_7.TabIndex = 26;
			this._lblCG_7.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_7.Enabled = true;
			this._lblCG_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_7.UseMnemonic = true;
			this._lblCG_7.Visible = true;
			this._lblCG_7.AutoSize = true;
			this._lblCG_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_7.Name = "_lblCG_7";
			this._lblCG_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_6.Text = "Set_Amount7:";
			this._lblCG_6.Size = new System.Drawing.Size(67, 13);
			this._lblCG_6.Location = new System.Drawing.Point(174, 291);
			this._lblCG_6.TabIndex = 24;
			this._lblCG_6.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_6.Enabled = true;
			this._lblCG_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_6.UseMnemonic = true;
			this._lblCG_6.Visible = true;
			this._lblCG_6.AutoSize = true;
			this._lblCG_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_6.Name = "_lblCG_6";
			this._lblCG_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_5.Text = "Set_Amount6:";
			this._lblCG_5.Size = new System.Drawing.Size(67, 13);
			this._lblCG_5.Location = new System.Drawing.Point(174, 270);
			this._lblCG_5.TabIndex = 22;
			this._lblCG_5.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_5.Enabled = true;
			this._lblCG_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_5.UseMnemonic = true;
			this._lblCG_5.Visible = true;
			this._lblCG_5.AutoSize = true;
			this._lblCG_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_5.Name = "_lblCG_5";
			this._lblCG_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_4.Text = "Set_Amount5:";
			this._lblCG_4.Size = new System.Drawing.Size(67, 13);
			this._lblCG_4.Location = new System.Drawing.Point(174, 249);
			this._lblCG_4.TabIndex = 20;
			this._lblCG_4.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_4.Enabled = true;
			this._lblCG_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_4.UseMnemonic = true;
			this._lblCG_4.Visible = true;
			this._lblCG_4.AutoSize = true;
			this._lblCG_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_4.Name = "_lblCG_4";
			this._lblCG_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_3.Text = "Set_Amount4:";
			this._lblCG_3.Size = new System.Drawing.Size(67, 13);
			this._lblCG_3.Location = new System.Drawing.Point(42, 312);
			this._lblCG_3.TabIndex = 18;
			this._lblCG_3.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_3.Enabled = true;
			this._lblCG_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_3.UseMnemonic = true;
			this._lblCG_3.Visible = true;
			this._lblCG_3.AutoSize = true;
			this._lblCG_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_3.Name = "_lblCG_3";
			this._lblCG_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_2.Text = "Set_Amount3:";
			this._lblCG_2.Size = new System.Drawing.Size(67, 13);
			this._lblCG_2.Location = new System.Drawing.Point(42, 291);
			this._lblCG_2.TabIndex = 16;
			this._lblCG_2.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_2.Enabled = true;
			this._lblCG_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_2.UseMnemonic = true;
			this._lblCG_2.Visible = true;
			this._lblCG_2.AutoSize = true;
			this._lblCG_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_2.Name = "_lblCG_2";
			this._lblCG_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_1.Text = "Set_Amount2:";
			this._lblCG_1.Size = new System.Drawing.Size(67, 13);
			this._lblCG_1.Location = new System.Drawing.Point(42, 270);
			this._lblCG_1.TabIndex = 14;
			this._lblCG_1.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_1.Enabled = true;
			this._lblCG_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_1.UseMnemonic = true;
			this._lblCG_1.Visible = true;
			this._lblCG_1.AutoSize = true;
			this._lblCG_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_1.Name = "_lblCG_1";
			this._lblCG_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblCG_0.Text = "Set_Amout1:";
			this._lblCG_0.Size = new System.Drawing.Size(61, 13);
			this._lblCG_0.Location = new System.Drawing.Point(48, 249);
			this._lblCG_0.TabIndex = 12;
			this._lblCG_0.BackColor = System.Drawing.Color.Transparent;
			this._lblCG_0.Enabled = true;
			this._lblCG_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblCG_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblCG_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblCG_0.UseMnemonic = true;
			this._lblCG_0.Visible = true;
			this._lblCG_0.AutoSize = true;
			this._lblCG_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblCG_0.Name = "_lblCG_0";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.Text = "Number of Units in the Set:";
			this._lblLabels_1.Size = new System.Drawing.Size(127, 13);
			this._lblLabels_1.Location = new System.Drawing.Point(180, 117);
			this._lblLabels_1.TabIndex = 5;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Enabled = true;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.UseMnemonic = true;
			this._lblLabels_1.Visible = true;
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.Text = "Set Name:";
			this._lblLabels_0.Size = new System.Drawing.Size(52, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(66, 69);
			this._lblLabels_0.TabIndex = 1;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Enabled = true;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.UseMnemonic = true;
			this._lblLabels_0.Visible = true;
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_0.Name = "_lblLabels_0";
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.Size = new System.Drawing.Size(304, 100);
			this._Shape1_2.Location = new System.Drawing.Point(54, 60);
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_2.BorderWidth = 1;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_2.Visible = true;
			this._Shape1_2.Name = "_Shape1_2";
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Text = "&1. General";
			this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_5.Size = new System.Drawing.Size(61, 13);
			this._lbl_5.Location = new System.Drawing.Point(54, 45);
			this._lbl_5.TabIndex = 0;
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = true;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Text = "&2. Pricing Per Sale Channel";
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.Size = new System.Drawing.Size(157, 13);
			this._lbl_0.Location = new System.Drawing.Point(57, 171);
			this._lbl_0.TabIndex = 8;
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.Size = new System.Drawing.Size(304, 151);
			this._Shape1_0.Location = new System.Drawing.Point(54, 186);
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_0.BorderWidth = 1;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_0.Visible = true;
			this._Shape1_0.Name = "_Shape1_0";
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(chkStockItem);
			this.Controls.Add(_txtFloat_7);
			this.Controls.Add(_txtFloat_6);
			this.Controls.Add(_txtFloat_5);
			this.Controls.Add(_txtFloat_4);
			this.Controls.Add(_txtFloat_3);
			this.Controls.Add(_txtFloat_2);
			this.Controls.Add(_txtFloat_1);
			this.Controls.Add(_txtFloat_0);
			this.Controls.Add(_chkFields_2);
			this.Controls.Add(_txtInteger_0);
			this.Controls.Add(_txtFields_0);
			this.Controls.Add(picButtons);
			this.Controls.Add(cmbDeposit);
			this.ShapeContainer1.Shapes.Add(Line1);
			this.Controls.Add(lblStockitem);
			this.Controls.Add(_lblLabels_11);
			this.Controls.Add(_lblCG_7);
			this.Controls.Add(_lblCG_6);
			this.Controls.Add(_lblCG_5);
			this.Controls.Add(_lblCG_4);
			this.Controls.Add(_lblCG_3);
			this.Controls.Add(_lblCG_2);
			this.Controls.Add(_lblCG_1);
			this.Controls.Add(_lblCG_0);
			this.Controls.Add(_lblLabels_1);
			this.Controls.Add(_lblLabels_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.Controls.Add(_lbl_5);
			this.Controls.Add(_lbl_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdPrint);
			this.picButtons.Controls.Add(cmdAllocate);
			this.picButtons.Controls.Add(cmdEmulate);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.chkFields.SetIndex(_chkFields_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lblCG.SetIndex(_lblCG_7, CType(7, Short))
			//Me.lblCG.SetIndex(_lblCG_6, CType(6, Short))
			//Me.lblCG.SetIndex(_lblCG_5, CType(5, Short))
			//Me.lblCG.SetIndex(_lblCG_4, CType(4, Short))
			//Me.lblCG.SetIndex(_lblCG_3, CType(3, Short))
			//Me.lblCG.SetIndex(_lblCG_2, CType(2, Short))
			//Me.lblCG.SetIndex(_lblCG_1, CType(1, Short))
			//Me.lblCG.SetIndex(_lblCG_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_11, CType(11, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
			//Me.txtFloat.SetIndex(_txtFloat_7, CType(7, Short))
			//Me.txtFloat.SetIndex(_txtFloat_6, CType(6, Short))
			//Me.txtFloat.SetIndex(_txtFloat_5, CType(5, Short))
			//Me.txtFloat.SetIndex(_txtFloat_4, CType(4, Short))
			//Me.txtFloat.SetIndex(_txtFloat_3, CType(3, Short))
			//Me.txtFloat.SetIndex(_txtFloat_2, CType(2, Short))
			//Me.txtFloat.SetIndex(_txtFloat_1, CType(1, Short))
			//Me.txtFloat.SetIndex(_txtFloat_0, CType(0, Short))
			//Me.txtInteger.SetIndex(_txtInteger_0, CType(0, Short))
			this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblCG, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.cmbTerms = new System.Windows.Forms.ComboBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_3 = new System.Windows.Forms.TextBox();
			this._txtFields_4 = new System.Windows.Forms.TextBox();
			this._txtFields_5 = new System.Windows.Forms.TextBox();
			this._txtFields_6 = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this._txtFields_9 = new System.Windows.Forms.TextBox();
			this._txtFields_10 = new System.Windows.Forms.TextBox();
			this._chkFields_11 = new System.Windows.Forms.CheckBox();
			this._txtFloat_12 = new System.Windows.Forms.TextBox();
			this._txtFloat_13 = new System.Windows.Forms.TextBox();
			this._txtFloat_14 = new System.Windows.Forms.TextBox();
			this._txtFloat_15 = new System.Windows.Forms.TextBox();
			this._txtFloat_16 = new System.Windows.Forms.TextBox();
			this._txtFloat_17 = new System.Windows.Forms.TextBox();
			this._txtFloat_18 = new System.Windows.Forms.TextBox();
			this._chkFields_19 = new System.Windows.Forms.CheckBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdStatement = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbChannel = new _4PosBackOffice.NET.myDataGridView();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_12 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lblLabels_14 = new System.Windows.Forms.Label();
			this._lblLabels_15 = new System.Windows.Forms.Label();
			this._lblLabels_16 = new System.Windows.Forms.Label();
			this._lblLabels_17 = new System.Windows.Forms.Label();
			this._lblLabels_18 = new System.Windows.Forms.Label();
			this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
			this.picButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
				this._Shape1_0,
				this._Shape1_1
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(661, 353);
			this.ShapeContainer1.TabIndex = 46;
			this.ShapeContainer1.TabStop = false;
			//
			//_Shape1_0
			//
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
			this._Shape1_0.Location = new System.Drawing.Point(342, 57);
			this._Shape1_0.Name = "_Shape1_0";
			this._Shape1_0.Size = new System.Drawing.Size(310, 191);
			//
			//_Shape1_1
			//
			this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_1, Convert.ToInt16(1));
			this._Shape1_1.Location = new System.Drawing.Point(6, 57);
			this._Shape1_1.Name = "_Shape1_1";
			this._Shape1_1.Size = new System.Drawing.Size(328, 289);
			//
			//_txtFields_0
			//
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.Location = new System.Drawing.Point(420, 222);
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Name = "_txtFields_0";
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.Size = new System.Drawing.Size(226, 19);
			this._txtFields_0.TabIndex = 44;
			//
			//cmbTerms
			//
			this.cmbTerms.BackColor = System.Drawing.SystemColors.Window;
			this.cmbTerms.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbTerms.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbTerms.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbTerms.Items.AddRange(new object[] {
				"C.O.D.",
				"Current",
				"30 Days",
				"60 Days",
				"90 Days"
			});
			this.cmbTerms.Location = new System.Drawing.Point(567, 63);
			this.cmbTerms.Name = "cmbTerms";
			this.cmbTerms.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbTerms.Size = new System.Drawing.Size(79, 21);
			this.cmbTerms.TabIndex = 23;
			//
			//_txtFields_2
			//
			this._txtFields_2.AcceptsReturn = true;
			this._txtFields_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_2.Location = new System.Drawing.Point(102, 63);
			this._txtFields_2.MaxLength = 0;
			this._txtFields_2.Name = "_txtFields_2";
			this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_2.Size = new System.Drawing.Size(226, 19);
			this._txtFields_2.TabIndex = 2;
			//
			//_txtFields_3
			//
			this._txtFields_3.AcceptsReturn = true;
			this._txtFields_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_3.Location = new System.Drawing.Point(102, 84);
			this._txtFields_3.MaxLength = 0;
			this._txtFields_3.Name = "_txtFields_3";
			this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_3.Size = new System.Drawing.Size(226, 19);
			this._txtFields_3.TabIndex = 4;
			//
			//_txtFields_4
			//
			this._txtFields_4.AcceptsReturn = true;
			this._txtFields_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_4.Location = new System.Drawing.Point(15, 120);
			this._txtFields_4.MaxLength = 0;
			this._txtFields_4.Name = "_txtFields_4";
			this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_4.Size = new System.Drawing.Size(157, 19);
			this._txtFields_4.TabIndex = 6;
			//
			//_txtFields_5
			//
			this._txtFields_5.AcceptsReturn = true;
			this._txtFields_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_5.Location = new System.Drawing.Point(174, 120);
			this._txtFields_5.MaxLength = 0;
			this._txtFields_5.Name = "_txtFields_5";
			this._txtFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_5.Size = new System.Drawing.Size(154, 19);
			this._txtFields_5.TabIndex = 8;
			//
			//_txtFields_6
			//
			this._txtFields_6.AcceptsReturn = true;
			this._txtFields_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_6.Location = new System.Drawing.Point(102, 219);
			this._txtFields_6.MaxLength = 0;
			this._txtFields_6.Multiline = true;
			this._txtFields_6.Name = "_txtFields_6";
			this._txtFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_6.Size = new System.Drawing.Size(226, 58);
			this._txtFields_6.TabIndex = 16;
			//
			//_txtFields_7
			//
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.Location = new System.Drawing.Point(102, 279);
			this._txtFields_7.MaxLength = 0;
			this._txtFields_7.Multiline = true;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.Size = new System.Drawing.Size(226, 58);
			this._txtFields_7.TabIndex = 18;
			//
			//_txtFields_8
			//
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.Location = new System.Drawing.Point(102, 144);
			this._txtFields_8.MaxLength = 0;
			this._txtFields_8.Name = "_txtFields_8";
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.Size = new System.Drawing.Size(226, 19);
			this._txtFields_8.TabIndex = 10;
			//
			//_txtFields_9
			//
			this._txtFields_9.AcceptsReturn = true;
			this._txtFields_9.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_9.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_9.Location = new System.Drawing.Point(102, 165);
			this._txtFields_9.MaxLength = 0;
			this._txtFields_9.Name = "_txtFields_9";
			this._txtFields_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_9.Size = new System.Drawing.Size(226, 19);
			this._txtFields_9.TabIndex = 12;
			//
			//_txtFields_10
			//
			this._txtFields_10.AcceptsReturn = true;
			this._txtFields_10.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_10.Location = new System.Drawing.Point(102, 186);
			this._txtFields_10.MaxLength = 0;
			this._txtFields_10.Name = "_txtFields_10";
			this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_10.Size = new System.Drawing.Size(226, 19);
			this._txtFields_10.TabIndex = 14;
			//
			//_chkFields_11
			//
			this._chkFields_11.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_11.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_11.Location = new System.Drawing.Point(429, 195);
			this._chkFields_11.Name = "_chkFields_11";
			this._chkFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_11.Size = new System.Drawing.Size(214, 19);
			this._chkFields_11.TabIndex = 39;
			this._chkFields_11.Text = "Disable this customer from Point Of Sale:";
			this._chkFields_11.UseVisualStyleBackColor = false;
			//
			//_txtFloat_12
			//
			this._txtFloat_12.AcceptsReturn = true;
			this._txtFloat_12.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_12.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_12.Location = new System.Drawing.Point(423, 63);
			this._txtFloat_12.MaxLength = 0;
			this._txtFloat_12.Name = "_txtFloat_12";
			this._txtFloat_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_12.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_12.TabIndex = 21;
			this._txtFloat_12.Text = "9,999,999.00";
			this._txtFloat_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_13
			//
			this._txtFloat_13.AcceptsReturn = true;
			this._txtFloat_13.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_13.Enabled = false;
			this._txtFloat_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_13.Location = new System.Drawing.Point(423, 87);
			this._txtFloat_13.MaxLength = 0;
			this._txtFloat_13.Name = "_txtFloat_13";
			this._txtFloat_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_13.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_13.TabIndex = 25;
			this._txtFloat_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_14
			//
			this._txtFloat_14.AcceptsReturn = true;
			this._txtFloat_14.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_14.Enabled = false;
			this._txtFloat_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_14.Location = new System.Drawing.Point(567, 87);
			this._txtFloat_14.MaxLength = 0;
			this._txtFloat_14.Name = "_txtFloat_14";
			this._txtFloat_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_14.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_14.TabIndex = 27;
			this._txtFloat_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_15
			//
			this._txtFloat_15.AcceptsReturn = true;
			this._txtFloat_15.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_15.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_15.Enabled = false;
			this._txtFloat_15.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_15.Location = new System.Drawing.Point(423, 108);
			this._txtFloat_15.MaxLength = 0;
			this._txtFloat_15.Name = "_txtFloat_15";
			this._txtFloat_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_15.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_15.TabIndex = 29;
			this._txtFloat_15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_16
			//
			this._txtFloat_16.AcceptsReturn = true;
			this._txtFloat_16.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_16.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_16.Enabled = false;
			this._txtFloat_16.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_16.Location = new System.Drawing.Point(567, 108);
			this._txtFloat_16.MaxLength = 0;
			this._txtFloat_16.Name = "_txtFloat_16";
			this._txtFloat_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_16.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_16.TabIndex = 31;
			this._txtFloat_16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_17
			//
			this._txtFloat_17.AcceptsReturn = true;
			this._txtFloat_17.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_17.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_17.Enabled = false;
			this._txtFloat_17.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_17.Location = new System.Drawing.Point(423, 129);
			this._txtFloat_17.MaxLength = 0;
			this._txtFloat_17.Name = "_txtFloat_17";
			this._txtFloat_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_17.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_17.TabIndex = 33;
			this._txtFloat_17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_18
			//
			this._txtFloat_18.AcceptsReturn = true;
			this._txtFloat_18.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_18.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_18.Enabled = false;
			this._txtFloat_18.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_18.Location = new System.Drawing.Point(567, 129);
			this._txtFloat_18.MaxLength = 0;
			this._txtFloat_18.Name = "_txtFloat_18";
			this._txtFloat_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_18.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_18.TabIndex = 35;
			this._txtFloat_18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_chkFields_19
			//
			this._chkFields_19.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_19.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_19.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_19.Location = new System.Drawing.Point(411, 177);
			this._chkFields_19.Name = "_chkFields_19";
			this._chkFields_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_19.Size = new System.Drawing.Size(232, 19);
			this._chkFields_19.TabIndex = 38;
			this._chkFields_19.Text = "Automatically print a statement at monthend:";
			this._chkFields_19.UseVisualStyleBackColor = false;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdStatement);
			this.picButtons.Controls.Add(this.cmdCancel);
			this.picButtons.Controls.Add(this.cmdClose);
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.Name = "picButtons";
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Size = new System.Drawing.Size(661, 38);
			this.picButtons.TabIndex = 42;
			//
			//cmdStatement
			//
			this.cmdStatement.BackColor = System.Drawing.SystemColors.Control;
			this.cmdStatement.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdStatement.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdStatement.Location = new System.Drawing.Point(108, 3);
			this.cmdStatement.Name = "cmdStatement";
			this.cmdStatement.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdStatement.Size = new System.Drawing.Size(73, 29);
			this.cmdStatement.TabIndex = 43;
			this.cmdStatement.TabStop = false;
			this.cmdStatement.Text = "&Statement";
			this.cmdStatement.UseVisualStyleBackColor = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.TabIndex = 40;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//cmdClose
			//
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Location = new System.Drawing.Point(576, 3);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.TabIndex = 41;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//cmbChannel
			//
			this.cmbChannel.AllowAddNew = true;
			this.cmbChannel.BoundText = "";
			this.cmbChannel.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbChannel.Col = 0;
			this.cmbChannel.CtlText = "";
			this.cmbChannel.DataField = null;
			this.cmbChannel.Location = new System.Drawing.Point(423, 150);
			this.cmbChannel.Name = "cmbChannel";
			this.cmbChannel.row = 0;
			this.cmbChannel.Size = new System.Drawing.Size(223, 21);
			this.cmbChannel.TabIndex = 37;
			this.cmbChannel.TopRow = 0;
			//
			//_lblLabels_11
			//
			this._lblLabels_11.AutoSize = true;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_11.Location = new System.Drawing.Point(351, 225);
			this._lblLabels_11.Name = "_lblLabels_11";
			this._lblLabels_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_11.Size = new System.Drawing.Size(71, 13);
			this._lblLabels_11.TabIndex = 45;
			this._lblLabels_11.Text = "VAT Number:";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_0
			//
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Location = new System.Drawing.Point(530, 66);
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_0.TabIndex = 22;
			this._lblLabels_0.Text = "Terms:";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_1
			//
			this._lbl_1.AutoSize = true;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Location = new System.Drawing.Point(6, 42);
			this._lbl_1.Name = "_lbl_1";
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.Size = new System.Drawing.Size(62, 14);
			this._lbl_1.TabIndex = 0;
			this._lbl_1.Text = "&1. General";
			//
			//_lbl_0
			//
			this._lbl_0.AutoSize = true;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Location = new System.Drawing.Point(342, 42);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(73, 14);
			this._lbl_0.TabIndex = 19;
			this._lbl_0.Text = "&2. Financials";
			//
			//_lblLabels_1
			//
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Location = new System.Drawing.Point(355, 156);
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.Size = new System.Drawing.Size(73, 13);
			this._lblLabels_1.TabIndex = 36;
			this._lblLabels_1.Text = "Sale Channel:";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_2
			//
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Location = new System.Drawing.Point(12, 63);
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.Size = new System.Drawing.Size(83, 14);
			this._lblLabels_2.TabIndex = 1;
			this._lblLabels_2.Text = "Invoice Name:";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_3
			//
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Location = new System.Drawing.Point(36, 84);
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.Size = new System.Drawing.Size(65, 13);
			this._lblLabels_3.TabIndex = 3;
			this._lblLabels_3.Text = "Department:";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_4
			//
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Location = new System.Drawing.Point(6, 108);
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.Size = new System.Drawing.Size(156, 14);
			this._lblLabels_4.TabIndex = 5;
			this._lblLabels_4.Text = "Responsible Person Name:";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_5
			//
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Location = new System.Drawing.Point(174, 108);
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.Size = new System.Drawing.Size(60, 14);
			this._lblLabels_5.TabIndex = 7;
			this._lblLabels_5.Text = "Surname:";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_6
			//
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Location = new System.Drawing.Point(11, 219);
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.Size = new System.Drawing.Size(90, 13);
			this._lblLabels_6.TabIndex = 15;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_7
			//
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Location = new System.Drawing.Point(21, 281);
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.Size = new System.Drawing.Size(80, 13);
			this._lblLabels_7.TabIndex = 17;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_8
			//
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Location = new System.Drawing.Point(42, 144);
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_8.TabIndex = 9;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_9
			//
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Location = new System.Drawing.Point(75, 165);
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.Size = new System.Drawing.Size(27, 13);
			this._lblLabels_9.TabIndex = 11;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_10
			//
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Location = new System.Drawing.Point(69, 186);
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.Size = new System.Drawing.Size(35, 13);
			this._lblLabels_10.TabIndex = 13;
			this._lblLabels_10.Text = "Email:";
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_12
			//
			this._lblLabels_12.AutoSize = true;
			this._lblLabels_12.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_12.Location = new System.Drawing.Point(363, 66);
			this._lblLabels_12.Name = "_lblLabels_12";
			this._lblLabels_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_12.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_12.TabIndex = 20;
			this._lblLabels_12.Text = "Credit Limit:";
			this._lblLabels_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_13
			//
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_13.Location = new System.Drawing.Point(381, 90);
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.Size = new System.Drawing.Size(44, 13);
			this._lblLabels_13.TabIndex = 24;
			this._lblLabels_13.Text = "Current:";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_14
			//
			this._lblLabels_14.AutoSize = true;
			this._lblLabels_14.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_14.Location = new System.Drawing.Point(519, 87);
			this._lblLabels_14.Name = "_lblLabels_14";
			this._lblLabels_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_14.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_14.TabIndex = 26;
			this._lblLabels_14.Text = "30 Days:";
			this._lblLabels_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_15
			//
			this._lblLabels_15.AutoSize = true;
			this._lblLabels_15.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_15.Location = new System.Drawing.Point(375, 111);
			this._lblLabels_15.Name = "_lblLabels_15";
			this._lblLabels_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_15.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_15.TabIndex = 28;
			this._lblLabels_15.Text = "60 Days:";
			this._lblLabels_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_16
			//
			this._lblLabels_16.AutoSize = true;
			this._lblLabels_16.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_16.Location = new System.Drawing.Point(519, 108);
			this._lblLabels_16.Name = "_lblLabels_16";
			this._lblLabels_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_16.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_16.TabIndex = 30;
			this._lblLabels_16.Text = "90 Days:";
			this._lblLabels_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_17
			//
			this._lblLabels_17.AutoSize = true;
			this._lblLabels_17.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_17.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_17.Location = new System.Drawing.Point(369, 132);
			this._lblLabels_17.Name = "_lblLabels_17";
			this._lblLabels_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_17.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_17.TabIndex = 32;
			this._lblLabels_17.Text = "120 Days:";
			this._lblLabels_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_18
			//
			this._lblLabels_18.AutoSize = true;
			this._lblLabels_18.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_18.Location = new System.Drawing.Point(513, 129);
			this._lblLabels_18.Name = "_lblLabels_18";
			this._lblLabels_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_18.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_18.TabIndex = 34;
			this._lblLabels_18.Text = "150 Days:";
			this._lblLabels_18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//frmCustomer
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.ClientSize = new System.Drawing.Size(661, 353);
			this.ControlBox = false;
			this.Controls.Add(this._txtFields_0);
			this.Controls.Add(this.cmbTerms);
			this.Controls.Add(this._txtFields_2);
			this.Controls.Add(this._txtFields_3);
			this.Controls.Add(this._txtFields_4);
			this.Controls.Add(this._txtFields_5);
			this.Controls.Add(this._txtFields_6);
			this.Controls.Add(this._txtFields_7);
			this.Controls.Add(this._txtFields_8);
			this.Controls.Add(this._txtFields_9);
			this.Controls.Add(this._txtFields_10);
			this.Controls.Add(this._chkFields_11);
			this.Controls.Add(this._txtFloat_12);
			this.Controls.Add(this._txtFloat_13);
			this.Controls.Add(this._txtFloat_14);
			this.Controls.Add(this._txtFloat_15);
			this.Controls.Add(this._txtFloat_16);
			this.Controls.Add(this._txtFloat_17);
			this.Controls.Add(this._txtFloat_18);
			this.Controls.Add(this._chkFields_19);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.cmbChannel);
			this.Controls.Add(this._lblLabels_11);
			this.Controls.Add(this._lblLabels_0);
			this.Controls.Add(this._lbl_1);
			this.Controls.Add(this._lbl_0);
			this.Controls.Add(this._lblLabels_1);
			this.Controls.Add(this._lblLabels_2);
			this.Controls.Add(this._lblLabels_3);
			this.Controls.Add(this._lblLabels_4);
			this.Controls.Add(this._lblLabels_5);
			this.Controls.Add(this._lblLabels_6);
			this.Controls.Add(this._lblLabels_7);
			this.Controls.Add(this._lblLabels_8);
			this.Controls.Add(this._lblLabels_9);
			this.Controls.Add(this._lblLabels_10);
			this.Controls.Add(this._lblLabels_12);
			this.Controls.Add(this._lblLabels_13);
			this.Controls.Add(this._lblLabels_14);
			this.Controls.Add(this._lblLabels_15);
			this.Controls.Add(this._lblLabels_16);
			this.Controls.Add(this._lblLabels_17);
			this.Controls.Add(this._lblLabels_18);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmCustomer";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Customer Details";
			this.picButtons.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).EndInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSupplierStatement));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.txtSearch = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmbMonth = new System.Windows.Forms.ComboBox();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdExit = new System.Windows.Forms.Button();
			this.DataList1 = new myDataGridView();
			this.lbl = new System.Windows.Forms.Label();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Supplier Previous Statements";
			this.ClientSize = new System.Drawing.Size(263, 425);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmSupplierStatement";
			this.txtSearch.AutoSize = false;
			this.txtSearch.Size = new System.Drawing.Size(199, 19);
			this.txtSearch.Location = new System.Drawing.Point(54, 48);
			this.txtSearch.TabIndex = 1;
			this.txtSearch.AcceptsReturn = true;
			this.txtSearch.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSearch.BackColor = System.Drawing.SystemColors.Window;
			this.txtSearch.CausesValidation = true;
			this.txtSearch.Enabled = true;
			this.txtSearch.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSearch.HideSelection = true;
			this.txtSearch.ReadOnly = false;
			this.txtSearch.MaxLength = 0;
			this.txtSearch.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSearch.Multiline = false;
			this.txtSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSearch.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSearch.TabStop = true;
			this.txtSearch.Visible = true;
			this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSearch.Name = "txtSearch";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(263, 39);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 4;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmbMonth.Size = new System.Drawing.Size(88, 21);
			this.cmbMonth.Location = new System.Drawing.Point(84, 6);
			this.cmbMonth.Items.AddRange(new object[] {
				"Last Month",
				"2 Months Ago",
				"3 Months Ago",
				"4 Months Ago",
				"5 Months Ago",
				"6 Months Ago"
			});
			this.cmbMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbMonth.TabIndex = 3;
			this.cmbMonth.BackColor = System.Drawing.SystemColors.Window;
			this.cmbMonth.CausesValidation = true;
			this.cmbMonth.Enabled = true;
			this.cmbMonth.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbMonth.IntegralHeight = true;
			this.cmbMonth.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbMonth.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbMonth.Sorted = false;
			this.cmbMonth.TabStop = true;
			this.cmbMonth.Visible = true;
			this.cmbMonth.Name = "cmbMonth";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(5, 3);
			this.cmdPrint.TabIndex = 6;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(73, 29);
			this.cmdExit.Location = new System.Drawing.Point(177, 3);
			this.cmdExit.TabIndex = 5;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			//DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(244, 342);
			this.DataList1.Location = new System.Drawing.Point(9, 72);
			this.DataList1.TabIndex = 2;
			this.DataList1.Name = "DataList1";
			this.lbl.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lbl.Text = "&Search :";
			this.lbl.Size = new System.Drawing.Size(40, 13);
			this.lbl.Location = new System.Drawing.Point(11, 51);
			this.lbl.TabIndex = 0;
			this.lbl.BackColor = System.Drawing.Color.Transparent;
			this.lbl.Enabled = true;
			this.lbl.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lbl.Cursor = System.Windows.Forms.Cursors.Default;
			this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lbl.UseMnemonic = true;
			this.lbl.Visible = true;
			this.lbl.AutoSize = true;
			this.lbl.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lbl.Name = "lbl";
			this.Controls.Add(txtSearch);
			this.Controls.Add(picButtons);
			this.Controls.Add(DataList1);
			this.Controls.Add(lbl);
			this.picButtons.Controls.Add(cmbMonth);
			this.picButtons.Controls.Add(cmdPrint);
			this.picButtons.Controls.Add(cmdExit);
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrder));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._cmdInformation_1 = new System.Windows.Forms.Button();
			this._cmdInformation_0 = new System.Windows.Forms.Button();
			this.cmdNext = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this._frmMode_1 = new System.Windows.Forms.GroupBox();
			this.cmdEdit = new System.Windows.Forms.Button();
			this.cmdBlank = new System.Windows.Forms.Button();
			this.cmdAuto = new System.Windows.Forms.Button();
			this._lblData_7 = new System.Windows.Forms.Label();
			this._lblData_6 = new System.Windows.Forms.Label();
			this._lblData_5 = new System.Windows.Forms.Label();
			this._lblLabels_36 = new System.Windows.Forms.Label();
			this._lblLabels_37 = new System.Windows.Forms.Label();
			this._lblLabels_38 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblData_0 = new System.Windows.Forms.Label();
			this._lblData_1 = new System.Windows.Forms.Label();
			this._lblData_2 = new System.Windows.Forms.Label();
			this._lblData_3 = new System.Windows.Forms.Label();
			this._lblData_4 = new System.Windows.Forms.Label();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._frmMode_0 = new System.Windows.Forms.GroupBox();
			this.txtSearch = new System.Windows.Forms.TextBox();
			this.DataList1 = new myDataGridView();
			this._lbl_0 = new System.Windows.Forms.Label();
			//Me.cmdInformation = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components)
			//Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblData = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Shape1 = new OvalShapeArray(components);
			this._frmMode_1.SuspendLayout();
			this._frmMode_0.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			//CType(Me.cmdInformation, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblData, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Create / Amend an Order";
			this.ClientSize = new System.Drawing.Size(362, 472);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmOrder";
			this._cmdInformation_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdInformation_1.Text = "Order Information Report(*)";
			this._cmdInformation_1.Size = new System.Drawing.Size(166, 31);
			this._cmdInformation_1.Location = new System.Drawing.Point(186, 6);
			this._cmdInformation_1.TabIndex = 28;
			this._cmdInformation_1.BackColor = System.Drawing.SystemColors.Control;
			this._cmdInformation_1.CausesValidation = true;
			this._cmdInformation_1.Enabled = true;
			this._cmdInformation_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdInformation_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdInformation_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdInformation_1.TabStop = true;
			this._cmdInformation_1.Name = "_cmdInformation_1";
			this._cmdInformation_0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdInformation_0.Text = "Order Information Report";
			this._cmdInformation_0.Size = new System.Drawing.Size(166, 31);
			this._cmdInformation_0.Location = new System.Drawing.Point(6, 6);
			this._cmdInformation_0.TabIndex = 27;
			this._cmdInformation_0.BackColor = System.Drawing.SystemColors.Control;
			this._cmdInformation_0.CausesValidation = true;
			this._cmdInformation_0.Enabled = true;
			this._cmdInformation_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdInformation_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdInformation_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdInformation_0.TabStop = true;
			this._cmdInformation_0.Name = "_cmdInformation_0";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Next";
			this.cmdNext.Size = new System.Drawing.Size(97, 34);
			this.cmdNext.Location = new System.Drawing.Point(246, 435);
			this.cmdNext.TabIndex = 1;
			this.cmdNext.TabStop = false;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.Name = "cmdNext";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "E&xit";
			this.cmdBack.Size = new System.Drawing.Size(97, 34);
			this.cmdBack.Location = new System.Drawing.Point(15, 435);
			this.cmdBack.TabIndex = 0;
			this.cmdBack.TabStop = false;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.Name = "cmdBack";
			this._frmMode_1.Text = "Select a supplier to transact with.";
			this._frmMode_1.Size = new System.Drawing.Size(346, 379);
			this._frmMode_1.Location = new System.Drawing.Point(6, 45);
			this._frmMode_1.TabIndex = 6;
			this._frmMode_1.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_1.Enabled = true;
			this._frmMode_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_1.Visible = true;
			this._frmMode_1.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_1.Name = "_frmMode_1";
			this.cmdEdit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdEdit.Text = "&Edit Current Order";
			this.cmdEdit.Size = new System.Drawing.Size(97, 52);
			this.cmdEdit.Location = new System.Drawing.Point(9, 318);
			this.cmdEdit.TabIndex = 29;
			this.cmdEdit.TabStop = false;
			this.cmdEdit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdEdit.CausesValidation = true;
			this.cmdEdit.Enabled = true;
			this.cmdEdit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdEdit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdEdit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdEdit.Name = "cmdEdit";
			this.cmdBlank.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBlank.Text = "&Create a Blank Order";
			this.cmdBlank.Size = new System.Drawing.Size(97, 52);
			this.cmdBlank.Location = new System.Drawing.Point(126, 318);
			this.cmdBlank.TabIndex = 26;
			this.cmdBlank.TabStop = false;
			this.cmdBlank.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBlank.CausesValidation = true;
			this.cmdBlank.Enabled = true;
			this.cmdBlank.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBlank.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBlank.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBlank.Name = "cmdBlank";
			this.cmdAuto.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdAuto.Text = "Create &Recommended Order";
			this.cmdAuto.Size = new System.Drawing.Size(97, 52);
			this.cmdAuto.Location = new System.Drawing.Point(240, 318);
			this.cmdAuto.TabIndex = 25;
			this.cmdAuto.TabStop = false;
			this.cmdAuto.BackColor = System.Drawing.SystemColors.Control;
			this.cmdAuto.CausesValidation = true;
			this.cmdAuto.Enabled = true;
			this.cmdAuto.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdAuto.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdAuto.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdAuto.Name = "cmdAuto";
			this._lblData_7.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_7.Text = "Supplier_ShippingCode";
			this._lblData_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_7.Size = new System.Drawing.Size(190, 16);
			this._lblData_7.Location = new System.Drawing.Point(141, 267);
			this._lblData_7.TabIndex = 24;
			this._lblData_7.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_7.Enabled = true;
			this._lblData_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_7.UseMnemonic = true;
			this._lblData_7.Visible = true;
			this._lblData_7.AutoSize = false;
			this._lblData_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_7.Name = "_lblData_7";
			this._lblData_6.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_6.Text = "Supplier_RepresentativeNumber";
			this._lblData_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_6.Size = new System.Drawing.Size(190, 16);
			this._lblData_6.Location = new System.Drawing.Point(141, 249);
			this._lblData_6.TabIndex = 23;
			this._lblData_6.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_6.Enabled = true;
			this._lblData_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_6.UseMnemonic = true;
			this._lblData_6.Visible = true;
			this._lblData_6.AutoSize = false;
			this._lblData_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_6.Name = "_lblData_6";
			this._lblData_5.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_5.Text = "Supplier_RepresentativeName";
			this._lblData_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_5.Size = new System.Drawing.Size(190, 16);
			this._lblData_5.Location = new System.Drawing.Point(141, 231);
			this._lblData_5.TabIndex = 22;
			this._lblData_5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_5.Enabled = true;
			this._lblData_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_5.UseMnemonic = true;
			this._lblData_5.Visible = true;
			this._lblData_5.AutoSize = false;
			this._lblData_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_5.Name = "_lblData_5";
			this._lblLabels_36.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_36.Text = "Account Number:";
			this._lblLabels_36.Size = new System.Drawing.Size(83, 13);
			this._lblLabels_36.Location = new System.Drawing.Point(50, 267);
			this._lblLabels_36.TabIndex = 21;
			this._lblLabels_36.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_36.Enabled = true;
			this._lblLabels_36.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_36.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_36.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_36.UseMnemonic = true;
			this._lblLabels_36.Visible = true;
			this._lblLabels_36.AutoSize = true;
			this._lblLabels_36.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_36.Name = "_lblLabels_36";
			this._lblLabels_37.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_37.Text = "Representative Number:";
			this._lblLabels_37.Size = new System.Drawing.Size(115, 13);
			this._lblLabels_37.Location = new System.Drawing.Point(18, 248);
			this._lblLabels_37.TabIndex = 20;
			this._lblLabels_37.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_37.Enabled = true;
			this._lblLabels_37.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_37.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_37.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_37.UseMnemonic = true;
			this._lblLabels_37.Visible = true;
			this._lblLabels_37.AutoSize = true;
			this._lblLabels_37.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_37.Name = "_lblLabels_37";
			this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_38.Text = "Representative Name:";
			this._lblLabels_38.Size = new System.Drawing.Size(106, 13);
			this._lblLabels_38.Location = new System.Drawing.Point(27, 230);
			this._lblLabels_38.TabIndex = 19;
			this._lblLabels_38.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_38.Enabled = true;
			this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_38.UseMnemonic = true;
			this._lblLabels_38.Visible = true;
			this._lblLabels_38.AutoSize = true;
			this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_38.Name = "_lblLabels_38";
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Text = "&2. Ordering Details";
			this._lbl_2.Size = new System.Drawing.Size(107, 13);
			this._lbl_2.Location = new System.Drawing.Point(9, 207);
			this._lbl_2.TabIndex = 18;
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = true;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Text = "&1. General";
			this._lbl_1.Size = new System.Drawing.Size(61, 13);
			this._lbl_1.Location = new System.Drawing.Point(9, 18);
			this._lbl_1.TabIndex = 17;
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = true;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.Text = "Supplier Name:";
			this._lblLabels_2.Size = new System.Drawing.Size(87, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(13, 39);
			this._lblLabels_2.TabIndex = 16;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Enabled = true;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.UseMnemonic = true;
			this._lblLabels_2.Visible = true;
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.Size = new System.Drawing.Size(94, 13);
			this._lblLabels_6.Location = new System.Drawing.Point(6, 78);
			this._lblLabels_6.TabIndex = 15;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Enabled = true;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.UseMnemonic = true;
			this._lblLabels_6.Visible = true;
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.Size = new System.Drawing.Size(76, 13);
			this._lblLabels_7.Location = new System.Drawing.Point(24, 138);
			this._lblLabels_7.TabIndex = 14;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.UseMnemonic = true;
			this._lblLabels_7.Visible = true;
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(42, 57);
			this._lblLabels_8.TabIndex = 13;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.UseMnemonic = true;
			this._lblLabels_8.Visible = true;
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.Size = new System.Drawing.Size(22, 13);
			this._lblLabels_9.Location = new System.Drawing.Point(210, 57);
			this._lblLabels_9.TabIndex = 12;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Enabled = true;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.UseMnemonic = true;
			this._lblLabels_9.Visible = true;
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblData_0.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_0.Text = "Supplier_Name";
			this._lblData_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_0.Size = new System.Drawing.Size(226, 16);
			this._lblData_0.Location = new System.Drawing.Point(105, 39);
			this._lblData_0.TabIndex = 11;
			this._lblData_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_0.Enabled = true;
			this._lblData_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_0.UseMnemonic = true;
			this._lblData_0.Visible = true;
			this._lblData_0.AutoSize = false;
			this._lblData_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_0.Name = "_lblData_0";
			this._lblData_1.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_1.Text = "Supplier_Telephone";
			this._lblData_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_1.Size = new System.Drawing.Size(94, 16);
			this._lblData_1.Location = new System.Drawing.Point(105, 57);
			this._lblData_1.TabIndex = 10;
			this._lblData_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_1.Enabled = true;
			this._lblData_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_1.UseMnemonic = true;
			this._lblData_1.Visible = true;
			this._lblData_1.AutoSize = false;
			this._lblData_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_1.Name = "_lblData_1";
			this._lblData_2.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_2.Text = "Supplier_Facimile";
			this._lblData_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_2.Size = new System.Drawing.Size(94, 16);
			this._lblData_2.Location = new System.Drawing.Point(237, 57);
			this._lblData_2.TabIndex = 9;
			this._lblData_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_2.Enabled = true;
			this._lblData_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_2.UseMnemonic = true;
			this._lblData_2.Visible = true;
			this._lblData_2.AutoSize = false;
			this._lblData_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_2.Name = "_lblData_2";
			this._lblData_3.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_3.Text = "Supplier_PhysicalAddress";
			this._lblData_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_3.Size = new System.Drawing.Size(226, 58);
			this._lblData_3.Location = new System.Drawing.Point(105, 78);
			this._lblData_3.TabIndex = 8;
			this._lblData_3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_3.Enabled = true;
			this._lblData_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_3.UseMnemonic = true;
			this._lblData_3.Visible = true;
			this._lblData_3.AutoSize = false;
			this._lblData_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_3.Name = "_lblData_3";
			this._lblData_4.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this._lblData_4.Text = "Supplier_PostalAddress";
			this._lblData_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblData_4.Size = new System.Drawing.Size(226, 58);
			this._lblData_4.Location = new System.Drawing.Point(105, 141);
			this._lblData_4.TabIndex = 7;
			this._lblData_4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblData_4.Enabled = true;
			this._lblData_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblData_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblData_4.UseMnemonic = true;
			this._lblData_4.Visible = true;
			this._lblData_4.AutoSize = false;
			this._lblData_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._lblData_4.Name = "_lblData_4";
			this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.Size = new System.Drawing.Size(328, 172);
			this._Shape1_1.Location = new System.Drawing.Point(9, 20);
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_1.BorderWidth = 1;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_1.Visible = true;
			this._Shape1_1.Name = "_Shape1_1";
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.Size = new System.Drawing.Size(328, 70);
			this._Shape1_2.Location = new System.Drawing.Point(9, 209);
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_2.BorderWidth = 1;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_2.Visible = true;
			this._Shape1_2.Name = "_Shape1_2";
			this._frmMode_0.Text = "Select a supplier to transact with.";
			this._frmMode_0.Size = new System.Drawing.Size(346, 379);
			this._frmMode_0.Location = new System.Drawing.Point(6, 48);
			this._frmMode_0.TabIndex = 2;
			this._frmMode_0.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_0.Enabled = true;
			this._frmMode_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_0.Visible = true;
			this._frmMode_0.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_0.Name = "_frmMode_0";
			this.txtSearch.AutoSize = false;
			this.txtSearch.Size = new System.Drawing.Size(283, 19);
			this.txtSearch.Location = new System.Drawing.Point(54, 18);
			this.txtSearch.TabIndex = 3;
			this.txtSearch.AcceptsReturn = true;
			this.txtSearch.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSearch.BackColor = System.Drawing.SystemColors.Window;
			this.txtSearch.CausesValidation = true;
			this.txtSearch.Enabled = true;
			this.txtSearch.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSearch.HideSelection = true;
			this.txtSearch.ReadOnly = false;
			this.txtSearch.MaxLength = 0;
			this.txtSearch.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSearch.Multiline = false;
			this.txtSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSearch.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSearch.TabStop = true;
			this.txtSearch.Visible = true;
			this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSearch.Name = "txtSearch";
			//'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(328, 329);
			this.DataList1.Location = new System.Drawing.Point(9, 42);
			this.DataList1.TabIndex = 4;
			this.DataList1.Name = "DataList1";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "&Search :";
			this._lbl_0.Size = new System.Drawing.Size(40, 13);
			this._lbl_0.Location = new System.Drawing.Point(11, 21);
			this._lbl_0.TabIndex = 5;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this.Controls.Add(_cmdInformation_1);
			this.Controls.Add(_cmdInformation_0);
			this.Controls.Add(cmdNext);
			this.Controls.Add(cmdBack);
			this.Controls.Add(_frmMode_1);
			this.Controls.Add(_frmMode_0);
			this._frmMode_1.Controls.Add(cmdEdit);
			this._frmMode_1.Controls.Add(cmdBlank);
			this._frmMode_1.Controls.Add(cmdAuto);
			this._frmMode_1.Controls.Add(_lblData_7);
			this._frmMode_1.Controls.Add(_lblData_6);
			this._frmMode_1.Controls.Add(_lblData_5);
			this._frmMode_1.Controls.Add(_lblLabels_36);
			this._frmMode_1.Controls.Add(_lblLabels_37);
			this._frmMode_1.Controls.Add(_lblLabels_38);
			this._frmMode_1.Controls.Add(_lbl_2);
			this._frmMode_1.Controls.Add(_lbl_1);
			this._frmMode_1.Controls.Add(_lblLabels_2);
			this._frmMode_1.Controls.Add(_lblLabels_6);
			this._frmMode_1.Controls.Add(_lblLabels_7);
			this._frmMode_1.Controls.Add(_lblLabels_8);
			this._frmMode_1.Controls.Add(_lblLabels_9);
			this._frmMode_1.Controls.Add(_lblData_0);
			this._frmMode_1.Controls.Add(_lblData_1);
			this._frmMode_1.Controls.Add(_lblData_2);
			this._frmMode_1.Controls.Add(_lblData_3);
			this._frmMode_1.Controls.Add(_lblData_4);
			this.ShapeContainer1.Shapes.Add(_Shape1_1);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this._frmMode_1.Controls.Add(ShapeContainer1);
			this._frmMode_0.Controls.Add(txtSearch);
			this._frmMode_0.Controls.Add(DataList1);
			this._frmMode_0.Controls.Add(_lbl_0);
			//Me.cmdInformation.SetIndex(_cmdInformation_1, CType(1, Short))
			//Me.cmdInformation.SetIndex(_cmdInformation_0, CType(0, Short))
			//Me.frmMode.SetIndex(_frmMode_1, CType(1, Short))
			//Me.frmMode.SetIndex(_frmMode_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lblData.SetIndex(_lblData_7, CType(7, Short))
			//Me.lblData.SetIndex(_lblData_6, CType(6, Short))
			//Me.lblData.SetIndex(_lblData_5, CType(5, Short))
			//Me.lblData.SetIndex(_lblData_0, CType(0, Short))
			//Me.lblData.SetIndex(_lblData_1, CType(1, Short))
			//M() ''e.lblData.SetIndex(_lblData_2, CType(2, Short))
			//M() 'e.lblData.SetIndex(_lblData_3, CType(3, Short))
			//Me.lblData.SetIndex(_lblData_4, CType(4, Short))
			//Me.lblLabels.SetIndex(_lblLabels_36, CType(36, Short))
			//Me.lblLabels.SetIndex(_lblLabels_37, CType(37, Short))
			//Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
			//Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//Me.lblLabels.SetIndex(_lblLabels_9, CType(9, Short))
			//Me.Shape1.SetIndex(_Shape1_1, CType(1, Short))
			//Me.Shape1.SetIndex(_Shape1_2, CType(2, Short))
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblData, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.cmdInformation, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this._frmMode_1.ResumeLayout(false);
			this._frmMode_0.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemple #16
0
 private void InitializeComponent()
 {
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(this.components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_0       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._chkFields_1    = new System.Windows.Forms.CheckBox();
     this._txtFloat_3     = new System.Windows.Forms.TextBox();
     this._txtFloat_2     = new System.Windows.Forms.TextBox();
     this._txtFloat_1     = new System.Windows.Forms.TextBox();
     this._txtFloat_0     = new System.Windows.Forms.TextBox();
     this._txtHide_1      = new System.Windows.Forms.TextBox();
     this._txtHide_0      = new System.Windows.Forms.TextBox();
     this._txtInteger_5   = new System.Windows.Forms.TextBox();
     this._txtFields_4    = new System.Windows.Forms.TextBox();
     this._txtFields_3    = new System.Windows.Forms.TextBox();
     this._txtFields_28   = new System.Windows.Forms.TextBox();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdPrint        = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.cmbVat          = new _4PosBackOffice.NET.myDataGridView();
     this._lbl_0          = new System.Windows.Forms.Label();
     this._lblLabels_2    = new System.Windows.Forms.Label();
     this._lblLabels_9    = new System.Windows.Forms.Label();
     this._lblLabels_8    = new System.Windows.Forms.Label();
     this._lblLabels_7    = new System.Windows.Forms.Label();
     this._lblLabels_6    = new System.Windows.Forms.Label();
     this._lblLabels_5    = new System.Windows.Forms.Label();
     this._lblLabels_4    = new System.Windows.Forms.Label();
     this._lblLabels_3    = new System.Windows.Forms.Label();
     this._lblLabels_38   = new System.Windows.Forms.Label();
     this._lbl_5          = new System.Windows.Forms.Label();
     this.Shape1          = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
     this.picButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.cmbVat).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     this.SuspendLayout();
     //
     //ShapeContainer1
     //
     this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
     this.ShapeContainer1.Margin   = new System.Windows.Forms.Padding(0);
     this.ShapeContainer1.Name     = "ShapeContainer1";
     this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
         this._Shape1_2,
         this._Shape1_0
     });
     this.ShapeContainer1.Size     = new System.Drawing.Size(549, 205);
     this.ShapeContainer1.TabIndex = 26;
     this.ShapeContainer1.TabStop  = false;
     //
     //_Shape1_2
     //
     this._Shape1_2.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_2.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_2.FillColor   = System.Drawing.Color.Black;
     this.Shape1.SetIndex(this._Shape1_2, Convert.ToInt16(2));
     this._Shape1_2.Location = new System.Drawing.Point(15, 60);
     this._Shape1_2.Name     = "_Shape1_2";
     this._Shape1_2.Size     = new System.Drawing.Size(286, 136);
     //
     //_Shape1_0
     //
     this._Shape1_0.BackColor   = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._Shape1_0.BackStyle   = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
     this._Shape1_0.FillColor   = System.Drawing.Color.Black;
     this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
     this._Shape1_0.Location = new System.Drawing.Point(309, 60);
     this._Shape1_0.Name     = "_Shape1_0";
     this._Shape1_0.Size     = new System.Drawing.Size(229, 76);
     //
     //_chkFields_1
     //
     this._chkFields_1.BackColor               = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
     this._chkFields_1.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this._chkFields_1.Cursor                  = System.Windows.Forms.Cursors.Default;
     this._chkFields_1.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this._chkFields_1.ForeColor               = System.Drawing.SystemColors.WindowText;
     this._chkFields_1.Location                = new System.Drawing.Point(171, 174);
     this._chkFields_1.Name                    = "_chkFields_1";
     this._chkFields_1.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this._chkFields_1.Size                    = new System.Drawing.Size(118, 19);
     this._chkFields_1.TabIndex                = 11;
     this._chkFields_1.Text                    = "Disable this Deposit";
     this._chkFields_1.UseVisualStyleBackColor = false;
     //
     //_txtFloat_3
     //
     this._txtFloat_3.AcceptsReturn = true;
     this._txtFloat_3.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_3.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_3.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_3.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_3.Location      = new System.Drawing.Point(465, 99);
     this._txtFloat_3.MaxLength     = 0;
     this._txtFloat_3.Name          = "_txtFloat_3";
     this._txtFloat_3.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_3.Size          = new System.Drawing.Size(61, 19);
     this._txtFloat_3.TabIndex      = 20;
     this._txtFloat_3.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtFloat_2
     //
     this._txtFloat_2.AcceptsReturn = true;
     this._txtFloat_2.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_2.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_2.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_2.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_2.Location      = new System.Drawing.Point(402, 99);
     this._txtFloat_2.MaxLength     = 0;
     this._txtFloat_2.Name          = "_txtFloat_2";
     this._txtFloat_2.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_2.Size          = new System.Drawing.Size(61, 19);
     this._txtFloat_2.TabIndex      = 17;
     this._txtFloat_2.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtFloat_1
     //
     this._txtFloat_1.AcceptsReturn = true;
     this._txtFloat_1.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_1.Location      = new System.Drawing.Point(465, 78);
     this._txtFloat_1.MaxLength     = 0;
     this._txtFloat_1.Name          = "_txtFloat_1";
     this._txtFloat_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_1.Size          = new System.Drawing.Size(61, 19);
     this._txtFloat_1.TabIndex      = 19;
     this._txtFloat_1.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtFloat_0
     //
     this._txtFloat_0.AcceptsReturn = true;
     this._txtFloat_0.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFloat_0.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFloat_0.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFloat_0.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFloat_0.Location      = new System.Drawing.Point(402, 78);
     this._txtFloat_0.MaxLength     = 0;
     this._txtFloat_0.Name          = "_txtFloat_0";
     this._txtFloat_0.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFloat_0.Size          = new System.Drawing.Size(61, 19);
     this._txtFloat_0.TabIndex      = 16;
     this._txtFloat_0.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtHide_1
     //
     this._txtHide_1.AcceptsReturn = true;
     this._txtHide_1.BackColor     = System.Drawing.SystemColors.Window;
     this._txtHide_1.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtHide_1.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtHide_1.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtHide_1.Location      = new System.Drawing.Point(329, 167);
     this._txtHide_1.MaxLength     = 0;
     this._txtHide_1.Name          = "_txtHide_1";
     this._txtHide_1.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtHide_1.Size          = new System.Drawing.Size(99, 19);
     this._txtHide_1.TabIndex      = 25;
     this._txtHide_1.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtHide_1.Visible       = false;
     //
     //_txtHide_0
     //
     this._txtHide_0.AcceptsReturn = true;
     this._txtHide_0.BackColor     = System.Drawing.SystemColors.Window;
     this._txtHide_0.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtHide_0.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtHide_0.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtHide_0.Location      = new System.Drawing.Point(329, 142);
     this._txtHide_0.MaxLength     = 0;
     this._txtHide_0.Name          = "_txtHide_0";
     this._txtHide_0.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtHide_0.Size          = new System.Drawing.Size(99, 19);
     this._txtHide_0.TabIndex      = 24;
     this._txtHide_0.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtHide_0.Visible       = false;
     //
     //_txtInteger_5
     //
     this._txtInteger_5.AcceptsReturn = true;
     this._txtInteger_5.BackColor     = System.Drawing.SystemColors.Window;
     this._txtInteger_5.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtInteger_5.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtInteger_5.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtInteger_5.Location      = new System.Drawing.Point(239, 152);
     this._txtInteger_5.MaxLength     = 0;
     this._txtInteger_5.Name          = "_txtInteger_5";
     this._txtInteger_5.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtInteger_5.Size          = new System.Drawing.Size(51, 19);
     this._txtInteger_5.TabIndex      = 10;
     this._txtInteger_5.TextAlign     = System.Windows.Forms.HorizontalAlignment.Right;
     //
     //_txtFields_4
     //
     this._txtFields_4.AcceptsReturn = true;
     this._txtFields_4.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFields_4.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_4.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_4.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFields_4.Location      = new System.Drawing.Point(104, 108);
     this._txtFields_4.MaxLength     = 15;
     this._txtFields_4.Name          = "_txtFields_4";
     this._txtFields_4.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFields_4.Size          = new System.Drawing.Size(184, 19);
     this._txtFields_4.TabIndex      = 6;
     //
     //_txtFields_3
     //
     this._txtFields_3.AcceptsReturn = true;
     this._txtFields_3.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFields_3.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_3.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_3.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFields_3.Location      = new System.Drawing.Point(105, 87);
     this._txtFields_3.MaxLength     = 20;
     this._txtFields_3.Name          = "_txtFields_3";
     this._txtFields_3.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFields_3.Size          = new System.Drawing.Size(184, 19);
     this._txtFields_3.TabIndex      = 4;
     //
     //_txtFields_28
     //
     this._txtFields_28.AcceptsReturn = true;
     this._txtFields_28.BackColor     = System.Drawing.SystemColors.Window;
     this._txtFields_28.BorderStyle   = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_28.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_28.ForeColor     = System.Drawing.SystemColors.WindowText;
     this._txtFields_28.Location      = new System.Drawing.Point(104, 64);
     this._txtFields_28.MaxLength     = 128;
     this._txtFields_28.Name          = "_txtFields_28";
     this._txtFields_28.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this._txtFields_28.Size          = new System.Drawing.Size(184, 19);
     this._txtFields_28.TabIndex      = 2;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.cmdPrint);
     this.picButtons.Controls.Add(this.cmdCancel);
     this.picButtons.Controls.Add(this.cmdClose);
     this.picButtons.Cursor      = System.Windows.Forms.Cursors.Default;
     this.picButtons.Dock        = System.Windows.Forms.DockStyle.Top;
     this.picButtons.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.picButtons.Location    = new System.Drawing.Point(0, 0);
     this.picButtons.Name        = "picButtons";
     this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Size        = new System.Drawing.Size(549, 39);
     this.picButtons.TabIndex    = 23;
     //
     //cmdPrint
     //
     this.cmdPrint.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdPrint.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Location                = new System.Drawing.Point(375, 3);
     this.cmdPrint.Name                    = "cmdPrint";
     this.cmdPrint.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Size                    = new System.Drawing.Size(73, 29);
     this.cmdPrint.TabIndex                = 26;
     this.cmdPrint.TabStop                 = false;
     this.cmdPrint.Text                    = "&Print";
     this.cmdPrint.UseVisualStyleBackColor = false;
     //
     //cmdCancel
     //
     this.cmdCancel.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdCancel.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdCancel.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Location                = new System.Drawing.Point(5, 3);
     this.cmdCancel.Name                    = "cmdCancel";
     this.cmdCancel.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.Size                    = new System.Drawing.Size(73, 29);
     this.cmdCancel.TabIndex                = 22;
     this.cmdCancel.TabStop                 = false;
     this.cmdCancel.Text                    = "&Undo";
     this.cmdCancel.UseVisualStyleBackColor = false;
     //
     //cmdClose
     //
     this.cmdClose.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdClose.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdClose.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Location                = new System.Drawing.Point(460, 3);
     this.cmdClose.Name                    = "cmdClose";
     this.cmdClose.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Size                    = new System.Drawing.Size(73, 29);
     this.cmdClose.TabIndex                = 21;
     this.cmdClose.TabStop                 = false;
     this.cmdClose.Text                    = "E&xit";
     this.cmdClose.UseVisualStyleBackColor = false;
     //
     //cmbVat
     //
     this.cmbVat.AllowAddNew   = true;
     this.cmbVat.BoundText     = "";
     this.cmbVat.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.cmbVat.Col           = 0;
     this.cmbVat.CtlText       = "";
     this.cmbVat.DataField     = null;
     this.cmbVat.Location      = new System.Drawing.Point(105, 129);
     this.cmbVat.Name          = "cmbVat";
     this.cmbVat.row           = 0;
     this.cmbVat.Size          = new System.Drawing.Size(184, 21);
     this.cmbVat.TabIndex      = 8;
     this.cmbVat.TopRow        = 0;
     //
     //_lbl_0
     //
     this._lbl_0.AutoSize    = true;
     this._lbl_0.BackColor   = System.Drawing.Color.Transparent;
     this._lbl_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lbl_0.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_0.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Location    = new System.Drawing.Point(309, 45);
     this._lbl_0.Name        = "_lbl_0";
     this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.Size        = new System.Drawing.Size(57, 14);
     this._lbl_0.TabIndex    = 12;
     this._lbl_0.Text        = "&2. Pricing";
     //
     //_lblLabels_2
     //
     this._lblLabels_2.AutoSize    = true;
     this._lblLabels_2.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_2.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_2.Location    = new System.Drawing.Point(72, 132);
     this._lblLabels_2.Name        = "_lblLabels_2";
     this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_2.Size        = new System.Drawing.Size(31, 13);
     this._lblLabels_2.TabIndex    = 7;
     this._lblLabels_2.Text        = "VAT:";
     this._lblLabels_2.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_9
     //
     this._lblLabels_9.AutoSize    = true;
     this._lblLabels_9.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_9.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_9.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_9.Location    = new System.Drawing.Point(498, 66);
     this._lblLabels_9.Name        = "_lblLabels_9";
     this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_9.Size        = new System.Drawing.Size(31, 13);
     this._lblLabels_9.TabIndex    = 18;
     this._lblLabels_9.Text        = "Case";
     this._lblLabels_9.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_8
     //
     this._lblLabels_8.AutoSize    = true;
     this._lblLabels_8.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_8.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_8.Location    = new System.Drawing.Point(432, 66);
     this._lblLabels_8.Name        = "_lblLabels_8";
     this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_8.Size        = new System.Drawing.Size(34, 13);
     this._lblLabels_8.TabIndex    = 15;
     this._lblLabels_8.Text        = "Bottle";
     this._lblLabels_8.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_7
     //
     this._lblLabels_7.AutoSize    = true;
     this._lblLabels_7.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_7.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_7.Location    = new System.Drawing.Point(318, 99);
     this._lblLabels_7.Name        = "_lblLabels_7";
     this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_7.Size        = new System.Drawing.Size(84, 13);
     this._lblLabels_7.TabIndex    = 14;
     this._lblLabels_7.Text        = "2. Special Price:";
     this._lblLabels_7.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_6
     //
     this._lblLabels_6.AutoSize    = true;
     this._lblLabels_6.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_6.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_6.Location    = new System.Drawing.Point(312, 81);
     this._lblLabels_6.Name        = "_lblLabels_6";
     this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_6.Size        = new System.Drawing.Size(91, 13);
     this._lblLabels_6.TabIndex    = 13;
     this._lblLabels_6.Text        = "1. Inclusive Price:";
     this._lblLabels_6.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_5
     //
     this._lblLabels_5.AutoSize    = true;
     this._lblLabels_5.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_5.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_5.Location    = new System.Drawing.Point(104, 155);
     this._lblLabels_5.Name        = "_lblLabels_5";
     this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_5.Size        = new System.Drawing.Size(138, 13);
     this._lblLabels_5.TabIndex    = 9;
     this._lblLabels_5.Text        = "Number of Bottles In a case";
     this._lblLabels_5.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_4
     //
     this._lblLabels_4.AutoSize    = true;
     this._lblLabels_4.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_4.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_4.Location    = new System.Drawing.Point(21, 108);
     this._lblLabels_4.Name        = "_lblLabels_4";
     this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_4.Size        = new System.Drawing.Size(84, 13);
     this._lblLabels_4.TabIndex    = 5;
     this._lblLabels_4.Text        = "POS Quick Key:";
     this._lblLabels_4.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_3
     //
     this._lblLabels_3.AutoSize    = true;
     this._lblLabels_3.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_3.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_3.Location    = new System.Drawing.Point(27, 87);
     this._lblLabels_3.Name        = "_lblLabels_3";
     this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_3.Size        = new System.Drawing.Size(78, 13);
     this._lblLabels_3.TabIndex    = 3;
     this._lblLabels_3.Text        = "Receipt Name:";
     this._lblLabels_3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lblLabels_38
     //
     this._lblLabels_38.AutoSize    = true;
     this._lblLabels_38.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_38.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_38.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_38.Location    = new System.Drawing.Point(30, 69);
     this._lblLabels_38.Name        = "_lblLabels_38";
     this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_38.Size        = new System.Drawing.Size(75, 13);
     this._lblLabels_38.TabIndex    = 1;
     this._lblLabels_38.Text        = "Display Name:";
     this._lblLabels_38.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //_lbl_5
     //
     this._lbl_5.AutoSize    = true;
     this._lbl_5.BackColor   = System.Drawing.Color.Transparent;
     this._lbl_5.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lbl_5.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_5.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lbl_5.Location    = new System.Drawing.Point(15, 45);
     this._lbl_5.Name        = "_lbl_5";
     this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lbl_5.Size        = new System.Drawing.Size(62, 14);
     this._lbl_5.TabIndex    = 0;
     this._lbl_5.Text        = "&1. General";
     //
     //frmDeposit
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
     this.ClientSize          = new System.Drawing.Size(549, 205);
     this.ControlBox          = false;
     this.Controls.Add(this._chkFields_1);
     this.Controls.Add(this._txtFloat_3);
     this.Controls.Add(this._txtFloat_2);
     this.Controls.Add(this._txtFloat_1);
     this.Controls.Add(this._txtFloat_0);
     this.Controls.Add(this._txtHide_1);
     this.Controls.Add(this._txtHide_0);
     this.Controls.Add(this._txtInteger_5);
     this.Controls.Add(this._txtFields_4);
     this.Controls.Add(this._txtFields_3);
     this.Controls.Add(this._txtFields_28);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this.cmbVat);
     this.Controls.Add(this._lbl_0);
     this.Controls.Add(this._lblLabels_2);
     this.Controls.Add(this._lblLabels_9);
     this.Controls.Add(this._lblLabels_8);
     this.Controls.Add(this._lblLabels_7);
     this.Controls.Add(this._lblLabels_6);
     this.Controls.Add(this._lblLabels_5);
     this.Controls.Add(this._lblLabels_4);
     this.Controls.Add(this._lblLabels_3);
     this.Controls.Add(this._lblLabels_38);
     this.Controls.Add(this._lbl_5);
     this.Controls.Add(this.ShapeContainer1);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.KeyPreview      = true;
     this.Location        = new System.Drawing.Point(73, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmDeposit";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Edit Deposit Details";
     this.picButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.cmbVat).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockfromFile));
     this.components         = new System.ComponentModel.Container();
     this.ToolTip1           = new System.Windows.Forms.ToolTip(components);
     this.Frame2             = new System.Windows.Forms.GroupBox();
     this.txtFile            = new System.Windows.Forms.TextBox();
     this.prgStockItem       = new System.Windows.Forms.ProgressBar();
     this.Label1             = new System.Windows.Forms.Label();
     this.Label2             = new System.Windows.Forms.Label();
     this.picButtons         = new System.Windows.Forms.Panel();
     this.cmdNext            = new System.Windows.Forms.Button();
     this.cmdBack            = new System.Windows.Forms.Button();
     this.CommonDialog1Open  = new System.Windows.Forms.OpenFileDialog();
     this.CommonDialog1Save  = new System.Windows.Forms.SaveFileDialog();
     this.CommonDialog1Font  = new System.Windows.Forms.FontDialog();
     this.CommonDialog1Color = new System.Windows.Forms.ColorDialog();
     this.CommonDialog1Print = new System.Windows.Forms.PrintDialog();
     this._frmMode_1         = new System.Windows.Forms.GroupBox();
     this.Picture1           = new System.Windows.Forms.PictureBox();
     this.txtName            = new System.Windows.Forms.TextBox();
     this.txtReceipt         = new System.Windows.Forms.TextBox();
     this.Frame1             = new System.Windows.Forms.GroupBox();
     this.txtQuantity        = new System.Windows.Forms.TextBox();
     this.txtCost            = new System.Windows.Forms.TextBox();
     this.cmbShrink          = new myDataGridView();
     this._lblLabels_2       = new System.Windows.Forms.Label();
     this._lblLabels_10      = new System.Windows.Forms.Label();
     this._lblLabels_1       = new System.Windows.Forms.Label();
     this.cmbPricingGroup    = new myDataGridView();
     this.cmbStockGroup      = new myDataGridView();
     this.cmbDeposit         = new myDataGridView();
     this.cmbSupplier        = new myDataGridView();
     this._lblLabels_6       = new System.Windows.Forms.Label();
     this._lblLabels_0       = new System.Windows.Forms.Label();
     this._lblLabels_3       = new System.Windows.Forms.Label();
     this._lblLabels_4       = new System.Windows.Forms.Label();
     this._lblLabels_7       = new System.Windows.Forms.Label();
     this._lblLabels_8       = new System.Windows.Forms.Label();
     //Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
     //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Frame2.SuspendLayout();
     this.picButtons.SuspendLayout();
     this._frmMode_1.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.cmbShrink).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbPricingGroup).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbStockGroup).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbDeposit).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbSupplier).BeginInit();
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
     this.FormBorderStyle              = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                         = "Adding Stock Items";
     this.ClientSize                   = new System.Drawing.Size(528, 170);
     this.Location                     = new System.Drawing.Point(3, 22);
     this.ControlBox                   = false;
     this.MaximizeBox                  = false;
     this.MinimizeBox                  = false;
     this.ShowInTaskbar                = false;
     this.StartPosition                = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode                = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                    = System.Drawing.SystemColors.Control;
     this.Enabled                      = true;
     this.KeyPreview                   = false;
     this.Cursor                       = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                  = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                   = false;
     this.WindowState                  = System.Windows.Forms.FormWindowState.Normal;
     this.Name                         = "frmStockfromFile";
     this.Frame2.Size                  = new System.Drawing.Size(515, 99);
     this.Frame2.Location              = new System.Drawing.Point(6, 62);
     this.Frame2.TabIndex              = 24;
     this.Frame2.BackColor             = System.Drawing.SystemColors.Control;
     this.Frame2.Enabled               = true;
     this.Frame2.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.Frame2.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Visible               = true;
     this.Frame2.Padding               = new System.Windows.Forms.Padding(0);
     this.Frame2.Name                  = "Frame2";
     this.txtFile.AutoSize             = false;
     this.txtFile.Enabled              = false;
     this.txtFile.Size                 = new System.Drawing.Size(403, 19);
     this.txtFile.Location             = new System.Drawing.Point(104, 12);
     this.txtFile.TabIndex             = 26;
     this.txtFile.AcceptsReturn        = true;
     this.txtFile.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtFile.BackColor            = System.Drawing.SystemColors.Window;
     this.txtFile.CausesValidation     = true;
     this.txtFile.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtFile.HideSelection        = true;
     this.txtFile.ReadOnly             = false;
     this.txtFile.MaxLength            = 0;
     this.txtFile.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtFile.Multiline            = false;
     this.txtFile.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtFile.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtFile.TabStop              = true;
     this.txtFile.Visible              = true;
     this.txtFile.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtFile.Name                 = "txtFile";
     this.prgStockItem.Size            = new System.Drawing.Size(495, 21);
     this.prgStockItem.Location        = new System.Drawing.Point(14, 34);
     this.prgStockItem.TabIndex        = 25;
     this.prgStockItem.Maximum         = 10000;
     this.prgStockItem.Name            = "prgStockItem";
     this.Label1.Text                  = "File Name: ";
     this.Label1.Size                  = new System.Drawing.Size(81, 17);
     this.Label1.Location              = new System.Drawing.Point(20, 12);
     this.Label1.TabIndex              = 28;
     this.Label1.TextAlign             = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor             = System.Drawing.SystemColors.Control;
     this.Label1.Enabled               = true;
     this.Label1.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor                = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic           = true;
     this.Label1.Visible               = true;
     this.Label1.AutoSize              = false;
     this.Label1.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name                  = "Label1";
     this.Label2.TextAlign             = System.Drawing.ContentAlignment.TopRight;
     this.Label2.Text                  = ":";
     this.Label2.Size                  = new System.Drawing.Size(295, 23);
     this.Label2.Location              = new System.Drawing.Point(212, 60);
     this.Label2.TabIndex              = 27;
     this.Label2.BackColor             = System.Drawing.SystemColors.Control;
     this.Label2.Enabled               = true;
     this.Label2.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.Label2.Cursor                = System.Windows.Forms.Cursors.Default;
     this.Label2.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.Label2.UseMnemonic           = true;
     this.Label2.Visible               = true;
     this.Label2.AutoSize              = false;
     this.Label2.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.Label2.Name                  = "Label2";
     this.picButtons.Dock              = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor         = System.Drawing.Color.Blue;
     this.picButtons.Size              = new System.Drawing.Size(528, 53);
     this.picButtons.Location          = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex          = 21;
     this.picButtons.TabStop           = false;
     this.picButtons.CausesValidation  = true;
     this.picButtons.Enabled           = true;
     this.picButtons.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor            = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible           = true;
     this.picButtons.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name              = "picButtons";
     this.cmdNext.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text                 = "&Do Update>>";
     this.cmdNext.Size                 = new System.Drawing.Size(96, 33);
     this.cmdNext.Location             = new System.Drawing.Point(420, 6);
     this.cmdNext.TabIndex             = 23;
     this.cmdNext.TabStop              = false;
     this.cmdNext.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdNext.CausesValidation     = true;
     this.cmdNext.Enabled              = true;
     this.cmdNext.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdNext.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdNext.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdNext.Name                 = "cmdNext";
     this.cmdBack.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBack.Text                 = "E&xit";
     this.cmdBack.Size                 = new System.Drawing.Size(97, 33);
     this.cmdBack.Location             = new System.Drawing.Point(8, 6);
     this.cmdBack.TabIndex             = 22;
     this.cmdBack.TabStop              = false;
     this.cmdBack.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdBack.CausesValidation     = true;
     this.cmdBack.Enabled              = true;
     this.cmdBack.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdBack.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdBack.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdBack.Name                 = "cmdBack";
     this._frmMode_1.Text              = "New \"Stock Item\" Details.";
     this._frmMode_1.Enabled           = false;
     this._frmMode_1.Size              = new System.Drawing.Size(331, 263);
     this._frmMode_1.Location          = new System.Drawing.Point(-2, 506);
     this._frmMode_1.TabIndex          = 0;
     this._frmMode_1.BackColor         = System.Drawing.SystemColors.Control;
     this._frmMode_1.ForeColor         = System.Drawing.SystemColors.ControlText;
     this._frmMode_1.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this._frmMode_1.Visible           = true;
     this._frmMode_1.Padding           = new System.Windows.Forms.Padding(0);
     this._frmMode_1.Name              = "_frmMode_1";
     this.Picture1.Size                = new System.Drawing.Size(295, 4);
     this.Picture1.Location            = new System.Drawing.Point(28, 162);
     this.Picture1.TabIndex            = 10;
     this.Picture1.TabStop             = false;
     this.Picture1.Dock                = System.Windows.Forms.DockStyle.None;
     this.Picture1.BackColor           = System.Drawing.SystemColors.Control;
     this.Picture1.CausesValidation    = true;
     this.Picture1.Enabled             = true;
     this.Picture1.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.Picture1.Cursor              = System.Windows.Forms.Cursors.Default;
     this.Picture1.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.Picture1.Visible             = true;
     this.Picture1.SizeMode            = System.Windows.Forms.PictureBoxSizeMode.Normal;
     this.Picture1.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Picture1.Name                = "Picture1";
     this.txtName.AutoSize             = false;
     this.txtName.Size                 = new System.Drawing.Size(241, 19);
     this.txtName.Location             = new System.Drawing.Point(82, 18);
     this.txtName.TabIndex             = 9;
     this.txtName.Text                 = "[New Product]";
     this.txtName.AcceptsReturn        = true;
     this.txtName.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtName.BackColor            = System.Drawing.SystemColors.Window;
     this.txtName.CausesValidation     = true;
     this.txtName.Enabled              = true;
     this.txtName.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtName.HideSelection        = true;
     this.txtName.ReadOnly             = false;
     this.txtName.MaxLength            = 0;
     this.txtName.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtName.Multiline            = false;
     this.txtName.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtName.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtName.TabStop              = true;
     this.txtName.Visible              = true;
     this.txtName.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtName.Name                 = "txtName";
     this.txtReceipt.AutoSize          = false;
     this.txtReceipt.Size              = new System.Drawing.Size(241, 19);
     this.txtReceipt.Location          = new System.Drawing.Point(82, 39);
     this.txtReceipt.MaxLength         = 20;
     this.txtReceipt.TabIndex          = 8;
     this.txtReceipt.AcceptsReturn     = true;
     this.txtReceipt.TextAlign         = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtReceipt.BackColor         = System.Drawing.SystemColors.Window;
     this.txtReceipt.CausesValidation  = true;
     this.txtReceipt.Enabled           = true;
     this.txtReceipt.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.txtReceipt.HideSelection     = true;
     this.txtReceipt.ReadOnly          = false;
     this.txtReceipt.Cursor            = System.Windows.Forms.Cursors.IBeam;
     this.txtReceipt.Multiline         = false;
     this.txtReceipt.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.txtReceipt.ScrollBars        = System.Windows.Forms.ScrollBars.None;
     this.txtReceipt.TabStop           = true;
     this.txtReceipt.Visible           = true;
     this.txtReceipt.BorderStyle       = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtReceipt.Name              = "txtReceipt";
     this.Frame1.Size                  = new System.Drawing.Size(317, 57);
     this.Frame1.Location              = new System.Drawing.Point(8, 168);
     this.Frame1.TabIndex              = 1;
     this.Frame1.BackColor             = System.Drawing.SystemColors.Control;
     this.Frame1.Enabled               = true;
     this.Frame1.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.Frame1.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Visible               = true;
     this.Frame1.Padding               = new System.Windows.Forms.Padding(0);
     this.Frame1.Name                  = "Frame1";
     this.txtQuantity.AutoSize         = false;
     this.txtQuantity.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtQuantity.Size             = new System.Drawing.Size(28, 19);
     this.txtQuantity.Location         = new System.Drawing.Point(56, 12);
     this.txtQuantity.TabIndex         = 3;
     this.txtQuantity.Text             = "12";
     this.txtQuantity.AcceptsReturn    = true;
     this.txtQuantity.BackColor        = System.Drawing.SystemColors.Window;
     this.txtQuantity.CausesValidation = true;
     this.txtQuantity.Enabled          = true;
     this.txtQuantity.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtQuantity.HideSelection    = true;
     this.txtQuantity.ReadOnly         = false;
     this.txtQuantity.MaxLength        = 0;
     this.txtQuantity.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtQuantity.Multiline        = false;
     this.txtQuantity.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtQuantity.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtQuantity.TabStop          = true;
     this.txtQuantity.Visible          = true;
     this.txtQuantity.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtQuantity.Name             = "txtQuantity";
     this.txtCost.AutoSize             = false;
     this.txtCost.TextAlign            = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtCost.Size                 = new System.Drawing.Size(56, 19);
     this.txtCost.Location             = new System.Drawing.Point(256, 14);
     this.txtCost.TabIndex             = 2;
     this.txtCost.Text                 = "0.00";
     this.txtCost.AcceptsReturn        = true;
     this.txtCost.BackColor            = System.Drawing.SystemColors.Window;
     this.txtCost.CausesValidation     = true;
     this.txtCost.Enabled              = true;
     this.txtCost.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtCost.HideSelection        = true;
     this.txtCost.ReadOnly             = false;
     this.txtCost.MaxLength            = 0;
     this.txtCost.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtCost.Multiline            = false;
     this.txtCost.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtCost.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtCost.TabStop              = true;
     this.txtCost.Visible              = true;
     this.txtCost.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtCost.Name                 = "txtCost";
     //cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbShrink.Size            = new System.Drawing.Size(91, 21);
     this.cmbShrink.Location        = new System.Drawing.Point(134, 30);
     this.cmbShrink.TabIndex        = 4;
     this.cmbShrink.Name            = "cmbShrink";
     this._lblLabels_2.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_2.Text         = "There are ";
     this._lblLabels_2.Size         = new System.Drawing.Size(49, 13);
     this._lblLabels_2.Location     = new System.Drawing.Point(6, 16);
     this._lblLabels_2.TabIndex     = 7;
     this._lblLabels_2.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_2.Enabled      = true;
     this._lblLabels_2.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_2.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_2.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_2.UseMnemonic  = true;
     this._lblLabels_2.Visible      = true;
     this._lblLabels_2.AutoSize     = true;
     this._lblLabels_2.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_2.Name         = "_lblLabels_2";
     this._lblLabels_10.Text        = "Units in a case/carton, which costs";
     this._lblLabels_10.Size        = new System.Drawing.Size(167, 13);
     this._lblLabels_10.Location    = new System.Drawing.Point(86, 16);
     this._lblLabels_10.TabIndex    = 6;
     this._lblLabels_10.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this._lblLabels_10.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_10.Enabled     = true;
     this._lblLabels_10.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_10.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_10.UseMnemonic = true;
     this._lblLabels_10.Visible     = true;
     this._lblLabels_10.AutoSize    = true;
     this._lblLabels_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_10.Name        = "_lblLabels_10";
     this._lblLabels_1.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_1.Text         = "and you sell in shrinks of";
     this._lblLabels_1.Size         = new System.Drawing.Size(115, 13);
     this._lblLabels_1.Location     = new System.Drawing.Point(8, 38);
     this._lblLabels_1.TabIndex     = 5;
     this._lblLabels_1.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_1.Enabled      = true;
     this._lblLabels_1.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_1.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_1.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_1.UseMnemonic  = true;
     this._lblLabels_1.Visible      = true;
     this._lblLabels_1.AutoSize     = true;
     this._lblLabels_1.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_1.Name         = "_lblLabels_1";
     //cmbPricingGroup.OcxState = CType(resources.GetObject("cmbPricingGroup.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbPricingGroup.Size     = new System.Drawing.Size(241, 21);
     this.cmbPricingGroup.Location = new System.Drawing.Point(82, 108);
     this.cmbPricingGroup.TabIndex = 11;
     this.cmbPricingGroup.Name     = "cmbPricingGroup";
     //cmbStockGroup.OcxState = CType(resources.GetObject("cmbStockGroup.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbStockGroup.Size     = new System.Drawing.Size(241, 21);
     this.cmbStockGroup.Location = new System.Drawing.Point(82, 132);
     this.cmbStockGroup.TabIndex = 12;
     this.cmbStockGroup.Name     = "cmbStockGroup";
     //cmbDeposit.OcxState = CType(resources.GetObject("cmbDeposit.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbDeposit.Size     = new System.Drawing.Size(241, 21);
     this.cmbDeposit.Location = new System.Drawing.Point(82, 84);
     this.cmbDeposit.TabIndex = 13;
     this.cmbDeposit.Name     = "cmbDeposit";
     //cmbSupplier.OcxState = CType(resources.GetObject("cmbSupplier.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbSupplier.Size         = new System.Drawing.Size(241, 21);
     this.cmbSupplier.Location     = new System.Drawing.Point(82, 60);
     this.cmbSupplier.TabIndex     = 14;
     this.cmbSupplier.Name         = "cmbSupplier";
     this._lblLabels_6.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_6.Text        = "Deposit:";
     this._lblLabels_6.Size        = new System.Drawing.Size(39, 13);
     this._lblLabels_6.Location    = new System.Drawing.Point(38, 90);
     this._lblLabels_6.TabIndex    = 20;
     this._lblLabels_6.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_6.Enabled     = true;
     this._lblLabels_6.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_6.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_6.UseMnemonic = true;
     this._lblLabels_6.Visible     = true;
     this._lblLabels_6.AutoSize    = true;
     this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_6.Name        = "_lblLabels_6";
     this._lblLabels_0.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_0.Text        = "Supplier:";
     this._lblLabels_0.Size        = new System.Drawing.Size(41, 13);
     this._lblLabels_0.Location    = new System.Drawing.Point(36, 66);
     this._lblLabels_0.TabIndex    = 19;
     this._lblLabels_0.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_0.Enabled     = true;
     this._lblLabels_0.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_0.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_0.UseMnemonic = true;
     this._lblLabels_0.Visible     = true;
     this._lblLabels_0.AutoSize    = true;
     this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_0.Name        = "_lblLabels_0";
     this._lblLabels_3.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_3.Text        = "Pricing Group:";
     this._lblLabels_3.Size        = new System.Drawing.Size(67, 13);
     this._lblLabels_3.Location    = new System.Drawing.Point(10, 114);
     this._lblLabels_3.TabIndex    = 18;
     this._lblLabels_3.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_3.Enabled     = true;
     this._lblLabels_3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_3.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_3.UseMnemonic = true;
     this._lblLabels_3.Visible     = true;
     this._lblLabels_3.AutoSize    = true;
     this._lblLabels_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_3.Name        = "_lblLabels_3";
     this._lblLabels_4.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_4.Text        = "Stock Group:";
     this._lblLabels_4.Size        = new System.Drawing.Size(63, 13);
     this._lblLabels_4.Location    = new System.Drawing.Point(14, 138);
     this._lblLabels_4.TabIndex    = 17;
     this._lblLabels_4.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_4.Enabled     = true;
     this._lblLabels_4.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_4.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_4.UseMnemonic = true;
     this._lblLabels_4.Visible     = true;
     this._lblLabels_4.AutoSize    = true;
     this._lblLabels_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_4.Name        = "_lblLabels_4";
     this._lblLabels_7.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_7.Text        = "Display Name:";
     this._lblLabels_7.Size        = new System.Drawing.Size(68, 13);
     this._lblLabels_7.Location    = new System.Drawing.Point(10, 20);
     this._lblLabels_7.TabIndex    = 16;
     this._lblLabels_7.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_7.Enabled     = true;
     this._lblLabels_7.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_7.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_7.UseMnemonic = true;
     this._lblLabels_7.Visible     = true;
     this._lblLabels_7.AutoSize    = true;
     this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_7.Name        = "_lblLabels_7";
     this._lblLabels_8.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_8.Text        = "Receipt Name:";
     this._lblLabels_8.Size        = new System.Drawing.Size(71, 13);
     this._lblLabels_8.Location    = new System.Drawing.Point(6, 45);
     this._lblLabels_8.TabIndex    = 15;
     this._lblLabels_8.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_8.Enabled     = true;
     this._lblLabels_8.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_8.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_8.UseMnemonic = true;
     this._lblLabels_8.Visible     = true;
     this._lblLabels_8.AutoSize    = true;
     this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_8.Name        = "_lblLabels_8";
     this.Controls.Add(Frame2);
     this.Controls.Add(picButtons);
     this.Controls.Add(_frmMode_1);
     this.Frame2.Controls.Add(txtFile);
     this.Frame2.Controls.Add(prgStockItem);
     this.Frame2.Controls.Add(Label1);
     this.Frame2.Controls.Add(Label2);
     this.picButtons.Controls.Add(cmdNext);
     this.picButtons.Controls.Add(cmdBack);
     this._frmMode_1.Controls.Add(Picture1);
     this._frmMode_1.Controls.Add(txtName);
     this._frmMode_1.Controls.Add(txtReceipt);
     this._frmMode_1.Controls.Add(Frame1);
     this._frmMode_1.Controls.Add(cmbPricingGroup);
     this._frmMode_1.Controls.Add(cmbStockGroup);
     this._frmMode_1.Controls.Add(cmbDeposit);
     this._frmMode_1.Controls.Add(cmbSupplier);
     this._frmMode_1.Controls.Add(_lblLabels_6);
     this._frmMode_1.Controls.Add(_lblLabels_0);
     this._frmMode_1.Controls.Add(_lblLabels_3);
     this._frmMode_1.Controls.Add(_lblLabels_4);
     this._frmMode_1.Controls.Add(_lblLabels_7);
     this._frmMode_1.Controls.Add(_lblLabels_8);
     this.Frame1.Controls.Add(txtQuantity);
     this.Frame1.Controls.Add(txtCost);
     this.Frame1.Controls.Add(cmbShrink);
     this.Frame1.Controls.Add(_lblLabels_2);
     this.Frame1.Controls.Add(_lblLabels_10);
     this.Frame1.Controls.Add(_lblLabels_1);
     //Me.frmMode.SetIndex(_frmMode_1, CType(1, Short))
     //Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
     //Me.lblLabels.SetIndex(_lblLabels_10, CType(10, Short))
     //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
     //Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
     //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
     //Me.lblLabels.SetIndex(_lblLabels_3, CType(3, Short))
     //Me.lblLabels.SetIndex(_lblLabels_4, CType(4, Short))
     //Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
     //Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.cmbSupplier).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbDeposit).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbStockGroup).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbPricingGroup).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbShrink).EndInit();
     this.Frame2.ResumeLayout(false);
     this.picButtons.ResumeLayout(false);
     this._frmMode_1.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockValSelect));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.lstFilter  = new System.Windows.Forms.CheckedListBox();
     this.ckbGrp     = new System.Windows.Forms.CheckBox();
     this.txtSearch  = new System.Windows.Forms.TextBox();
     this.cmdShow    = new System.Windows.Forms.Button();
     this.optSum     = new System.Windows.Forms.RadioButton();
     this.optDel     = new System.Windows.Forms.RadioButton();
     this.picButtons = new System.Windows.Forms.Panel();
     this.cmdClose   = new System.Windows.Forms.Button();
     this.lblHeading = new System.Windows.Forms.Label();
     this.DataList1  = new myDataGridView();
     this.lbl        = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                        = "Stock Value Report";
     this.ClientSize                  = new System.Drawing.Size(354, 159);
     this.Location                    = new System.Drawing.Point(3, 22);
     this.ControlBox                  = false;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterParent;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.KeyPreview                  = false;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmStockValSelect";
     this.lstFilter.Size              = new System.Drawing.Size(247, 79);
     this.lstFilter.Location          = new System.Drawing.Point(8, 72);
     this.lstFilter.TabIndex          = 10;
     this.lstFilter.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lstFilter.BackColor         = System.Drawing.SystemColors.Window;
     this.lstFilter.CausesValidation  = true;
     this.lstFilter.Enabled           = true;
     this.lstFilter.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.lstFilter.IntegralHeight    = true;
     this.lstFilter.Cursor            = System.Windows.Forms.Cursors.Default;
     this.lstFilter.SelectionMode     = System.Windows.Forms.SelectionMode.One;
     this.lstFilter.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.lstFilter.Sorted            = false;
     this.lstFilter.TabStop           = true;
     this.lstFilter.Visible           = true;
     this.lstFilter.MultiColumn       = false;
     this.lstFilter.Name              = "lstFilter";
     this.ckbGrp.Text                 = "Select Group ?";
     this.ckbGrp.Size                 = new System.Drawing.Size(97, 17);
     this.ckbGrp.Location             = new System.Drawing.Point(160, 48);
     this.ckbGrp.TabIndex             = 9;
     this.ckbGrp.CheckAlign           = System.Drawing.ContentAlignment.MiddleLeft;
     this.ckbGrp.FlatStyle            = System.Windows.Forms.FlatStyle.Standard;
     this.ckbGrp.BackColor            = System.Drawing.SystemColors.Control;
     this.ckbGrp.CausesValidation     = true;
     this.ckbGrp.Enabled              = true;
     this.ckbGrp.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.ckbGrp.Cursor               = System.Windows.Forms.Cursors.Default;
     this.ckbGrp.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.ckbGrp.Appearance           = System.Windows.Forms.Appearance.Normal;
     this.ckbGrp.TabStop              = true;
     this.ckbGrp.CheckState           = System.Windows.Forms.CheckState.Unchecked;
     this.ckbGrp.Visible              = true;
     this.ckbGrp.Name                 = "ckbGrp";
     this.txtSearch.AutoSize          = false;
     this.txtSearch.Size              = new System.Drawing.Size(94, 19);
     this.txtSearch.Location          = new System.Drawing.Point(51, 46);
     this.txtSearch.TabIndex          = 7;
     this.txtSearch.AcceptsReturn     = true;
     this.txtSearch.TextAlign         = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtSearch.BackColor         = System.Drawing.SystemColors.Window;
     this.txtSearch.CausesValidation  = true;
     this.txtSearch.Enabled           = true;
     this.txtSearch.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.txtSearch.HideSelection     = true;
     this.txtSearch.ReadOnly          = false;
     this.txtSearch.MaxLength         = 0;
     this.txtSearch.Cursor            = System.Windows.Forms.Cursors.IBeam;
     this.txtSearch.Multiline         = false;
     this.txtSearch.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.txtSearch.ScrollBars        = System.Windows.Forms.ScrollBars.None;
     this.txtSearch.TabStop           = true;
     this.txtSearch.Visible           = true;
     this.txtSearch.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSearch.Name              = "txtSearch";
     this.cmdShow.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdShow.Text                = "&Print";
     this.cmdShow.Size                = new System.Drawing.Size(73, 29);
     this.cmdShow.Location            = new System.Drawing.Point(272, 124);
     this.cmdShow.TabIndex            = 5;
     this.cmdShow.TabStop             = false;
     this.cmdShow.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdShow.CausesValidation    = true;
     this.cmdShow.Enabled             = true;
     this.cmdShow.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdShow.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdShow.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdShow.Name                = "cmdShow";
     this.optSum.TextAlign            = System.Drawing.ContentAlignment.MiddleLeft;
     this.optSum.Text                 = "Summary";
     this.optSum.Font                 = new System.Drawing.Font("Verdana", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.optSum.Size                 = new System.Drawing.Size(96, 23);
     this.optSum.Location             = new System.Drawing.Point(266, 86);
     this.optSum.TabIndex             = 4;
     this.optSum.CheckAlign           = System.Drawing.ContentAlignment.MiddleLeft;
     this.optSum.BackColor            = System.Drawing.SystemColors.Control;
     this.optSum.CausesValidation     = true;
     this.optSum.Enabled              = true;
     this.optSum.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.optSum.Cursor               = System.Windows.Forms.Cursors.Default;
     this.optSum.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.optSum.Appearance           = System.Windows.Forms.Appearance.Normal;
     this.optSum.TabStop              = true;
     this.optSum.Checked              = false;
     this.optSum.Visible              = true;
     this.optSum.Name                 = "optSum";
     this.optDel.TextAlign            = System.Drawing.ContentAlignment.MiddleLeft;
     this.optDel.Text                 = "Detail";
     this.optDel.Font                 = new System.Drawing.Font("Verdana", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.optDel.Size                 = new System.Drawing.Size(72, 23);
     this.optDel.Location             = new System.Drawing.Point(266, 46);
     this.optDel.TabIndex             = 3;
     this.optDel.CheckAlign           = System.Drawing.ContentAlignment.MiddleLeft;
     this.optDel.BackColor            = System.Drawing.SystemColors.Control;
     this.optDel.CausesValidation     = true;
     this.optDel.Enabled              = true;
     this.optDel.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.optDel.Cursor               = System.Windows.Forms.Cursors.Default;
     this.optDel.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.optDel.Appearance           = System.Windows.Forms.Appearance.Normal;
     this.optDel.TabStop              = true;
     this.optDel.Checked              = false;
     this.optDel.Visible              = true;
     this.optDel.Name                 = "optDel";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(354, 38);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 0;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name             = "picButtons";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(73, 29);
     this.cmdClose.Location           = new System.Drawing.Point(272, 2);
     this.cmdClose.TabIndex           = 1;
     this.cmdClose.TabStop            = false;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Name               = "cmdClose";
     this.lblHeading.Text             = "Select option for Detail / Summary";
     this.lblHeading.Font             = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblHeading.ForeColor        = System.Drawing.Color.White;
     this.lblHeading.Size             = new System.Drawing.Size(273, 21);
     this.lblHeading.Location         = new System.Drawing.Point(2, 8);
     this.lblHeading.TabIndex         = 2;
     this.lblHeading.TextAlign        = System.Drawing.ContentAlignment.TopLeft;
     this.lblHeading.BackColor        = System.Drawing.Color.Transparent;
     this.lblHeading.Enabled          = true;
     this.lblHeading.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lblHeading.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.UseMnemonic      = true;
     this.lblHeading.Visible          = true;
     this.lblHeading.AutoSize         = false;
     this.lblHeading.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.lblHeading.Name             = "lblHeading";
     //DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataList1.Size     = new System.Drawing.Size(244, 82);
     this.DataList1.Location = new System.Drawing.Point(8, 168);
     this.DataList1.TabIndex = 6;
     this.DataList1.Name     = "DataList1";
     this.lbl.TextAlign      = System.Drawing.ContentAlignment.TopRight;
     this.lbl.Text           = "&Search :";
     this.lbl.Size           = new System.Drawing.Size(40, 13);
     this.lbl.Location       = new System.Drawing.Point(8, 49);
     this.lbl.TabIndex       = 8;
     this.lbl.BackColor      = System.Drawing.Color.Transparent;
     this.lbl.Enabled        = true;
     this.lbl.ForeColor      = System.Drawing.SystemColors.ControlText;
     this.lbl.Cursor         = System.Windows.Forms.Cursors.Default;
     this.lbl.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.lbl.UseMnemonic    = true;
     this.lbl.Visible        = true;
     this.lbl.AutoSize       = true;
     this.lbl.BorderStyle    = System.Windows.Forms.BorderStyle.None;
     this.lbl.Name           = "lbl";
     this.Controls.Add(lstFilter);
     this.Controls.Add(ckbGrp);
     this.Controls.Add(txtSearch);
     this.Controls.Add(cmdShow);
     this.Controls.Add(optSum);
     this.Controls.Add(optDel);
     this.Controls.Add(picButtons);
     this.Controls.Add(DataList1);
     this.Controls.Add(lbl);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(lblHeading);
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #19
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmBarcodeStockitem));
     this.components   = new System.ComponentModel.Container();
     this.ToolTip1     = new System.Windows.Forms.ToolTip(components);
     this.Command1     = new System.Windows.Forms.Button();
     this.cmdLoad      = new System.Windows.Forms.Button();
     this.cmdExit      = new System.Windows.Forms.Button();
     this.cmdClear     = new System.Windows.Forms.Button();
     this.cmdShow      = new System.Windows.Forms.Button();
     this.cmdPrint     = new System.Windows.Forms.Button();
     this.txtEdit      = new System.Windows.Forms.TextBox();
     this._txtSearch_4 = new System.Windows.Forms.TextBox();
     this._txtSearch_3 = new System.Windows.Forms.TextBox();
     this._txtSearch_2 = new System.Windows.Forms.TextBox();
     this._txtSearch_1 = new System.Windows.Forms.TextBox();
     this._txtSearch_0 = new System.Windows.Forms.TextBox();
     this.gridEdit     = new myDataGridView();
     this.cmdDlgOpen   = new System.Windows.Forms.OpenFileDialog();
     //Me.txtSearch = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).BeginInit();
     //CType(Me.txtSearch, System.ComponentModel.ISupportInitialize).BeginInit()
     this.FormBorderStyle               = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                          = "Select products for barcode printing ...";
     this.ClientSize                    = new System.Drawing.Size(839, 573);
     this.Location                      = new System.Drawing.Point(3, 29);
     this.ControlBox                    = false;
     this.KeyPreview                    = true;
     this.MaximizeBox                   = false;
     this.MinimizeBox                   = false;
     this.ShowInTaskbar                 = false;
     this.StartPosition                 = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode                 = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                     = System.Drawing.SystemColors.Control;
     this.Enabled                       = true;
     this.Cursor                        = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                    = false;
     this.WindowState                   = System.Windows.Forms.FormWindowState.Normal;
     this.Name                          = "frmBarcodeStockitem";
     this.Command1.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.Command1.Text                 = "&Show Only with   Single Qty";
     this.Command1.Size                 = new System.Drawing.Size(121, 64);
     this.Command1.Location             = new System.Drawing.Point(712, 288);
     this.Command1.TabIndex             = 12;
     this.Command1.TabStop              = false;
     this.Command1.BackColor            = System.Drawing.SystemColors.Control;
     this.Command1.CausesValidation     = true;
     this.Command1.Enabled              = true;
     this.Command1.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Command1.Cursor               = System.Windows.Forms.Cursors.Default;
     this.Command1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.Command1.Name                 = "Command1";
     this.cmdLoad.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdLoad.Text                  = "&Load Qty from  CSV file";
     this.cmdLoad.Size                  = new System.Drawing.Size(121, 64);
     this.cmdLoad.Location              = new System.Drawing.Point(712, 64);
     this.cmdLoad.TabIndex              = 11;
     this.cmdLoad.TabStop               = false;
     this.cmdLoad.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdLoad.CausesValidation      = true;
     this.cmdLoad.Enabled               = true;
     this.cmdLoad.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdLoad.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdLoad.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdLoad.Name                  = "cmdLoad";
     this.cmdExit.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text                  = "&Exit";
     this.cmdExit.Size                  = new System.Drawing.Size(121, 64);
     this.cmdExit.Location              = new System.Drawing.Point(712, 471);
     this.cmdExit.TabIndex              = 10;
     this.cmdExit.TabStop               = false;
     this.cmdExit.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation      = true;
     this.cmdExit.Enabled               = true;
     this.cmdExit.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.Name                  = "cmdExit";
     this.cmdClear.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClear.Text                 = "&Clear All Selected Products";
     this.cmdClear.Size                 = new System.Drawing.Size(121, 64);
     this.cmdClear.Location             = new System.Drawing.Point(712, 216);
     this.cmdClear.TabIndex             = 9;
     this.cmdClear.TabStop              = false;
     this.cmdClear.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdClear.CausesValidation     = true;
     this.cmdClear.Enabled              = true;
     this.cmdClear.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdClear.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdClear.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdClear.Name                 = "cmdClear";
     this.cmdShow.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdShow.Text                  = "&Show Changed     Price Items    Or      Selected Products";
     this.cmdShow.Size                  = new System.Drawing.Size(121, 72);
     this.cmdShow.Location              = new System.Drawing.Point(712, 136);
     this.cmdShow.TabIndex              = 8;
     this.cmdShow.TabStop               = false;
     this.cmdShow.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdShow.CausesValidation      = true;
     this.cmdShow.Enabled               = true;
     this.cmdShow.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdShow.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdShow.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdShow.Name                  = "cmdShow";
     this.cmdPrint.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text                 = "&Print";
     this.cmdPrint.Size                 = new System.Drawing.Size(121, 64);
     this.cmdPrint.Location             = new System.Drawing.Point(712, 400);
     this.cmdPrint.TabIndex             = 7;
     this.cmdPrint.TabStop              = false;
     this.cmdPrint.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation     = true;
     this.cmdPrint.Enabled              = true;
     this.cmdPrint.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name                 = "cmdPrint";
     this.txtEdit.AutoSize              = false;
     this.txtEdit.TextAlign             = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtEdit.BackColor             = System.Drawing.Color.FromArgb(255, 255, 192);
     this.txtEdit.Size                  = new System.Drawing.Size(55, 16);
     this.txtEdit.Location              = new System.Drawing.Point(0, 0);
     this.txtEdit.MaxLength             = 4;
     this.txtEdit.TabIndex              = 6;
     this.txtEdit.Tag                   = "0";
     this.txtEdit.Text                  = "0";
     this.txtEdit.Visible               = false;
     this.txtEdit.AcceptsReturn         = true;
     this.txtEdit.CausesValidation      = true;
     this.txtEdit.Enabled               = true;
     this.txtEdit.ForeColor             = System.Drawing.SystemColors.WindowText;
     this.txtEdit.HideSelection         = true;
     this.txtEdit.ReadOnly              = false;
     this.txtEdit.Cursor                = System.Windows.Forms.Cursors.IBeam;
     this.txtEdit.Multiline             = false;
     this.txtEdit.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.txtEdit.ScrollBars            = System.Windows.Forms.ScrollBars.None;
     this.txtEdit.TabStop               = true;
     this.txtEdit.BorderStyle           = System.Windows.Forms.BorderStyle.None;
     this.txtEdit.Name                  = "txtEdit";
     this._txtSearch_4.AutoSize         = false;
     this._txtSearch_4.BackColor        = System.Drawing.SystemColors.Control;
     this._txtSearch_4.Size             = new System.Drawing.Size(76, 19);
     this._txtSearch_4.Location         = new System.Drawing.Point(369, 39);
     this._txtSearch_4.TabIndex         = 4;
     this._txtSearch_4.Tag              = "PricingGroup_Name";
     this._txtSearch_4.AcceptsReturn    = true;
     this._txtSearch_4.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this._txtSearch_4.CausesValidation = true;
     this._txtSearch_4.Enabled          = true;
     this._txtSearch_4.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtSearch_4.HideSelection    = true;
     this._txtSearch_4.ReadOnly         = false;
     this._txtSearch_4.MaxLength        = 0;
     this._txtSearch_4.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtSearch_4.Multiline        = false;
     this._txtSearch_4.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtSearch_4.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtSearch_4.TabStop          = true;
     this._txtSearch_4.Visible          = true;
     this._txtSearch_4.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtSearch_4.Name             = "_txtSearch_4";
     this._txtSearch_3.AutoSize         = false;
     this._txtSearch_3.BackColor        = System.Drawing.SystemColors.Control;
     this._txtSearch_3.Size             = new System.Drawing.Size(76, 19);
     this._txtSearch_3.Location         = new System.Drawing.Point(282, 39);
     this._txtSearch_3.TabIndex         = 3;
     this._txtSearch_3.Tag              = "Supplier_Name";
     this._txtSearch_3.AcceptsReturn    = true;
     this._txtSearch_3.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this._txtSearch_3.CausesValidation = true;
     this._txtSearch_3.Enabled          = true;
     this._txtSearch_3.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtSearch_3.HideSelection    = true;
     this._txtSearch_3.ReadOnly         = false;
     this._txtSearch_3.MaxLength        = 0;
     this._txtSearch_3.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtSearch_3.Multiline        = false;
     this._txtSearch_3.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtSearch_3.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtSearch_3.TabStop          = true;
     this._txtSearch_3.Visible          = true;
     this._txtSearch_3.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtSearch_3.Name             = "_txtSearch_3";
     this._txtSearch_2.AutoSize         = false;
     this._txtSearch_2.BackColor        = System.Drawing.SystemColors.Control;
     this._txtSearch_2.Size             = new System.Drawing.Size(76, 19);
     this._txtSearch_2.Location         = new System.Drawing.Point(189, 39);
     this._txtSearch_2.TabIndex         = 2;
     this._txtSearch_2.Tag              = "StockItem_Name";
     this._txtSearch_2.AcceptsReturn    = true;
     this._txtSearch_2.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this._txtSearch_2.CausesValidation = true;
     this._txtSearch_2.Enabled          = true;
     this._txtSearch_2.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtSearch_2.HideSelection    = true;
     this._txtSearch_2.ReadOnly         = false;
     this._txtSearch_2.MaxLength        = 0;
     this._txtSearch_2.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtSearch_2.Multiline        = false;
     this._txtSearch_2.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtSearch_2.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtSearch_2.TabStop          = true;
     this._txtSearch_2.Visible          = true;
     this._txtSearch_2.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtSearch_2.Name             = "_txtSearch_2";
     this._txtSearch_1.AutoSize         = false;
     this._txtSearch_1.BackColor        = System.Drawing.SystemColors.Control;
     this._txtSearch_1.Size             = new System.Drawing.Size(76, 19);
     this._txtSearch_1.Location         = new System.Drawing.Point(93, 39);
     this._txtSearch_1.TabIndex         = 1;
     this._txtSearch_1.Tag              = "StockItemID";
     this._txtSearch_1.AcceptsReturn    = true;
     this._txtSearch_1.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this._txtSearch_1.CausesValidation = true;
     this._txtSearch_1.Enabled          = true;
     this._txtSearch_1.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtSearch_1.HideSelection    = true;
     this._txtSearch_1.ReadOnly         = false;
     this._txtSearch_1.MaxLength        = 0;
     this._txtSearch_1.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtSearch_1.Multiline        = false;
     this._txtSearch_1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtSearch_1.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtSearch_1.TabStop          = true;
     this._txtSearch_1.Visible          = true;
     this._txtSearch_1.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtSearch_1.Name             = "_txtSearch_1";
     this._txtSearch_0.AutoSize         = false;
     this._txtSearch_0.BackColor        = System.Drawing.SystemColors.Control;
     this._txtSearch_0.Size             = new System.Drawing.Size(76, 19);
     this._txtSearch_0.Location         = new System.Drawing.Point(9, 39);
     this._txtSearch_0.TabIndex         = 0;
     this._txtSearch_0.Tag              = "Catalogue_Barcode";
     this._txtSearch_0.AcceptsReturn    = true;
     this._txtSearch_0.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this._txtSearch_0.CausesValidation = true;
     this._txtSearch_0.Enabled          = true;
     this._txtSearch_0.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtSearch_0.HideSelection    = true;
     this._txtSearch_0.ReadOnly         = false;
     this._txtSearch_0.MaxLength        = 0;
     this._txtSearch_0.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtSearch_0.Multiline        = false;
     this._txtSearch_0.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtSearch_0.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtSearch_0.TabStop          = true;
     this._txtSearch_0.Visible          = true;
     this._txtSearch_0.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtSearch_0.Name             = "_txtSearch_0";
     //gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
     this.gridEdit.Size     = new System.Drawing.Size(695, 475);
     this.gridEdit.Location = new System.Drawing.Point(9, 60);
     this.gridEdit.TabIndex = 5;
     this.gridEdit.Name     = "gridEdit";
     this.Controls.Add(Command1);
     this.Controls.Add(cmdLoad);
     this.Controls.Add(cmdExit);
     this.Controls.Add(cmdClear);
     this.Controls.Add(cmdShow);
     this.Controls.Add(cmdPrint);
     this.Controls.Add(txtEdit);
     this.Controls.Add(_txtSearch_4);
     this.Controls.Add(_txtSearch_3);
     this.Controls.Add(_txtSearch_2);
     this.Controls.Add(_txtSearch_1);
     this.Controls.Add(_txtSearch_0);
     this.Controls.Add(gridEdit);
     //Me.txtSearch.SetIndex(_txtSearch_4, CType(4, Short))
     //Me.txtSearch.SetIndex(_txtSearch_3, CType(3, Short))
     //Me.txtSearch.SetIndex(_txtSearch_2, CType(2, Short))
     //Me.txtSearch.SetIndex(_txtSearch_1, CType(1, Short))
     //Me.txtSearch.SetIndex(_txtSearch_0, CType(0, Short))
     //CType(Me.txtSearch, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._chkFields_1 = new System.Windows.Forms.CheckBox();
			this._txtFloat_3 = new System.Windows.Forms.TextBox();
			this._txtFloat_2 = new System.Windows.Forms.TextBox();
			this._txtFloat_1 = new System.Windows.Forms.TextBox();
			this._txtFloat_0 = new System.Windows.Forms.TextBox();
			this._txtHide_1 = new System.Windows.Forms.TextBox();
			this._txtHide_0 = new System.Windows.Forms.TextBox();
			this._txtInteger_5 = new System.Windows.Forms.TextBox();
			this._txtFields_4 = new System.Windows.Forms.TextBox();
			this._txtFields_3 = new System.Windows.Forms.TextBox();
			this._txtFields_28 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbVat = new _4PosBackOffice.NET.myDataGridView();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_38 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
			this.picButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)this.cmbVat).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
				this._Shape1_2,
				this._Shape1_0
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(549, 205);
			this.ShapeContainer1.TabIndex = 26;
			this.ShapeContainer1.TabStop = false;
			//
			//_Shape1_2
			//
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_2, Convert.ToInt16(2));
			this._Shape1_2.Location = new System.Drawing.Point(15, 60);
			this._Shape1_2.Name = "_Shape1_2";
			this._Shape1_2.Size = new System.Drawing.Size(286, 136);
			//
			//_Shape1_0
			//
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
			this._Shape1_0.Location = new System.Drawing.Point(309, 60);
			this._Shape1_0.Name = "_Shape1_0";
			this._Shape1_0.Size = new System.Drawing.Size(229, 76);
			//
			//_chkFields_1
			//
			this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_1.Location = new System.Drawing.Point(171, 174);
			this._chkFields_1.Name = "_chkFields_1";
			this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_1.Size = new System.Drawing.Size(118, 19);
			this._chkFields_1.TabIndex = 11;
			this._chkFields_1.Text = "Disable this Deposit";
			this._chkFields_1.UseVisualStyleBackColor = false;
			//
			//_txtFloat_3
			//
			this._txtFloat_3.AcceptsReturn = true;
			this._txtFloat_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_3.Location = new System.Drawing.Point(465, 99);
			this._txtFloat_3.MaxLength = 0;
			this._txtFloat_3.Name = "_txtFloat_3";
			this._txtFloat_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_3.Size = new System.Drawing.Size(61, 19);
			this._txtFloat_3.TabIndex = 20;
			this._txtFloat_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_2
			//
			this._txtFloat_2.AcceptsReturn = true;
			this._txtFloat_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_2.Location = new System.Drawing.Point(402, 99);
			this._txtFloat_2.MaxLength = 0;
			this._txtFloat_2.Name = "_txtFloat_2";
			this._txtFloat_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_2.Size = new System.Drawing.Size(61, 19);
			this._txtFloat_2.TabIndex = 17;
			this._txtFloat_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_1
			//
			this._txtFloat_1.AcceptsReturn = true;
			this._txtFloat_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_1.Location = new System.Drawing.Point(465, 78);
			this._txtFloat_1.MaxLength = 0;
			this._txtFloat_1.Name = "_txtFloat_1";
			this._txtFloat_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_1.Size = new System.Drawing.Size(61, 19);
			this._txtFloat_1.TabIndex = 19;
			this._txtFloat_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_0
			//
			this._txtFloat_0.AcceptsReturn = true;
			this._txtFloat_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_0.Location = new System.Drawing.Point(402, 78);
			this._txtFloat_0.MaxLength = 0;
			this._txtFloat_0.Name = "_txtFloat_0";
			this._txtFloat_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_0.Size = new System.Drawing.Size(61, 19);
			this._txtFloat_0.TabIndex = 16;
			this._txtFloat_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtHide_1
			//
			this._txtHide_1.AcceptsReturn = true;
			this._txtHide_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtHide_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtHide_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtHide_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtHide_1.Location = new System.Drawing.Point(329, 167);
			this._txtHide_1.MaxLength = 0;
			this._txtHide_1.Name = "_txtHide_1";
			this._txtHide_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtHide_1.Size = new System.Drawing.Size(99, 19);
			this._txtHide_1.TabIndex = 25;
			this._txtHide_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtHide_1.Visible = false;
			//
			//_txtHide_0
			//
			this._txtHide_0.AcceptsReturn = true;
			this._txtHide_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtHide_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtHide_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtHide_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtHide_0.Location = new System.Drawing.Point(329, 142);
			this._txtHide_0.MaxLength = 0;
			this._txtHide_0.Name = "_txtHide_0";
			this._txtHide_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtHide_0.Size = new System.Drawing.Size(99, 19);
			this._txtHide_0.TabIndex = 24;
			this._txtHide_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtHide_0.Visible = false;
			//
			//_txtInteger_5
			//
			this._txtInteger_5.AcceptsReturn = true;
			this._txtInteger_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_5.Location = new System.Drawing.Point(239, 152);
			this._txtInteger_5.MaxLength = 0;
			this._txtInteger_5.Name = "_txtInteger_5";
			this._txtInteger_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_5.Size = new System.Drawing.Size(51, 19);
			this._txtInteger_5.TabIndex = 10;
			this._txtInteger_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFields_4
			//
			this._txtFields_4.AcceptsReturn = true;
			this._txtFields_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_4.Location = new System.Drawing.Point(104, 108);
			this._txtFields_4.MaxLength = 15;
			this._txtFields_4.Name = "_txtFields_4";
			this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_4.Size = new System.Drawing.Size(184, 19);
			this._txtFields_4.TabIndex = 6;
			//
			//_txtFields_3
			//
			this._txtFields_3.AcceptsReturn = true;
			this._txtFields_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_3.Location = new System.Drawing.Point(105, 87);
			this._txtFields_3.MaxLength = 20;
			this._txtFields_3.Name = "_txtFields_3";
			this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_3.Size = new System.Drawing.Size(184, 19);
			this._txtFields_3.TabIndex = 4;
			//
			//_txtFields_28
			//
			this._txtFields_28.AcceptsReturn = true;
			this._txtFields_28.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_28.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_28.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_28.Location = new System.Drawing.Point(104, 64);
			this._txtFields_28.MaxLength = 128;
			this._txtFields_28.Name = "_txtFields_28";
			this._txtFields_28.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_28.Size = new System.Drawing.Size(184, 19);
			this._txtFields_28.TabIndex = 2;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdPrint);
			this.picButtons.Controls.Add(this.cmdCancel);
			this.picButtons.Controls.Add(this.cmdClose);
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.Name = "picButtons";
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Size = new System.Drawing.Size(549, 39);
			this.picButtons.TabIndex = 23;
			//
			//cmdPrint
			//
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Location = new System.Drawing.Point(375, 3);
			this.cmdPrint.Name = "cmdPrint";
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.TabIndex = 26;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.UseVisualStyleBackColor = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.TabIndex = 22;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//cmdClose
			//
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Location = new System.Drawing.Point(460, 3);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.TabIndex = 21;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//cmbVat
			//
			this.cmbVat.AllowAddNew = true;
			this.cmbVat.BoundText = "";
			this.cmbVat.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbVat.Col = 0;
			this.cmbVat.CtlText = "";
			this.cmbVat.DataField = null;
			this.cmbVat.Location = new System.Drawing.Point(105, 129);
			this.cmbVat.Name = "cmbVat";
			this.cmbVat.row = 0;
			this.cmbVat.Size = new System.Drawing.Size(184, 21);
			this.cmbVat.TabIndex = 8;
			this.cmbVat.TopRow = 0;
			//
			//_lbl_0
			//
			this._lbl_0.AutoSize = true;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Location = new System.Drawing.Point(309, 45);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(57, 14);
			this._lbl_0.TabIndex = 12;
			this._lbl_0.Text = "&2. Pricing";
			//
			//_lblLabels_2
			//
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Location = new System.Drawing.Point(72, 132);
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.Size = new System.Drawing.Size(31, 13);
			this._lblLabels_2.TabIndex = 7;
			this._lblLabels_2.Text = "VAT:";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_9
			//
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Location = new System.Drawing.Point(498, 66);
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.Size = new System.Drawing.Size(31, 13);
			this._lblLabels_9.TabIndex = 18;
			this._lblLabels_9.Text = "Case";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_8
			//
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Location = new System.Drawing.Point(432, 66);
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.Size = new System.Drawing.Size(34, 13);
			this._lblLabels_8.TabIndex = 15;
			this._lblLabels_8.Text = "Bottle";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_7
			//
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Location = new System.Drawing.Point(318, 99);
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.Size = new System.Drawing.Size(84, 13);
			this._lblLabels_7.TabIndex = 14;
			this._lblLabels_7.Text = "2. Special Price:";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_6
			//
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Location = new System.Drawing.Point(312, 81);
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.Size = new System.Drawing.Size(91, 13);
			this._lblLabels_6.TabIndex = 13;
			this._lblLabels_6.Text = "1. Inclusive Price:";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_5
			//
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Location = new System.Drawing.Point(104, 155);
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.Size = new System.Drawing.Size(138, 13);
			this._lblLabels_5.TabIndex = 9;
			this._lblLabels_5.Text = "Number of Bottles In a case";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_4
			//
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Location = new System.Drawing.Point(21, 108);
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.Size = new System.Drawing.Size(84, 13);
			this._lblLabels_4.TabIndex = 5;
			this._lblLabels_4.Text = "POS Quick Key:";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_3
			//
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Location = new System.Drawing.Point(27, 87);
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.Size = new System.Drawing.Size(78, 13);
			this._lblLabels_3.TabIndex = 3;
			this._lblLabels_3.Text = "Receipt Name:";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_38
			//
			this._lblLabels_38.AutoSize = true;
			this._lblLabels_38.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_38.Location = new System.Drawing.Point(30, 69);
			this._lblLabels_38.Name = "_lblLabels_38";
			this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_38.Size = new System.Drawing.Size(75, 13);
			this._lblLabels_38.TabIndex = 1;
			this._lblLabels_38.Text = "Display Name:";
			this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.AutoSize = true;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Location = new System.Drawing.Point(15, 45);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(62, 14);
			this._lbl_5.TabIndex = 0;
			this._lbl_5.Text = "&1. General";
			//
			//frmDeposit
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.ClientSize = new System.Drawing.Size(549, 205);
			this.ControlBox = false;
			this.Controls.Add(this._chkFields_1);
			this.Controls.Add(this._txtFloat_3);
			this.Controls.Add(this._txtFloat_2);
			this.Controls.Add(this._txtFloat_1);
			this.Controls.Add(this._txtFloat_0);
			this.Controls.Add(this._txtHide_1);
			this.Controls.Add(this._txtHide_0);
			this.Controls.Add(this._txtInteger_5);
			this.Controls.Add(this._txtFields_4);
			this.Controls.Add(this._txtFields_3);
			this.Controls.Add(this._txtFields_28);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.cmbVat);
			this.Controls.Add(this._lbl_0);
			this.Controls.Add(this._lblLabels_2);
			this.Controls.Add(this._lblLabels_9);
			this.Controls.Add(this._lblLabels_8);
			this.Controls.Add(this._lblLabels_7);
			this.Controls.Add(this._lblLabels_6);
			this.Controls.Add(this._lblLabels_5);
			this.Controls.Add(this._lblLabels_4);
			this.Controls.Add(this._lblLabels_3);
			this.Controls.Add(this._lblLabels_38);
			this.Controls.Add(this._lbl_5);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmDeposit";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "Edit Deposit Details";
			this.picButtons.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)this.cmbVat).EndInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._Shape1_6 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.Shape4 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.Shape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.Shape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_5 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_4 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.Shape5 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.Shape6 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._chkFields_19 = new System.Windows.Forms.CheckBox();
			this._chkFields_18 = new System.Windows.Forms.CheckBox();
			this._chkFields_17 = new System.Windows.Forms.CheckBox();
			this._chkFields_16 = new System.Windows.Forms.CheckBox();
			this.cmdLocate = new System.Windows.Forms.Button();
			this._txtFields_11 = new System.Windows.Forms.TextBox();
			this._chkFields_15 = new System.Windows.Forms.CheckBox();
			this.cboSDK = new System.Windows.Forms.ComboBox();
			this._chkFields_14 = new System.Windows.Forms.CheckBox();
			this._chkFields_13 = new System.Windows.Forms.CheckBox();
			this._chkFields_11 = new System.Windows.Forms.CheckBox();
			this._chkFields_10 = new System.Windows.Forms.CheckBox();
			this._chkFields_9 = new System.Windows.Forms.CheckBox();
			this._chkFields_8 = new System.Windows.Forms.CheckBox();
			this._chkFields_7 = new System.Windows.Forms.CheckBox();
			this._chkFields_6 = new System.Windows.Forms.CheckBox();
			this._chkFields_5 = new System.Windows.Forms.CheckBox();
			this._chkFields_4 = new System.Windows.Forms.CheckBox();
			this._chkFields_3 = new System.Windows.Forms.CheckBox();
			this._chkBit_13 = new System.Windows.Forms.CheckBox();
			this._chkFields_2 = new System.Windows.Forms.CheckBox();
			this._txtFields_4 = new System.Windows.Forms.TextBox();
			this.txtintper = new System.Windows.Forms.TextBox();
			this._cboIntPer_0 = new System.Windows.Forms.ComboBox();
			this._chkBit_12 = new System.Windows.Forms.CheckBox();
			this.txtPeriod = new System.Windows.Forms.TextBox();
			this._chkBit_11 = new System.Windows.Forms.CheckBox();
			this._txtFields_3 = new System.Windows.Forms.TextBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this._chkBit_10 = new System.Windows.Forms.CheckBox();
			this._chkBit_9 = new System.Windows.Forms.CheckBox();
			this._chkBit_8 = new System.Windows.Forms.CheckBox();
			this._chkBit_0 = new System.Windows.Forms.CheckBox();
			this._chkFields_1 = new System.Windows.Forms.CheckBox();
			this._chkBit_7 = new System.Windows.Forms.CheckBox();
			this._chkBit_6 = new System.Windows.Forms.CheckBox();
			this._chkBit_5 = new System.Windows.Forms.CheckBox();
			this._chkBit_4 = new System.Windows.Forms.CheckBox();
			this._chkBit_3 = new System.Windows.Forms.CheckBox();
			this._chkBit_2 = new System.Windows.Forms.CheckBox();
			this._chkBit_1 = new System.Windows.Forms.CheckBox();
			this._chkFields_0 = new System.Windows.Forms.CheckBox();
			this._chkFields_12 = new System.Windows.Forms.CheckBox();
			this._txtFields_14 = new System.Windows.Forms.TextBox();
			this._txtFields_13 = new System.Windows.Forms.TextBox();
			this._txtFields_10 = new System.Windows.Forms.TextBox();
			this._txtFields_9 = new System.Windows.Forms.TextBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_6 = new System.Windows.Forms.TextBox();
			this._txtFields_5 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdSyncParam = new System.Windows.Forms.Button();
			this.cmdHO = new System.Windows.Forms.Button();
			this.Command1 = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbLanguage = new _4PosBackOffice.NET.myDataGridView();
			this._lbl_4 = new System.Windows.Forms.Label();
			this.Label14 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this.Label13 = new System.Windows.Forms.Label();
			this.Label12 = new System.Windows.Forms.Label();
			this.Label11 = new System.Windows.Forms.Label();
			this._lblLabels_1 = 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.lblintrfromper = new System.Windows.Forms.Label();
			this.lblinterestper = new System.Windows.Forms.Label();
			this.Label7 = new System.Windows.Forms.Label();
			this.Label6 = new System.Windows.Forms.Label();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.Label3 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lblLabels_14 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
			this.picButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)this.cmbLanguage).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
				this._Shape1_6,
				this.Shape4,
				this.Shape3,
				this.Shape2,
				this._Shape1_5,
				this._Shape1_4,
				this._Shape1_3,
				this._Shape1_1,
				this._Shape1_2,
				this._Shape1_0,
				this.Shape5,
				this.Shape6
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(867, 720);
			this.ShapeContainer1.TabIndex = 92;
			this.ShapeContainer1.TabStop = false;
			//
			//_Shape1_6
			//
			this._Shape1_6.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_6.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_6.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_6.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_6, Convert.ToInt16(6));
			this._Shape1_6.Location = new System.Drawing.Point(606, 60);
			this._Shape1_6.Name = "_Shape1_6";
			this._Shape1_6.Size = new System.Drawing.Size(254, 37);
			//
			//Shape4
			//
			this.Shape4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape4.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape4.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape4.FillColor = System.Drawing.Color.Black;
			this.Shape4.Location = new System.Drawing.Point(346, 614);
			this.Shape4.Name = "Shape4";
			this.Shape4.Size = new System.Drawing.Size(254, 47);
			//
			//Shape3
			//
			this.Shape3.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape3.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape3.FillColor = System.Drawing.Color.Black;
			this.Shape3.Location = new System.Drawing.Point(3, 625);
			this.Shape3.Name = "Shape3";
			this.Shape3.Size = new System.Drawing.Size(337, 37);
			//
			//Shape2
			//
			this.Shape2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape2.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape2.FillColor = System.Drawing.Color.Black;
			this.Shape2.Location = new System.Drawing.Point(346, 546);
			this.Shape2.Name = "Shape2";
			this.Shape2.Size = new System.Drawing.Size(254, 53);
			//
			//_Shape1_5
			//
			this._Shape1_5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_5.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_5.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_5.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_5, Convert.ToInt16(5));
			this._Shape1_5.Location = new System.Drawing.Point(346, 440);
			this._Shape1_5.Name = "_Shape1_5";
			this._Shape1_5.Size = new System.Drawing.Size(254, 93);
			//
			//_Shape1_4
			//
			this._Shape1_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_4.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_4.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_4.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_4, Convert.ToInt16(4));
			this._Shape1_4.Location = new System.Drawing.Point(346, 258);
			this._Shape1_4.Name = "_Shape1_4";
			this._Shape1_4.Size = new System.Drawing.Size(254, 165);
			//
			//_Shape1_3
			//
			this._Shape1_3.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_3.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_3.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_3, Convert.ToInt16(3));
			this._Shape1_3.Location = new System.Drawing.Point(346, 60);
			this._Shape1_3.Name = "_Shape1_3";
			this._Shape1_3.Size = new System.Drawing.Size(254, 182);
			//
			//_Shape1_1
			//
			this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_1, Convert.ToInt16(1));
			this._Shape1_1.Location = new System.Drawing.Point(3, 328);
			this._Shape1_1.Name = "_Shape1_1";
			this._Shape1_1.Size = new System.Drawing.Size(337, 279);
			//
			//_Shape1_2
			//
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_2, Convert.ToInt16(2));
			this._Shape1_2.Location = new System.Drawing.Point(3, 60);
			this._Shape1_2.Name = "_Shape1_2";
			this._Shape1_2.Size = new System.Drawing.Size(337, 187);
			//
			//_Shape1_0
			//
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
			this._Shape1_0.Location = new System.Drawing.Point(3, 264);
			this._Shape1_0.Name = "_Shape1_0";
			this._Shape1_0.Size = new System.Drawing.Size(337, 49);
			//
			//Shape5
			//
			this.Shape5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape5.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape5.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape5.FillColor = System.Drawing.Color.Black;
			this.Shape5.Location = new System.Drawing.Point(346, 678);
			this.Shape5.Name = "Shape5";
			this.Shape5.Size = new System.Drawing.Size(254, 37);
			//
			//Shape6
			//
			this.Shape6.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this.Shape6.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this.Shape6.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Shape6.FillColor = System.Drawing.Color.Black;
			this.Shape6.Location = new System.Drawing.Point(3, 684);
			this.Shape6.Name = "Shape6";
			this.Shape6.Size = new System.Drawing.Size(337, 31);
			//
			//_chkFields_19
			//
			this._chkFields_19.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_19.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_19.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_19.Location = new System.Drawing.Point(612, 64);
			this._chkFields_19.Name = "_chkFields_19";
			this._chkFields_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_19.Size = new System.Drawing.Size(242, 29);
			this._chkFields_19.TabIndex = 90;
			this._chkFields_19.Text = "Do not allow security permissions higher than person logged in.";
			this._chkFields_19.UseVisualStyleBackColor = false;
			//
			//_chkFields_18
			//
			this._chkFields_18.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_18.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_18.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_18.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_18.Location = new System.Drawing.Point(354, 394);
			this._chkFields_18.Name = "_chkFields_18";
			this._chkFields_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_18.Size = new System.Drawing.Size(242, 27);
			this._chkFields_18.TabIndex = 89;
			this._chkFields_18.Text = "Load Today's report data when application starts";
			this._chkFields_18.UseVisualStyleBackColor = false;
			//
			//_chkFields_17
			//
			this._chkFields_17.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_17.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_17.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_17.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_17.Location = new System.Drawing.Point(8, 583);
			this._chkFields_17.Name = "_chkFields_17";
			this._chkFields_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_17.Size = new System.Drawing.Size(324, 19);
			this._chkFields_17.TabIndex = 88;
			this._chkFields_17.Text = "Apply Sales Qty for 'Make Finished Product'";
			this._chkFields_17.UseVisualStyleBackColor = false;
			//
			//_chkFields_16
			//
			this._chkFields_16.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_16.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_16.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_16.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_16.Location = new System.Drawing.Point(8, 564);
			this._chkFields_16.Name = "_chkFields_16";
			this._chkFields_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_16.Size = new System.Drawing.Size(324, 19);
			this._chkFields_16.TabIndex = 87;
			this._chkFields_16.Text = "Sort stock items on Order alphabetically";
			this._chkFields_16.UseVisualStyleBackColor = false;
			//
			//cmdLocate
			//
			this.cmdLocate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdLocate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdLocate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdLocate.Location = new System.Drawing.Point(272, 680);
			this.cmdLocate.Name = "cmdLocate";
			this.cmdLocate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdLocate.Size = new System.Drawing.Size(60, 25);
			this.cmdLocate.TabIndex = 86;
			this.cmdLocate.Text = "Locate ...";
			this.cmdLocate.UseVisualStyleBackColor = false;
			//
			//_txtFields_11
			//
			this._txtFields_11.AcceptsReturn = true;
			this._txtFields_11.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_11.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_11.Enabled = false;
			this._txtFields_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_11.Location = new System.Drawing.Point(76, 684);
			this._txtFields_11.MaxLength = 0;
			this._txtFields_11.Name = "_txtFields_11";
			this._txtFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_11.Size = new System.Drawing.Size(192, 19);
			this._txtFields_11.TabIndex = 85;
			//
			//_chkFields_15
			//
			this._chkFields_15.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_15.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_15.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_15.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_15.Location = new System.Drawing.Point(354, 216);
			this._chkFields_15.Name = "_chkFields_15";
			this._chkFields_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_15.Size = new System.Drawing.Size(242, 23);
			this._chkFields_15.TabIndex = 81;
			this._chkFields_15.Text = "Use Head Office link";
			this._chkFields_15.UseVisualStyleBackColor = false;
			//
			//cboSDK
			//
			this.cboSDK.BackColor = System.Drawing.SystemColors.Window;
			this.cboSDK.Cursor = System.Windows.Forms.Cursors.Default;
			this.cboSDK.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cboSDK.Items.AddRange(new object[] {
				"Platinum SDK",
				"One Touch SDK"
			});
			this.cboSDK.Location = new System.Drawing.Point(448, 684);
			this.cboSDK.Name = "cboSDK";
			this.cboSDK.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cboSDK.Size = new System.Drawing.Size(149, 21);
			this.cboSDK.TabIndex = 78;
			//
			//_chkFields_14
			//
			this._chkFields_14.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_14.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_14.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_14.Location = new System.Drawing.Point(8, 546);
			this._chkFields_14.Name = "_chkFields_14";
			this._chkFields_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_14.Size = new System.Drawing.Size(324, 19);
			this._chkFields_14.TabIndex = 77;
			this._chkFields_14.Text = "On Stock Take Additions and Day Ends print slip";
			this._chkFields_14.UseVisualStyleBackColor = false;
			//
			//_chkFields_13
			//
			this._chkFields_13.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_13.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_13.Location = new System.Drawing.Point(8, 526);
			this._chkFields_13.Name = "_chkFields_13";
			this._chkFields_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_13.Size = new System.Drawing.Size(324, 19);
			this._chkFields_13.TabIndex = 76;
			this._chkFields_13.Text = "When print shrinkage, toggle the negative sign";
			this._chkFields_13.UseVisualStyleBackColor = false;
			//
			//_chkFields_11
			//
			this._chkFields_11.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_11.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_11.Location = new System.Drawing.Point(8, 504);
			this._chkFields_11.Name = "_chkFields_11";
			this._chkFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_11.Size = new System.Drawing.Size(324, 19);
			this._chkFields_11.TabIndex = 75;
			this._chkFields_11.Text = "When print Purchase order, print Barcode and not Supplier code";
			this._chkFields_11.UseVisualStyleBackColor = false;
			//
			//_chkFields_10
			//
			this._chkFields_10.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_10.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_10.Location = new System.Drawing.Point(354, 378);
			this._chkFields_10.Name = "_chkFields_10";
			this._chkFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_10.Size = new System.Drawing.Size(242, 19);
			this._chkFields_10.TabIndex = 74;
			this._chkFields_10.Text = "Cashless System";
			this._chkFields_10.UseVisualStyleBackColor = false;
			//
			//_chkFields_9
			//
			this._chkFields_9.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_9.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_9.Location = new System.Drawing.Point(354, 359);
			this._chkFields_9.Name = "_chkFields_9";
			this._chkFields_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_9.Size = new System.Drawing.Size(242, 19);
			this._chkFields_9.TabIndex = 73;
			this._chkFields_9.Text = "Fruit && Veg Production";
			this._chkFields_9.UseVisualStyleBackColor = false;
			//
			//_chkFields_8
			//
			this._chkFields_8.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_8.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_8.Location = new System.Drawing.Point(354, 636);
			this._chkFields_8.Name = "_chkFields_8";
			this._chkFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_8.Size = new System.Drawing.Size(242, 23);
			this._chkFields_8.TabIndex = 72;
			this._chkFields_8.Text = "Do not print 'Balance Due Now' on statements";
			this._chkFields_8.UseVisualStyleBackColor = false;
			//
			//_chkFields_7
			//
			this._chkFields_7.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_7.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_7.Location = new System.Drawing.Point(354, 616);
			this._chkFields_7.Name = "_chkFields_7";
			this._chkFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_7.Size = new System.Drawing.Size(242, 23);
			this._chkFields_7.TabIndex = 70;
			this._chkFields_7.Text = "Use Open Item Debtors for payment allocation";
			this._chkFields_7.UseVisualStyleBackColor = false;
			//
			//_chkFields_6
			//
			this._chkFields_6.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_6.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_6.Location = new System.Drawing.Point(248, 629);
			this._chkFields_6.Name = "_chkFields_6";
			this._chkFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_6.Size = new System.Drawing.Size(81, 23);
			this._chkFields_6.TabIndex = 67;
			this._chkFields_6.Text = "Right to Left";
			this._chkFields_6.UseVisualStyleBackColor = false;
			//
			//_chkFields_5
			//
			this._chkFields_5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_5.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_5.Location = new System.Drawing.Point(354, 340);
			this._chkFields_5.Name = "_chkFields_5";
			this._chkFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_5.Size = new System.Drawing.Size(242, 19);
			this._chkFields_5.TabIndex = 65;
			this._chkFields_5.Text = "Dry Cleaning Customer";
			this._chkFields_5.UseVisualStyleBackColor = false;
			//
			//_chkFields_4
			//
			this._chkFields_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_4.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_4.Location = new System.Drawing.Point(8, 334);
			this._chkFields_4.Name = "_chkFields_4";
			this._chkFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_4.Size = new System.Drawing.Size(324, 19);
			this._chkFields_4.TabIndex = 64;
			this._chkFields_4.Text = "When print stock take sheets, show Barcode and not Quick Key";
			this._chkFields_4.UseVisualStyleBackColor = false;
			//
			//_chkFields_3
			//
			this._chkFields_3.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_3.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_3.Location = new System.Drawing.Point(256, 736);
			this._chkFields_3.Name = "_chkFields_3";
			this._chkFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_3.Size = new System.Drawing.Size(265, 23);
			this._chkFields_3.TabIndex = 63;
			this._chkFields_3.Text = "Donot overwrite Menus on 4POS Update";
			this._chkFields_3.UseVisualStyleBackColor = false;
			this._chkFields_3.Visible = false;
			//
			//_chkBit_13
			//
			this._chkBit_13.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_13.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_13.Location = new System.Drawing.Point(8, 475);
			this._chkBit_13.Name = "_chkBit_13";
			this._chkBit_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_13.Size = new System.Drawing.Size(324, 26);
			this._chkBit_13.TabIndex = 62;
			this._chkBit_13.Text = "On processing GRV, Do not update GRV cost to LIST cost && calculate Weighted Avg " + "cost to Actual Cost";
			this._chkBit_13.UseVisualStyleBackColor = false;
			//
			//_chkFields_2
			//
			this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_2.Location = new System.Drawing.Point(8, 389);
			this._chkFields_2.Name = "_chkFields_2";
			this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_2.Size = new System.Drawing.Size(324, 26);
			this._chkFields_2.TabIndex = 59;
			this._chkFields_2.Text = "On processing GRV, update GRV Cost to Actual Cost        [Default is List Cost]";
			this._chkFields_2.UseVisualStyleBackColor = false;
			//
			//_txtFields_4
			//
			this._txtFields_4.AcceptsReturn = true;
			this._txtFields_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_4.Location = new System.Drawing.Point(520, 552);
			this._txtFields_4.MaxLength = 0;
			this._txtFields_4.Name = "_txtFields_4";
			this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_4.Size = new System.Drawing.Size(72, 19);
			this._txtFields_4.TabIndex = 58;
			//
			//txtintper
			//
			this.txtintper.AcceptsReturn = true;
			this.txtintper.BackColor = System.Drawing.SystemColors.Window;
			this.txtintper.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtintper.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtintper.Location = new System.Drawing.Point(176, 728);
			this.txtintper.MaxLength = 0;
			this.txtintper.Name = "txtintper";
			this.txtintper.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtintper.Size = new System.Drawing.Size(71, 19);
			this.txtintper.TabIndex = 26;
			this.txtintper.Text = "0.00";
			this.txtintper.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtintper.Visible = false;
			//
			//_cboIntPer_0
			//
			this._cboIntPer_0.BackColor = System.Drawing.SystemColors.Window;
			this._cboIntPer_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._cboIntPer_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._cboIntPer_0.Items.AddRange(new object[] {
				"Current",
				"30 Days",
				"60 Days",
				"90 Days",
				"120 Days",
				"150 Days"
			});
			this._cboIntPer_0.Location = new System.Drawing.Point(520, 574);
			this._cboIntPer_0.Name = "_cboIntPer_0";
			this._cboIntPer_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cboIntPer_0.Size = new System.Drawing.Size(69, 21);
			this._cboIntPer_0.TabIndex = 27;
			//
			//_chkBit_12
			//
			this._chkBit_12.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_12.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_12.Location = new System.Drawing.Point(354, 323);
			this._chkBit_12.Name = "_chkBit_12";
			this._chkBit_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_12.Size = new System.Drawing.Size(242, 15);
			this._chkBit_12.TabIndex = 31;
			this._chkBit_12.Text = "Automatic Zero Stock At Day End";
			this._chkBit_12.UseVisualStyleBackColor = false;
			//
			//txtPeriod
			//
			this.txtPeriod.AcceptsReturn = true;
			this.txtPeriod.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.txtPeriod.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtPeriod.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPeriod.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPeriod.Location = new System.Drawing.Point(98, 268);
			this.txtPeriod.MaxLength = 0;
			this.txtPeriod.Name = "txtPeriod";
			this.txtPeriod.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPeriod.Size = new System.Drawing.Size(49, 19);
			this.txtPeriod.TabIndex = 6;
			this.txtPeriod.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_chkBit_11
			//
			this._chkBit_11.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_11.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_11.Location = new System.Drawing.Point(8, 430);
			this._chkBit_11.Name = "_chkBit_11";
			this._chkBit_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_11.Size = new System.Drawing.Size(324, 26);
			this._chkBit_11.TabIndex = 53;
			this._chkBit_11.Text = "On processing GRV, update GRV cost to LIST cost && calculate Weighted Avg cost to" + " Actual Cost";
			this._chkBit_11.UseVisualStyleBackColor = false;
			//
			//_txtFields_3
			//
			this._txtFields_3.AcceptsReturn = true;
			this._txtFields_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_3.Location = new System.Drawing.Point(464, 510);
			this._txtFields_3.MaxLength = 0;
			this._txtFields_3.Name = "_txtFields_3";
			this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_3.Size = new System.Drawing.Size(131, 19);
			this._txtFields_3.TabIndex = 25;
			//
			//_txtFields_2
			//
			this._txtFields_2.AcceptsReturn = true;
			this._txtFields_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_2.Location = new System.Drawing.Point(464, 488);
			this._txtFields_2.MaxLength = 0;
			this._txtFields_2.Name = "_txtFields_2";
			this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_2.Size = new System.Drawing.Size(131, 19);
			this._txtFields_2.TabIndex = 24;
			//
			//_txtFields_1
			//
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.Location = new System.Drawing.Point(464, 466);
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Name = "_txtFields_1";
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.Size = new System.Drawing.Size(131, 19);
			this._txtFields_1.TabIndex = 23;
			//
			//_txtFields_0
			//
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.Location = new System.Drawing.Point(464, 446);
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Name = "_txtFields_0";
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.Size = new System.Drawing.Size(131, 19);
			this._txtFields_0.TabIndex = 22;
			//
			//_chkBit_10
			//
			this._chkBit_10.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_10.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_10.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_10.Location = new System.Drawing.Point(354, 202);
			this._chkBit_10.Name = "_chkBit_10";
			this._chkBit_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_10.Size = new System.Drawing.Size(242, 15);
			this._chkBit_10.TabIndex = 18;
			this._chkBit_10.Text = "Automatic Email to Remote Office";
			this._chkBit_10.UseVisualStyleBackColor = false;
			//
			//_chkBit_9
			//
			this._chkBit_9.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_9.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_9.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_9.Location = new System.Drawing.Point(354, 306);
			this._chkBit_9.Name = "_chkBit_9";
			this._chkBit_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_9.Size = new System.Drawing.Size(242, 15);
			this._chkBit_9.TabIndex = 21;
			this._chkBit_9.Text = "Do Not View Update Warning on update POS ";
			this._chkBit_9.UseVisualStyleBackColor = false;
			//
			//_chkBit_8
			//
			this._chkBit_8.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_8.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_8.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_8.Location = new System.Drawing.Point(354, 262);
			this._chkBit_8.Name = "_chkBit_8";
			this._chkBit_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_8.Size = new System.Drawing.Size(242, 23);
			this._chkBit_8.TabIndex = 19;
			this._chkBit_8.Text = "4POS Interface Handling";
			this._chkBit_8.UseVisualStyleBackColor = false;
			//
			//_chkBit_0
			//
			this._chkBit_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_0.Location = new System.Drawing.Point(354, 186);
			this._chkBit_0.Name = "_chkBit_0";
			this._chkBit_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_0.Size = new System.Drawing.Size(242, 15);
			this._chkBit_0.TabIndex = 17;
			this._chkBit_0.Text = "Automatic Pastel Report";
			this._chkBit_0.UseVisualStyleBackColor = false;
			//
			//_chkFields_1
			//
			this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_1.Location = new System.Drawing.Point(354, 284);
			this._chkFields_1.Name = "_chkFields_1";
			this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_1.Size = new System.Drawing.Size(242, 22);
			this._chkFields_1.TabIndex = 20;
			this._chkFields_1.Text = "Allow Day End run to be performed from the 4POS Domain Controller";
			this._chkFields_1.UseVisualStyleBackColor = false;
			//
			//_chkBit_7
			//
			this._chkBit_7.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_7.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_7.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_7.Location = new System.Drawing.Point(354, 168);
			this._chkBit_7.Name = "_chkBit_7";
			this._chkBit_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_7.Size = new System.Drawing.Size(242, 15);
			this._chkBit_7.TabIndex = 16;
			this._chkBit_7.Text = "Consignment Summary";
			this._chkBit_7.UseVisualStyleBackColor = false;
			//
			//_chkBit_6
			//
			this._chkBit_6.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_6.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_6.Location = new System.Drawing.Point(354, 152);
			this._chkBit_6.Name = "_chkBit_6";
			this._chkBit_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_6.Size = new System.Drawing.Size(242, 15);
			this._chkBit_6.TabIndex = 15;
			this._chkBit_6.Text = "Print Quotes";
			this._chkBit_6.UseVisualStyleBackColor = false;
			//
			//_chkBit_5
			//
			this._chkBit_5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_5.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_5.Location = new System.Drawing.Point(354, 134);
			this._chkBit_5.Name = "_chkBit_5";
			this._chkBit_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_5.Size = new System.Drawing.Size(242, 15);
			this._chkBit_5.TabIndex = 14;
			this._chkBit_5.Text = "Print Customer Movement Details";
			this._chkBit_5.UseVisualStyleBackColor = false;
			//
			//_chkBit_4
			//
			this._chkBit_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_4.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_4.Location = new System.Drawing.Point(354, 116);
			this._chkBit_4.Name = "_chkBit_4";
			this._chkBit_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_4.Size = new System.Drawing.Size(242, 15);
			this._chkBit_4.TabIndex = 44;
			this._chkBit_4.Text = "Print Supplier Movement Summary";
			this._chkBit_4.UseVisualStyleBackColor = false;
			//
			//_chkBit_3
			//
			this._chkBit_3.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_3.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_3.Location = new System.Drawing.Point(354, 100);
			this._chkBit_3.Name = "_chkBit_3";
			this._chkBit_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_3.Size = new System.Drawing.Size(242, 15);
			this._chkBit_3.TabIndex = 13;
			this._chkBit_3.Text = "Print Shrinkage Details";
			this._chkBit_3.UseVisualStyleBackColor = false;
			//
			//_chkBit_2
			//
			this._chkBit_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_2.Location = new System.Drawing.Point(354, 82);
			this._chkBit_2.Name = "_chkBit_2";
			this._chkBit_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_2.Size = new System.Drawing.Size(242, 15);
			this._chkBit_2.TabIndex = 12;
			this._chkBit_2.Text = "Stock Movement Summary";
			this._chkBit_2.UseVisualStyleBackColor = false;
			//
			//_chkBit_1
			//
			this._chkBit_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkBit_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkBit_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkBit_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkBit_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkBit_1.Location = new System.Drawing.Point(354, 64);
			this._chkBit_1.Name = "_chkBit_1";
			this._chkBit_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkBit_1.Size = new System.Drawing.Size(242, 15);
			this._chkBit_1.TabIndex = 11;
			this._chkBit_1.Text = "Sale Channel Activities";
			this._chkBit_1.UseVisualStyleBackColor = false;
			//
			//_chkFields_0
			//
			this._chkFields_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_0.Location = new System.Drawing.Point(8, 370);
			this._chkFields_0.Name = "_chkFields_0";
			this._chkFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_0.Size = new System.Drawing.Size(324, 19);
			this._chkFields_0.TabIndex = 10;
			this._chkFields_0.Text = "When print stock take sheets, dont print zero stock";
			this._chkFields_0.UseVisualStyleBackColor = false;
			//
			//_chkFields_12
			//
			this._chkFields_12.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_12.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_12.Location = new System.Drawing.Point(8, 352);
			this._chkFields_12.Name = "_chkFields_12";
			this._chkFields_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_12.Size = new System.Drawing.Size(324, 19);
			this._chkFields_12.TabIndex = 9;
			this._chkFields_12.Text = "When print stock take sheets, show stock value";
			this._chkFields_12.UseVisualStyleBackColor = false;
			//
			//_txtFields_14
			//
			this._txtFields_14.AcceptsReturn = true;
			this._txtFields_14.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this._txtFields_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_14.Enabled = false;
			this._txtFields_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_14.Location = new System.Drawing.Point(284, 290);
			this._txtFields_14.MaxLength = 0;
			this._txtFields_14.Name = "_txtFields_14";
			this._txtFields_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_14.Size = new System.Drawing.Size(48, 19);
			this._txtFields_14.TabIndex = 8;
			this._txtFields_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFields_13
			//
			this._txtFields_13.AcceptsReturn = true;
			this._txtFields_13.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this._txtFields_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_13.Enabled = false;
			this._txtFields_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_13.Location = new System.Drawing.Point(284, 268);
			this._txtFields_13.MaxLength = 0;
			this._txtFields_13.Name = "_txtFields_13";
			this._txtFields_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_13.Size = new System.Drawing.Size(48, 19);
			this._txtFields_13.TabIndex = 7;
			this._txtFields_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFields_10
			//
			this._txtFields_10.AcceptsReturn = true;
			this._txtFields_10.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_10.Location = new System.Drawing.Point(98, 222);
			this._txtFields_10.MaxLength = 0;
			this._txtFields_10.Name = "_txtFields_10";
			this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_10.Size = new System.Drawing.Size(234, 19);
			this._txtFields_10.TabIndex = 5;
			//
			//_txtFields_9
			//
			this._txtFields_9.AcceptsReturn = true;
			this._txtFields_9.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_9.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_9.Location = new System.Drawing.Point(233, 200);
			this._txtFields_9.MaxLength = 0;
			this._txtFields_9.Name = "_txtFields_9";
			this._txtFields_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_9.Size = new System.Drawing.Size(99, 19);
			this._txtFields_9.TabIndex = 4;
			//
			//_txtFields_8
			//
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.Location = new System.Drawing.Point(98, 200);
			this._txtFields_8.MaxLength = 0;
			this._txtFields_8.Name = "_txtFields_8";
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.Size = new System.Drawing.Size(99, 19);
			this._txtFields_8.TabIndex = 3;
			//
			//_txtFields_7
			//
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.Location = new System.Drawing.Point(98, 156);
			this._txtFields_7.MaxLength = 0;
			this._txtFields_7.Multiline = true;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.Size = new System.Drawing.Size(234, 41);
			this._txtFields_7.TabIndex = 2;
			//
			//_txtFields_6
			//
			this._txtFields_6.AcceptsReturn = true;
			this._txtFields_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_6.Location = new System.Drawing.Point(98, 105);
			this._txtFields_6.MaxLength = 0;
			this._txtFields_6.Multiline = true;
			this._txtFields_6.Name = "_txtFields_6";
			this._txtFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_6.Size = new System.Drawing.Size(234, 49);
			this._txtFields_6.TabIndex = 1;
			//
			//_txtFields_5
			//
			this._txtFields_5.AcceptsReturn = true;
			this._txtFields_5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this._txtFields_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_5.Enabled = false;
			this._txtFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_5.Location = new System.Drawing.Point(98, 69);
			this._txtFields_5.MaxLength = 0;
			this._txtFields_5.Name = "_txtFields_5";
			this._txtFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_5.Size = new System.Drawing.Size(234, 19);
			this._txtFields_5.TabIndex = 0;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdSyncParam);
			this.picButtons.Controls.Add(this.cmdHO);
			this.picButtons.Controls.Add(this.Command1);
			this.picButtons.Controls.Add(this.cmdCancel);
			this.picButtons.Controls.Add(this.cmdClose);
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.Name = "picButtons";
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Size = new System.Drawing.Size(867, 39);
			this.picButtons.TabIndex = 45;
			//
			//cmdSyncParam
			//
			this.cmdSyncParam.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSyncParam.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSyncParam.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSyncParam.Location = new System.Drawing.Point(296, 4);
			this.cmdSyncParam.Name = "cmdSyncParam";
			this.cmdSyncParam.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSyncParam.Size = new System.Drawing.Size(105, 29);
			this.cmdSyncParam.TabIndex = 92;
			this.cmdSyncParam.Text = "Sync Parameters";
			this.cmdSyncParam.UseVisualStyleBackColor = false;
			//
			//cmdHO
			//
			this.cmdHO.BackColor = System.Drawing.SystemColors.Control;
			this.cmdHO.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdHO.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdHO.Location = new System.Drawing.Point(184, 4);
			this.cmdHO.Name = "cmdHO";
			this.cmdHO.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdHO.Size = new System.Drawing.Size(105, 29);
			this.cmdHO.TabIndex = 82;
			this.cmdHO.Text = "Synchronize Data";
			this.cmdHO.UseVisualStyleBackColor = false;
			//
			//Command1
			//
			this.Command1.BackColor = System.Drawing.SystemColors.Control;
			this.Command1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command1.Location = new System.Drawing.Point(96, 4);
			this.Command1.Name = "Command1";
			this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command1.Size = new System.Drawing.Size(73, 29);
			this.Command1.TabIndex = 29;
			this.Command1.Text = "Edit Emails";
			this.Command1.UseVisualStyleBackColor = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(8, 4);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.TabIndex = 30;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//cmdClose
			//
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Location = new System.Drawing.Point(546, 4);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.TabIndex = 28;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//cmbLanguage
			//
			this.cmbLanguage.AllowAddNew = true;
			this.cmbLanguage.BoundText = "";
			this.cmbLanguage.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbLanguage.Col = 0;
			this.cmbLanguage.CtlText = "";
			this.cmbLanguage.DataField = null;
			this.cmbLanguage.Location = new System.Drawing.Point(99, 629);
			this.cmbLanguage.Name = "cmbLanguage";
			this.cmbLanguage.row = 0;
			this.cmbLanguage.Size = new System.Drawing.Size(132, 21);
			this.cmbLanguage.TabIndex = 68;
			this.cmbLanguage.TopRow = 0;
			//
			//_lbl_4
			//
			this._lbl_4.AutoSize = true;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Location = new System.Drawing.Point(606, 45);
			this._lbl_4.Name = "_lbl_4";
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.Size = new System.Drawing.Size(144, 14);
			this._lbl_4.TabIndex = 91;
			this._lbl_4.Text = "&12. Security permissions";
			//
			//Label14
			//
			this.Label14.BackColor = System.Drawing.Color.Transparent;
			this.Label14.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label14.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label14.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label14.Location = new System.Drawing.Point(3, 664);
			this.Label14.Name = "Label14";
			this.Label14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label14.Size = new System.Drawing.Size(273, 17);
			this.Label14.TabIndex = 84;
			this.Label14.Text = "&5. Automatic backup path";
			//
			//_lblLabels_2
			//
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_2.Location = new System.Drawing.Point(8, 686);
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.Size = new System.Drawing.Size(72, 13);
			this._lblLabels_2.TabIndex = 83;
			this._lblLabels_2.Text = "Backup Path:";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label13
			//
			this.Label13.BackColor = System.Drawing.Color.Transparent;
			this.Label13.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label13.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label13.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label13.Location = new System.Drawing.Point(348, 664);
			this.Label13.Name = "Label13";
			this.Label13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label13.Size = new System.Drawing.Size(273, 17);
			this.Label13.TabIndex = 80;
			this.Label13.Text = "&11. Finger Print SDK";
			//
			//Label12
			//
			this.Label12.AutoSize = true;
			this.Label12.BackColor = System.Drawing.Color.Transparent;
			this.Label12.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label12.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label12.Location = new System.Drawing.Point(352, 688);
			this.Label12.Name = "Label12";
			this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label12.Size = new System.Drawing.Size(81, 13);
			this.Label12.TabIndex = 79;
			this.Label12.Text = "DigitalPersona :";
			//
			//Label11
			//
			this.Label11.BackColor = System.Drawing.Color.Transparent;
			this.Label11.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label11.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label11.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label11.Location = new System.Drawing.Point(348, 600);
			this.Label11.Name = "Label11";
			this.Label11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label11.Size = new System.Drawing.Size(273, 17);
			this.Label11.TabIndex = 71;
			this.Label11.Text = "&10. Open Item Debtors";
			//
			//_lblLabels_1
			//
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._lblLabels_1.Location = new System.Drawing.Point(8, 630);
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.Size = new System.Drawing.Size(95, 13);
			this._lblLabels_1.TabIndex = 69;
			this._lblLabels_1.Text = "Default Language:";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label10
			//
			this.Label10.BackColor = System.Drawing.Color.Transparent;
			this.Label10.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label10.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label10.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label10.Location = new System.Drawing.Point(3, 608);
			this.Label10.Name = "Label10";
			this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label10.Size = new System.Drawing.Size(273, 17);
			this.Label10.TabIndex = 66;
			this.Label10.Text = "&4. Language settings";
			//
			//Label9
			//
			this.Label9.BackColor = System.Drawing.Color.Transparent;
			this.Label9.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label9.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label9.Location = new System.Drawing.Point(16, 458);
			this.Label9.Name = "Label9";
			this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label9.Size = new System.Drawing.Size(315, 15);
			this.Label9.TabIndex = 61;
			this.Label9.Text = "-------------------------------------------  OR  --------------------------------" + "-----------";
			//
			//Label8
			//
			this.Label8.BackColor = System.Drawing.Color.Transparent;
			this.Label8.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label8.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label8.Location = new System.Drawing.Point(16, 414);
			this.Label8.Name = "Label8";
			this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label8.Size = new System.Drawing.Size(315, 15);
			this.Label8.TabIndex = 60;
			this.Label8.Text = "-------------------------------------------  OR  --------------------------------" + "-----------";
			//
			//lblintrfromper
			//
			this.lblintrfromper.AutoSize = true;
			this.lblintrfromper.BackColor = System.Drawing.Color.Transparent;
			this.lblintrfromper.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblintrfromper.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblintrfromper.Location = new System.Drawing.Point(409, 577);
			this.lblintrfromper.Name = "lblintrfromper";
			this.lblintrfromper.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblintrfromper.Size = new System.Drawing.Size(107, 13);
			this.lblintrfromper.TabIndex = 57;
			this.lblintrfromper.Text = "Interest From Period :";
			//
			//lblinterestper
			//
			this.lblinterestper.AutoSize = true;
			this.lblinterestper.BackColor = System.Drawing.Color.Transparent;
			this.lblinterestper.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblinterestper.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblinterestper.Location = new System.Drawing.Point(368, 556);
			this.lblinterestper.Name = "lblinterestper";
			this.lblinterestper.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblinterestper.Size = new System.Drawing.Size(149, 13);
			this.lblinterestper.TabIndex = 56;
			this.lblinterestper.Text = "Interest Percentage per Year :";
			//
			//Label7
			//
			this.Label7.BackColor = System.Drawing.Color.Transparent;
			this.Label7.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label7.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label7.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label7.Location = new System.Drawing.Point(348, 532);
			this.Label7.Name = "Label7";
			this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label7.Size = new System.Drawing.Size(273, 17);
			this.Label7.TabIndex = 55;
			this.Label7.Text = "&9. Interest Percentages";
			//
			//Label6
			//
			this.Label6.BackColor = System.Drawing.Color.Transparent;
			this.Label6.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label6.Location = new System.Drawing.Point(8, 272);
			this.Label6.Name = "Label6";
			this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label6.Size = new System.Drawing.Size(67, 15);
			this.Label6.TabIndex = 54;
			this.Label6.Text = "Pastel period";
			//
			//Label5
			//
			this.Label5.BackColor = System.Drawing.Color.Transparent;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label5.Location = new System.Drawing.Point(348, 426);
			this.Label5.Name = "Label5";
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.Size = new System.Drawing.Size(121, 15);
			this.Label5.TabIndex = 52;
			this.Label5.Text = "&8. Banking Details";
			//
			//Label4
			//
			this.Label4.BackColor = System.Drawing.Color.Transparent;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Location = new System.Drawing.Point(348, 514);
			this.Label4.Name = "Label4";
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.Size = new System.Drawing.Size(113, 15);
			this.Label4.TabIndex = 51;
			this.Label4.Text = "Account Number :";
			this.Label4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label3
			//
			this.Label3.BackColor = System.Drawing.Color.Transparent;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Location = new System.Drawing.Point(348, 492);
			this.Label3.Name = "Label3";
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.Size = new System.Drawing.Size(113, 15);
			this.Label3.TabIndex = 50;
			this.Label3.Text = "Branch Code :";
			this.Label3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label2
			//
			this.Label2.BackColor = System.Drawing.Color.Transparent;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Location = new System.Drawing.Point(348, 470);
			this.Label2.Name = "Label2";
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.Size = new System.Drawing.Size(113, 15);
			this.Label2.TabIndex = 49;
			this.Label2.Text = "Branch Name :";
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//Label1
			//
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(348, 448);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(113, 15);
			this.Label1.TabIndex = 48;
			this.Label1.Text = "Bank Name :";
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_3
			//
			this._lbl_3.AutoSize = true;
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Location = new System.Drawing.Point(348, 244);
			this._lbl_3.Name = "_lbl_3";
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.Size = new System.Drawing.Size(50, 14);
			this._lbl_3.TabIndex = 47;
			this._lbl_3.Text = "&7. Other";
			//
			//_lbl_2
			//
			this._lbl_2.AutoSize = true;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Location = new System.Drawing.Point(346, 45);
			this._lbl_2.Name = "_lbl_2";
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.Size = new System.Drawing.Size(198, 14);
			this._lbl_2.TabIndex = 43;
			this._lbl_2.Text = "&6. Day End Report Print Parameters";
			//
			//_lbl_1
			//
			this._lbl_1.AutoSize = true;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Location = new System.Drawing.Point(3, 314);
			this._lbl_1.Name = "_lbl_1";
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.Size = new System.Drawing.Size(147, 14);
			this._lbl_1.TabIndex = 42;
			this._lbl_1.Text = "&3. Stock Take Parameters";
			//
			//_lbl_0
			//
			this._lbl_0.AutoSize = true;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Location = new System.Drawing.Point(3, 248);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(155, 14);
			this._lbl_0.TabIndex = 39;
			this._lbl_0.Text = "&2. Current Period Numbers";
			//
			//_lblLabels_0
			//
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.ForeColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(128)), Convert.ToInt32(Convert.ToByte(128)), Convert.ToInt32(Convert.ToByte(128)));
			this._lblLabels_0.Location = new System.Drawing.Point(53, 87);
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.Size = new System.Drawing.Size(277, 13);
			this._lblLabels_0.TabIndex = 46;
			this._lblLabels_0.Text = "To change your store name, please contact 4POS Support";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			//
			//_lblLabels_14
			//
			this._lblLabels_14.AutoSize = true;
			this._lblLabels_14.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_14.Location = new System.Drawing.Point(146, 292);
			this._lblLabels_14.Name = "_lblLabels_14";
			this._lblLabels_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_14.Size = new System.Drawing.Size(139, 13);
			this._lblLabels_14.TabIndex = 41;
			this._lblLabels_14.Text = "Current Month End Number:";
			this._lblLabels_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_13
			//
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_13.Location = new System.Drawing.Point(154, 272);
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.Size = new System.Drawing.Size(128, 13);
			this._lblLabels_13.TabIndex = 40;
			this._lblLabels_13.Text = "Current Day End Number:";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_10
			//
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Location = new System.Drawing.Point(66, 222);
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.Size = new System.Drawing.Size(35, 13);
			this._lblLabels_10.TabIndex = 38;
			this._lblLabels_10.Text = "Email:";
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_9
			//
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Location = new System.Drawing.Point(206, 200);
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.Size = new System.Drawing.Size(27, 13);
			this._lblLabels_9.TabIndex = 37;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_8
			//
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Location = new System.Drawing.Point(40, 200);
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_8.TabIndex = 36;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_7
			//
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Location = new System.Drawing.Point(20, 156);
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.Size = new System.Drawing.Size(80, 13);
			this._lblLabels_7.TabIndex = 35;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_6
			//
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Location = new System.Drawing.Point(8, 105);
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.Size = new System.Drawing.Size(90, 13);
			this._lblLabels_6.TabIndex = 34;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_5
			//
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Location = new System.Drawing.Point(13, 69);
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.Size = new System.Drawing.Size(85, 13);
			this._lblLabels_5.TabIndex = 33;
			this._lblLabels_5.Text = "Company Name:";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.AutoSize = true;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Location = new System.Drawing.Point(3, 45);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(62, 14);
			this._lbl_5.TabIndex = 32;
			this._lbl_5.Text = "&1. General";
			//
			//frmCompanySetup
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.ClientSize = new System.Drawing.Size(867, 720);
			this.ControlBox = false;
			this.Controls.Add(this._chkFields_19);
			this.Controls.Add(this._chkFields_18);
			this.Controls.Add(this._chkFields_17);
			this.Controls.Add(this._chkFields_16);
			this.Controls.Add(this.cmdLocate);
			this.Controls.Add(this._txtFields_11);
			this.Controls.Add(this._chkFields_15);
			this.Controls.Add(this.cboSDK);
			this.Controls.Add(this._chkFields_14);
			this.Controls.Add(this._chkFields_13);
			this.Controls.Add(this._chkFields_11);
			this.Controls.Add(this._chkFields_10);
			this.Controls.Add(this._chkFields_9);
			this.Controls.Add(this._chkFields_8);
			this.Controls.Add(this._chkFields_7);
			this.Controls.Add(this._chkFields_6);
			this.Controls.Add(this._chkFields_5);
			this.Controls.Add(this._chkFields_4);
			this.Controls.Add(this._chkFields_3);
			this.Controls.Add(this._chkBit_13);
			this.Controls.Add(this._chkFields_2);
			this.Controls.Add(this._txtFields_4);
			this.Controls.Add(this.txtintper);
			this.Controls.Add(this._cboIntPer_0);
			this.Controls.Add(this._chkBit_12);
			this.Controls.Add(this.txtPeriod);
			this.Controls.Add(this._chkBit_11);
			this.Controls.Add(this._txtFields_3);
			this.Controls.Add(this._txtFields_2);
			this.Controls.Add(this._txtFields_1);
			this.Controls.Add(this._txtFields_0);
			this.Controls.Add(this._chkBit_10);
			this.Controls.Add(this._chkBit_9);
			this.Controls.Add(this._chkBit_8);
			this.Controls.Add(this._chkBit_0);
			this.Controls.Add(this._chkFields_1);
			this.Controls.Add(this._chkBit_7);
			this.Controls.Add(this._chkBit_6);
			this.Controls.Add(this._chkBit_5);
			this.Controls.Add(this._chkBit_4);
			this.Controls.Add(this._chkBit_3);
			this.Controls.Add(this._chkBit_2);
			this.Controls.Add(this._chkBit_1);
			this.Controls.Add(this._chkFields_0);
			this.Controls.Add(this._chkFields_12);
			this.Controls.Add(this._txtFields_14);
			this.Controls.Add(this._txtFields_13);
			this.Controls.Add(this._txtFields_10);
			this.Controls.Add(this._txtFields_9);
			this.Controls.Add(this._txtFields_8);
			this.Controls.Add(this._txtFields_7);
			this.Controls.Add(this._txtFields_6);
			this.Controls.Add(this._txtFields_5);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.cmbLanguage);
			this.Controls.Add(this._lbl_4);
			this.Controls.Add(this.Label14);
			this.Controls.Add(this._lblLabels_2);
			this.Controls.Add(this.Label13);
			this.Controls.Add(this.Label12);
			this.Controls.Add(this.Label11);
			this.Controls.Add(this._lblLabels_1);
			this.Controls.Add(this.Label10);
			this.Controls.Add(this.Label9);
			this.Controls.Add(this.Label8);
			this.Controls.Add(this.lblintrfromper);
			this.Controls.Add(this.lblinterestper);
			this.Controls.Add(this.Label7);
			this.Controls.Add(this.Label6);
			this.Controls.Add(this.Label5);
			this.Controls.Add(this.Label4);
			this.Controls.Add(this.Label3);
			this.Controls.Add(this.Label2);
			this.Controls.Add(this.Label1);
			this.Controls.Add(this._lbl_3);
			this.Controls.Add(this._lbl_2);
			this.Controls.Add(this._lbl_1);
			this.Controls.Add(this._lbl_0);
			this.Controls.Add(this._lblLabels_0);
			this.Controls.Add(this._lblLabels_14);
			this.Controls.Add(this._lblLabels_13);
			this.Controls.Add(this._lblLabels_10);
			this.Controls.Add(this._lblLabels_9);
			this.Controls.Add(this._lblLabels_8);
			this.Controls.Add(this._lblLabels_7);
			this.Controls.Add(this._lblLabels_6);
			this.Controls.Add(this._lblLabels_5);
			this.Controls.Add(this._lbl_5);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmCompanySetup";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
			this.Text = "Edit Store Details";
			this.picButtons.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)this.cmbLanguage).EndInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string boundColumn, ref string listField)
 {
     ADODB.Recordset rs = default(ADODB.Recordset);
     rs = modRecordSet.getRS(ref sql);
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.DataSource. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     dataControl.DataSource = rs;
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.boundColumn. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     dataControl.boundColumn = boundColumn;
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.listField. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     dataControl.listField = listField;
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockValSelect));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.lstFilter = new System.Windows.Forms.CheckedListBox();
			this.ckbGrp = new System.Windows.Forms.CheckBox();
			this.txtSearch = new System.Windows.Forms.TextBox();
			this.cmdShow = new System.Windows.Forms.Button();
			this.optSum = new System.Windows.Forms.RadioButton();
			this.optDel = new System.Windows.Forms.RadioButton();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdClose = new System.Windows.Forms.Button();
			this.lblHeading = new System.Windows.Forms.Label();
			this.DataList1 = new myDataGridView();
			this.lbl = new System.Windows.Forms.Label();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Stock Value Report";
			this.ClientSize = new System.Drawing.Size(354, 159);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockValSelect";
			this.lstFilter.Size = new System.Drawing.Size(247, 79);
			this.lstFilter.Location = new System.Drawing.Point(8, 72);
			this.lstFilter.TabIndex = 10;
			this.lstFilter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lstFilter.BackColor = System.Drawing.SystemColors.Window;
			this.lstFilter.CausesValidation = true;
			this.lstFilter.Enabled = true;
			this.lstFilter.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lstFilter.IntegralHeight = true;
			this.lstFilter.Cursor = System.Windows.Forms.Cursors.Default;
			this.lstFilter.SelectionMode = System.Windows.Forms.SelectionMode.One;
			this.lstFilter.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lstFilter.Sorted = false;
			this.lstFilter.TabStop = true;
			this.lstFilter.Visible = true;
			this.lstFilter.MultiColumn = false;
			this.lstFilter.Name = "lstFilter";
			this.ckbGrp.Text = "Select Group ?";
			this.ckbGrp.Size = new System.Drawing.Size(97, 17);
			this.ckbGrp.Location = new System.Drawing.Point(160, 48);
			this.ckbGrp.TabIndex = 9;
			this.ckbGrp.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.ckbGrp.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.ckbGrp.BackColor = System.Drawing.SystemColors.Control;
			this.ckbGrp.CausesValidation = true;
			this.ckbGrp.Enabled = true;
			this.ckbGrp.ForeColor = System.Drawing.SystemColors.ControlText;
			this.ckbGrp.Cursor = System.Windows.Forms.Cursors.Default;
			this.ckbGrp.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ckbGrp.Appearance = System.Windows.Forms.Appearance.Normal;
			this.ckbGrp.TabStop = true;
			this.ckbGrp.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.ckbGrp.Visible = true;
			this.ckbGrp.Name = "ckbGrp";
			this.txtSearch.AutoSize = false;
			this.txtSearch.Size = new System.Drawing.Size(94, 19);
			this.txtSearch.Location = new System.Drawing.Point(51, 46);
			this.txtSearch.TabIndex = 7;
			this.txtSearch.AcceptsReturn = true;
			this.txtSearch.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSearch.BackColor = System.Drawing.SystemColors.Window;
			this.txtSearch.CausesValidation = true;
			this.txtSearch.Enabled = true;
			this.txtSearch.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSearch.HideSelection = true;
			this.txtSearch.ReadOnly = false;
			this.txtSearch.MaxLength = 0;
			this.txtSearch.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSearch.Multiline = false;
			this.txtSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSearch.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSearch.TabStop = true;
			this.txtSearch.Visible = true;
			this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSearch.Name = "txtSearch";
			this.cmdShow.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdShow.Text = "&Print";
			this.cmdShow.Size = new System.Drawing.Size(73, 29);
			this.cmdShow.Location = new System.Drawing.Point(272, 124);
			this.cmdShow.TabIndex = 5;
			this.cmdShow.TabStop = false;
			this.cmdShow.BackColor = System.Drawing.SystemColors.Control;
			this.cmdShow.CausesValidation = true;
			this.cmdShow.Enabled = true;
			this.cmdShow.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdShow.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdShow.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdShow.Name = "cmdShow";
			this.optSum.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.optSum.Text = "Summary";
			this.optSum.Font = new System.Drawing.Font("Verdana", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
			this.optSum.Size = new System.Drawing.Size(96, 23);
			this.optSum.Location = new System.Drawing.Point(266, 86);
			this.optSum.TabIndex = 4;
			this.optSum.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.optSum.BackColor = System.Drawing.SystemColors.Control;
			this.optSum.CausesValidation = true;
			this.optSum.Enabled = true;
			this.optSum.ForeColor = System.Drawing.SystemColors.ControlText;
			this.optSum.Cursor = System.Windows.Forms.Cursors.Default;
			this.optSum.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.optSum.Appearance = System.Windows.Forms.Appearance.Normal;
			this.optSum.TabStop = true;
			this.optSum.Checked = false;
			this.optSum.Visible = true;
			this.optSum.Name = "optSum";
			this.optDel.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.optDel.Text = "Detail";
			this.optDel.Font = new System.Drawing.Font("Verdana", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
			this.optDel.Size = new System.Drawing.Size(72, 23);
			this.optDel.Location = new System.Drawing.Point(266, 46);
			this.optDel.TabIndex = 3;
			this.optDel.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.optDel.BackColor = System.Drawing.SystemColors.Control;
			this.optDel.CausesValidation = true;
			this.optDel.Enabled = true;
			this.optDel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.optDel.Cursor = System.Windows.Forms.Cursors.Default;
			this.optDel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.optDel.Appearance = System.Windows.Forms.Appearance.Normal;
			this.optDel.TabStop = true;
			this.optDel.Checked = false;
			this.optDel.Visible = true;
			this.optDel.Name = "optDel";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(354, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 0;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(272, 2);
			this.cmdClose.TabIndex = 1;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			this.lblHeading.Text = "Select option for Detail / Summary";
			this.lblHeading.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblHeading.ForeColor = System.Drawing.Color.White;
			this.lblHeading.Size = new System.Drawing.Size(273, 21);
			this.lblHeading.Location = new System.Drawing.Point(2, 8);
			this.lblHeading.TabIndex = 2;
			this.lblHeading.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblHeading.BackColor = System.Drawing.Color.Transparent;
			this.lblHeading.Enabled = true;
			this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblHeading.UseMnemonic = true;
			this.lblHeading.Visible = true;
			this.lblHeading.AutoSize = false;
			this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblHeading.Name = "lblHeading";
			//DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(244, 82);
			this.DataList1.Location = new System.Drawing.Point(8, 168);
			this.DataList1.TabIndex = 6;
			this.DataList1.Name = "DataList1";
			this.lbl.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lbl.Text = "&Search :";
			this.lbl.Size = new System.Drawing.Size(40, 13);
			this.lbl.Location = new System.Drawing.Point(8, 49);
			this.lbl.TabIndex = 8;
			this.lbl.BackColor = System.Drawing.Color.Transparent;
			this.lbl.Enabled = true;
			this.lbl.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lbl.Cursor = System.Windows.Forms.Cursors.Default;
			this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lbl.UseMnemonic = true;
			this.lbl.Visible = true;
			this.lbl.AutoSize = true;
			this.lbl.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lbl.Name = "lbl";
			this.Controls.Add(lstFilter);
			this.Controls.Add(ckbGrp);
			this.Controls.Add(txtSearch);
			this.Controls.Add(cmdShow);
			this.Controls.Add(optSum);
			this.Controls.Add(optDel);
			this.Controls.Add(picButtons);
			this.Controls.Add(DataList1);
			this.Controls.Add(lbl);
			this.picButtons.Controls.Add(cmdClose);
			this.picButtons.Controls.Add(lblHeading);
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmLangMenu));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdClose = new System.Windows.Forms.Button();
			this.gridEdit = new myDataGridView();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.gridEdit).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Menu Language Translation Editor";
			this.ClientSize = new System.Drawing.Size(454, 637);
			this.Location = new System.Drawing.Point(3, 29);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmLangMenu";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.ForeColor = System.Drawing.SystemColors.WindowText;
			this.picButtons.Size = new System.Drawing.Size(454, 44);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 1;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.picButtons.Name = "picButtons";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(368, 6);
			this.cmdClose.TabIndex = 2;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.TabStop = true;
			this.cmdClose.Name = "cmdClose";
			//gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
			this.gridEdit.Size = new System.Drawing.Size(435, 582);
			this.gridEdit.Location = new System.Drawing.Point(9, 48);
			this.gridEdit.TabIndex = 0;
			this.gridEdit.Name = "gridEdit";
			this.Controls.Add(picButtons);
			this.Controls.Add(gridEdit);
			this.picButtons.Controls.Add(cmdClose);
			((System.ComponentModel.ISupportInitialize)this.gridEdit).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSupplierStatement));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.txtSearch  = new System.Windows.Forms.TextBox();
     this.picButtons = new System.Windows.Forms.Panel();
     this.cmbMonth   = new System.Windows.Forms.ComboBox();
     this.cmdPrint   = new System.Windows.Forms.Button();
     this.cmdExit    = new System.Windows.Forms.Button();
     this.DataList1  = new myDataGridView();
     this.lbl        = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                        = "Supplier Previous Statements";
     this.ClientSize                  = new System.Drawing.Size(263, 425);
     this.Location                    = new System.Drawing.Point(3, 22);
     this.ControlBox                  = false;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.KeyPreview                  = false;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmSupplierStatement";
     this.txtSearch.AutoSize          = false;
     this.txtSearch.Size              = new System.Drawing.Size(199, 19);
     this.txtSearch.Location          = new System.Drawing.Point(54, 48);
     this.txtSearch.TabIndex          = 1;
     this.txtSearch.AcceptsReturn     = true;
     this.txtSearch.TextAlign         = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtSearch.BackColor         = System.Drawing.SystemColors.Window;
     this.txtSearch.CausesValidation  = true;
     this.txtSearch.Enabled           = true;
     this.txtSearch.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.txtSearch.HideSelection     = true;
     this.txtSearch.ReadOnly          = false;
     this.txtSearch.MaxLength         = 0;
     this.txtSearch.Cursor            = System.Windows.Forms.Cursors.IBeam;
     this.txtSearch.Multiline         = false;
     this.txtSearch.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.txtSearch.ScrollBars        = System.Windows.Forms.ScrollBars.None;
     this.txtSearch.TabStop           = true;
     this.txtSearch.Visible           = true;
     this.txtSearch.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSearch.Name              = "txtSearch";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(263, 39);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 4;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name             = "picButtons";
     this.cmbMonth.Size               = new System.Drawing.Size(88, 21);
     this.cmbMonth.Location           = new System.Drawing.Point(84, 6);
     this.cmbMonth.Items.AddRange(new object[] {
         "Last Month",
         "2 Months Ago",
         "3 Months Ago",
         "4 Months Ago",
         "5 Months Ago",
         "6 Months Ago"
     });
     this.cmbMonth.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbMonth.TabIndex         = 3;
     this.cmbMonth.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbMonth.CausesValidation = true;
     this.cmbMonth.Enabled          = true;
     this.cmbMonth.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbMonth.IntegralHeight   = true;
     this.cmbMonth.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbMonth.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbMonth.Sorted           = false;
     this.cmbMonth.TabStop          = true;
     this.cmbMonth.Visible          = true;
     this.cmbMonth.Name             = "cmbMonth";
     this.cmdPrint.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text             = "&Print";
     this.cmdPrint.Size             = new System.Drawing.Size(73, 29);
     this.cmdPrint.Location         = new System.Drawing.Point(5, 3);
     this.cmdPrint.TabIndex         = 6;
     this.cmdPrint.TabStop          = false;
     this.cmdPrint.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation = true;
     this.cmdPrint.Enabled          = true;
     this.cmdPrint.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name             = "cmdPrint";
     this.cmdExit.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text             = "E&xit";
     this.cmdExit.Size             = new System.Drawing.Size(73, 29);
     this.cmdExit.Location         = new System.Drawing.Point(177, 3);
     this.cmdExit.TabIndex         = 5;
     this.cmdExit.TabStop          = false;
     this.cmdExit.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation = true;
     this.cmdExit.Enabled          = true;
     this.cmdExit.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.Name             = "cmdExit";
     //DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataList1.Size     = new System.Drawing.Size(244, 342);
     this.DataList1.Location = new System.Drawing.Point(9, 72);
     this.DataList1.TabIndex = 2;
     this.DataList1.Name     = "DataList1";
     this.lbl.TextAlign      = System.Drawing.ContentAlignment.TopRight;
     this.lbl.Text           = "&Search :";
     this.lbl.Size           = new System.Drawing.Size(40, 13);
     this.lbl.Location       = new System.Drawing.Point(11, 51);
     this.lbl.TabIndex       = 0;
     this.lbl.BackColor      = System.Drawing.Color.Transparent;
     this.lbl.Enabled        = true;
     this.lbl.ForeColor      = System.Drawing.SystemColors.ControlText;
     this.lbl.Cursor         = System.Windows.Forms.Cursors.Default;
     this.lbl.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.lbl.UseMnemonic    = true;
     this.lbl.Visible        = true;
     this.lbl.AutoSize       = true;
     this.lbl.BorderStyle    = System.Windows.Forms.BorderStyle.None;
     this.lbl.Name           = "lbl";
     this.Controls.Add(txtSearch);
     this.Controls.Add(picButtons);
     this.Controls.Add(DataList1);
     this.Controls.Add(lbl);
     this.picButtons.Controls.Add(cmbMonth);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(cmdExit);
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockItem));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this._Frame1_0 = new System.Windows.Forms.GroupBox();
			this.Frame6 = new System.Windows.Forms.GroupBox();
			this._chkSerialTracking_1 = new System.Windows.Forms.CheckBox();
			this._chkFields_6 = new System.Windows.Forms.CheckBox();
			this.Frame5 = new System.Windows.Forms.GroupBox();
			this.chkbarcode = new System.Windows.Forms.CheckBox();
			this.chkshelf = new System.Windows.Forms.CheckBox();
			this.Frame3 = new System.Windows.Forms.GroupBox();
			this._chkFields_1 = new System.Windows.Forms.CheckBox();
			this._chkSerialTracking_0 = new System.Windows.Forms.CheckBox();
			this._Frame2_1 = new System.Windows.Forms.GroupBox();
			this.cmdReportGroup = new System.Windows.Forms.Button();
			this.cmdStockGroup = new System.Windows.Forms.Button();
			this.cmdPricingGroup = new System.Windows.Forms.Button();
			this.cmbPricingGroup = new myDataGridView();
			this.cmbStockGroup = new myDataGridView();
			this.cmbReportGroup = new myDataGridView();
			this._lblLabels_15 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._Frame2_2 = new System.Windows.Forms.GroupBox();
			this.cmdShrink = new System.Windows.Forms.Button();
			this._txtFloat_1 = new System.Windows.Forms.TextBox();
			this._txtFloat_0 = new System.Windows.Forms.TextBox();
			this._txtInteger_0 = new System.Windows.Forms.TextBox();
			this.cmbShrink = new myDataGridView();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._Frame2_3 = new System.Windows.Forms.GroupBox();
			this.cmbReorder = new System.Windows.Forms.ComboBox();
			this._txtInteger_3 = new System.Windows.Forms.TextBox();
			this._txtInteger_1 = new System.Windows.Forms.TextBox();
			this._chkFields_0 = new System.Windows.Forms.CheckBox();
			this._txtInteger_2 = new System.Windows.Forms.TextBox();
			this._lbl_7 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._Frame2_4 = new System.Windows.Forms.GroupBox();
			this.cmdpriceselist = new System.Windows.Forms.Button();
			this.chkPriceSet = new System.Windows.Forms.CheckBox();
			this.cmbPriceSet = new myDataGridView();
			this.lblPriceSet = new System.Windows.Forms.Label();
			this._Frame2_5 = new System.Windows.Forms.GroupBox();
			this._txtInteger_4 = new System.Windows.Forms.TextBox();
			this._chkFields_5 = new System.Windows.Forms.CheckBox();
			this.chkSQ = new System.Windows.Forms.CheckBox();
			this._chkFields_3 = new System.Windows.Forms.CheckBox();
			this._chkFields_2 = new System.Windows.Forms.CheckBox();
			this._chkFields_4 = new System.Windows.Forms.CheckBox();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._Frame2_0 = new System.Windows.Forms.GroupBox();
			this.cmdPackSize = new System.Windows.Forms.Button();
			this.cmdPrintGroup = new System.Windows.Forms.Button();
			this.cmdVAT = new System.Windows.Forms.Button();
			this.cmdPrintLocation = new System.Windows.Forms.Button();
			this.cmdSupplier = new System.Windows.Forms.Button();
			this.cmdDeposit = new System.Windows.Forms.Button();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this._txtFields_14 = new System.Windows.Forms.TextBox();
			this._chkFields_13 = new System.Windows.Forms.CheckBox();
			this._chkFields_12 = new System.Windows.Forms.CheckBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this.cmbVat = new myDataGridView();
			this.cmbDeposit = new myDataGridView();
			this.cmbSupplier = new myDataGridView();
			this.cmbPrintLocation = new myDataGridView();
			this.cmbPrintGroup = new myDataGridView();
			this.cmbPackSize = new myDataGridView();
			this._lblLabels_16 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lblLabels_12 = new System.Windows.Forms.Label();
			this._lblLabels_14 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this.txtholdname = new System.Windows.Forms.TextBox();
			this.txttemphold = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdNext = new System.Windows.Forms.Button();
			this.cmdHistory = new System.Windows.Forms.Button();
			this.cmdDuplicate = new System.Windows.Forms.Button();
			this.cmdDetails = new System.Windows.Forms.Button();
			this.cmdbarcodeItem = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.ILtree = new System.Windows.Forms.ImageList();
			this._Frame1_1 = new System.Windows.Forms.GroupBox();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdRecipeAdd = new System.Windows.Forms.Button();
			this._optRecipeType_0 = new System.Windows.Forms.RadioButton();
			this._optRecipeType_1 = new System.Windows.Forms.RadioButton();
			this._optRecipeType_2 = new System.Windows.Forms.RadioButton();
			this.txtQuantity = new System.Windows.Forms.TextBox();
			this._optRecipeType_3 = new System.Windows.Forms.RadioButton();
			this.FGRecipe = new myDataGridView();
			this.lblRecipeCost = new System.Windows.Forms.Label();
			this._Frame1_2 = new System.Windows.Forms.GroupBox();
			this._cmdNew_2 = new System.Windows.Forms.Button();
			this.cmdDeallocate = new System.Windows.Forms.Button();
			this.cmdAllocate = new System.Windows.Forms.Button();
			this._cmdMove_1 = new System.Windows.Forms.Button();
			this._cmdMove_0 = new System.Windows.Forms.Button();
			this._cmdNew_1 = new System.Windows.Forms.Button();
			this._cmdNew_0 = new System.Windows.Forms.Button();
			this.cmdDelete = new System.Windows.Forms.Button();
			this.TVMessage = new System.Windows.Forms.TreeView();
			this.TreeView1 = new System.Windows.Forms.TreeView();
			//Me.TabStrip1 = New Axmscomctl.AxTabStrip
			this._Frame1_3 = new System.Windows.Forms.GroupBox();
			this.Frame4 = new System.Windows.Forms.GroupBox();
			this.lstvSerial = new System.Windows.Forms.ListView();
			this._lstvSerial_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
			this._lstvSerial_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
			this._lstvSerial_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
			this._lstvSerial_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
			this._lstvSerial_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
			this._lstvSerial_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			//Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.Frame2 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.chkSerialTracking = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.cmdMove = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components)
			//Me.cmdNew = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.optRecipeType = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
			//Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//Me.txtFloat = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//Me.txtInteger = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this._Frame1_0.SuspendLayout();
			this.Frame6.SuspendLayout();
			this.Frame5.SuspendLayout();
			this.Frame3.SuspendLayout();
			this._Frame2_1.SuspendLayout();
			this._Frame2_2.SuspendLayout();
			this._Frame2_3.SuspendLayout();
			this._Frame2_4.SuspendLayout();
			this._Frame2_5.SuspendLayout();
			this._Frame2_0.SuspendLayout();
			this.picButtons.SuspendLayout();
			this._Frame1_1.SuspendLayout();
			this._Frame1_2.SuspendLayout();
			this._Frame1_3.SuspendLayout();
			this.Frame4.SuspendLayout();
			this.lstvSerial.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbPricingGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbStockGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbReportGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPriceSet).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbVat).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbSupplier).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPrintLocation).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPrintGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPackSize).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.FGRecipe).BeginInit();
			//CType(Me.TabStrip1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.Frame2, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.chkSerialTracking, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.cmdMove, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.cmdNew, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.optRecipeType, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).BeginInit()
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Edit Stock Item Details";
			this.ClientSize = new System.Drawing.Size(592, 541);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockItem";
			this._Frame1_0.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_0.Size = new System.Drawing.Size(556, 435);
			this._Frame1_0.Location = new System.Drawing.Point(14, 96);
			this._Frame1_0.TabIndex = 51;
			this._Frame1_0.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_0.Enabled = true;
			this._Frame1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_0.Visible = true;
			this._Frame1_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_0.Name = "_Frame1_0";
			this.Frame6.Text = "&8. Air Time";
			this.Frame6.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Frame6.Size = new System.Drawing.Size(115, 43);
			this.Frame6.Location = new System.Drawing.Point(432, 338);
			this.Frame6.TabIndex = 113;
			this.Frame6.BackColor = System.Drawing.SystemColors.Control;
			this.Frame6.Enabled = true;
			this.Frame6.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame6.Visible = true;
			this.Frame6.Padding = new System.Windows.Forms.Padding(0);
			this.Frame6.Name = "Frame6";
			this._chkSerialTracking_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkSerialTracking_1.Text = "Yes";
			this._chkSerialTracking_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkSerialTracking_1.Size = new System.Drawing.Size(61, 17);
			this._chkSerialTracking_1.Location = new System.Drawing.Point(236, 10);
			this._chkSerialTracking_1.TabIndex = 115;
			this._chkSerialTracking_1.Visible = false;
			this._chkSerialTracking_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkSerialTracking_1.BackColor = System.Drawing.SystemColors.Control;
			this._chkSerialTracking_1.CausesValidation = true;
			this._chkSerialTracking_1.Enabled = true;
			this._chkSerialTracking_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkSerialTracking_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkSerialTracking_1.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkSerialTracking_1.TabStop = true;
			this._chkSerialTracking_1.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkSerialTracking_1.Name = "_chkSerialTracking_1";
			this._chkFields_6.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_6.Text = "Yes";
			this._chkFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_6.Size = new System.Drawing.Size(79, 21);
			this._chkFields_6.Location = new System.Drawing.Point(10, 16);
			this._chkFields_6.TabIndex = 114;
			this._chkFields_6.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkFields_6.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_6.CausesValidation = true;
			this._chkFields_6.Enabled = true;
			this._chkFields_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_6.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_6.TabStop = true;
			this._chkFields_6.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_6.Visible = true;
			this._chkFields_6.Name = "_chkFields_6";
			this.Frame5.Text = "&9. Shelf && Barcode Printing";
			this.Frame5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Frame5.Size = new System.Drawing.Size(235, 43);
			this.Frame5.Location = new System.Drawing.Point(312, 384);
			this.Frame5.TabIndex = 98;
			this.Frame5.BackColor = System.Drawing.SystemColors.Control;
			this.Frame5.Enabled = true;
			this.Frame5.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame5.Visible = true;
			this.Frame5.Padding = new System.Windows.Forms.Padding(0);
			this.Frame5.Name = "Frame5";
			this.chkbarcode.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkbarcode.Text = "Barcode";
			this.chkbarcode.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkbarcode.Size = new System.Drawing.Size(83, 21);
			this.chkbarcode.Location = new System.Drawing.Point(100, 16);
			this.chkbarcode.TabIndex = 104;
			this.chkbarcode.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkbarcode.BackColor = System.Drawing.SystemColors.Control;
			this.chkbarcode.CausesValidation = true;
			this.chkbarcode.Enabled = true;
			this.chkbarcode.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkbarcode.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkbarcode.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkbarcode.TabStop = true;
			this.chkbarcode.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkbarcode.Visible = true;
			this.chkbarcode.Name = "chkbarcode";
			this.chkshelf.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkshelf.Text = "Shelf";
			this.chkshelf.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkshelf.Size = new System.Drawing.Size(61, 21);
			this.chkshelf.Location = new System.Drawing.Point(10, 16);
			this.chkshelf.TabIndex = 103;
			this.chkshelf.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkshelf.BackColor = System.Drawing.SystemColors.Control;
			this.chkshelf.CausesValidation = true;
			this.chkshelf.Enabled = true;
			this.chkshelf.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkshelf.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkshelf.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkshelf.TabStop = true;
			this.chkshelf.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkshelf.Visible = true;
			this.chkshelf.Name = "chkshelf";
			this.Frame3.Text = "&7. Serial Tracking";
			this.Frame3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Frame3.Size = new System.Drawing.Size(115, 43);
			this.Frame3.Location = new System.Drawing.Point(312, 338);
			this.Frame3.TabIndex = 92;
			this.Frame3.BackColor = System.Drawing.SystemColors.Control;
			this.Frame3.Enabled = true;
			this.Frame3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame3.Visible = true;
			this.Frame3.Padding = new System.Windows.Forms.Padding(0);
			this.Frame3.Name = "Frame3";
			this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_1.Text = "Yes";
			this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_1.Size = new System.Drawing.Size(79, 21);
			this._chkFields_1.Location = new System.Drawing.Point(10, 16);
			this._chkFields_1.TabIndex = 97;
			this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkFields_1.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_1.CausesValidation = true;
			this._chkFields_1.Enabled = true;
			this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_1.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_1.TabStop = true;
			this._chkFields_1.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_1.Visible = true;
			this._chkFields_1.Name = "_chkFields_1";
			this._chkSerialTracking_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkSerialTracking_0.Text = "Yes";
			this._chkSerialTracking_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkSerialTracking_0.Size = new System.Drawing.Size(61, 17);
			this._chkSerialTracking_0.Location = new System.Drawing.Point(236, 10);
			this._chkSerialTracking_0.TabIndex = 93;
			this._chkSerialTracking_0.Visible = false;
			this._chkSerialTracking_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkSerialTracking_0.BackColor = System.Drawing.SystemColors.Control;
			this._chkSerialTracking_0.CausesValidation = true;
			this._chkSerialTracking_0.Enabled = true;
			this._chkSerialTracking_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkSerialTracking_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkSerialTracking_0.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkSerialTracking_0.TabStop = true;
			this._chkSerialTracking_0.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkSerialTracking_0.Name = "_chkSerialTracking_0";
			this._Frame2_1.Text = "&2. Groupings";
			this._Frame2_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame2_1.Size = new System.Drawing.Size(298, 92);
			this._Frame2_1.Location = new System.Drawing.Point(8, 248);
			this._Frame2_1.TabIndex = 13;
			this._Frame2_1.BackColor = System.Drawing.SystemColors.Control;
			this._Frame2_1.Enabled = true;
			this._Frame2_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame2_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame2_1.Visible = true;
			this._Frame2_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame2_1.Name = "_Frame2_1";
			this.cmdReportGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdReportGroup.Text = "...";
			this.cmdReportGroup.Size = new System.Drawing.Size(25, 19);
			this.cmdReportGroup.Location = new System.Drawing.Point(266, 66);
			this.cmdReportGroup.TabIndex = 100;
			this.cmdReportGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdReportGroup.CausesValidation = true;
			this.cmdReportGroup.Enabled = true;
			this.cmdReportGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdReportGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdReportGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdReportGroup.TabStop = true;
			this.cmdReportGroup.Name = "cmdReportGroup";
			this.cmdStockGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdStockGroup.Text = "...";
			this.cmdStockGroup.Size = new System.Drawing.Size(25, 19);
			this.cmdStockGroup.Location = new System.Drawing.Point(267, 40);
			this.cmdStockGroup.TabIndex = 75;
			this.cmdStockGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdStockGroup.CausesValidation = true;
			this.cmdStockGroup.Enabled = true;
			this.cmdStockGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdStockGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdStockGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdStockGroup.TabStop = true;
			this.cmdStockGroup.Name = "cmdStockGroup";
			this.cmdPricingGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPricingGroup.Text = "...";
			this.cmdPricingGroup.Size = new System.Drawing.Size(25, 19);
			this.cmdPricingGroup.Location = new System.Drawing.Point(267, 16);
			this.cmdPricingGroup.TabIndex = 74;
			this.cmdPricingGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPricingGroup.CausesValidation = true;
			this.cmdPricingGroup.Enabled = true;
			this.cmdPricingGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPricingGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPricingGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPricingGroup.TabStop = true;
			this.cmdPricingGroup.Name = "cmdPricingGroup";
			//cmbPricingGroup.OcxState = CType(resources.GetObject("cmbPricingGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPricingGroup.Size = new System.Drawing.Size(184, 21);
			this.cmbPricingGroup.Location = new System.Drawing.Point(81, 15);
			this.cmbPricingGroup.TabIndex = 14;
			this.cmbPricingGroup.Name = "cmbPricingGroup";
			//cmbStockGroup.OcxState = CType(resources.GetObject("cmbStockGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbStockGroup.Size = new System.Drawing.Size(184, 21);
			this.cmbStockGroup.Location = new System.Drawing.Point(81, 40);
			this.cmbStockGroup.TabIndex = 15;
			this.cmbStockGroup.Name = "cmbStockGroup";
			//cmbReportGroup.OcxState = CType(resources.GetObject("cmbReportGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbReportGroup.Size = new System.Drawing.Size(184, 21);
			this.cmbReportGroup.Location = new System.Drawing.Point(80, 64);
			this.cmbReportGroup.TabIndex = 99;
			this.cmbReportGroup.Name = "cmbReportGroup";
			this._lblLabels_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_15.Text = "Report Group:";
			this._lblLabels_15.Size = new System.Drawing.Size(67, 13);
			this._lblLabels_15.Location = new System.Drawing.Point(8, 70);
			this._lblLabels_15.TabIndex = 101;
			this._lblLabels_15.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_15.Enabled = true;
			this._lblLabels_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_15.UseMnemonic = true;
			this._lblLabels_15.Visible = true;
			this._lblLabels_15.AutoSize = true;
			this._lblLabels_15.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_15.Name = "_lblLabels_15";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_4.Text = "Stock Group:";
			this._lblLabels_4.Size = new System.Drawing.Size(63, 13);
			this._lblLabels_4.Location = new System.Drawing.Point(13, 45);
			this._lblLabels_4.TabIndex = 63;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Enabled = true;
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.UseMnemonic = true;
			this._lblLabels_4.Visible = true;
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_3.Text = "Pricing Group:";
			this._lblLabels_3.Size = new System.Drawing.Size(67, 13);
			this._lblLabels_3.Location = new System.Drawing.Point(9, 21);
			this._lblLabels_3.TabIndex = 62;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Enabled = true;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.UseMnemonic = true;
			this._lblLabels_3.Visible = true;
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_3.Name = "_lblLabels_3";
			this._Frame2_2.Text = "&3. Pricing and Shrinks";
			this._Frame2_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame2_2.Size = new System.Drawing.Size(298, 82);
			this._Frame2_2.Location = new System.Drawing.Point(8, 344);
			this._Frame2_2.TabIndex = 57;
			this._Frame2_2.BackColor = System.Drawing.SystemColors.Control;
			this._Frame2_2.Enabled = true;
			this._Frame2_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame2_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame2_2.Visible = true;
			this._Frame2_2.Padding = new System.Windows.Forms.Padding(0);
			this._Frame2_2.Name = "_Frame2_2";
			this.cmdShrink.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdShrink.Text = "...";
			this.cmdShrink.Size = new System.Drawing.Size(25, 19);
			this.cmdShrink.Location = new System.Drawing.Point(267, 15);
			this.cmdShrink.TabIndex = 76;
			this.cmdShrink.BackColor = System.Drawing.SystemColors.Control;
			this.cmdShrink.CausesValidation = true;
			this.cmdShrink.Enabled = true;
			this.cmdShrink.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdShrink.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdShrink.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdShrink.TabStop = true;
			this.cmdShrink.Name = "cmdShrink";
			this._txtFloat_1.AutoSize = false;
			this._txtFloat_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_1.Size = new System.Drawing.Size(64, 19);
			this._txtFloat_1.Location = new System.Drawing.Point(165, 51);
			this._txtFloat_1.TabIndex = 19;
			this._txtFloat_1.Text = "0";
			this._txtFloat_1.AcceptsReturn = true;
			this._txtFloat_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_1.CausesValidation = true;
			this._txtFloat_1.Enabled = true;
			this._txtFloat_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_1.HideSelection = true;
			this._txtFloat_1.ReadOnly = false;
			this._txtFloat_1.MaxLength = 0;
			this._txtFloat_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_1.Multiline = false;
			this._txtFloat_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_1.TabStop = true;
			this._txtFloat_1.Visible = true;
			this._txtFloat_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_1.Name = "_txtFloat_1";
			this._txtFloat_0.AutoSize = false;
			this._txtFloat_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_0.Size = new System.Drawing.Size(64, 19);
			this._txtFloat_0.Location = new System.Drawing.Point(99, 51);
			this._txtFloat_0.TabIndex = 18;
			this._txtFloat_0.Text = "9,999.99";
			this._txtFloat_0.AcceptsReturn = true;
			this._txtFloat_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_0.CausesValidation = true;
			this._txtFloat_0.Enabled = true;
			this._txtFloat_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_0.HideSelection = true;
			this._txtFloat_0.ReadOnly = false;
			this._txtFloat_0.MaxLength = 0;
			this._txtFloat_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_0.Multiline = false;
			this._txtFloat_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_0.TabStop = true;
			this._txtFloat_0.Visible = true;
			this._txtFloat_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_0.Name = "_txtFloat_0";
			this._txtInteger_0.AutoSize = false;
			this._txtInteger_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_0.Size = new System.Drawing.Size(43, 19);
			this._txtInteger_0.Location = new System.Drawing.Point(54, 51);
			this._txtInteger_0.TabIndex = 17;
			this._txtInteger_0.Text = "999";
			this._txtInteger_0.AcceptsReturn = true;
			this._txtInteger_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_0.CausesValidation = true;
			this._txtInteger_0.Enabled = true;
			this._txtInteger_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_0.HideSelection = true;
			this._txtInteger_0.ReadOnly = false;
			this._txtInteger_0.MaxLength = 0;
			this._txtInteger_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_0.Multiline = false;
			this._txtInteger_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_0.TabStop = true;
			this._txtInteger_0.Visible = true;
			this._txtInteger_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_0.Name = "_txtInteger_0";
			//cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbShrink.Size = new System.Drawing.Size(181, 21);
			this.cmbShrink.Location = new System.Drawing.Point(84, 14);
			this.cmbShrink.TabIndex = 16;
			this.cmbShrink.Name = "cmbShrink";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_11.Text = "Actual Cost:";
			this._lblLabels_11.Size = new System.Drawing.Size(57, 13);
			this._lblLabels_11.Location = new System.Drawing.Point(169, 39);
			this._lblLabels_11.TabIndex = 61;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Enabled = true;
			this._lblLabels_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_11.UseMnemonic = true;
			this._lblLabels_11.Visible = true;
			this._lblLabels_11.AutoSize = true;
			this._lblLabels_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_11.Name = "_lblLabels_11";
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_10.Text = "List Cost:";
			this._lblLabels_10.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_10.Location = new System.Drawing.Point(120, 39);
			this._lblLabels_10.TabIndex = 60;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Enabled = true;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.UseMnemonic = true;
			this._lblLabels_10.Visible = true;
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_9.Text = "Suppliers Quantity:";
			this._lblLabels_9.Size = new System.Drawing.Size(88, 13);
			this._lblLabels_9.Location = new System.Drawing.Point(9, 39);
			this._lblLabels_9.TabIndex = 59;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Enabled = true;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.UseMnemonic = true;
			this._lblLabels_9.Visible = true;
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.Text = "Sale Shrinks:";
			this._lblLabels_1.Size = new System.Drawing.Size(62, 13);
			this._lblLabels_1.Location = new System.Drawing.Point(17, 18);
			this._lblLabels_1.TabIndex = 58;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Enabled = true;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.UseMnemonic = true;
			this._lblLabels_1.Visible = true;
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_1.Name = "_lblLabels_1";
			this._Frame2_3.Text = "&4. Ordering Rules";
			this._Frame2_3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame2_3.Size = new System.Drawing.Size(235, 91);
			this._Frame2_3.Location = new System.Drawing.Point(312, 12);
			this._Frame2_3.TabIndex = 20;
			this._Frame2_3.BackColor = System.Drawing.SystemColors.Control;
			this._Frame2_3.Enabled = true;
			this._Frame2_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame2_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame2_3.Visible = true;
			this._Frame2_3.Padding = new System.Windows.Forms.Padding(0);
			this._Frame2_3.Name = "_Frame2_3";
			this.cmbReorder.Size = new System.Drawing.Size(97, 21);
			this.cmbReorder.Location = new System.Drawing.Point(63, 66);
			this.cmbReorder.Items.AddRange(new object[] {
				"Single Unit",
				"Case/Carton"
			});
			this.cmbReorder.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbReorder.TabIndex = 23;
			this.cmbReorder.BackColor = System.Drawing.SystemColors.Window;
			this.cmbReorder.CausesValidation = true;
			this.cmbReorder.Enabled = true;
			this.cmbReorder.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbReorder.IntegralHeight = true;
			this.cmbReorder.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbReorder.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbReorder.Sorted = false;
			this.cmbReorder.TabStop = true;
			this.cmbReorder.Visible = true;
			this.cmbReorder.Name = "cmbReorder";
			this._txtInteger_3.AutoSize = false;
			this._txtInteger_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_3.Size = new System.Drawing.Size(43, 19);
			this._txtInteger_3.Location = new System.Drawing.Point(184, 66);
			this._txtInteger_3.TabIndex = 24;
			this._txtInteger_3.Text = "999";
			this._txtInteger_3.AcceptsReturn = true;
			this._txtInteger_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_3.CausesValidation = true;
			this._txtInteger_3.Enabled = true;
			this._txtInteger_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_3.HideSelection = true;
			this._txtInteger_3.ReadOnly = false;
			this._txtInteger_3.MaxLength = 0;
			this._txtInteger_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_3.Multiline = false;
			this._txtInteger_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_3.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_3.TabStop = true;
			this._txtInteger_3.Visible = true;
			this._txtInteger_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_3.Name = "_txtInteger_3";
			this._txtInteger_1.AutoSize = false;
			this._txtInteger_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_1.Size = new System.Drawing.Size(43, 19);
			this._txtInteger_1.Location = new System.Drawing.Point(150, 45);
			this._txtInteger_1.TabIndex = 22;
			this._txtInteger_1.Text = "999";
			this._txtInteger_1.AcceptsReturn = true;
			this._txtInteger_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_1.CausesValidation = true;
			this._txtInteger_1.Enabled = true;
			this._txtInteger_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_1.HideSelection = true;
			this._txtInteger_1.ReadOnly = false;
			this._txtInteger_1.MaxLength = 0;
			this._txtInteger_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_1.Multiline = false;
			this._txtInteger_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_1.TabStop = true;
			this._txtInteger_1.Visible = true;
			this._txtInteger_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_1.Name = "_txtInteger_1";
			this._chkFields_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_0.Text = "Check this box to exclude this Stock Item when using the Ordering wizard";
			this._chkFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_0.Size = new System.Drawing.Size(217, 25);
			this._chkFields_0.Location = new System.Drawing.Point(9, 15);
			this._chkFields_0.TabIndex = 21;
			this._chkFields_0.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_0.CausesValidation = true;
			this._chkFields_0.Enabled = true;
			this._chkFields_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_0.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_0.TabStop = true;
			this._chkFields_0.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_0.Visible = true;
			this._chkFields_0.Name = "_chkFields_0";
			this._txtInteger_2.AutoSize = false;
			this._txtInteger_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_2.Size = new System.Drawing.Size(43, 19);
			this._txtInteger_2.Location = new System.Drawing.Point(160, 0);
			this._txtInteger_2.TabIndex = 52;
			this._txtInteger_2.Text = "999";
			this._txtInteger_2.Visible = false;
			this._txtInteger_2.AcceptsReturn = true;
			this._txtInteger_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_2.CausesValidation = true;
			this._txtInteger_2.Enabled = true;
			this._txtInteger_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_2.HideSelection = true;
			this._txtInteger_2.ReadOnly = false;
			this._txtInteger_2.MaxLength = 0;
			this._txtInteger_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_2.Multiline = false;
			this._txtInteger_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_2.TabStop = true;
			this._txtInteger_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_2.Name = "_txtInteger_2";
			this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_7.Text = "of";
			this._lbl_7.Size = new System.Drawing.Size(9, 13);
			this._lbl_7.Location = new System.Drawing.Point(164, 69);
			this._lbl_7.TabIndex = 56;
			this._lbl_7.BackColor = System.Drawing.Color.Transparent;
			this._lbl_7.Enabled = true;
			this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_7.UseMnemonic = true;
			this._lbl_7.Visible = true;
			this._lbl_7.AutoSize = true;
			this._lbl_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_7.Name = "_lbl_7";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "Re-order a ";
			this._lbl_0.Size = new System.Drawing.Size(53, 13);
			this._lbl_0.Location = new System.Drawing.Point(11, 69);
			this._lbl_0.TabIndex = 55;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_5.Text = "units,";
			this._lbl_5.Size = new System.Drawing.Size(25, 13);
			this._lbl_5.Location = new System.Drawing.Point(196, 48);
			this._lbl_5.TabIndex = 54;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = true;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "When the stock goes below ";
			this._lbl_4.Size = new System.Drawing.Size(136, 13);
			this._lbl_4.Location = new System.Drawing.Point(12, 48);
			this._lbl_4.TabIndex = 53;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Enabled = true;
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.UseMnemonic = true;
			this._lbl_4.Visible = true;
			this._lbl_4.AutoSize = true;
			this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_4.Name = "_lbl_4";
			this._Frame2_4.Text = "&5. Pricing Set";
			this._Frame2_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame2_4.Size = new System.Drawing.Size(235, 76);
			this._Frame2_4.Location = new System.Drawing.Point(312, 104);
			this._Frame2_4.TabIndex = 25;
			this._Frame2_4.BackColor = System.Drawing.SystemColors.Control;
			this._Frame2_4.Enabled = true;
			this._Frame2_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame2_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame2_4.Visible = true;
			this._Frame2_4.Padding = new System.Windows.Forms.Padding(0);
			this._Frame2_4.Name = "_Frame2_4";
			this.cmdpriceselist.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdpriceselist.Text = "...";
			this.cmdpriceselist.Size = new System.Drawing.Size(29, 21);
			this.cmdpriceselist.Location = new System.Drawing.Point(200, 32);
			this.cmdpriceselist.TabIndex = 102;
			this.cmdpriceselist.BackColor = System.Drawing.SystemColors.Control;
			this.cmdpriceselist.CausesValidation = true;
			this.cmdpriceselist.Enabled = true;
			this.cmdpriceselist.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdpriceselist.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdpriceselist.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdpriceselist.TabStop = true;
			this.cmdpriceselist.Name = "cmdpriceselist";
			this.chkPriceSet.Text = "&5. This item is part of a Pricing Set";
			this.chkPriceSet.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.chkPriceSet.Size = new System.Drawing.Size(220, 13);
			this.chkPriceSet.Location = new System.Drawing.Point(9, 15);
			this.chkPriceSet.TabIndex = 26;
			this.chkPriceSet.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkPriceSet.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.chkPriceSet.BackColor = System.Drawing.SystemColors.Control;
			this.chkPriceSet.CausesValidation = true;
			this.chkPriceSet.Enabled = true;
			this.chkPriceSet.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkPriceSet.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkPriceSet.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkPriceSet.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkPriceSet.TabStop = true;
			this.chkPriceSet.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkPriceSet.Visible = true;
			this.chkPriceSet.Name = "chkPriceSet";
			//cmbPriceSet.OcxState = CType(resources.GetObject("cmbPriceSet.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPriceSet.Size = new System.Drawing.Size(179, 21);
			this.cmbPriceSet.Location = new System.Drawing.Point(18, 32);
			this.cmbPriceSet.TabIndex = 27;
			this.cmbPriceSet.Name = "cmbPriceSet";
			this.lblPriceSet.Text = "No Action";
			this.lblPriceSet.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblPriceSet.Size = new System.Drawing.Size(211, 17);
			this.lblPriceSet.Location = new System.Drawing.Point(18, 51);
			this.lblPriceSet.TabIndex = 28;
			this.lblPriceSet.Visible = false;
			this.lblPriceSet.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblPriceSet.BackColor = System.Drawing.SystemColors.Control;
			this.lblPriceSet.Enabled = true;
			this.lblPriceSet.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblPriceSet.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblPriceSet.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblPriceSet.UseMnemonic = true;
			this.lblPriceSet.AutoSize = false;
			this.lblPriceSet.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblPriceSet.Name = "lblPriceSet";
			this._Frame2_5.Text = "&6.Parameters";
			this._Frame2_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame2_5.Size = new System.Drawing.Size(235, 152);
			this._Frame2_5.Location = new System.Drawing.Point(312, 182);
			this._Frame2_5.TabIndex = 29;
			this._Frame2_5.BackColor = System.Drawing.SystemColors.Control;
			this._Frame2_5.Enabled = true;
			this._Frame2_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame2_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame2_5.Visible = true;
			this._Frame2_5.Padding = new System.Windows.Forms.Padding(0);
			this._Frame2_5.Name = "_Frame2_5";
			this._txtInteger_4.AutoSize = false;
			this._txtInteger_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtInteger_4.Size = new System.Drawing.Size(27, 19);
			this._txtInteger_4.Location = new System.Drawing.Point(10, 36);
			this._txtInteger_4.TabIndex = 116;
			this._txtInteger_4.Text = "0";
			this._txtInteger_4.AcceptsReturn = true;
			this._txtInteger_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtInteger_4.CausesValidation = true;
			this._txtInteger_4.Enabled = true;
			this._txtInteger_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtInteger_4.HideSelection = true;
			this._txtInteger_4.ReadOnly = false;
			this._txtInteger_4.MaxLength = 0;
			this._txtInteger_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtInteger_4.Multiline = false;
			this._txtInteger_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtInteger_4.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtInteger_4.TabStop = true;
			this._txtInteger_4.Visible = true;
			this._txtInteger_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtInteger_4.Name = "_txtInteger_4";
			this._chkFields_5.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_5.Text = "Do not Allow Negative Stock";
			this._chkFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_5.Size = new System.Drawing.Size(177, 19);
			this._chkFields_5.Location = new System.Drawing.Point(10, 102);
			this._chkFields_5.TabIndex = 107;
			this._chkFields_5.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkFields_5.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_5.CausesValidation = true;
			this._chkFields_5.Enabled = true;
			this._chkFields_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_5.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_5.TabStop = true;
			this._chkFields_5.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_5.Visible = true;
			this._chkFields_5.Name = "_chkFields_5";
			this.chkSQ.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this.chkSQ.Text = "POS Price Overide (SQ)";
			this.chkSQ.ForeColor = System.Drawing.SystemColors.WindowText;
			this.chkSQ.Size = new System.Drawing.Size(151, 13);
			this.chkSQ.Location = new System.Drawing.Point(10, 128);
			this.chkSQ.TabIndex = 33;
			this.chkSQ.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkSQ.BackColor = System.Drawing.SystemColors.Control;
			this.chkSQ.CausesValidation = true;
			this.chkSQ.Enabled = true;
			this.chkSQ.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkSQ.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkSQ.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkSQ.TabStop = true;
			this.chkSQ.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkSQ.Visible = true;
			this.chkSQ.Name = "chkSQ";
			this._chkFields_3.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_3.Text = "Allow Fractions";
			this._chkFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_3.Size = new System.Drawing.Size(95, 19);
			this._chkFields_3.Location = new System.Drawing.Point(10, 80);
			this._chkFields_3.TabIndex = 32;
			this._chkFields_3.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkFields_3.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_3.CausesValidation = true;
			this._chkFields_3.Enabled = true;
			this._chkFields_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_3.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_3.TabStop = true;
			this._chkFields_3.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_3.Visible = true;
			this._chkFields_3.Name = "_chkFields_3";
			this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_2.Text = "This is a scale product";
			this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_2.Size = new System.Drawing.Size(170, 19);
			this._chkFields_2.Location = new System.Drawing.Point(10, 15);
			this._chkFields_2.TabIndex = 30;
			this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkFields_2.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_2.CausesValidation = true;
			this._chkFields_2.Enabled = true;
			this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_2.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_2.TabStop = true;
			this._chkFields_2.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_2.Visible = true;
			this._chkFields_2.Name = "_chkFields_2";
			this._chkFields_4.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_4.Text = "This is a scale item Non Weighed";
			this._chkFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_4.Size = new System.Drawing.Size(179, 19);
			this._chkFields_4.Location = new System.Drawing.Point(10, 59);
			this._chkFields_4.TabIndex = 31;
			this._chkFields_4.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._chkFields_4.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_4.CausesValidation = true;
			this._chkFields_4.Enabled = true;
			this._chkFields_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_4.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_4.TabStop = true;
			this._chkFields_4.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_4.Visible = true;
			this._chkFields_4.Name = "_chkFields_4";
			this._lbl_1.Text = "Sell by days (for labelling only)";
			this._lbl_1.Size = new System.Drawing.Size(140, 13);
			this._lbl_1.Location = new System.Drawing.Point(42, 39);
			this._lbl_1.TabIndex = 117;
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = true;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._Frame2_0.Text = "&1. General";
			this._Frame2_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame2_0.Size = new System.Drawing.Size(298, 232);
			this._Frame2_0.Location = new System.Drawing.Point(9, 12);
			this._Frame2_0.TabIndex = 3;
			this._Frame2_0.BackColor = System.Drawing.SystemColors.Control;
			this._Frame2_0.Enabled = true;
			this._Frame2_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame2_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame2_0.Visible = true;
			this._Frame2_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame2_0.Name = "_Frame2_0";
			this.cmdPackSize.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPackSize.Text = "...";
			this.cmdPackSize.Size = new System.Drawing.Size(25, 19);
			this.cmdPackSize.Location = new System.Drawing.Point(266, 206);
			this.cmdPackSize.TabIndex = 109;
			this.cmdPackSize.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPackSize.CausesValidation = true;
			this.cmdPackSize.Enabled = true;
			this.cmdPackSize.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPackSize.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPackSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPackSize.TabStop = true;
			this.cmdPackSize.Name = "cmdPackSize";
			this.cmdPrintGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrintGroup.Text = "...";
			this.cmdPrintGroup.Size = new System.Drawing.Size(25, 19);
			this.cmdPrintGroup.Location = new System.Drawing.Point(266, 180);
			this.cmdPrintGroup.TabIndex = 88;
			this.cmdPrintGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrintGroup.CausesValidation = true;
			this.cmdPrintGroup.Enabled = true;
			this.cmdPrintGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrintGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrintGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrintGroup.TabStop = true;
			this.cmdPrintGroup.Name = "cmdPrintGroup";
			this.cmdVAT.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdVAT.Text = "...";
			this.cmdVAT.Size = new System.Drawing.Size(25, 19);
			this.cmdVAT.Location = new System.Drawing.Point(267, 82);
			this.cmdVAT.TabIndex = 77;
			this.cmdVAT.BackColor = System.Drawing.SystemColors.Control;
			this.cmdVAT.CausesValidation = true;
			this.cmdVAT.Enabled = true;
			this.cmdVAT.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdVAT.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdVAT.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdVAT.TabStop = true;
			this.cmdVAT.Name = "cmdVAT";
			this.cmdPrintLocation.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrintLocation.Text = "...";
			this.cmdPrintLocation.Size = new System.Drawing.Size(25, 19);
			this.cmdPrintLocation.Location = new System.Drawing.Point(267, 156);
			this.cmdPrintLocation.TabIndex = 73;
			this.cmdPrintLocation.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrintLocation.CausesValidation = true;
			this.cmdPrintLocation.Enabled = true;
			this.cmdPrintLocation.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrintLocation.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrintLocation.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrintLocation.TabStop = true;
			this.cmdPrintLocation.Name = "cmdPrintLocation";
			this.cmdSupplier.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdSupplier.Text = "...";
			this.cmdSupplier.Size = new System.Drawing.Size(25, 19);
			this.cmdSupplier.Location = new System.Drawing.Point(267, 105);
			this.cmdSupplier.TabIndex = 72;
			this.cmdSupplier.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSupplier.CausesValidation = true;
			this.cmdSupplier.Enabled = true;
			this.cmdSupplier.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSupplier.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSupplier.TabStop = true;
			this.cmdSupplier.Name = "cmdSupplier";
			this.cmdDeposit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDeposit.Text = "...";
			this.cmdDeposit.Size = new System.Drawing.Size(25, 19);
			this.cmdDeposit.Location = new System.Drawing.Point(267, 58);
			this.cmdDeposit.TabIndex = 71;
			this.cmdDeposit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDeposit.CausesValidation = true;
			this.cmdDeposit.Enabled = true;
			this.cmdDeposit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDeposit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDeposit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDeposit.TabStop = true;
			this.cmdDeposit.Name = "cmdDeposit";
			this._txtFields_0.AutoSize = false;
			this._txtFields_0.Size = new System.Drawing.Size(48, 19);
			this._txtFields_0.Location = new System.Drawing.Point(89, 132);
			this._txtFields_0.TabIndex = 9;
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.CausesValidation = true;
			this._txtFields_0.Enabled = true;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.HideSelection = true;
			this._txtFields_0.ReadOnly = false;
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.Multiline = false;
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_0.TabStop = true;
			this._txtFields_0.Visible = true;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Name = "_txtFields_0";
			this._txtFields_14.AutoSize = false;
			this._txtFields_14.Size = new System.Drawing.Size(202, 19);
			this._txtFields_14.Location = new System.Drawing.Point(89, 36);
			this._txtFields_14.TabIndex = 5;
			this._txtFields_14.AcceptsReturn = true;
			this._txtFields_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_14.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_14.CausesValidation = true;
			this._txtFields_14.Enabled = true;
			this._txtFields_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_14.HideSelection = true;
			this._txtFields_14.ReadOnly = false;
			this._txtFields_14.MaxLength = 0;
			this._txtFields_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_14.Multiline = false;
			this._txtFields_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_14.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_14.TabStop = true;
			this._txtFields_14.Visible = true;
			this._txtFields_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_14.Name = "_txtFields_14";
			this._chkFields_13.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_13.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_13.Text = "Discontinued:";
			this._chkFields_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_13.Size = new System.Drawing.Size(86, 19);
			this._chkFields_13.Location = new System.Drawing.Point(206, 132);
			this._chkFields_13.TabIndex = 11;
			this._chkFields_13.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_13.CausesValidation = true;
			this._chkFields_13.Enabled = true;
			this._chkFields_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_13.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_13.TabStop = true;
			this._chkFields_13.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_13.Visible = true;
			this._chkFields_13.Name = "_chkFields_13";
			this._chkFields_12.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_12.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_12.Text = "Disabled:";
			this._chkFields_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_12.Size = new System.Drawing.Size(64, 19);
			this._chkFields_12.Location = new System.Drawing.Point(140, 132);
			this._chkFields_12.TabIndex = 10;
			this._chkFields_12.BackColor = System.Drawing.SystemColors.Control;
			this._chkFields_12.CausesValidation = true;
			this._chkFields_12.Enabled = true;
			this._chkFields_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_12.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_12.TabStop = true;
			this._chkFields_12.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_12.Visible = true;
			this._chkFields_12.Name = "_chkFields_12";
			this._txtFields_8.AutoSize = false;
			this._txtFields_8.Size = new System.Drawing.Size(202, 19);
			this._txtFields_8.Location = new System.Drawing.Point(89, 15);
			this._txtFields_8.MaxLength = 40;
			this._txtFields_8.TabIndex = 4;
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.CausesValidation = true;
			this._txtFields_8.Enabled = true;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.HideSelection = true;
			this._txtFields_8.ReadOnly = false;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.Multiline = false;
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_8.TabStop = true;
			this._txtFields_8.Visible = true;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Name = "_txtFields_8";
			//cmbVat.OcxState = CType(resources.GetObject("cmbVat.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbVat.Size = new System.Drawing.Size(178, 21);
			this.cmbVat.Location = new System.Drawing.Point(89, 81);
			this.cmbVat.TabIndex = 7;
			this.cmbVat.Name = "cmbVat";
			//cmbDeposit.OcxState = CType(resources.GetObject("cmbDeposit.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbDeposit.Size = new System.Drawing.Size(178, 21);
			this.cmbDeposit.Location = new System.Drawing.Point(89, 57);
			this.cmbDeposit.TabIndex = 6;
			this.cmbDeposit.Name = "cmbDeposit";
			//cmbSupplier.OcxState = CType(resources.GetObject("cmbSupplier.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbSupplier.Size = new System.Drawing.Size(178, 21);
			this.cmbSupplier.Location = new System.Drawing.Point(89, 105);
			this.cmbSupplier.TabIndex = 8;
			this.cmbSupplier.Name = "cmbSupplier";
			//cmbPrintLocation.OcxState = CType(resources.GetObject("cmbPrintLocation.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPrintLocation.Size = new System.Drawing.Size(175, 21);
			this.cmbPrintLocation.Location = new System.Drawing.Point(89, 156);
			this.cmbPrintLocation.TabIndex = 12;
			this.cmbPrintLocation.Name = "cmbPrintLocation";
			//cmbPrintGroup.OcxState = CType(resources.GetObject("cmbPrintGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPrintGroup.Size = new System.Drawing.Size(174, 21);
			this.cmbPrintGroup.Location = new System.Drawing.Point(89, 180);
			this.cmbPrintGroup.TabIndex = 89;
			this.cmbPrintGroup.Name = "cmbPrintGroup";
			//cmbPackSize.OcxState = CType(resources.GetObject("cmbPackSize.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPackSize.Size = new System.Drawing.Size(174, 21);
			this.cmbPackSize.Location = new System.Drawing.Point(89, 206);
			this.cmbPackSize.TabIndex = 110;
			this.cmbPackSize.Name = "cmbPackSize";
			this._lblLabels_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_16.Text = "Pack Size:";
			this._lblLabels_16.Size = new System.Drawing.Size(51, 13);
			this._lblLabels_16.Location = new System.Drawing.Point(32, 208);
			this._lblLabels_16.TabIndex = 111;
			this._lblLabels_16.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_16.Enabled = true;
			this._lblLabels_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_16.UseMnemonic = true;
			this._lblLabels_16.Visible = true;
			this._lblLabels_16.AutoSize = true;
			this._lblLabels_16.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_16.Name = "_lblLabels_16";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_13.Text = "Print Group:";
			this._lblLabels_13.Size = new System.Drawing.Size(56, 13);
			this._lblLabels_13.Location = new System.Drawing.Point(27, 186);
			this._lblLabels_13.TabIndex = 90;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Enabled = true;
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.UseMnemonic = true;
			this._lblLabels_13.Visible = true;
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lblLabels_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_12.Text = "Supplier Code:";
			this._lblLabels_12.Size = new System.Drawing.Size(69, 13);
			this._lblLabels_12.Location = new System.Drawing.Point(16, 135);
			this._lblLabels_12.TabIndex = 70;
			this._lblLabels_12.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_12.Enabled = true;
			this._lblLabels_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_12.UseMnemonic = true;
			this._lblLabels_12.Visible = true;
			this._lblLabels_12.AutoSize = true;
			this._lblLabels_12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_12.Name = "_lblLabels_12";
			this._lblLabels_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_14.Text = "POS Quick Key:";
			this._lblLabels_14.Size = new System.Drawing.Size(77, 13);
			this._lblLabels_14.Location = new System.Drawing.Point(7, 42);
			this._lblLabels_14.TabIndex = 69;
			this._lblLabels_14.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_14.Enabled = true;
			this._lblLabels_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_14.UseMnemonic = true;
			this._lblLabels_14.Visible = true;
			this._lblLabels_14.AutoSize = true;
			this._lblLabels_14.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_14.Name = "_lblLabels_14";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.Text = "Receipt Name:";
			this._lblLabels_8.Size = new System.Drawing.Size(71, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(13, 21);
			this._lblLabels_8.TabIndex = 68;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.UseMnemonic = true;
			this._lblLabels_8.Visible = true;
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_6.Text = "Deposit:";
			this._lblLabels_6.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_6.Location = new System.Drawing.Point(45, 63);
			this._lblLabels_6.TabIndex = 67;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Enabled = true;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.UseMnemonic = true;
			this._lblLabels_6.Visible = true;
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_5.Text = "VAT:";
			this._lblLabels_5.Size = new System.Drawing.Size(24, 13);
			this._lblLabels_5.Location = new System.Drawing.Point(60, 87);
			this._lblLabels_5.TabIndex = 66;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Enabled = true;
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.UseMnemonic = true;
			this._lblLabels_5.Visible = true;
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.Text = "Default Supplier:";
			this._lblLabels_0.Size = new System.Drawing.Size(78, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(6, 111);
			this._lblLabels_0.TabIndex = 65;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Enabled = true;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.UseMnemonic = true;
			this._lblLabels_0.Visible = true;
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.Text = "Print Location:";
			this._lblLabels_2.Size = new System.Drawing.Size(68, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(16, 162);
			this._lblLabels_2.TabIndex = 64;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Enabled = true;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.UseMnemonic = true;
			this._lblLabels_2.Visible = true;
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_2.Name = "_lblLabels_2";
			this.txtholdname.AutoSize = false;
			this.txtholdname.Size = new System.Drawing.Size(63, 19);
			this.txtholdname.Location = new System.Drawing.Point(220, 570);
			this.txtholdname.TabIndex = 106;
			this.txtholdname.AcceptsReturn = true;
			this.txtholdname.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtholdname.BackColor = System.Drawing.SystemColors.Window;
			this.txtholdname.CausesValidation = true;
			this.txtholdname.Enabled = true;
			this.txtholdname.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtholdname.HideSelection = true;
			this.txtholdname.ReadOnly = false;
			this.txtholdname.MaxLength = 0;
			this.txtholdname.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtholdname.Multiline = false;
			this.txtholdname.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtholdname.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtholdname.TabStop = true;
			this.txtholdname.Visible = true;
			this.txtholdname.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtholdname.Name = "txtholdname";
			this.txttemphold.AutoSize = false;
			this.txttemphold.Size = new System.Drawing.Size(83, 19);
			this.txttemphold.Location = new System.Drawing.Point(42, 572);
			this.txttemphold.TabIndex = 105;
			this.txttemphold.AcceptsReturn = true;
			this.txttemphold.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txttemphold.BackColor = System.Drawing.SystemColors.Window;
			this.txttemphold.CausesValidation = true;
			this.txttemphold.Enabled = true;
			this.txttemphold.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txttemphold.HideSelection = true;
			this.txttemphold.ReadOnly = false;
			this.txttemphold.MaxLength = 0;
			this.txttemphold.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txttemphold.Multiline = false;
			this.txttemphold.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txttemphold.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txttemphold.TabStop = true;
			this.txttemphold.Visible = true;
			this.txttemphold.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txttemphold.Name = "txttemphold";
			this._txtFields_7.AutoSize = false;
			this._txtFields_7.Size = new System.Drawing.Size(202, 19);
			this._txtFields_7.Location = new System.Drawing.Point(103, 45);
			this._txtFields_7.MaxLength = 128;
			this._txtFields_7.TabIndex = 1;
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.CausesValidation = true;
			this._txtFields_7.Enabled = true;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.HideSelection = true;
			this._txtFields_7.ReadOnly = false;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.Multiline = false;
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_7.TabStop = true;
			this._txtFields_7.Visible = true;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(79, 19);
			this._txtFields_1.Location = new System.Drawing.Point(596, 382);
			this._txtFields_1.TabIndex = 50;
			this._txtFields_1.Visible = false;
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_1.CausesValidation = true;
			this._txtFields_1.Enabled = true;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.HideSelection = true;
			this._txtFields_1.ReadOnly = false;
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.Multiline = false;
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_1.TabStop = true;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Name = "_txtFields_1";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(592, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 41;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Next Item >";
			this.cmdNext.Size = new System.Drawing.Size(67, 29);
			this.cmdNext.Location = new System.Drawing.Point(427, 3);
			this.cmdNext.TabIndex = 108;
			this.cmdNext.TabStop = false;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.Name = "cmdNext";
			this.cmdHistory.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdHistory.Text = "&History";
			this.cmdHistory.Size = new System.Drawing.Size(67, 29);
			this.cmdHistory.Location = new System.Drawing.Point(233, 3);
			this.cmdHistory.TabIndex = 47;
			this.cmdHistory.TabStop = false;
			this.cmdHistory.BackColor = System.Drawing.SystemColors.Control;
			this.cmdHistory.CausesValidation = true;
			this.cmdHistory.Enabled = true;
			this.cmdHistory.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdHistory.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdHistory.Name = "cmdHistory";
			this.cmdDuplicate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDuplicate.Text = "&Duplicate Codes Report";
			this.cmdDuplicate.Size = new System.Drawing.Size(121, 29);
			this.cmdDuplicate.Location = new System.Drawing.Point(303, 3);
			this.cmdDuplicate.TabIndex = 46;
			this.cmdDuplicate.TabStop = false;
			this.cmdDuplicate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDuplicate.CausesValidation = true;
			this.cmdDuplicate.Enabled = true;
			this.cmdDuplicate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDuplicate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDuplicate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDuplicate.Name = "cmdDuplicate";
			this.cmdDetails.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDetails.Text = "&Pricing";
			this.cmdDetails.Size = new System.Drawing.Size(73, 29);
			this.cmdDetails.Location = new System.Drawing.Point(157, 3);
			this.cmdDetails.TabIndex = 45;
			this.cmdDetails.TabStop = false;
			this.cmdDetails.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDetails.CausesValidation = true;
			this.cmdDetails.Enabled = true;
			this.cmdDetails.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDetails.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDetails.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDetails.Name = "cmdDetails";
			this.cmdbarcodeItem.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdbarcodeItem.Text = "&Barcodes";
			this.cmdbarcodeItem.Size = new System.Drawing.Size(73, 29);
			this.cmdbarcodeItem.Location = new System.Drawing.Point(82, 3);
			this.cmdbarcodeItem.TabIndex = 44;
			this.cmdbarcodeItem.TabStop = false;
			this.cmdbarcodeItem.BackColor = System.Drawing.SystemColors.Control;
			this.cmdbarcodeItem.CausesValidation = true;
			this.cmdbarcodeItem.Enabled = true;
			this.cmdbarcodeItem.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdbarcodeItem.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdbarcodeItem.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdbarcodeItem.Name = "cmdbarcodeItem";
			this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.TabIndex = 43;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.CausesValidation = true;
			this.cmdCancel.Enabled = true;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Name = "cmdCancel";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(510, 3);
			this.cmdClose.TabIndex = 42;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			this.ILtree.ImageSize = new System.Drawing.Size(16, 16);
			this.ILtree.TransparentColor = System.Drawing.Color.FromArgb(192, 192, 192);
			this.ILtree.Images.SetKeyName(0, "");
			this.ILtree.Images.SetKeyName(1, "");
			this.ILtree.Images.SetKeyName(2, "");
			this._Frame1_1.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_1.Size = new System.Drawing.Size(556, 395);
			this._Frame1_1.Location = new System.Drawing.Point(12, 104);
			this._Frame1_1.TabIndex = 34;
			this._Frame1_1.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_1.Enabled = true;
			this._Frame1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_1.Visible = true;
			this._Frame1_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_1.Name = "_Frame1_1";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "Print Bill Of Material";
			this.cmdPrint.Size = new System.Drawing.Size(106, 34);
			this.cmdPrint.Location = new System.Drawing.Point(174, 15);
			this.cmdPrint.TabIndex = 91;
			this.cmdPrint.Visible = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.TabStop = true;
			this.cmdPrint.Name = "cmdPrint";
			this.cmdRecipeAdd.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdRecipeAdd.Text = "Add StockItem";
			this.cmdRecipeAdd.Size = new System.Drawing.Size(100, 34);
			this.cmdRecipeAdd.Location = new System.Drawing.Point(390, 15);
			this.cmdRecipeAdd.TabIndex = 35;
			this.cmdRecipeAdd.TabStop = false;
			this.cmdRecipeAdd.Visible = false;
			this.cmdRecipeAdd.BackColor = System.Drawing.SystemColors.Control;
			this.cmdRecipeAdd.CausesValidation = true;
			this.cmdRecipeAdd.Enabled = true;
			this.cmdRecipeAdd.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdRecipeAdd.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdRecipeAdd.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdRecipeAdd.Name = "cmdRecipeAdd";
			this._optRecipeType_0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._optRecipeType_0.Text = "Not a Bill Of Material";
			this._optRecipeType_0.Size = new System.Drawing.Size(133, 58);
			this._optRecipeType_0.Location = new System.Drawing.Point(27, 57);
			this._optRecipeType_0.Appearance = System.Windows.Forms.Appearance.Button;
			this._optRecipeType_0.TabIndex = 36;
			this._optRecipeType_0.TabStop = false;
			this._optRecipeType_0.Checked = true;
			this._optRecipeType_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optRecipeType_0.BackColor = System.Drawing.SystemColors.Control;
			this._optRecipeType_0.CausesValidation = true;
			this._optRecipeType_0.Enabled = true;
			this._optRecipeType_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optRecipeType_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._optRecipeType_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optRecipeType_0.Visible = true;
			this._optRecipeType_0.Name = "_optRecipeType_0";
			this._optRecipeType_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._optRecipeType_1.Text = "Production";
			this._optRecipeType_1.Size = new System.Drawing.Size(133, 58);
			this._optRecipeType_1.Location = new System.Drawing.Point(27, 129);
			this._optRecipeType_1.Appearance = System.Windows.Forms.Appearance.Button;
			this._optRecipeType_1.TabIndex = 37;
			this._optRecipeType_1.TabStop = false;
			this._optRecipeType_1.Visible = false;
			this._optRecipeType_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optRecipeType_1.BackColor = System.Drawing.SystemColors.Control;
			this._optRecipeType_1.CausesValidation = true;
			this._optRecipeType_1.Enabled = true;
			this._optRecipeType_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optRecipeType_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._optRecipeType_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optRecipeType_1.Checked = false;
			this._optRecipeType_1.Name = "_optRecipeType_1";
			this._optRecipeType_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._optRecipeType_2.Text = "At time of Sale";
			this._optRecipeType_2.Size = new System.Drawing.Size(133, 58);
			this._optRecipeType_2.Location = new System.Drawing.Point(27, 201);
			this._optRecipeType_2.Appearance = System.Windows.Forms.Appearance.Button;
			this._optRecipeType_2.TabIndex = 38;
			this._optRecipeType_2.TabStop = false;
			this._optRecipeType_2.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optRecipeType_2.BackColor = System.Drawing.SystemColors.Control;
			this._optRecipeType_2.CausesValidation = true;
			this._optRecipeType_2.Enabled = true;
			this._optRecipeType_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optRecipeType_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._optRecipeType_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optRecipeType_2.Checked = false;
			this._optRecipeType_2.Visible = true;
			this._optRecipeType_2.Name = "_optRecipeType_2";
			this.txtQuantity.AutoSize = false;
			this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQuantity.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this.txtQuantity.Size = new System.Drawing.Size(64, 19);
			this.txtQuantity.Location = new System.Drawing.Point(168, 336);
			this.txtQuantity.TabIndex = 48;
			this.txtQuantity.Text = "Text1";
			this.txtQuantity.Visible = false;
			this.txtQuantity.AcceptsReturn = true;
			this.txtQuantity.CausesValidation = true;
			this.txtQuantity.Enabled = true;
			this.txtQuantity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQuantity.HideSelection = true;
			this.txtQuantity.ReadOnly = false;
			this.txtQuantity.MaxLength = 0;
			this.txtQuantity.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQuantity.Multiline = false;
			this.txtQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQuantity.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQuantity.TabStop = true;
			this.txtQuantity.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtQuantity.Name = "txtQuantity";
			this._optRecipeType_3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._optRecipeType_3.Text = "This Product makes other products";
			this._optRecipeType_3.Size = new System.Drawing.Size(133, 58);
			this._optRecipeType_3.Location = new System.Drawing.Point(27, 273);
			this._optRecipeType_3.Appearance = System.Windows.Forms.Appearance.Button;
			this._optRecipeType_3.TabIndex = 39;
			this._optRecipeType_3.TabStop = false;
			this._optRecipeType_3.Visible = false;
			this._optRecipeType_3.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optRecipeType_3.BackColor = System.Drawing.SystemColors.Control;
			this._optRecipeType_3.CausesValidation = true;
			this._optRecipeType_3.Enabled = true;
			this._optRecipeType_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optRecipeType_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._optRecipeType_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optRecipeType_3.Checked = false;
			this._optRecipeType_3.Name = "_optRecipeType_3";
			//FGRecipe.OcxState = CType(resources.GetObject("FGRecipe.OcxState"), System.Windows.Forms.AxHost.State)
			this.FGRecipe.Size = new System.Drawing.Size(366, 274);
			this.FGRecipe.Location = new System.Drawing.Point(174, 57);
			this.FGRecipe.TabIndex = 40;
			this.FGRecipe.Name = "FGRecipe";
			this.lblRecipeCost.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblRecipeCost.Text = "0.00";
			this.lblRecipeCost.Size = new System.Drawing.Size(88, 19);
			this.lblRecipeCost.Location = new System.Drawing.Point(396, 333);
			this.lblRecipeCost.TabIndex = 49;
			this.lblRecipeCost.BackColor = System.Drawing.SystemColors.Control;
			this.lblRecipeCost.Enabled = true;
			this.lblRecipeCost.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblRecipeCost.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblRecipeCost.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblRecipeCost.UseMnemonic = true;
			this.lblRecipeCost.Visible = true;
			this.lblRecipeCost.AutoSize = false;
			this.lblRecipeCost.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblRecipeCost.Name = "lblRecipeCost";
			this._Frame1_2.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_2.Size = new System.Drawing.Size(556, 385);
			this._Frame1_2.Location = new System.Drawing.Point(12, 96);
			this._Frame1_2.TabIndex = 78;
			this._Frame1_2.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_2.Enabled = true;
			this._Frame1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_2.Visible = true;
			this._Frame1_2.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_2.Name = "_Frame1_2";
			this._cmdNew_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdNew_2.Text = "New Child  from existed Stock";
			this._cmdNew_2.Size = new System.Drawing.Size(79, 52);
			this._cmdNew_2.Location = new System.Drawing.Point(468, 75);
			this._cmdNew_2.TabIndex = 112;
			this._cmdNew_2.TabStop = false;
			this._cmdNew_2.BackColor = System.Drawing.SystemColors.Control;
			this._cmdNew_2.CausesValidation = true;
			this._cmdNew_2.Enabled = true;
			this._cmdNew_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdNew_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdNew_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdNew_2.Name = "_cmdNew_2";
			this.cmdDeallocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDeallocate.Text = "De-allocate >>";
			this.cmdDeallocate.Size = new System.Drawing.Size(82, 31);
			this.cmdDeallocate.Location = new System.Drawing.Point(210, 252);
			this.cmdDeallocate.TabIndex = 85;
			this.cmdDeallocate.TabStop = false;
			this.cmdDeallocate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDeallocate.CausesValidation = true;
			this.cmdDeallocate.Enabled = true;
			this.cmdDeallocate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDeallocate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDeallocate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDeallocate.Name = "cmdDeallocate";
			this.cmdAllocate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdAllocate.Text = "<< Allocate";
			this.cmdAllocate.Size = new System.Drawing.Size(82, 31);
			this.cmdAllocate.Location = new System.Drawing.Point(210, 84);
			this.cmdAllocate.TabIndex = 84;
			this.cmdAllocate.TabStop = false;
			this.cmdAllocate.BackColor = System.Drawing.SystemColors.Control;
			this.cmdAllocate.CausesValidation = true;
			this.cmdAllocate.Enabled = true;
			this.cmdAllocate.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdAllocate.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdAllocate.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdAllocate.Name = "cmdAllocate";
			this._cmdMove_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdMove_1.Text = "Move Down";
			this._cmdMove_1.Size = new System.Drawing.Size(79, 28);
			this._cmdMove_1.Location = new System.Drawing.Point(468, 197);
			this._cmdMove_1.TabIndex = 83;
			this._cmdMove_1.TabStop = false;
			this._cmdMove_1.BackColor = System.Drawing.SystemColors.Control;
			this._cmdMove_1.CausesValidation = true;
			this._cmdMove_1.Enabled = true;
			this._cmdMove_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdMove_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdMove_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdMove_1.Name = "_cmdMove_1";
			this._cmdMove_0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdMove_0.Text = "Move Up";
			this._cmdMove_0.Size = new System.Drawing.Size(79, 28);
			this._cmdMove_0.Location = new System.Drawing.Point(468, 167);
			this._cmdMove_0.TabIndex = 82;
			this._cmdMove_0.TabStop = false;
			this._cmdMove_0.BackColor = System.Drawing.SystemColors.Control;
			this._cmdMove_0.CausesValidation = true;
			this._cmdMove_0.Enabled = true;
			this._cmdMove_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdMove_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdMove_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdMove_0.Name = "_cmdMove_0";
			this._cmdNew_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdNew_1.Text = "New Child";
			this._cmdNew_1.Size = new System.Drawing.Size(79, 28);
			this._cmdNew_1.Location = new System.Drawing.Point(468, 45);
			this._cmdNew_1.TabIndex = 81;
			this._cmdNew_1.TabStop = false;
			this._cmdNew_1.BackColor = System.Drawing.SystemColors.Control;
			this._cmdNew_1.CausesValidation = true;
			this._cmdNew_1.Enabled = true;
			this._cmdNew_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdNew_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdNew_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdNew_1.Name = "_cmdNew_1";
			this._cmdNew_0.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._cmdNew_0.Text = "New Message";
			this._cmdNew_0.Size = new System.Drawing.Size(79, 28);
			this._cmdNew_0.Location = new System.Drawing.Point(468, 15);
			this._cmdNew_0.TabIndex = 80;
			this._cmdNew_0.TabStop = false;
			this._cmdNew_0.BackColor = System.Drawing.SystemColors.Control;
			this._cmdNew_0.CausesValidation = true;
			this._cmdNew_0.Enabled = true;
			this._cmdNew_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._cmdNew_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._cmdNew_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._cmdNew_0.Name = "_cmdNew_0";
			this.cmdDelete.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDelete.Text = "Delete Item";
			this.cmdDelete.Size = new System.Drawing.Size(79, 28);
			this.cmdDelete.Location = new System.Drawing.Point(468, 321);
			this.cmdDelete.TabIndex = 79;
			this.cmdDelete.TabStop = false;
			this.cmdDelete.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDelete.CausesValidation = true;
			this.cmdDelete.Enabled = true;
			this.cmdDelete.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDelete.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDelete.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDelete.Name = "cmdDelete";
			this.TVMessage.CausesValidation = true;
			this.TVMessage.Size = new System.Drawing.Size(157, 334);
			this.TVMessage.Location = new System.Drawing.Point(303, 15);
			this.TVMessage.TabIndex = 86;
			this.TVMessage.HideSelection = false;
			this.TVMessage.Indent = 36;
			this.TVMessage.LabelEdit = false;
			this.TVMessage.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.TVMessage.Name = "TVMessage";
			this.TreeView1.CausesValidation = true;
			this.TreeView1.Size = new System.Drawing.Size(193, 334);
			this.TreeView1.Location = new System.Drawing.Point(9, 15);
			this.TreeView1.TabIndex = 87;
			this.TreeView1.HideSelection = false;
			this.TreeView1.Indent = 36;
			this.TreeView1.LabelEdit = false;
			this.TreeView1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.TreeView1.Name = "TreeView1";
			//TabStrip1.OcxState = CType(resources.GetObject("TabStrip1.OcxState"), System.Windows.Forms.AxHost.State)
			//Me.TabStrip1.Size = New System.Drawing.Size(577, 469)
			//Me.TabStrip1.Location = New System.Drawing.Point(8, 68)
			//Me.TabStrip1.TabIndex = 2
			//Me.TabStrip1.Name = "TabStrip1"
			this._Frame1_3.Size = new System.Drawing.Size(560, 387);
			this._Frame1_3.Location = new System.Drawing.Point(10, 108);
			this._Frame1_3.TabIndex = 94;
			this._Frame1_3.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_3.Enabled = true;
			this._Frame1_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_3.Visible = true;
			this._Frame1_3.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_3.Name = "_Frame1_3";
			this.Frame4.Text = "Details";
			this.Frame4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Frame4.Size = new System.Drawing.Size(531, 379);
			this.Frame4.Location = new System.Drawing.Point(6, 6);
			this.Frame4.TabIndex = 95;
			this.Frame4.BackColor = System.Drawing.SystemColors.Control;
			this.Frame4.Enabled = true;
			this.Frame4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame4.Visible = true;
			this.Frame4.Padding = new System.Windows.Forms.Padding(0);
			this.Frame4.Name = "Frame4";
			this.lstvSerial.Size = new System.Drawing.Size(519, 339);
			this.lstvSerial.Location = new System.Drawing.Point(10, 12);
			this.lstvSerial.TabIndex = 96;
			this.lstvSerial.View = System.Windows.Forms.View.Details;
			this.lstvSerial.Alignment = System.Windows.Forms.ListViewAlignment.Left;
			this.lstvSerial.LabelWrap = true;
			this.lstvSerial.HideSelection = true;
			this.lstvSerial.FullRowSelect = true;
			this.lstvSerial.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lstvSerial.BackColor = System.Drawing.SystemColors.Window;
			this.lstvSerial.LabelEdit = true;
			this.lstvSerial.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lstvSerial.Name = "lstvSerial";
			this._lstvSerial_ColumnHeader_1.Text = "Serial Number";
			this._lstvSerial_ColumnHeader_1.Width = 170;
			this._lstvSerial_ColumnHeader_2.Text = "Supplier's Name";
			this._lstvSerial_ColumnHeader_2.Width = 170;
			this._lstvSerial_ColumnHeader_3.Text = "Date Purchased";
			this._lstvSerial_ColumnHeader_3.Width = 170;
			this._lstvSerial_ColumnHeader_4.Text = "In Stock";
			this._lstvSerial_ColumnHeader_4.Width = 170;
			this._lstvSerial_ColumnHeader_5.Text = "Date Sold";
			this._lstvSerial_ColumnHeader_5.Width = 170;
			this._lstvSerial_ColumnHeader_6.Text = "Invoice Number";
			this._lstvSerial_ColumnHeader_6.Width = 170;
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.Text = "Display Name:";
			this._lblLabels_7.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_7.Size = new System.Drawing.Size(89, 16);
			this._lblLabels_7.Location = new System.Drawing.Point(10, 48);
			this._lblLabels_7.TabIndex = 0;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.UseMnemonic = true;
			this._lblLabels_7.Visible = true;
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_7.Name = "_lblLabels_7";
			this.Controls.Add(_Frame1_0);
			this.Controls.Add(txtholdname);
			this.Controls.Add(txttemphold);
			this.Controls.Add(_txtFields_7);
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(picButtons);
			this.Controls.Add(_Frame1_1);
			this.Controls.Add(_Frame1_2);
			//Me.Controls.Add(TabStrip1)
			this.Controls.Add(_Frame1_3);
			this.Controls.Add(_lblLabels_7);
			this._Frame1_0.Controls.Add(Frame6);
			this._Frame1_0.Controls.Add(Frame5);
			this._Frame1_0.Controls.Add(Frame3);
			this._Frame1_0.Controls.Add(_Frame2_1);
			this._Frame1_0.Controls.Add(_Frame2_2);
			this._Frame1_0.Controls.Add(_Frame2_3);
			this._Frame1_0.Controls.Add(_Frame2_4);
			this._Frame1_0.Controls.Add(_Frame2_5);
			this._Frame1_0.Controls.Add(_Frame2_0);
			this.Frame6.Controls.Add(_chkSerialTracking_1);
			this.Frame6.Controls.Add(_chkFields_6);
			this.Frame5.Controls.Add(chkbarcode);
			this.Frame5.Controls.Add(chkshelf);
			this.Frame3.Controls.Add(_chkFields_1);
			this.Frame3.Controls.Add(_chkSerialTracking_0);
			this._Frame2_1.Controls.Add(cmdReportGroup);
			this._Frame2_1.Controls.Add(cmdStockGroup);
			this._Frame2_1.Controls.Add(cmdPricingGroup);
			this._Frame2_1.Controls.Add(cmbPricingGroup);
			this._Frame2_1.Controls.Add(cmbStockGroup);
			this._Frame2_1.Controls.Add(cmbReportGroup);
			this._Frame2_1.Controls.Add(_lblLabels_15);
			this._Frame2_1.Controls.Add(_lblLabels_4);
			this._Frame2_1.Controls.Add(_lblLabels_3);
			this._Frame2_2.Controls.Add(cmdShrink);
			this._Frame2_2.Controls.Add(_txtFloat_1);
			this._Frame2_2.Controls.Add(_txtFloat_0);
			this._Frame2_2.Controls.Add(_txtInteger_0);
			this._Frame2_2.Controls.Add(cmbShrink);
			this._Frame2_2.Controls.Add(_lblLabels_11);
			this._Frame2_2.Controls.Add(_lblLabels_10);
			this._Frame2_2.Controls.Add(_lblLabels_9);
			this._Frame2_2.Controls.Add(_lblLabels_1);
			this._Frame2_3.Controls.Add(cmbReorder);
			this._Frame2_3.Controls.Add(_txtInteger_3);
			this._Frame2_3.Controls.Add(_txtInteger_1);
			this._Frame2_3.Controls.Add(_chkFields_0);
			this._Frame2_3.Controls.Add(_txtInteger_2);
			this._Frame2_3.Controls.Add(_lbl_7);
			this._Frame2_3.Controls.Add(_lbl_0);
			this._Frame2_3.Controls.Add(_lbl_5);
			this._Frame2_3.Controls.Add(_lbl_4);
			this._Frame2_4.Controls.Add(cmdpriceselist);
			this._Frame2_4.Controls.Add(chkPriceSet);
			this._Frame2_4.Controls.Add(cmbPriceSet);
			this._Frame2_4.Controls.Add(lblPriceSet);
			this._Frame2_5.Controls.Add(_txtInteger_4);
			this._Frame2_5.Controls.Add(_chkFields_5);
			this._Frame2_5.Controls.Add(chkSQ);
			this._Frame2_5.Controls.Add(_chkFields_3);
			this._Frame2_5.Controls.Add(_chkFields_2);
			this._Frame2_5.Controls.Add(_chkFields_4);
			this._Frame2_5.Controls.Add(_lbl_1);
			this._Frame2_0.Controls.Add(cmdPackSize);
			this._Frame2_0.Controls.Add(cmdPrintGroup);
			this._Frame2_0.Controls.Add(cmdVAT);
			this._Frame2_0.Controls.Add(cmdPrintLocation);
			this._Frame2_0.Controls.Add(cmdSupplier);
			this._Frame2_0.Controls.Add(cmdDeposit);
			this._Frame2_0.Controls.Add(_txtFields_0);
			this._Frame2_0.Controls.Add(_txtFields_14);
			this._Frame2_0.Controls.Add(_chkFields_13);
			this._Frame2_0.Controls.Add(_chkFields_12);
			this._Frame2_0.Controls.Add(_txtFields_8);
			this._Frame2_0.Controls.Add(cmbVat);
			this._Frame2_0.Controls.Add(cmbDeposit);
			this._Frame2_0.Controls.Add(cmbSupplier);
			this._Frame2_0.Controls.Add(cmbPrintLocation);
			this._Frame2_0.Controls.Add(cmbPrintGroup);
			this._Frame2_0.Controls.Add(cmbPackSize);
			this._Frame2_0.Controls.Add(_lblLabels_16);
			this._Frame2_0.Controls.Add(_lblLabels_13);
			this._Frame2_0.Controls.Add(_lblLabels_12);
			this._Frame2_0.Controls.Add(_lblLabels_14);
			this._Frame2_0.Controls.Add(_lblLabels_8);
			this._Frame2_0.Controls.Add(_lblLabels_6);
			this._Frame2_0.Controls.Add(_lblLabels_5);
			this._Frame2_0.Controls.Add(_lblLabels_0);
			this._Frame2_0.Controls.Add(_lblLabels_2);
			this.picButtons.Controls.Add(cmdNext);
			this.picButtons.Controls.Add(cmdHistory);
			this.picButtons.Controls.Add(cmdDuplicate);
			this.picButtons.Controls.Add(cmdDetails);
			this.picButtons.Controls.Add(cmdbarcodeItem);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			this._Frame1_1.Controls.Add(cmdPrint);
			this._Frame1_1.Controls.Add(cmdRecipeAdd);
			this._Frame1_1.Controls.Add(_optRecipeType_0);
			this._Frame1_1.Controls.Add(_optRecipeType_1);
			this._Frame1_1.Controls.Add(_optRecipeType_2);
			this._Frame1_1.Controls.Add(txtQuantity);
			this._Frame1_1.Controls.Add(_optRecipeType_3);
			this._Frame1_1.Controls.Add(FGRecipe);
			this._Frame1_1.Controls.Add(lblRecipeCost);
			this._Frame1_2.Controls.Add(_cmdNew_2);
			this._Frame1_2.Controls.Add(cmdDeallocate);
			this._Frame1_2.Controls.Add(cmdAllocate);
			this._Frame1_2.Controls.Add(_cmdMove_1);
			this._Frame1_2.Controls.Add(_cmdMove_0);
			this._Frame1_2.Controls.Add(_cmdNew_1);
			this._Frame1_2.Controls.Add(_cmdNew_0);
			this._Frame1_2.Controls.Add(cmdDelete);
			this._Frame1_2.Controls.Add(TVMessage);
			this._Frame1_2.Controls.Add(TreeView1);
			this._Frame1_3.Controls.Add(Frame4);
			this.Frame4.Controls.Add(lstvSerial);
			this.lstvSerial.Columns.Add(_lstvSerial_ColumnHeader_1);
			this.lstvSerial.Columns.Add(_lstvSerial_ColumnHeader_2);
			this.lstvSerial.Columns.Add(_lstvSerial_ColumnHeader_3);
			this.lstvSerial.Columns.Add(_lstvSerial_ColumnHeader_4);
			this.lstvSerial.Columns.Add(_lstvSerial_ColumnHeader_5);
			this.lstvSerial.Columns.Add(_lstvSerial_ColumnHeader_6);
			//Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
			//Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
			//Me.Frame1.SetIndex(_Frame1_2, CType(2, Short))
			//Me.Frame1.SetIndex(_Frame1_3, CType(3, Short))
			//Me.Frame2.SetIndex(_Frame2_1, CType(1, Short))
			//Me.Frame2.SetIndex(_Frame2_2, CType(2, Short))
			//Me.Frame2.SetIndex(_Frame2_3, CType(3, Short))
			//Me.Frame2.SetIndex(_Frame2_4, CType(4, Short))
			//Me.Frame2.SetIndex(_Frame2_5, CType(5, Short))
			//Me.Frame2.SetIndex(_Frame2_0, CType(0, Short))
			//Me.chkFields.SetIndex(_chkFields_6, CType(6, Short))
			//Me.chkFields.SetIndex(_chkFields_1, CType(1, Short))
			//Me.chkFields.SetIndex(_chkFields_0, CType(0, Short))
			//Me.chkFields.SetIndex(_chkFields_5, CType(5, Short))
			//Me.chkFields.SetIndex(_chkFields_3, CType(3, Short))
			//Me.chkFields.SetIndex(_chkFields_2, CType(2, Short))
			//Me.chkFields.SetIndex(_chkFields_4, CType(4, Short))
			//Me.chkFields.SetIndex(_chkFields_13, CType(13, Short))
			//Me.chkFields.SetIndex(_chkFields_12, CType(12, Short))
			//Me.chkSerialTracking.SetIndex(_chkSerialTracking_1, CType(1, Short))
			//Me.chkSerialTracking.SetIndex(_chkSerialTracking_0, CType(0, Short))
			//Me.cmdMove.SetIndex(_cmdMove_1, CType(1, Short))
			//Me.cmdMove.SetIndex(_cmdMove_0, CType(0, Short))
			//Me.cmdNew.SetIndex(_cmdNew_2, CType(2, Short))
			//Me.cmdNew.SetIndex(_cmdNew_1, CType(1, Short))
			//Me.cmdNew.SetIndex(_cmdNew_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_7, CType(7, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//M() ''e.lblLabels.SetIndex(_lblLabels_15, CType(15, Short))
			//M() 'e.lblLabels.SetIndex(_lblLabels_4, CType(4, Short))
			//Me.lblLabels.SetIndex(_lblLabels_3, CType(3, Short))
			//Me.lblLabels.SetIndex(_lblLabels_11, CType(11, Short))
			//Me.lblLabels.SetIndex(_lblLabels_10, CType(10, Short))
			//Me.lblLabels.SetIndex(_lblLabels_9, CType(9, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.lblLabels.SetIndex(_lblLabels_16, CType(16, Short))
			//Me.lblLabels.SetIndex(_lblLabels_13, CType(13, Short))
			//Me.lblLabels.SetIndex(_lblLabels_12, CType(12, Short))
			//Me.lblLabels.SetIndex(_lblLabels_14, CType(14, Short))
			//Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//M() ''e.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
			//M() 'e.lblLabels.SetIndex(_lblLabels_5, CType(5, Short))
			//M() 'e.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//Me.optRecipeType.SetIndex(_optRecipeType_0, CType(0, Short))
			//Me.optRecipeType.SetIndex(_optRecipeType_1, CType(1, Short))
			//Me.optRecipeType.SetIndex(_optRecipeType_2, CType(2, Short))
			//Me.optRecipeType.SetIndex(_optRecipeType_3, CType(3, Short))
			//Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
			//Me.txtFields.SetIndex(_txtFields_14, CType(14, Short))
			//Me.txtFields.SetIndex(_txtFields_8, CType(8, Short))
			//Me.txtFields.SetIndex(_txtFields_7, CType(7, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//Me.txtFloat.SetIndex(_txtFloat_1, CType(1, Short))
			//Me.txtFloat.SetIndex(_txtFloat_0, CType(0, Short))
			//Me.txtInteger.SetIndex(_txtInteger_0, CType(0, Short))
			//Me.txtInteger.SetIndex(_txtInteger_3, CType(3, Short))
			//Me.txtInteger.SetIndex(_txtInteger_1, CType(1, Short))
			//Me.txtInteger.SetIndex(_txtInteger_2, CType(2, Short))
			//Me.txtInteger.SetIndex(_txtInteger_4, CType(4, Short))
			//CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.optRecipeType, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.cmdNew, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.cmdMove, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkSerialTracking, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Frame2, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.TabStrip1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.FGRecipe).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPackSize).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPrintGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPrintLocation).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbSupplier).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbVat).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPriceSet).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbReportGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbStockGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPricingGroup).EndInit();
			this._Frame1_0.ResumeLayout(false);
			this.Frame6.ResumeLayout(false);
			this.Frame5.ResumeLayout(false);
			this.Frame3.ResumeLayout(false);
			this._Frame2_1.ResumeLayout(false);
			this._Frame2_2.ResumeLayout(false);
			this._Frame2_3.ResumeLayout(false);
			this._Frame2_4.ResumeLayout(false);
			this._Frame2_5.ResumeLayout(false);
			this._Frame2_0.ResumeLayout(false);
			this.picButtons.ResumeLayout(false);
			this._Frame1_1.ResumeLayout(false);
			this._Frame1_2.ResumeLayout(false);
			this._Frame1_3.ResumeLayout(false);
			this.Frame4.ResumeLayout(false);
			this.lstvSerial.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFloatLister));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.Command2   = new System.Windows.Forms.Button();
     this.cmdNew     = new System.Windows.Forms.Button();
     this.DataList1  = new myDataGridView();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     this.Text                      = "Denomination";
     this.ClientSize                = new System.Drawing.Size(223, 328);
     this.Location                  = new System.Drawing.Point(4, 23);
     this.ControlBox                = false;
     this.StartPosition             = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode             = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                 = System.Drawing.SystemColors.Control;
     this.FormBorderStyle           = System.Windows.Forms.FormBorderStyle.Sizable;
     this.Enabled                   = true;
     this.KeyPreview                = false;
     this.MaximizeBox               = true;
     this.MinimizeBox               = true;
     this.Cursor                    = System.Windows.Forms.Cursors.Default;
     this.RightToLeft               = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar             = true;
     this.HelpButton                = false;
     this.WindowState               = System.Windows.Forms.FormWindowState.Normal;
     this.Name                      = "frmFloatLister";
     this.Command2.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.Command2.Text             = "&Exit";
     this.Command2.Size             = new System.Drawing.Size(97, 41);
     this.Command2.Location         = new System.Drawing.Point(124, 282);
     this.Command2.TabIndex         = 2;
     this.Command2.BackColor        = System.Drawing.SystemColors.Control;
     this.Command2.CausesValidation = true;
     this.Command2.Enabled          = true;
     this.Command2.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.Command2.Cursor           = System.Windows.Forms.Cursors.Default;
     this.Command2.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.Command2.TabStop          = true;
     this.Command2.Name             = "Command2";
     this.cmdNew.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNew.Text               = "&New";
     this.cmdNew.Size               = new System.Drawing.Size(97, 41);
     this.cmdNew.Location           = new System.Drawing.Point(6, 282);
     this.cmdNew.TabIndex           = 1;
     this.cmdNew.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdNew.CausesValidation   = true;
     this.cmdNew.Enabled            = true;
     this.cmdNew.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdNew.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdNew.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdNew.TabStop            = true;
     this.cmdNew.Name               = "cmdNew";
     //'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataList1.Size     = new System.Drawing.Size(216, 264);
     this.DataList1.Location = new System.Drawing.Point(4, 10);
     this.DataList1.TabIndex = 0;
     this.DataList1.Name     = "DataList1";
     this.Controls.Add(Command2);
     this.Controls.Add(cmdNew);
     this.Controls.Add(DataList1);
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMaintainWeight));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.picButtons      = new System.Windows.Forms.Panel();
     this.cmdNew          = new System.Windows.Forms.Button();
     this.cmdClose        = new System.Windows.Forms.Button();
     this.cmdCancel       = new System.Windows.Forms.Button();
     this.Frame1          = new System.Windows.Forms.GroupBox();
     this.grdDataGrid     = new myDataGridView();
     this.Frame2          = new System.Windows.Forms.GroupBox();
     this._txtFields_4    = new System.Windows.Forms.TextBox();
     this._txtFields_1    = new System.Windows.Forms.TextBox();
     this._txtFields_3    = new System.Windows.Forms.TextBox();
     this._txtFields_2    = new System.Windows.Forms.TextBox();
     this._txtFields_0    = new System.Windows.Forms.TextBox();
     this.Label5          = new System.Windows.Forms.Label();
     this.Label4          = new System.Windows.Forms.Label();
     this.Label3          = new System.Windows.Forms.Label();
     this.Label2          = new System.Windows.Forms.Label();
     this.Label1          = new System.Windows.Forms.Label();
     this.Shape1          = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
     this.picButtons.SuspendLayout();
     this.Frame1.SuspendLayout();
     this.Frame2.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit();
     //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
     this.Text                        = "Maintain Scale Weight Codes";
     this.ClientSize                  = new System.Drawing.Size(398, 289);
     this.Location                    = new System.Drawing.Point(4, 23);
     this.ControlBox                  = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.Sizable;
     this.Enabled                     = true;
     this.KeyPreview                  = false;
     this.MaximizeBox                 = true;
     this.MinimizeBox                 = true;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar               = true;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmMaintainWeight";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(398, 39);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 5;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name             = "picButtons";
     this.cmdNew.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNew.Text                 = "&New";
     this.cmdNew.Size                 = new System.Drawing.Size(79, 25);
     this.cmdNew.Location             = new System.Drawing.Point(4, 4);
     this.cmdNew.TabIndex             = 8;
     this.cmdNew.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdNew.CausesValidation     = true;
     this.cmdNew.Enabled              = true;
     this.cmdNew.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdNew.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdNew.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdNew.TabStop              = true;
     this.cmdNew.Name                 = "cmdNew";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(79, 25);
     this.cmdClose.Location           = new System.Drawing.Point(312, 4);
     this.cmdClose.TabIndex           = 7;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     this.cmdCancel.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdCancel.Text              = "Cancel";
     this.cmdCancel.Size              = new System.Drawing.Size(79, 25);
     this.cmdCancel.Location          = new System.Drawing.Point(120, 4);
     this.cmdCancel.TabIndex          = 6;
     this.cmdCancel.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdCancel.CausesValidation  = true;
     this.cmdCancel.Enabled           = true;
     this.cmdCancel.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdCancel.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdCancel.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdCancel.TabStop           = true;
     this.cmdCancel.Name              = "cmdCancel";
     this.Frame1.Size                 = new System.Drawing.Size(391, 237);
     this.Frame1.Location             = new System.Drawing.Point(2, 46);
     this.Frame1.TabIndex             = 15;
     this.Frame1.BackColor            = System.Drawing.SystemColors.Control;
     this.Frame1.Enabled              = true;
     this.Frame1.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Frame1.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.Frame1.Visible              = true;
     this.Frame1.Padding              = new System.Windows.Forms.Padding(0);
     this.Frame1.Name                 = "Frame1";
     //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid.Size              = new System.Drawing.Size(373, 217);
     this.grdDataGrid.Location          = new System.Drawing.Point(8, 14);
     this.grdDataGrid.TabIndex          = 16;
     this.grdDataGrid.Name              = "grdDataGrid";
     this.Frame2.Text                   = "New Weight Code";
     this.Frame2.Size                   = new System.Drawing.Size(391, 237);
     this.Frame2.Location               = new System.Drawing.Point(2, 46);
     this.Frame2.TabIndex               = 9;
     this.Frame2.BackColor              = System.Drawing.SystemColors.Control;
     this.Frame2.Enabled                = true;
     this.Frame2.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Frame2.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Visible                = true;
     this.Frame2.Padding                = new System.Windows.Forms.Padding(0);
     this.Frame2.Name                   = "Frame2";
     this._txtFields_4.AutoSize         = false;
     this._txtFields_4.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_4.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_4.Location         = new System.Drawing.Point(340, 72);
     this._txtFields_4.TabIndex         = 4;
     this._txtFields_4.AcceptsReturn    = true;
     this._txtFields_4.BackColor        = System.Drawing.SystemColors.Window;
     this._txtFields_4.CausesValidation = true;
     this._txtFields_4.Enabled          = true;
     this._txtFields_4.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtFields_4.HideSelection    = true;
     this._txtFields_4.ReadOnly         = false;
     this._txtFields_4.MaxLength        = 0;
     this._txtFields_4.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_4.Multiline        = false;
     this._txtFields_4.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtFields_4.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtFields_4.TabStop          = true;
     this._txtFields_4.Visible          = true;
     this._txtFields_4.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_4.Name             = "_txtFields_4";
     this._txtFields_1.AutoSize         = false;
     this._txtFields_1.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_1.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_1.Location         = new System.Drawing.Point(340, 28);
     this._txtFields_1.TabIndex         = 2;
     this._txtFields_1.AcceptsReturn    = true;
     this._txtFields_1.BackColor        = System.Drawing.SystemColors.Window;
     this._txtFields_1.CausesValidation = true;
     this._txtFields_1.Enabled          = true;
     this._txtFields_1.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtFields_1.HideSelection    = true;
     this._txtFields_1.ReadOnly         = false;
     this._txtFields_1.MaxLength        = 0;
     this._txtFields_1.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_1.Multiline        = false;
     this._txtFields_1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtFields_1.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtFields_1.TabStop          = true;
     this._txtFields_1.Visible          = true;
     this._txtFields_1.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_1.Name             = "_txtFields_1";
     this._txtFields_3.AutoSize         = false;
     this._txtFields_3.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_3.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_3.Location         = new System.Drawing.Point(340, 50);
     this._txtFields_3.TabIndex         = 3;
     this._txtFields_3.AcceptsReturn    = true;
     this._txtFields_3.BackColor        = System.Drawing.SystemColors.Window;
     this._txtFields_3.CausesValidation = true;
     this._txtFields_3.Enabled          = true;
     this._txtFields_3.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtFields_3.HideSelection    = true;
     this._txtFields_3.ReadOnly         = false;
     this._txtFields_3.MaxLength        = 0;
     this._txtFields_3.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_3.Multiline        = false;
     this._txtFields_3.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtFields_3.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtFields_3.TabStop          = true;
     this._txtFields_3.Visible          = true;
     this._txtFields_3.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_3.Name             = "_txtFields_3";
     this._txtFields_2.AutoSize         = false;
     this._txtFields_2.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_2.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_2.Location         = new System.Drawing.Point(160, 50);
     this._txtFields_2.TabIndex         = 1;
     this._txtFields_2.AcceptsReturn    = true;
     this._txtFields_2.BackColor        = System.Drawing.SystemColors.Window;
     this._txtFields_2.CausesValidation = true;
     this._txtFields_2.Enabled          = true;
     this._txtFields_2.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtFields_2.HideSelection    = true;
     this._txtFields_2.ReadOnly         = false;
     this._txtFields_2.MaxLength        = 0;
     this._txtFields_2.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_2.Multiline        = false;
     this._txtFields_2.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtFields_2.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtFields_2.TabStop          = true;
     this._txtFields_2.Visible          = true;
     this._txtFields_2.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_2.Name             = "_txtFields_2";
     this._txtFields_0.AutoSize         = false;
     this._txtFields_0.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this._txtFields_0.Size             = new System.Drawing.Size(37, 19);
     this._txtFields_0.Location         = new System.Drawing.Point(160, 28);
     this._txtFields_0.TabIndex         = 0;
     this._txtFields_0.AcceptsReturn    = true;
     this._txtFields_0.BackColor        = System.Drawing.SystemColors.Window;
     this._txtFields_0.CausesValidation = true;
     this._txtFields_0.Enabled          = true;
     this._txtFields_0.ForeColor        = System.Drawing.SystemColors.WindowText;
     this._txtFields_0.HideSelection    = true;
     this._txtFields_0.ReadOnly         = false;
     this._txtFields_0.MaxLength        = 0;
     this._txtFields_0.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this._txtFields_0.Multiline        = false;
     this._txtFields_0.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._txtFields_0.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this._txtFields_0.TabStop          = true;
     this._txtFields_0.Visible          = true;
     this._txtFields_0.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this._txtFields_0.Name             = "_txtFields_0";
     this.Label5.Text                   = "Number of Decimals";
     this.Label5.Size                   = new System.Drawing.Size(131, 17);
     this.Label5.Location               = new System.Drawing.Point(204, 52);
     this.Label5.TabIndex               = 14;
     this.Label5.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label5.BackColor              = System.Drawing.Color.Transparent;
     this.Label5.Enabled                = true;
     this.Label5.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label5.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label5.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label5.UseMnemonic            = true;
     this.Label5.Visible                = true;
     this.Label5.AutoSize               = false;
     this.Label5.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label5.Name                   = "Label5";
     this.Label4.Text                   = "Price Length";
     this.Label4.Size                   = new System.Drawing.Size(135, 17);
     this.Label4.Location               = new System.Drawing.Point(16, 52);
     this.Label4.TabIndex               = 13;
     this.Label4.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label4.BackColor              = System.Drawing.Color.Transparent;
     this.Label4.Enabled                = true;
     this.Label4.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label4.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label4.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label4.UseMnemonic            = true;
     this.Label4.Visible                = true;
     this.Label4.AutoSize               = false;
     this.Label4.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label4.Name                   = "Label4";
     this.Label3.Text                   = "Check Digit";
     this.Label3.Size                   = new System.Drawing.Size(107, 17);
     this.Label3.Location               = new System.Drawing.Point(204, 74);
     this.Label3.TabIndex               = 12;
     this.Label3.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label3.BackColor              = System.Drawing.Color.Transparent;
     this.Label3.Enabled                = true;
     this.Label3.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label3.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label3.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label3.UseMnemonic            = true;
     this.Label3.Visible                = true;
     this.Label3.AutoSize               = false;
     this.Label3.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label3.Name                   = "Label3";
     this.Label2.Text                   = "Barcode";
     this.Label2.Size                   = new System.Drawing.Size(105, 17);
     this.Label2.Location               = new System.Drawing.Point(204, 32);
     this.Label2.TabIndex               = 11;
     this.Label2.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor              = System.Drawing.Color.Transparent;
     this.Label2.Enabled                = true;
     this.Label2.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label2.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label2.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label2.UseMnemonic            = true;
     this.Label2.Visible                = true;
     this.Label2.AutoSize               = false;
     this.Label2.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label2.Name                   = "Label2";
     this.Label1.Text                   = "Scale Prefix";
     this.Label1.Size                   = new System.Drawing.Size(111, 17);
     this.Label1.Location               = new System.Drawing.Point(16, 32);
     this.Label1.TabIndex               = 10;
     this.Label1.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor              = System.Drawing.Color.Transparent;
     this.Label1.Enabled                = true;
     this.Label1.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic            = true;
     this.Label1.Visible                = true;
     this.Label1.AutoSize               = false;
     this.Label1.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name                   = "Label1";
     this.Shape1.BackColor              = System.Drawing.Color.FromArgb(192, 192, 255);
     this.Shape1.BackStyle              = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this.Shape1.Size                   = new System.Drawing.Size(375, 209);
     this.Shape1.Location               = new System.Drawing.Point(8, 7);
     this.Shape1.BorderColor            = System.Drawing.SystemColors.WindowText;
     this.Shape1.BorderStyle            = System.Drawing.Drawing2D.DashStyle.Solid;
     this.Shape1.BorderWidth            = 1;
     this.Shape1.FillColor              = System.Drawing.Color.Black;
     this.Shape1.FillStyle              = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this.Shape1.Visible                = true;
     this.Shape1.Name                   = "Shape1";
     this.Controls.Add(picButtons);
     this.Controls.Add(Frame1);
     this.Controls.Add(Frame2);
     this.picButtons.Controls.Add(cmdNew);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdCancel);
     this.Frame1.Controls.Add(grdDataGrid);
     this.Frame2.Controls.Add(_txtFields_4);
     this.Frame2.Controls.Add(_txtFields_1);
     this.Frame2.Controls.Add(_txtFields_3);
     this.Frame2.Controls.Add(_txtFields_2);
     this.Frame2.Controls.Add(_txtFields_0);
     this.Frame2.Controls.Add(Label5);
     this.Frame2.Controls.Add(Label4);
     this.Frame2.Controls.Add(Label3);
     this.Frame2.Controls.Add(Label2);
     this.Frame2.Controls.Add(Label1);
     this.ShapeContainer1.Shapes.Add(Shape1);
     this.Frame2.Controls.Add(ShapeContainer1);
     //Me.txtFields.SetIndex(_txtFields_4, CType(4, Short))
     //Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
     //Me.txtFields.SetIndex(_txtFields_3, CType(3, Short))
     //Me.txtFields.SetIndex(_txtFields_2, CType(2, Short))
     //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short))
     //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit();
     this.picButtons.ResumeLayout(false);
     this.Frame1.ResumeLayout(false);
     this.Frame2.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #29
0
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
 {
     //Dim rs As ADODB.Recordset
     //rs = getRS(sql)
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.DataSource. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.DataBindings.Add(rs)
     //UPGRADE_ISSUE: Control method dataControl.DataSource was not upgraded. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="CC4C7EC0-C903-48FC-ACCC-81861D12DA4A"'
     //dataControl.DataSource = adoPrimaryRS
     //UPGRADE_ISSUE: Control method dataControl.DataField was not upgraded. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="CC4C7EC0-C903-48FC-ACCC-81861D12DA4A"'
     //dataControl.DataField = DataField
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.boundColumn. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.boundColumn = boundColumn
     //UPGRADE_WARNING: Couldn't resolve default property of object dataControl.listField. Click for more: 'ms-help://MS.VSCC.v90/dv_commoner/local/redirect.htm?keyword="6A50421D-15FE-4896-8A1B-2EC21E9037B2"'
     //dataControl.listField = listField
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmReportGroupList));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.cmdExit = new System.Windows.Forms.Button();
			this.txtSearch = new System.Windows.Forms.TextBox();
			this.cmdNew = new System.Windows.Forms.Button();
			this.DataList1 = new myDataGridView();
			this.lbl = new System.Windows.Forms.Label();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			this.Text = "Select a Report Group";
			this.ClientSize = new System.Drawing.Size(256, 442);
			this.Location = new System.Drawing.Point(4, 23);
			this.ControlBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
			this.Enabled = true;
			this.KeyPreview = false;
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmReportGroupList";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(97, 52);
			this.cmdExit.Location = new System.Drawing.Point(153, 384);
			this.cmdExit.TabIndex = 3;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			this.txtSearch.AutoSize = false;
			this.txtSearch.Size = new System.Drawing.Size(199, 19);
			this.txtSearch.Location = new System.Drawing.Point(51, 12);
			this.txtSearch.TabIndex = 1;
			this.txtSearch.AcceptsReturn = true;
			this.txtSearch.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSearch.BackColor = System.Drawing.SystemColors.Window;
			this.txtSearch.CausesValidation = true;
			this.txtSearch.Enabled = true;
			this.txtSearch.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSearch.HideSelection = true;
			this.txtSearch.ReadOnly = false;
			this.txtSearch.MaxLength = 0;
			this.txtSearch.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSearch.Multiline = false;
			this.txtSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSearch.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSearch.TabStop = true;
			this.txtSearch.Visible = true;
			this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSearch.Name = "txtSearch";
			this.cmdNew.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNew.Text = "&New";
			this.cmdNew.Size = new System.Drawing.Size(97, 52);
			this.cmdNew.Location = new System.Drawing.Point(6, 384);
			this.cmdNew.TabIndex = 0;
			this.cmdNew.TabStop = false;
			this.cmdNew.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNew.CausesValidation = true;
			this.cmdNew.Enabled = true;
			this.cmdNew.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNew.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNew.Name = "cmdNew";
			//DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(244, 342);
			this.DataList1.Location = new System.Drawing.Point(8, 36);
			this.DataList1.TabIndex = 2;
			this.DataList1.Name = "DataList1";
			this.lbl.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lbl.Text = "&Search :";
			this.lbl.Size = new System.Drawing.Size(40, 13);
			this.lbl.Location = new System.Drawing.Point(8, 15);
			this.lbl.TabIndex = 4;
			this.lbl.BackColor = System.Drawing.Color.Transparent;
			this.lbl.Enabled = true;
			this.lbl.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lbl.Cursor = System.Windows.Forms.Cursors.Default;
			this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lbl.UseMnemonic = true;
			this.lbl.Visible = true;
			this.lbl.AutoSize = true;
			this.lbl.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lbl.Name = "lbl";
			this.Controls.Add(cmdExit);
			this.Controls.Add(txtSearch);
			this.Controls.Add(cmdNew);
			this.Controls.Add(DataList1);
			this.Controls.Add(lbl);
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockItemNew));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.cmdBack = new System.Windows.Forms.Button();
			this.cmdNext = new System.Windows.Forms.Button();
			this._frmMode_1 = new System.Windows.Forms.GroupBox();
			this.cmdPackSize = new System.Windows.Forms.Button();
			this.cmdStockGroup = new System.Windows.Forms.Button();
			this.cmdPricingGroup = new System.Windows.Forms.Button();
			this.cmdDeposit = new System.Windows.Forms.Button();
			this.cmdSupplier = new System.Windows.Forms.Button();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.cmdShrink = new System.Windows.Forms.Button();
			this.txtCost = new System.Windows.Forms.TextBox();
			this.txtQuantity = new System.Windows.Forms.TextBox();
			this.cmbShrink = new myDataGridView();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this.txtReceipt = new System.Windows.Forms.TextBox();
			this.txtName = new System.Windows.Forms.TextBox();
			this.Picture1 = new System.Windows.Forms.PictureBox();
			this.cmbPricingGroup = new myDataGridView();
			this.cmbStockGroup = new myDataGridView();
			this.cmbDeposit = new myDataGridView();
			this.cmbSupplier = new myDataGridView();
			this.cmbPackSize = new myDataGridView();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._frmMode_0 = new System.Windows.Forms.GroupBox();
			this.txtSearch = new System.Windows.Forms.TextBox();
			this.cmdCustom = new System.Windows.Forms.Button();
			this.DataList1 = new myDataGridView();
			this.lblRecords = new System.Windows.Forms.Label();
			this._lbl_35 = new System.Windows.Forms.Label();
			//Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this._frmMode_1.SuspendLayout();
			this.Frame1.SuspendLayout();
			this._frmMode_0.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPricingGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbStockGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbSupplier).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPackSize).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "New Stock Item";
			this.ClientSize = new System.Drawing.Size(366, 413);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockItemNew";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "E&xit";
			this.cmdBack.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdBack.Size = new System.Drawing.Size(97, 43);
			this.cmdBack.Location = new System.Drawing.Point(4, 364);
			this.cmdBack.TabIndex = 20;
			this.cmdBack.TabStop = false;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.Name = "cmdBack";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Next >>";
			this.cmdNext.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdNext.Size = new System.Drawing.Size(96, 43);
			this.cmdNext.Location = new System.Drawing.Point(266, 364);
			this.cmdNext.TabIndex = 19;
			this.cmdNext.TabStop = false;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.Name = "cmdNext";
			this._frmMode_1.Text = "New \"Stock Item\" Details.";
			this._frmMode_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmMode_1.Size = new System.Drawing.Size(357, 353);
			this._frmMode_1.Location = new System.Drawing.Point(96, 6);
			this._frmMode_1.TabIndex = 0;
			this._frmMode_1.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_1.Enabled = true;
			this._frmMode_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_1.Visible = true;
			this._frmMode_1.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_1.Name = "_frmMode_1";
			this.cmdPackSize.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPackSize.Text = "...";
			this.cmdPackSize.Size = new System.Drawing.Size(25, 19);
			this.cmdPackSize.Location = new System.Drawing.Point(326, 158);
			this.cmdPackSize.TabIndex = 36;
			this.cmdPackSize.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPackSize.CausesValidation = true;
			this.cmdPackSize.Enabled = true;
			this.cmdPackSize.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPackSize.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPackSize.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPackSize.TabStop = true;
			this.cmdPackSize.Name = "cmdPackSize";
			this.cmdStockGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdStockGroup.Text = "...";
			this.cmdStockGroup.Size = new System.Drawing.Size(25, 19);
			this.cmdStockGroup.Location = new System.Drawing.Point(326, 134);
			this.cmdStockGroup.TabIndex = 31;
			this.cmdStockGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdStockGroup.CausesValidation = true;
			this.cmdStockGroup.Enabled = true;
			this.cmdStockGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdStockGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdStockGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdStockGroup.TabStop = true;
			this.cmdStockGroup.Name = "cmdStockGroup";
			this.cmdPricingGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPricingGroup.Text = "...";
			this.cmdPricingGroup.Size = new System.Drawing.Size(25, 19);
			this.cmdPricingGroup.Location = new System.Drawing.Point(326, 110);
			this.cmdPricingGroup.TabIndex = 30;
			this.cmdPricingGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPricingGroup.CausesValidation = true;
			this.cmdPricingGroup.Enabled = true;
			this.cmdPricingGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPricingGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPricingGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPricingGroup.TabStop = true;
			this.cmdPricingGroup.Name = "cmdPricingGroup";
			this.cmdDeposit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDeposit.Text = "...";
			this.cmdDeposit.Size = new System.Drawing.Size(25, 19);
			this.cmdDeposit.Location = new System.Drawing.Point(326, 86);
			this.cmdDeposit.TabIndex = 29;
			this.cmdDeposit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDeposit.CausesValidation = true;
			this.cmdDeposit.Enabled = true;
			this.cmdDeposit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDeposit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDeposit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDeposit.TabStop = true;
			this.cmdDeposit.Name = "cmdDeposit";
			this.cmdSupplier.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdSupplier.Text = "...";
			this.cmdSupplier.Size = new System.Drawing.Size(25, 19);
			this.cmdSupplier.Location = new System.Drawing.Point(326, 62);
			this.cmdSupplier.TabIndex = 28;
			this.cmdSupplier.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSupplier.CausesValidation = true;
			this.cmdSupplier.Enabled = true;
			this.cmdSupplier.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSupplier.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSupplier.TabStop = true;
			this.cmdSupplier.Name = "cmdSupplier";
			this.Frame1.Size = new System.Drawing.Size(343, 75);
			this.Frame1.Location = new System.Drawing.Point(8, 200);
			this.Frame1.TabIndex = 21;
			this.Frame1.BackColor = System.Drawing.SystemColors.Control;
			this.Frame1.Enabled = true;
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame1.Visible = true;
			this.Frame1.Padding = new System.Windows.Forms.Padding(0);
			this.Frame1.Name = "Frame1";
			this.cmdShrink.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdShrink.Text = "...";
			this.cmdShrink.Size = new System.Drawing.Size(25, 19);
			this.cmdShrink.Location = new System.Drawing.Point(230, 40);
			this.cmdShrink.TabIndex = 32;
			this.cmdShrink.BackColor = System.Drawing.SystemColors.Control;
			this.cmdShrink.CausesValidation = true;
			this.cmdShrink.Enabled = true;
			this.cmdShrink.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdShrink.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdShrink.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdShrink.TabStop = true;
			this.cmdShrink.Name = "cmdShrink";
			this.txtCost.AutoSize = false;
			this.txtCost.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtCost.Size = new System.Drawing.Size(56, 19);
			this.txtCost.Location = new System.Drawing.Point(282, 14);
			this.txtCost.TabIndex = 25;
			this.txtCost.Text = "0.00";
			this.txtCost.AcceptsReturn = true;
			this.txtCost.BackColor = System.Drawing.SystemColors.Window;
			this.txtCost.CausesValidation = true;
			this.txtCost.Enabled = true;
			this.txtCost.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCost.HideSelection = true;
			this.txtCost.ReadOnly = false;
			this.txtCost.MaxLength = 0;
			this.txtCost.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCost.Multiline = false;
			this.txtCost.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCost.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtCost.TabStop = true;
			this.txtCost.Visible = true;
			this.txtCost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtCost.Name = "txtCost";
			this.txtQuantity.AutoSize = false;
			this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQuantity.Size = new System.Drawing.Size(34, 19);
			this.txtQuantity.Location = new System.Drawing.Point(68, 14);
			this.txtQuantity.TabIndex = 23;
			this.txtQuantity.Text = "1";
			this.txtQuantity.AcceptsReturn = true;
			this.txtQuantity.BackColor = System.Drawing.SystemColors.Window;
			this.txtQuantity.CausesValidation = true;
			this.txtQuantity.Enabled = true;
			this.txtQuantity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQuantity.HideSelection = true;
			this.txtQuantity.ReadOnly = false;
			this.txtQuantity.MaxLength = 0;
			this.txtQuantity.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQuantity.Multiline = false;
			this.txtQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQuantity.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQuantity.TabStop = true;
			this.txtQuantity.Visible = true;
			this.txtQuantity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtQuantity.Name = "txtQuantity";
			//cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbShrink.Size = new System.Drawing.Size(91, 21);
			this.cmbShrink.Location = new System.Drawing.Point(132, 38);
			this.cmbShrink.TabIndex = 27;
			this.cmbShrink.Name = "cmbShrink";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.Text = "and you sell in shrinks of";
			this._lblLabels_1.Size = new System.Drawing.Size(115, 13);
			this._lblLabels_1.Location = new System.Drawing.Point(14, 42);
			this._lblLabels_1.TabIndex = 26;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Enabled = true;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.UseMnemonic = true;
			this._lblLabels_1.Visible = true;
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_10.Text = "Units in a case/carton, which costs";
			this._lblLabels_10.Size = new System.Drawing.Size(167, 13);
			this._lblLabels_10.Location = new System.Drawing.Point(106, 16);
			this._lblLabels_10.TabIndex = 24;
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Enabled = true;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.UseMnemonic = true;
			this._lblLabels_10.Visible = true;
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.Text = "There are ";
			this._lblLabels_2.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(14, 16);
			this._lblLabels_2.TabIndex = 22;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Enabled = true;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.UseMnemonic = true;
			this._lblLabels_2.Visible = true;
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_2.Name = "_lblLabels_2";
			this.txtReceipt.AutoSize = false;
			this.txtReceipt.Size = new System.Drawing.Size(241, 19);
			this.txtReceipt.Location = new System.Drawing.Point(82, 40);
			this.txtReceipt.MaxLength = 40;
			this.txtReceipt.TabIndex = 4;
			this.txtReceipt.Text = "[New Product]";
			this.txtReceipt.AcceptsReturn = true;
			this.txtReceipt.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtReceipt.BackColor = System.Drawing.SystemColors.Window;
			this.txtReceipt.CausesValidation = true;
			this.txtReceipt.Enabled = true;
			this.txtReceipt.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtReceipt.HideSelection = true;
			this.txtReceipt.ReadOnly = false;
			this.txtReceipt.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtReceipt.Multiline = false;
			this.txtReceipt.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtReceipt.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtReceipt.TabStop = true;
			this.txtReceipt.Visible = true;
			this.txtReceipt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtReceipt.Name = "txtReceipt";
			this.txtName.AutoSize = false;
			this.txtName.Size = new System.Drawing.Size(241, 19);
			this.txtName.Location = new System.Drawing.Point(82, 18);
			this.txtName.MaxLength = 128;
			this.txtName.TabIndex = 2;
			this.txtName.Text = "[New Product]";
			this.txtName.AcceptsReturn = true;
			this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtName.BackColor = System.Drawing.SystemColors.Window;
			this.txtName.CausesValidation = true;
			this.txtName.Enabled = true;
			this.txtName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtName.HideSelection = true;
			this.txtName.ReadOnly = false;
			this.txtName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtName.Multiline = false;
			this.txtName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtName.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtName.TabStop = true;
			this.txtName.Visible = true;
			this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtName.Name = "txtName";
			this.Picture1.Size = new System.Drawing.Size(295, 4);
			this.Picture1.Location = new System.Drawing.Point(28, 192);
			this.Picture1.TabIndex = 13;
			this.Picture1.TabStop = false;
			this.Picture1.Dock = System.Windows.Forms.DockStyle.None;
			this.Picture1.BackColor = System.Drawing.SystemColors.Control;
			this.Picture1.CausesValidation = true;
			this.Picture1.Enabled = true;
			this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture1.Visible = true;
			this.Picture1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Normal;
			this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture1.Name = "Picture1";
			//cmbPricingGroup.OcxState = CType(resources.GetObject("cmbPricingGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPricingGroup.Size = new System.Drawing.Size(241, 21);
			this.cmbPricingGroup.Location = new System.Drawing.Point(82, 108);
			this.cmbPricingGroup.TabIndex = 10;
			this.cmbPricingGroup.Name = "cmbPricingGroup";
			//cmbStockGroup.OcxState = CType(resources.GetObject("cmbStockGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbStockGroup.Size = new System.Drawing.Size(241, 21);
			this.cmbStockGroup.Location = new System.Drawing.Point(82, 132);
			this.cmbStockGroup.TabIndex = 12;
			this.cmbStockGroup.Name = "cmbStockGroup";
			//cmbDeposit.OcxState = CType(resources.GetObject("cmbDeposit.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbDeposit.Size = new System.Drawing.Size(241, 21);
			this.cmbDeposit.Location = new System.Drawing.Point(82, 84);
			this.cmbDeposit.TabIndex = 8;
			this.cmbDeposit.Name = "cmbDeposit";
			//cmbSupplier.OcxState = CType(resources.GetObject("cmbSupplier.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbSupplier.Size = new System.Drawing.Size(241, 21);
			this.cmbSupplier.Location = new System.Drawing.Point(82, 60);
			this.cmbSupplier.TabIndex = 6;
			this.cmbSupplier.Name = "cmbSupplier";
			//cmbPackSize.OcxState = CType(resources.GetObject("cmbPackSize.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPackSize.Size = new System.Drawing.Size(241, 21);
			this.cmbPackSize.Location = new System.Drawing.Point(82, 156);
			this.cmbPackSize.TabIndex = 35;
			this.cmbPackSize.Name = "cmbPackSize";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_5.Text = "Pack Size:";
			this._lblLabels_5.Size = new System.Drawing.Size(51, 13);
			this._lblLabels_5.Location = new System.Drawing.Point(28, 160);
			this._lblLabels_5.TabIndex = 34;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Enabled = true;
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.UseMnemonic = true;
			this._lblLabels_5.Visible = true;
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.Text = "Receipt Name:";
			this._lblLabels_8.Size = new System.Drawing.Size(71, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(6, 45);
			this._lblLabels_8.TabIndex = 3;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.UseMnemonic = true;
			this._lblLabels_8.Visible = true;
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.Text = "Display Name:";
			this._lblLabels_7.Size = new System.Drawing.Size(68, 13);
			this._lblLabels_7.Location = new System.Drawing.Point(10, 20);
			this._lblLabels_7.TabIndex = 1;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.UseMnemonic = true;
			this._lblLabels_7.Visible = true;
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_4.Text = "Stock Group:";
			this._lblLabels_4.Size = new System.Drawing.Size(63, 13);
			this._lblLabels_4.Location = new System.Drawing.Point(14, 138);
			this._lblLabels_4.TabIndex = 11;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Enabled = true;
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.UseMnemonic = true;
			this._lblLabels_4.Visible = true;
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_3.Text = "Pricing Group:";
			this._lblLabels_3.Size = new System.Drawing.Size(67, 13);
			this._lblLabels_3.Location = new System.Drawing.Point(10, 114);
			this._lblLabels_3.TabIndex = 9;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Enabled = true;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.UseMnemonic = true;
			this._lblLabels_3.Visible = true;
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.Text = "Supplier:";
			this._lblLabels_0.Size = new System.Drawing.Size(41, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(36, 66);
			this._lblLabels_0.TabIndex = 5;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Enabled = true;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.UseMnemonic = true;
			this._lblLabels_0.Visible = true;
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_6.Text = "Deposit:";
			this._lblLabels_6.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_6.Location = new System.Drawing.Point(38, 90);
			this._lblLabels_6.TabIndex = 7;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Enabled = true;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.UseMnemonic = true;
			this._lblLabels_6.Visible = true;
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_6.Name = "_lblLabels_6";
			this._frmMode_0.Text = "Select the Product for the New \"Stock Item\".";
			this._frmMode_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._frmMode_0.Size = new System.Drawing.Size(357, 355);
			this._frmMode_0.Location = new System.Drawing.Point(4, 4);
			this._frmMode_0.TabIndex = 15;
			this._frmMode_0.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_0.Enabled = true;
			this._frmMode_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_0.Visible = true;
			this._frmMode_0.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_0.Name = "_frmMode_0";
			this.txtSearch.AutoSize = false;
			this.txtSearch.Size = new System.Drawing.Size(291, 19);
			this.txtSearch.Location = new System.Drawing.Point(57, 18);
			this.txtSearch.TabIndex = 16;
			this.txtSearch.AcceptsReturn = true;
			this.txtSearch.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSearch.BackColor = System.Drawing.SystemColors.Window;
			this.txtSearch.CausesValidation = true;
			this.txtSearch.Enabled = true;
			this.txtSearch.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSearch.HideSelection = true;
			this.txtSearch.ReadOnly = false;
			this.txtSearch.MaxLength = 0;
			this.txtSearch.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSearch.Multiline = false;
			this.txtSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSearch.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSearch.TabStop = true;
			this.txtSearch.Visible = true;
			this.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtSearch.Name = "txtSearch";
			this.cmdCustom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdCustom.Text = "The product I want is not in this list.";
			this.cmdCustom.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdCustom.Size = new System.Drawing.Size(336, 37);
			this.cmdCustom.Location = new System.Drawing.Point(12, 306);
			this.cmdCustom.TabIndex = 18;
			this.cmdCustom.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCustom.CausesValidation = true;
			this.cmdCustom.Enabled = true;
			this.cmdCustom.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCustom.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCustom.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCustom.TabStop = true;
			this.cmdCustom.Name = "cmdCustom";
			//'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(336, 225);
			this.DataList1.Location = new System.Drawing.Point(12, 44);
			this.DataList1.TabIndex = 17;
			this.DataList1.Name = "DataList1";
			this.lblRecords.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblRecords.Text = "Displayed Records 0 of 0";
			this.lblRecords.Font = new System.Drawing.Font("Verdana", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
			this.lblRecords.Size = new System.Drawing.Size(336, 17);
			this.lblRecords.Location = new System.Drawing.Point(12, 272);
			this.lblRecords.TabIndex = 33;
			this.lblRecords.BackColor = System.Drawing.SystemColors.Control;
			this.lblRecords.Enabled = true;
			this.lblRecords.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblRecords.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblRecords.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblRecords.UseMnemonic = true;
			this.lblRecords.Visible = true;
			this.lblRecords.AutoSize = false;
			this.lblRecords.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblRecords.Name = "lblRecords";
			this._lbl_35.Text = "Search";
			this._lbl_35.Size = new System.Drawing.Size(43, 16);
			this._lbl_35.Location = new System.Drawing.Point(15, 21);
			this._lbl_35.TabIndex = 14;
			this._lbl_35.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_35.BackColor = System.Drawing.SystemColors.Control;
			this._lbl_35.Enabled = true;
			this._lbl_35.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_35.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_35.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_35.UseMnemonic = true;
			this._lbl_35.Visible = true;
			this._lbl_35.AutoSize = false;
			this._lbl_35.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_35.Name = "_lbl_35";
			this.Controls.Add(cmdBack);
			this.Controls.Add(cmdNext);
			this.Controls.Add(_frmMode_1);
			this.Controls.Add(_frmMode_0);
			this._frmMode_1.Controls.Add(cmdPackSize);
			this._frmMode_1.Controls.Add(cmdStockGroup);
			this._frmMode_1.Controls.Add(cmdPricingGroup);
			this._frmMode_1.Controls.Add(cmdDeposit);
			this._frmMode_1.Controls.Add(cmdSupplier);
			this._frmMode_1.Controls.Add(Frame1);
			this._frmMode_1.Controls.Add(txtReceipt);
			this._frmMode_1.Controls.Add(txtName);
			this._frmMode_1.Controls.Add(Picture1);
			this._frmMode_1.Controls.Add(cmbPricingGroup);
			this._frmMode_1.Controls.Add(cmbStockGroup);
			this._frmMode_1.Controls.Add(cmbDeposit);
			this._frmMode_1.Controls.Add(cmbSupplier);
			this._frmMode_1.Controls.Add(cmbPackSize);
			this._frmMode_1.Controls.Add(_lblLabels_5);
			this._frmMode_1.Controls.Add(_lblLabels_8);
			this._frmMode_1.Controls.Add(_lblLabels_7);
			this._frmMode_1.Controls.Add(_lblLabels_4);
			this._frmMode_1.Controls.Add(_lblLabels_3);
			this._frmMode_1.Controls.Add(_lblLabels_0);
			this._frmMode_1.Controls.Add(_lblLabels_6);
			this.Frame1.Controls.Add(cmdShrink);
			this.Frame1.Controls.Add(txtCost);
			this.Frame1.Controls.Add(txtQuantity);
			this.Frame1.Controls.Add(cmbShrink);
			this.Frame1.Controls.Add(_lblLabels_1);
			this.Frame1.Controls.Add(_lblLabels_10);
			this.Frame1.Controls.Add(_lblLabels_2);
			this._frmMode_0.Controls.Add(txtSearch);
			this._frmMode_0.Controls.Add(cmdCustom);
			this._frmMode_0.Controls.Add(DataList1);
			this._frmMode_0.Controls.Add(lblRecords);
			this._frmMode_0.Controls.Add(_lbl_35);
			//Me.frmMode.SetIndex(_frmMode_1, CType(1, Short))
			//Me.frmMode.SetIndex(_frmMode_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_35, CType(35, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.lblLabels.SetIndex(_lblLabels_10, CType(10, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_5, CType(5, Short))
			//Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//Me.lblLabels.SetIndex(_lblLabels_4, CType(4, Short))
			//Me.lblLabels.SetIndex(_lblLabels_3, CType(3, Short))
			//Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPackSize).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbSupplier).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbStockGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPricingGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).EndInit();
			this._frmMode_1.ResumeLayout(false);
			this.Frame1.ResumeLayout(false);
			this._frmMode_0.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmBarcodeStockitem));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.Command1 = new System.Windows.Forms.Button();
			this.cmdLoad = new System.Windows.Forms.Button();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdClear = new System.Windows.Forms.Button();
			this.cmdShow = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.txtEdit = new System.Windows.Forms.TextBox();
			this._txtSearch_4 = new System.Windows.Forms.TextBox();
			this._txtSearch_3 = new System.Windows.Forms.TextBox();
			this._txtSearch_2 = new System.Windows.Forms.TextBox();
			this._txtSearch_1 = new System.Windows.Forms.TextBox();
			this._txtSearch_0 = new System.Windows.Forms.TextBox();
			this.gridEdit = new myDataGridView();
			this.cmdDlgOpen = new System.Windows.Forms.OpenFileDialog();
			//Me.txtSearch = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.gridEdit).BeginInit();
			//CType(Me.txtSearch, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Select products for barcode printing ...";
			this.ClientSize = new System.Drawing.Size(839, 573);
			this.Location = new System.Drawing.Point(3, 29);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmBarcodeStockitem";
			this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command1.Text = "&Show Only with   Single Qty";
			this.Command1.Size = new System.Drawing.Size(121, 64);
			this.Command1.Location = new System.Drawing.Point(712, 288);
			this.Command1.TabIndex = 12;
			this.Command1.TabStop = false;
			this.Command1.BackColor = System.Drawing.SystemColors.Control;
			this.Command1.CausesValidation = true;
			this.Command1.Enabled = true;
			this.Command1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command1.Name = "Command1";
			this.cmdLoad.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdLoad.Text = "&Load Qty from  CSV file";
			this.cmdLoad.Size = new System.Drawing.Size(121, 64);
			this.cmdLoad.Location = new System.Drawing.Point(712, 64);
			this.cmdLoad.TabIndex = 11;
			this.cmdLoad.TabStop = false;
			this.cmdLoad.BackColor = System.Drawing.SystemColors.Control;
			this.cmdLoad.CausesValidation = true;
			this.cmdLoad.Enabled = true;
			this.cmdLoad.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdLoad.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdLoad.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdLoad.Name = "cmdLoad";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "&Exit";
			this.cmdExit.Size = new System.Drawing.Size(121, 64);
			this.cmdExit.Location = new System.Drawing.Point(712, 471);
			this.cmdExit.TabIndex = 10;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			this.cmdClear.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClear.Text = "&Clear All Selected Products";
			this.cmdClear.Size = new System.Drawing.Size(121, 64);
			this.cmdClear.Location = new System.Drawing.Point(712, 216);
			this.cmdClear.TabIndex = 9;
			this.cmdClear.TabStop = false;
			this.cmdClear.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClear.CausesValidation = true;
			this.cmdClear.Enabled = true;
			this.cmdClear.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClear.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClear.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClear.Name = "cmdClear";
			this.cmdShow.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdShow.Text = "&Show Changed     Price Items    Or      Selected Products";
			this.cmdShow.Size = new System.Drawing.Size(121, 72);
			this.cmdShow.Location = new System.Drawing.Point(712, 136);
			this.cmdShow.TabIndex = 8;
			this.cmdShow.TabStop = false;
			this.cmdShow.BackColor = System.Drawing.SystemColors.Control;
			this.cmdShow.CausesValidation = true;
			this.cmdShow.Enabled = true;
			this.cmdShow.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdShow.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdShow.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdShow.Name = "cmdShow";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(121, 64);
			this.cmdPrint.Location = new System.Drawing.Point(712, 400);
			this.cmdPrint.TabIndex = 7;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.txtEdit.AutoSize = false;
			this.txtEdit.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtEdit.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this.txtEdit.Size = new System.Drawing.Size(55, 16);
			this.txtEdit.Location = new System.Drawing.Point(0, 0);
			this.txtEdit.MaxLength = 4;
			this.txtEdit.TabIndex = 6;
			this.txtEdit.Tag = "0";
			this.txtEdit.Text = "0";
			this.txtEdit.Visible = false;
			this.txtEdit.AcceptsReturn = true;
			this.txtEdit.CausesValidation = true;
			this.txtEdit.Enabled = true;
			this.txtEdit.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtEdit.HideSelection = true;
			this.txtEdit.ReadOnly = false;
			this.txtEdit.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtEdit.Multiline = false;
			this.txtEdit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtEdit.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtEdit.TabStop = true;
			this.txtEdit.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtEdit.Name = "txtEdit";
			this._txtSearch_4.AutoSize = false;
			this._txtSearch_4.BackColor = System.Drawing.SystemColors.Control;
			this._txtSearch_4.Size = new System.Drawing.Size(76, 19);
			this._txtSearch_4.Location = new System.Drawing.Point(369, 39);
			this._txtSearch_4.TabIndex = 4;
			this._txtSearch_4.Tag = "PricingGroup_Name";
			this._txtSearch_4.AcceptsReturn = true;
			this._txtSearch_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtSearch_4.CausesValidation = true;
			this._txtSearch_4.Enabled = true;
			this._txtSearch_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtSearch_4.HideSelection = true;
			this._txtSearch_4.ReadOnly = false;
			this._txtSearch_4.MaxLength = 0;
			this._txtSearch_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtSearch_4.Multiline = false;
			this._txtSearch_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtSearch_4.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtSearch_4.TabStop = true;
			this._txtSearch_4.Visible = true;
			this._txtSearch_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtSearch_4.Name = "_txtSearch_4";
			this._txtSearch_3.AutoSize = false;
			this._txtSearch_3.BackColor = System.Drawing.SystemColors.Control;
			this._txtSearch_3.Size = new System.Drawing.Size(76, 19);
			this._txtSearch_3.Location = new System.Drawing.Point(282, 39);
			this._txtSearch_3.TabIndex = 3;
			this._txtSearch_3.Tag = "Supplier_Name";
			this._txtSearch_3.AcceptsReturn = true;
			this._txtSearch_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtSearch_3.CausesValidation = true;
			this._txtSearch_3.Enabled = true;
			this._txtSearch_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtSearch_3.HideSelection = true;
			this._txtSearch_3.ReadOnly = false;
			this._txtSearch_3.MaxLength = 0;
			this._txtSearch_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtSearch_3.Multiline = false;
			this._txtSearch_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtSearch_3.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtSearch_3.TabStop = true;
			this._txtSearch_3.Visible = true;
			this._txtSearch_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtSearch_3.Name = "_txtSearch_3";
			this._txtSearch_2.AutoSize = false;
			this._txtSearch_2.BackColor = System.Drawing.SystemColors.Control;
			this._txtSearch_2.Size = new System.Drawing.Size(76, 19);
			this._txtSearch_2.Location = new System.Drawing.Point(189, 39);
			this._txtSearch_2.TabIndex = 2;
			this._txtSearch_2.Tag = "StockItem_Name";
			this._txtSearch_2.AcceptsReturn = true;
			this._txtSearch_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtSearch_2.CausesValidation = true;
			this._txtSearch_2.Enabled = true;
			this._txtSearch_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtSearch_2.HideSelection = true;
			this._txtSearch_2.ReadOnly = false;
			this._txtSearch_2.MaxLength = 0;
			this._txtSearch_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtSearch_2.Multiline = false;
			this._txtSearch_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtSearch_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtSearch_2.TabStop = true;
			this._txtSearch_2.Visible = true;
			this._txtSearch_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtSearch_2.Name = "_txtSearch_2";
			this._txtSearch_1.AutoSize = false;
			this._txtSearch_1.BackColor = System.Drawing.SystemColors.Control;
			this._txtSearch_1.Size = new System.Drawing.Size(76, 19);
			this._txtSearch_1.Location = new System.Drawing.Point(93, 39);
			this._txtSearch_1.TabIndex = 1;
			this._txtSearch_1.Tag = "StockItemID";
			this._txtSearch_1.AcceptsReturn = true;
			this._txtSearch_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtSearch_1.CausesValidation = true;
			this._txtSearch_1.Enabled = true;
			this._txtSearch_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtSearch_1.HideSelection = true;
			this._txtSearch_1.ReadOnly = false;
			this._txtSearch_1.MaxLength = 0;
			this._txtSearch_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtSearch_1.Multiline = false;
			this._txtSearch_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtSearch_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtSearch_1.TabStop = true;
			this._txtSearch_1.Visible = true;
			this._txtSearch_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtSearch_1.Name = "_txtSearch_1";
			this._txtSearch_0.AutoSize = false;
			this._txtSearch_0.BackColor = System.Drawing.SystemColors.Control;
			this._txtSearch_0.Size = new System.Drawing.Size(76, 19);
			this._txtSearch_0.Location = new System.Drawing.Point(9, 39);
			this._txtSearch_0.TabIndex = 0;
			this._txtSearch_0.Tag = "Catalogue_Barcode";
			this._txtSearch_0.AcceptsReturn = true;
			this._txtSearch_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtSearch_0.CausesValidation = true;
			this._txtSearch_0.Enabled = true;
			this._txtSearch_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtSearch_0.HideSelection = true;
			this._txtSearch_0.ReadOnly = false;
			this._txtSearch_0.MaxLength = 0;
			this._txtSearch_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtSearch_0.Multiline = false;
			this._txtSearch_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtSearch_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtSearch_0.TabStop = true;
			this._txtSearch_0.Visible = true;
			this._txtSearch_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtSearch_0.Name = "_txtSearch_0";
			//gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
			this.gridEdit.Size = new System.Drawing.Size(695, 475);
			this.gridEdit.Location = new System.Drawing.Point(9, 60);
			this.gridEdit.TabIndex = 5;
			this.gridEdit.Name = "gridEdit";
			this.Controls.Add(Command1);
			this.Controls.Add(cmdLoad);
			this.Controls.Add(cmdExit);
			this.Controls.Add(cmdClear);
			this.Controls.Add(cmdShow);
			this.Controls.Add(cmdPrint);
			this.Controls.Add(txtEdit);
			this.Controls.Add(_txtSearch_4);
			this.Controls.Add(_txtSearch_3);
			this.Controls.Add(_txtSearch_2);
			this.Controls.Add(_txtSearch_1);
			this.Controls.Add(_txtSearch_0);
			this.Controls.Add(gridEdit);
			//Me.txtSearch.SetIndex(_txtSearch_4, CType(4, Short))
			//Me.txtSearch.SetIndex(_txtSearch_3, CType(3, Short))
			//Me.txtSearch.SetIndex(_txtSearch_2, CType(2, Short))
			//Me.txtSearch.SetIndex(_txtSearch_1, CType(1, Short))
			//Me.txtSearch.SetIndex(_txtSearch_0, CType(0, Short))
			//CType(Me.txtSearch, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.gridEdit).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemple #33
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTakeAdd));
     this.components   = new System.ComponentModel.Container();
     this.ToolTip1     = new System.Windows.Forms.ToolTip(components);
     this.txtSARef     = new System.Windows.Forms.TextBox();
     this.picButtons   = new System.Windows.Forms.Panel();
     this.cmdPrintSlip = new System.Windows.Forms.Button();
     this.cmdClose     = new System.Windows.Forms.Button();
     this.cmdPrint     = new System.Windows.Forms.Button();
     this.lblHeading   = new System.Windows.Forms.Label();
     this.grdDataGrid  = new System.Windows.Forms.Panel();
     this.grdDataGrid1 = new myDataGridView();
     this.lbl          = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.grdDataGrid.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid1).BeginInit();
     this.FormBorderStyle               = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Text                          = "Stock Take Add(This option only add stock to your quantities and is not a stock take)";
     this.ClientSize                    = new System.Drawing.Size(564, 555);
     this.Location                      = new System.Drawing.Point(73, 22);
     this.ControlBox                    = false;
     this.KeyPreview                    = true;
     this.MaximizeBox                   = false;
     this.MinimizeBox                   = false;
     this.StartPosition                 = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode                 = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                     = System.Drawing.SystemColors.Control;
     this.Enabled                       = true;
     this.Cursor                        = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar                 = true;
     this.HelpButton                    = false;
     this.WindowState                   = System.Windows.Forms.FormWindowState.Normal;
     this.Name                          = "frmStockTakeAdd";
     this.txtSARef.AutoSize             = false;
     this.txtSARef.BackColor            = System.Drawing.Color.FromArgb(192, 192, 255);
     this.txtSARef.Size                 = new System.Drawing.Size(486, 22);
     this.txtSARef.Location             = new System.Drawing.Point(72, 528);
     this.txtSARef.TabIndex             = 6;
     this.txtSARef.AcceptsReturn        = true;
     this.txtSARef.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtSARef.CausesValidation     = true;
     this.txtSARef.Enabled              = true;
     this.txtSARef.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtSARef.HideSelection        = true;
     this.txtSARef.ReadOnly             = false;
     this.txtSARef.MaxLength            = 0;
     this.txtSARef.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtSARef.Multiline            = false;
     this.txtSARef.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtSARef.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtSARef.TabStop              = true;
     this.txtSARef.Visible              = true;
     this.txtSARef.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSARef.Name                 = "txtSARef";
     this.picButtons.Dock               = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor          = System.Drawing.Color.Blue;
     this.picButtons.ForeColor          = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size               = new System.Drawing.Size(564, 35);
     this.picButtons.Location           = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex           = 1;
     this.picButtons.TabStop            = false;
     this.picButtons.CausesValidation   = true;
     this.picButtons.Enabled            = true;
     this.picButtons.Cursor             = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible            = true;
     this.picButtons.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name               = "picButtons";
     this.cmdPrintSlip.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrintSlip.Text             = "&Print Slip";
     this.cmdPrintSlip.Size             = new System.Drawing.Size(73, 29);
     this.cmdPrintSlip.Location         = new System.Drawing.Point(336, 0);
     this.cmdPrintSlip.TabIndex         = 8;
     this.cmdPrintSlip.TabStop          = false;
     this.cmdPrintSlip.Visible          = false;
     this.cmdPrintSlip.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdPrintSlip.CausesValidation = true;
     this.cmdPrintSlip.Enabled          = true;
     this.cmdPrintSlip.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdPrintSlip.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdPrintSlip.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdPrintSlip.Name             = "cmdPrintSlip";
     this.cmdClose.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text                 = "E&xit";
     this.cmdClose.Size                 = new System.Drawing.Size(73, 29);
     this.cmdClose.Location             = new System.Drawing.Point(488, 2);
     this.cmdClose.TabIndex             = 3;
     this.cmdClose.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation     = true;
     this.cmdClose.Enabled              = true;
     this.cmdClose.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop              = true;
     this.cmdClose.Name                 = "cmdClose";
     this.cmdPrint.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text                 = "&Print";
     this.cmdPrint.Size                 = new System.Drawing.Size(73, 29);
     this.cmdPrint.Location             = new System.Drawing.Point(411, 3);
     this.cmdPrint.TabIndex             = 2;
     this.cmdPrint.TabStop              = false;
     this.cmdPrint.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation     = true;
     this.cmdPrint.Enabled              = true;
     this.cmdPrint.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name                 = "cmdPrint";
     this.lblHeading.BackColor          = System.Drawing.Color.FromArgb(192, 192, 255);
     this.lblHeading.Text               = "Using the \"Stock Item Selector\" .....";
     this.lblHeading.Font               = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblHeading.Size               = new System.Drawing.Size(403, 22);
     this.lblHeading.Location           = new System.Drawing.Point(3, 6);
     this.lblHeading.TabIndex           = 4;
     this.lblHeading.TextAlign          = System.Drawing.ContentAlignment.TopLeft;
     this.lblHeading.Enabled            = true;
     this.lblHeading.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.lblHeading.Cursor             = System.Windows.Forms.Cursors.Default;
     this.lblHeading.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.UseMnemonic        = true;
     this.lblHeading.Visible            = true;
     this.lblHeading.AutoSize           = false;
     this.lblHeading.BorderStyle        = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblHeading.Name               = "lblHeading";
     this.grdDataGrid.Dock              = System.Windows.Forms.DockStyle.Top;
     this.grdDataGrid.Size              = new System.Drawing.Size(564, 486);
     this.grdDataGrid.Location          = new System.Drawing.Point(0, 35);
     this.grdDataGrid.TabIndex          = 0;
     this.grdDataGrid.BackColor         = System.Drawing.SystemColors.Control;
     this.grdDataGrid.CausesValidation  = true;
     this.grdDataGrid.Enabled           = true;
     this.grdDataGrid.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.grdDataGrid.Cursor            = System.Windows.Forms.Cursors.Default;
     this.grdDataGrid.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.grdDataGrid.TabStop           = true;
     this.grdDataGrid.Visible           = true;
     this.grdDataGrid.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.grdDataGrid.Name              = "grdDataGrid";
     //grdDataGrid1.OcxState = CType(resources.GetObject("grdDataGrid1.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid1.Size     = new System.Drawing.Size(557, 247);
     this.grdDataGrid1.Location = new System.Drawing.Point(0, 0);
     this.grdDataGrid1.TabIndex = 5;
     this.grdDataGrid1.Name     = "grdDataGrid1";
     this.lbl.TextAlign         = System.Drawing.ContentAlignment.TopRight;
     this.lbl.Text        = "&Reference :";
     this.lbl.Size        = new System.Drawing.Size(64, 22);
     this.lbl.Location    = new System.Drawing.Point(0, 530);
     this.lbl.TabIndex    = 7;
     this.lbl.BackColor   = System.Drawing.Color.Transparent;
     this.lbl.Enabled     = true;
     this.lbl.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lbl.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lbl.UseMnemonic = true;
     this.lbl.Visible     = true;
     this.lbl.AutoSize    = true;
     this.lbl.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.lbl.Name        = "lbl";
     this.Controls.Add(txtSARef);
     this.Controls.Add(picButtons);
     this.Controls.Add(grdDataGrid);
     this.Controls.Add(lbl);
     this.picButtons.Controls.Add(cmdPrintSlip);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(lblHeading);
     this.grdDataGrid.Controls.Add(grdDataGrid1);
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid1).EndInit();
     this.picButtons.ResumeLayout(false);
     this.grdDataGrid.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockMultiName));
     this.components  = new System.ComponentModel.Container();
     this.ToolTip1    = new System.Windows.Forms.ToolTip(components);
     this.picButtons  = new System.Windows.Forms.Panel();
     this.cmdClose    = new System.Windows.Forms.Button();
     this.cmdFilter   = new System.Windows.Forms.Button();
     this.cmdPrint    = new System.Windows.Forms.Button();
     this.lblHeading  = new System.Windows.Forms.Label();
     this.grdDataGrid = new myDataGridView();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Text                        = "Edit Stock Item Names";
     this.ClientSize                  = new System.Drawing.Size(565, 493);
     this.Location                    = new System.Drawing.Point(73, 22);
     this.ControlBox                  = false;
     this.KeyPreview                  = true;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar               = true;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmStockMultiName";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size             = new System.Drawing.Size(565, 68);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 1;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name             = "picButtons";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(73, 62);
     this.cmdClose.Location           = new System.Drawing.Point(489, 3);
     this.cmdClose.TabIndex           = 4;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     this.cmdFilter.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdFilter.Text              = "&Filter";
     this.cmdFilter.Size              = new System.Drawing.Size(73, 29);
     this.cmdFilter.Location          = new System.Drawing.Point(411, 3);
     this.cmdFilter.TabIndex          = 3;
     this.cmdFilter.TabStop           = false;
     this.cmdFilter.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdFilter.CausesValidation  = true;
     this.cmdFilter.Enabled           = true;
     this.cmdFilter.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdFilter.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdFilter.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdFilter.Name              = "cmdFilter";
     this.cmdPrint.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text               = "&Print";
     this.cmdPrint.Size               = new System.Drawing.Size(73, 29);
     this.cmdPrint.Location           = new System.Drawing.Point(411, 36);
     this.cmdPrint.TabIndex           = 2;
     this.cmdPrint.TabStop            = false;
     this.cmdPrint.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation   = true;
     this.cmdPrint.Enabled            = true;
     this.cmdPrint.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name               = "cmdPrint";
     this.lblHeading.BackColor        = System.Drawing.Color.FromArgb(192, 192, 255);
     this.lblHeading.Text             = "Using the \"Stock Item Selector\" .....";
     this.lblHeading.Size             = new System.Drawing.Size(403, 61);
     this.lblHeading.Location         = new System.Drawing.Point(3, 3);
     this.lblHeading.TabIndex         = 5;
     this.lblHeading.TextAlign        = System.Drawing.ContentAlignment.TopLeft;
     this.lblHeading.Enabled          = true;
     this.lblHeading.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.lblHeading.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lblHeading.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.UseMnemonic      = true;
     this.lblHeading.Visible          = true;
     this.lblHeading.AutoSize         = false;
     this.lblHeading.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblHeading.Name             = "lblHeading";
     //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
     this.grdDataGrid.Dock     = System.Windows.Forms.DockStyle.Top;
     this.grdDataGrid.Size     = new System.Drawing.Size(565, 233);
     this.grdDataGrid.Location = new System.Drawing.Point(0, 68);
     this.grdDataGrid.TabIndex = 0;
     this.grdDataGrid.Name     = "grdDataGrid";
     this.Controls.Add(picButtons);
     this.Controls.Add(grdDataGrid);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdFilter);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(lblHeading);
     ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVDeposit));
     this.components          = new System.ComponentModel.Container();
     this.ToolTip1            = new System.Windows.Forms.ToolTip(components);
     this.picButtons          = new System.Windows.Forms.Panel();
     this.cmdBack             = new System.Windows.Forms.Button();
     this.cmdNext             = new System.Windows.Forms.Button();
     this.cmdDelete           = new System.Windows.Forms.Button();
     this.cmdExit             = new System.Windows.Forms.Button();
     this.frmTotals           = new System.Windows.Forms.GroupBox();
     this.lblDepositExclusive = new System.Windows.Forms.Label();
     this._lbl_0              = new System.Windows.Forms.Label();
     this._lbl_8              = new System.Windows.Forms.Label();
     this.lblQuantity         = new System.Windows.Forms.Label();
     this._lbl_9              = new System.Windows.Forms.Label();
     this.lblDepositInclusive = new System.Windows.Forms.Label();
     this.Picture1            = new System.Windows.Forms.Panel();
     this.lblSupplier         = new System.Windows.Forms.Label();
     this.txtEdit             = new System.Windows.Forms.TextBox();
     this.gridItem            = new myDataGridView();
     this.lblReturns          = new System.Windows.Forms.Label();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.picButtons.SuspendLayout();
     this.frmTotals.SuspendLayout();
     this.Picture1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.gridItem).BeginInit();
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     this.BackColor                       = System.Drawing.Color.FromArgb(224, 224, 224);
     this.Text                            = "Deposit Returns Form";
     this.ClientSize                      = new System.Drawing.Size(806, 547);
     this.Location                        = new System.Drawing.Point(4, 23);
     this.ControlBox                      = false;
     this.StartPosition                   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.WindowState                     = System.Windows.Forms.FormWindowState.Maximized;
     this.AutoScaleMode                   = System.Windows.Forms.AutoScaleMode.Font;
     this.FormBorderStyle                 = System.Windows.Forms.FormBorderStyle.Sizable;
     this.Enabled                         = true;
     this.KeyPreview                      = false;
     this.MaximizeBox                     = true;
     this.MinimizeBox                     = true;
     this.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar                   = true;
     this.HelpButton                      = false;
     this.Name                            = "frmGRVDeposit";
     this.picButtons.Dock                 = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor            = System.Drawing.Color.Blue;
     this.picButtons.Size                 = new System.Drawing.Size(806, 49);
     this.picButtons.Location             = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex             = 10;
     this.picButtons.TabStop              = false;
     this.picButtons.CausesValidation     = true;
     this.picButtons.Enabled              = true;
     this.picButtons.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor               = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible              = true;
     this.picButtons.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name                 = "picButtons";
     this.cmdBack.TextAlign               = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBack.Text                    = "<< &Back";
     this.cmdBack.Font                    = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdBack.Size                    = new System.Drawing.Size(73, 40);
     this.cmdBack.Location                = new System.Drawing.Point(426, 3);
     this.cmdBack.TabIndex                = 14;
     this.cmdBack.TabStop                 = false;
     this.cmdBack.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdBack.CausesValidation        = true;
     this.cmdBack.Enabled                 = true;
     this.cmdBack.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdBack.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdBack.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdBack.Name                    = "cmdBack";
     this.cmdNext.TextAlign               = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text                    = "&Next >>";
     this.cmdNext.Font                    = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdNext.Size                    = new System.Drawing.Size(73, 40);
     this.cmdNext.Location                = new System.Drawing.Point(528, 3);
     this.cmdNext.TabIndex                = 13;
     this.cmdNext.TabStop                 = false;
     this.cmdNext.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdNext.CausesValidation        = true;
     this.cmdNext.Enabled                 = true;
     this.cmdNext.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdNext.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdNext.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdNext.Name                    = "cmdNext";
     this.cmdDelete.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDelete.Text                  = "D&elete";
     this.cmdDelete.Font                  = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdDelete.Size                  = new System.Drawing.Size(73, 40);
     this.cmdDelete.Location              = new System.Drawing.Point(3, 3);
     this.cmdDelete.TabIndex              = 12;
     this.cmdDelete.TabStop               = false;
     this.cmdDelete.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdDelete.CausesValidation      = true;
     this.cmdDelete.Enabled               = true;
     this.cmdDelete.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdDelete.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdDelete.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdDelete.Name                  = "cmdDelete";
     this.cmdExit.TextAlign               = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text                    = "E&xit";
     this.cmdExit.Font                    = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdExit.Size                    = new System.Drawing.Size(73, 40);
     this.cmdExit.Location                = new System.Drawing.Point(630, 3);
     this.cmdExit.TabIndex                = 11;
     this.cmdExit.TabStop                 = false;
     this.cmdExit.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation        = true;
     this.cmdExit.Enabled                 = true;
     this.cmdExit.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.Name                    = "cmdExit";
     this.frmTotals.Text                  = "Sub Totals";
     this.frmTotals.Font                  = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.frmTotals.Size                  = new System.Drawing.Size(370, 52);
     this.frmTotals.Location              = new System.Drawing.Point(219, 444);
     this.frmTotals.TabIndex              = 4;
     this.frmTotals.BackColor             = System.Drawing.SystemColors.Control;
     this.frmTotals.Enabled               = true;
     this.frmTotals.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.frmTotals.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.frmTotals.Visible               = true;
     this.frmTotals.Padding               = new System.Windows.Forms.Padding(0);
     this.frmTotals.Name                  = "frmTotals";
     this.lblDepositExclusive.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this.lblDepositExclusive.BackColor   = System.Drawing.Color.FromArgb(255, 192, 192);
     this.lblDepositExclusive.Text        = "0.00";
     this.lblDepositExclusive.Size        = new System.Drawing.Size(91, 17);
     this.lblDepositExclusive.Location    = new System.Drawing.Point(134, 27);
     this.lblDepositExclusive.TabIndex    = 16;
     this.lblDepositExclusive.Enabled     = true;
     this.lblDepositExclusive.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblDepositExclusive.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblDepositExclusive.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblDepositExclusive.UseMnemonic = true;
     this.lblDepositExclusive.Visible     = true;
     this.lblDepositExclusive.AutoSize    = false;
     this.lblDepositExclusive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblDepositExclusive.Name        = "lblDepositExclusive";
     this._lbl_0.Text                     = "Exclusive Amount";
     this._lbl_0.Size                     = new System.Drawing.Size(103, 13);
     this._lbl_0.Location                 = new System.Drawing.Point(135, 15);
     this._lbl_0.TabIndex                 = 15;
     this._lbl_0.TextAlign                = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_0.BackColor                = System.Drawing.Color.Transparent;
     this._lbl_0.Enabled                  = true;
     this._lbl_0.ForeColor                = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Cursor                   = System.Windows.Forms.Cursors.Default;
     this._lbl_0.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.UseMnemonic              = true;
     this._lbl_0.Visible                  = true;
     this._lbl_0.AutoSize                 = false;
     this._lbl_0.BorderStyle              = System.Windows.Forms.BorderStyle.None;
     this._lbl_0.Name                     = "_lbl_0";
     this._lbl_8.Text                     = "No Of Cases";
     this._lbl_8.Size                     = new System.Drawing.Size(60, 13);
     this._lbl_8.Location                 = new System.Drawing.Point(9, 15);
     this._lbl_8.TabIndex                 = 7;
     this._lbl_8.TextAlign                = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_8.BackColor                = System.Drawing.Color.Transparent;
     this._lbl_8.Enabled                  = true;
     this._lbl_8.ForeColor                = System.Drawing.SystemColors.ControlText;
     this._lbl_8.Cursor                   = System.Windows.Forms.Cursors.Default;
     this._lbl_8.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this._lbl_8.UseMnemonic              = true;
     this._lbl_8.Visible                  = true;
     this._lbl_8.AutoSize                 = true;
     this._lbl_8.BorderStyle              = System.Windows.Forms.BorderStyle.None;
     this._lbl_8.Name                     = "_lbl_8";
     this.lblQuantity.TextAlign           = System.Drawing.ContentAlignment.TopRight;
     this.lblQuantity.Text                = "lblQuantity";
     this.lblQuantity.Size                = new System.Drawing.Size(64, 17);
     this.lblQuantity.Location            = new System.Drawing.Point(9, 27);
     this.lblQuantity.TabIndex            = 6;
     this.lblQuantity.BackColor           = System.Drawing.SystemColors.Control;
     this.lblQuantity.Enabled             = true;
     this.lblQuantity.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.lblQuantity.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblQuantity.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblQuantity.UseMnemonic         = true;
     this.lblQuantity.Visible             = true;
     this.lblQuantity.AutoSize            = false;
     this.lblQuantity.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblQuantity.Name                = "lblQuantity";
     this._lbl_9.Text                     = "Inclusive Amount";
     this._lbl_9.Size                     = new System.Drawing.Size(103, 13);
     this._lbl_9.Location                 = new System.Drawing.Point(256, 15);
     this._lbl_9.TabIndex                 = 8;
     this._lbl_9.TextAlign                = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_9.BackColor                = System.Drawing.Color.Transparent;
     this._lbl_9.Enabled                  = true;
     this._lbl_9.ForeColor                = System.Drawing.SystemColors.ControlText;
     this._lbl_9.Cursor                   = System.Windows.Forms.Cursors.Default;
     this._lbl_9.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this._lbl_9.UseMnemonic              = true;
     this._lbl_9.Visible                  = true;
     this._lbl_9.AutoSize                 = false;
     this._lbl_9.BorderStyle              = System.Windows.Forms.BorderStyle.None;
     this._lbl_9.Name                     = "_lbl_9";
     this.lblDepositInclusive.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this.lblDepositInclusive.BackColor   = System.Drawing.Color.FromArgb(255, 192, 192);
     this.lblDepositInclusive.Text        = "0.00";
     this.lblDepositInclusive.Size        = new System.Drawing.Size(91, 17);
     this.lblDepositInclusive.Location    = new System.Drawing.Point(255, 27);
     this.lblDepositInclusive.TabIndex    = 5;
     this.lblDepositInclusive.Enabled     = true;
     this.lblDepositInclusive.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblDepositInclusive.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblDepositInclusive.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblDepositInclusive.UseMnemonic = true;
     this.lblDepositInclusive.Visible     = true;
     this.lblDepositInclusive.AutoSize    = false;
     this.lblDepositInclusive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblDepositInclusive.Name        = "lblDepositInclusive";
     this.Picture1.Dock                   = System.Windows.Forms.DockStyle.Top;
     this.Picture1.BackColor              = System.Drawing.Color.FromArgb(192, 192, 192);
     this.Picture1.Size                   = new System.Drawing.Size(806, 25);
     this.Picture1.Location               = new System.Drawing.Point(0, 49);
     this.Picture1.TabIndex               = 2;
     this.Picture1.TabStop                = false;
     this.Picture1.CausesValidation       = true;
     this.Picture1.Enabled                = true;
     this.Picture1.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.Picture1.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.Picture1.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.Picture1.Visible                = true;
     this.Picture1.BorderStyle            = System.Windows.Forms.BorderStyle.Fixed3D;
     this.Picture1.Name                   = "Picture1";
     this.lblSupplier.Text                = "lblSupplier";
     this.lblSupplier.Font                = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblSupplier.Size                = new System.Drawing.Size(85, 20);
     this.lblSupplier.Location            = new System.Drawing.Point(0, 0);
     this.lblSupplier.TabIndex            = 3;
     this.lblSupplier.TextAlign           = System.Drawing.ContentAlignment.TopLeft;
     this.lblSupplier.BackColor           = System.Drawing.Color.Transparent;
     this.lblSupplier.Enabled             = true;
     this.lblSupplier.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.lblSupplier.Cursor              = System.Windows.Forms.Cursors.Default;
     this.lblSupplier.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.lblSupplier.UseMnemonic         = true;
     this.lblSupplier.Visible             = true;
     this.lblSupplier.AutoSize            = true;
     this.lblSupplier.BorderStyle         = System.Windows.Forms.BorderStyle.None;
     this.lblSupplier.Name                = "lblSupplier";
     this.txtEdit.AutoSize                = false;
     this.txtEdit.TextAlign               = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtEdit.BackColor               = System.Drawing.Color.FromArgb(255, 255, 192);
     this.txtEdit.Size                    = new System.Drawing.Size(55, 16);
     this.txtEdit.Location                = new System.Drawing.Point(279, 138);
     this.txtEdit.TabIndex                = 0;
     this.txtEdit.Tag                     = "0";
     this.txtEdit.Text                    = "0";
     this.txtEdit.Visible                 = false;
     this.txtEdit.AcceptsReturn           = true;
     this.txtEdit.CausesValidation        = true;
     this.txtEdit.Enabled                 = true;
     this.txtEdit.ForeColor               = System.Drawing.SystemColors.WindowText;
     this.txtEdit.HideSelection           = true;
     this.txtEdit.ReadOnly                = false;
     this.txtEdit.MaxLength               = 0;
     this.txtEdit.Cursor                  = System.Windows.Forms.Cursors.IBeam;
     this.txtEdit.Multiline               = false;
     this.txtEdit.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.txtEdit.ScrollBars              = System.Windows.Forms.ScrollBars.None;
     this.txtEdit.TabStop                 = true;
     this.txtEdit.BorderStyle             = System.Windows.Forms.BorderStyle.None;
     this.txtEdit.Name                    = "txtEdit";
     //gridItem.OcxState = CType(resources.GetObject("gridItem.OcxState"), System.Windows.Forms.AxHost.State)
     this.gridItem.Size          = new System.Drawing.Size(685, 277);
     this.gridItem.Location      = new System.Drawing.Point(3, 81);
     this.gridItem.TabIndex      = 1;
     this.gridItem.Name          = "gridItem";
     this.lblReturns.BackColor   = System.Drawing.Color.Red;
     this.lblReturns.Text        = "PURCHASES";
     this.lblReturns.Font        = new System.Drawing.Font("Arial", 24f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.lblReturns.ForeColor   = System.Drawing.SystemColors.WindowText;
     this.lblReturns.Size        = new System.Drawing.Size(208, 34);
     this.lblReturns.Location    = new System.Drawing.Point(9, 453);
     this.lblReturns.TabIndex    = 9;
     this.lblReturns.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.lblReturns.Enabled     = true;
     this.lblReturns.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblReturns.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblReturns.UseMnemonic = true;
     this.lblReturns.Visible     = true;
     this.lblReturns.AutoSize    = false;
     this.lblReturns.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.lblReturns.Name        = "lblReturns";
     this.Controls.Add(picButtons);
     this.Controls.Add(frmTotals);
     this.Controls.Add(Picture1);
     this.Controls.Add(txtEdit);
     this.Controls.Add(gridItem);
     this.Controls.Add(lblReturns);
     this.picButtons.Controls.Add(cmdBack);
     this.picButtons.Controls.Add(cmdNext);
     this.picButtons.Controls.Add(cmdDelete);
     this.picButtons.Controls.Add(cmdExit);
     this.frmTotals.Controls.Add(lblDepositExclusive);
     this.frmTotals.Controls.Add(_lbl_0);
     this.frmTotals.Controls.Add(_lbl_8);
     this.frmTotals.Controls.Add(lblQuantity);
     this.frmTotals.Controls.Add(_lbl_9);
     this.frmTotals.Controls.Add(lblDepositInclusive);
     this.Picture1.Controls.Add(lblSupplier);
     //Me.lbl.SetIndex(_lbl_0, CType(0, Short))
     //Me.lbl.SetIndex(_lbl_8, CType(8, Short))
     //Me.lbl.SetIndex(_lbl_9, CType(9, Short))
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.gridItem).EndInit();
     this.picButtons.ResumeLayout(false);
     this.frmTotals.ResumeLayout(false);
     this.Picture1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmBlockTest));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.PrintForm1 = new Microsoft.VisualBasic.PowerPacks.Printing.PrintForm(this);
			this.picTotal = new System.Windows.Forms.Panel();
			this.lblTotalOP = new System.Windows.Forms.Label();
			this.lblTotalLP = new System.Windows.Forms.Label();
			this.lblTotalO = new System.Windows.Forms.Label();
			this._lblTotal_17 = new System.Windows.Forms.Label();
			this.lblTotalL = new System.Windows.Forms.Label();
			this._lblTotal_16 = new System.Windows.Forms.Label();
			this.lblTotalH = new System.Windows.Forms.Label();
			this._lblTotal_15 = new System.Windows.Forms.Label();
			this.lblTotalG = new System.Windows.Forms.Label();
			this._lblTotal_14 = new System.Windows.Forms.Label();
			this._lblTotal_13 = new System.Windows.Forms.Label();
			this.lblTotalQ = new System.Windows.Forms.Label();
			this._lblTotal_12 = new System.Windows.Forms.Label();
			this.lblTotalF = new System.Windows.Forms.Label();
			this.lblP = new System.Windows.Forms.Label();
			this._lblTotal_11 = new System.Windows.Forms.Label();
			this._txtEdit_0 = new System.Windows.Forms.TextBox();
			this.frmTotals = new System.Windows.Forms.GroupBox();
			this.cmdLoadNext = new System.Windows.Forms.Button();
			this.txtR = new System.Windows.Forms.TextBox();
			this.txtZ = new System.Windows.Forms.TextBox();
			this.cmdTotal = new System.Windows.Forms.Button();
			this.txtReqGP = new System.Windows.Forms.TextBox();
			this.txtVAT = new System.Windows.Forms.TextBox();
			this.lblQuantity = new System.Windows.Forms.Label();
			this._lbl_8 = new System.Windows.Forms.Label();
			this.lblBrokenPack = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this.lblContentExclusive = new System.Windows.Forms.Label();
			this.lblContentInclusives = new System.Windows.Forms.Label();
			this.lblDepositExclusives = new System.Windows.Forms.Label();
			this.lblA = new System.Windows.Forms.Label();
			this.lblB = new System.Windows.Forms.Label();
			this.lblC = new System.Windows.Forms.Label();
			this._lblTotal_0 = new System.Windows.Forms.Label();
			this._lblTotal_1 = new System.Windows.Forms.Label();
			this._lblTotal_2 = new System.Windows.Forms.Label();
			this._lblTotal_3 = new System.Windows.Forms.Label();
			this._lblTotal_4 = new System.Windows.Forms.Label();
			this._lblTotal_5 = new System.Windows.Forms.Label();
			this.lblX = new System.Windows.Forms.Label();
			this.lblGP_Y = new System.Windows.Forms.Label();
			this.lblB_Z = new System.Windows.Forms.Label();
			this._lblTotal_6 = new System.Windows.Forms.Label();
			this._lblTotal_7 = new System.Windows.Forms.Label();
			this._lblTotal_8 = new System.Windows.Forms.Label();
			this._lblTotal_9 = new System.Windows.Forms.Label();
			this._lblTotal_10 = new System.Windows.Forms.Label();
			this._txtEdit_1 = new System.Windows.Forms.TextBox();
			this._txtEdit_2 = new System.Windows.Forms.TextBox();
			this.Picture2 = new System.Windows.Forms.Panel();
			this.cmdReg = new System.Windows.Forms.Button();
			this.cmdProc = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdExit = new System.Windows.Forms.Button();
			this.gridItem = new myDataGridView();
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblTotal = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.txtEdit = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.picTotal.SuspendLayout();
			this.frmTotals.SuspendLayout();
			this.Picture2.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.gridItem).BeginInit();
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblTotal, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtEdit, System.ComponentModel.ISupportInitialize).BeginInit()
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.Text = "4MEAT Block Tester";
			this.ClientSize = new System.Drawing.Size(1016, 707);
			this.Location = new System.Drawing.Point(4, 23);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
			this.Enabled = true;
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.Name = "frmBlockTest";
			this.picTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.picTotal.ForeColor = System.Drawing.SystemColors.WindowText;
			this.picTotal.Size = new System.Drawing.Size(997, 49);
			this.picTotal.Location = new System.Drawing.Point(8, 576);
			this.picTotal.TabIndex = 37;
			this.picTotal.Dock = System.Windows.Forms.DockStyle.None;
			this.picTotal.CausesValidation = true;
			this.picTotal.Enabled = true;
			this.picTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.picTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picTotal.TabStop = true;
			this.picTotal.Visible = true;
			this.picTotal.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.picTotal.Name = "picTotal";
			this.lblTotalOP.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalOP.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalOP.Text = "0.00";
			this.lblTotalOP.Size = new System.Drawing.Size(65, 16);
			this.lblTotalOP.Location = new System.Drawing.Point(928, 16);
			this.lblTotalOP.TabIndex = 54;
			this.lblTotalOP.Enabled = true;
			this.lblTotalOP.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalOP.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalOP.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalOP.UseMnemonic = true;
			this.lblTotalOP.Visible = true;
			this.lblTotalOP.AutoSize = false;
			this.lblTotalOP.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalOP.Name = "lblTotalOP";
			this.lblTotalLP.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalLP.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalLP.Text = "0.00";
			this.lblTotalLP.Size = new System.Drawing.Size(65, 16);
			this.lblTotalLP.Location = new System.Drawing.Point(728, 16);
			this.lblTotalLP.TabIndex = 53;
			this.lblTotalLP.Enabled = true;
			this.lblTotalLP.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalLP.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalLP.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalLP.UseMnemonic = true;
			this.lblTotalLP.Visible = true;
			this.lblTotalLP.AutoSize = false;
			this.lblTotalLP.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalLP.Name = "lblTotalLP";
			this.lblTotalO.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalO.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalO.Text = "0.00";
			this.lblTotalO.Size = new System.Drawing.Size(65, 16);
			this.lblTotalO.Location = new System.Drawing.Point(928, 0);
			this.lblTotalO.TabIndex = 51;
			this.lblTotalO.Enabled = true;
			this.lblTotalO.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalO.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalO.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalO.UseMnemonic = true;
			this.lblTotalO.Visible = true;
			this.lblTotalO.AutoSize = false;
			this.lblTotalO.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalO.Name = "lblTotalO";
			this._lblTotal_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_17.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_17.Text = "O :";
			this._lblTotal_17.Size = new System.Drawing.Size(35, 16);
			this._lblTotal_17.Location = new System.Drawing.Point(944, 32);
			this._lblTotal_17.TabIndex = 50;
			this._lblTotal_17.Enabled = true;
			this._lblTotal_17.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_17.UseMnemonic = true;
			this._lblTotal_17.Visible = true;
			this._lblTotal_17.AutoSize = false;
			this._lblTotal_17.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_17.Name = "_lblTotal_17";
			this.lblTotalL.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalL.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalL.Text = "0.00";
			this.lblTotalL.Size = new System.Drawing.Size(65, 16);
			this.lblTotalL.Location = new System.Drawing.Point(728, 0);
			this.lblTotalL.TabIndex = 49;
			this.lblTotalL.Enabled = true;
			this.lblTotalL.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalL.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalL.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalL.UseMnemonic = true;
			this.lblTotalL.Visible = true;
			this.lblTotalL.AutoSize = false;
			this.lblTotalL.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalL.Name = "lblTotalL";
			this._lblTotal_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_16.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_16.Text = "L :";
			this._lblTotal_16.Size = new System.Drawing.Size(35, 16);
			this._lblTotal_16.Location = new System.Drawing.Point(736, 32);
			this._lblTotal_16.TabIndex = 48;
			this._lblTotal_16.Enabled = true;
			this._lblTotal_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_16.UseMnemonic = true;
			this._lblTotal_16.Visible = true;
			this._lblTotal_16.AutoSize = false;
			this._lblTotal_16.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_16.Name = "_lblTotal_16";
			this.lblTotalH.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalH.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalH.Text = "0.00";
			this.lblTotalH.Size = new System.Drawing.Size(65, 16);
			this.lblTotalH.Location = new System.Drawing.Point(462, 0);
			this.lblTotalH.TabIndex = 47;
			this.lblTotalH.Enabled = true;
			this.lblTotalH.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalH.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalH.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalH.UseMnemonic = true;
			this.lblTotalH.Visible = true;
			this.lblTotalH.AutoSize = false;
			this.lblTotalH.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalH.Name = "lblTotalH";
			this._lblTotal_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_15.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_15.Text = "H :";
			this._lblTotal_15.Size = new System.Drawing.Size(27, 16);
			this._lblTotal_15.Location = new System.Drawing.Point(480, 16);
			this._lblTotal_15.TabIndex = 46;
			this._lblTotal_15.Enabled = true;
			this._lblTotal_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_15.UseMnemonic = true;
			this._lblTotal_15.Visible = true;
			this._lblTotal_15.AutoSize = false;
			this._lblTotal_15.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_15.Name = "_lblTotal_15";
			this.lblTotalG.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalG.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalG.Text = "0.00";
			this.lblTotalG.Size = new System.Drawing.Size(65, 16);
			this.lblTotalG.Location = new System.Drawing.Point(392, 0);
			this.lblTotalG.TabIndex = 45;
			this.lblTotalG.Enabled = true;
			this.lblTotalG.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalG.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalG.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalG.UseMnemonic = true;
			this.lblTotalG.Visible = true;
			this.lblTotalG.AutoSize = false;
			this.lblTotalG.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalG.Name = "lblTotalG";
			this._lblTotal_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_14.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_14.Text = "G :";
			this._lblTotal_14.Size = new System.Drawing.Size(27, 16);
			this._lblTotal_14.Location = new System.Drawing.Point(408, 16);
			this._lblTotal_14.TabIndex = 44;
			this._lblTotal_14.Enabled = true;
			this._lblTotal_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_14.UseMnemonic = true;
			this._lblTotal_14.Visible = true;
			this._lblTotal_14.AutoSize = false;
			this._lblTotal_14.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_14.Name = "_lblTotal_14";
			this._lblTotal_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_13.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_13.Text = "Q :";
			this._lblTotal_13.Size = new System.Drawing.Size(35, 16);
			this._lblTotal_13.Location = new System.Drawing.Point(536, 16);
			this._lblTotal_13.TabIndex = 43;
			this._lblTotal_13.Enabled = true;
			this._lblTotal_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_13.UseMnemonic = true;
			this._lblTotal_13.Visible = true;
			this._lblTotal_13.AutoSize = false;
			this._lblTotal_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_13.Name = "_lblTotal_13";
			this.lblTotalQ.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalQ.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalQ.Text = "0.00";
			this.lblTotalQ.Size = new System.Drawing.Size(65, 16);
			this.lblTotalQ.Location = new System.Drawing.Point(528, 0);
			this.lblTotalQ.TabIndex = 42;
			this.lblTotalQ.Enabled = true;
			this.lblTotalQ.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalQ.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalQ.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalQ.UseMnemonic = true;
			this.lblTotalQ.Visible = true;
			this.lblTotalQ.AutoSize = false;
			this.lblTotalQ.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalQ.Name = "lblTotalQ";
			this._lblTotal_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_12.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_12.Text = "F :";
			this._lblTotal_12.Size = new System.Drawing.Size(27, 16);
			this._lblTotal_12.Location = new System.Drawing.Point(344, 16);
			this._lblTotal_12.TabIndex = 41;
			this._lblTotal_12.Enabled = true;
			this._lblTotal_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_12.UseMnemonic = true;
			this._lblTotal_12.Visible = true;
			this._lblTotal_12.AutoSize = false;
			this._lblTotal_12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_12.Name = "_lblTotal_12";
			this.lblTotalF.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalF.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblTotalF.Text = "0.00";
			this.lblTotalF.Size = new System.Drawing.Size(65, 16);
			this.lblTotalF.Location = new System.Drawing.Point(323, 0);
			this.lblTotalF.TabIndex = 40;
			this.lblTotalF.Enabled = true;
			this.lblTotalF.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalF.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalF.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalF.UseMnemonic = true;
			this.lblTotalF.Visible = true;
			this.lblTotalF.AutoSize = false;
			this.lblTotalF.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalF.Name = "lblTotalF";
			this.lblP.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblP.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblP.Text = "0.00";
			this.lblP.Size = new System.Drawing.Size(65, 16);
			this.lblP.Location = new System.Drawing.Point(192, 0);
			this.lblP.TabIndex = 39;
			this.lblP.Enabled = true;
			this.lblP.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblP.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblP.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblP.UseMnemonic = true;
			this.lblP.Visible = true;
			this.lblP.AutoSize = false;
			this.lblP.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblP.Name = "lblP";
			this._lblTotal_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_11.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_11.Text = "Weight after Cutting & W.Loss - P :";
			this._lblTotal_11.Size = new System.Drawing.Size(187, 16);
			this._lblTotal_11.Location = new System.Drawing.Point(0, 0);
			this._lblTotal_11.TabIndex = 38;
			this._lblTotal_11.Enabled = true;
			this._lblTotal_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_11.UseMnemonic = true;
			this._lblTotal_11.Visible = true;
			this._lblTotal_11.AutoSize = false;
			this._lblTotal_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_11.Name = "_lblTotal_11";
			this._txtEdit_0.AutoSize = false;
			this._txtEdit_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtEdit_0.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this._txtEdit_0.Size = new System.Drawing.Size(55, 16);
			this._txtEdit_0.Location = new System.Drawing.Point(391, 546);
			this._txtEdit_0.MaxLength = 8;
			this._txtEdit_0.TabIndex = 36;
			this._txtEdit_0.Tag = "0";
			this._txtEdit_0.Text = "0";
			this._txtEdit_0.Visible = false;
			this._txtEdit_0.AcceptsReturn = true;
			this._txtEdit_0.CausesValidation = true;
			this._txtEdit_0.Enabled = true;
			this._txtEdit_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtEdit_0.HideSelection = true;
			this._txtEdit_0.ReadOnly = false;
			this._txtEdit_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtEdit_0.Multiline = false;
			this._txtEdit_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtEdit_0.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtEdit_0.TabStop = true;
			this._txtEdit_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._txtEdit_0.Name = "_txtEdit_0";
			this.frmTotals.Text = " Genral Information ";
			this.frmTotals.Size = new System.Drawing.Size(889, 137);
			this.frmTotals.Location = new System.Drawing.Point(3, 56);
			this.frmTotals.TabIndex = 10;
			this.frmTotals.BackColor = System.Drawing.SystemColors.Control;
			this.frmTotals.Enabled = true;
			this.frmTotals.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmTotals.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmTotals.Visible = true;
			this.frmTotals.Padding = new System.Windows.Forms.Padding(0);
			this.frmTotals.Name = "frmTotals";
			this.cmdLoadNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdLoadNext.Text = "Next";
			this.cmdLoadNext.Size = new System.Drawing.Size(99, 40);
			this.cmdLoadNext.Location = new System.Drawing.Point(776, 40);
			this.cmdLoadNext.TabIndex = 56;
			this.cmdLoadNext.TabStop = false;
			this.cmdLoadNext.Visible = false;
			this.cmdLoadNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdLoadNext.CausesValidation = true;
			this.cmdLoadNext.Enabled = true;
			this.cmdLoadNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdLoadNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdLoadNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdLoadNext.Name = "cmdLoadNext";
			this.txtR.AutoSize = false;
			this.txtR.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtR.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.txtR.Size = new System.Drawing.Size(234, 19);
			this.txtR.Location = new System.Drawing.Point(215, 36);
			this.txtR.TabIndex = 0;
			this.txtR.Text = "0.00";
			this.txtR.AcceptsReturn = true;
			this.txtR.CausesValidation = true;
			this.txtR.Enabled = true;
			this.txtR.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtR.HideSelection = true;
			this.txtR.ReadOnly = false;
			this.txtR.MaxLength = 0;
			this.txtR.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtR.Multiline = false;
			this.txtR.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtR.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtR.TabStop = true;
			this.txtR.Visible = true;
			this.txtR.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtR.Name = "txtR";
			this.txtZ.AutoSize = false;
			this.txtZ.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtZ.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.txtZ.Size = new System.Drawing.Size(234, 19);
			this.txtZ.Location = new System.Drawing.Point(215, 56);
			this.txtZ.TabIndex = 1;
			this.txtZ.Text = "0.00";
			this.txtZ.AcceptsReturn = true;
			this.txtZ.CausesValidation = true;
			this.txtZ.Enabled = true;
			this.txtZ.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtZ.HideSelection = true;
			this.txtZ.ReadOnly = false;
			this.txtZ.MaxLength = 0;
			this.txtZ.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtZ.Multiline = false;
			this.txtZ.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtZ.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtZ.TabStop = true;
			this.txtZ.Visible = true;
			this.txtZ.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtZ.Name = "txtZ";
			this.cmdTotal.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdTotal.Text = "Calculate";
			this.cmdTotal.Size = new System.Drawing.Size(99, 40);
			this.cmdTotal.Location = new System.Drawing.Point(776, 88);
			this.cmdTotal.TabIndex = 11;
			this.cmdTotal.TabStop = false;
			this.cmdTotal.BackColor = System.Drawing.SystemColors.Control;
			this.cmdTotal.CausesValidation = true;
			this.cmdTotal.Enabled = true;
			this.cmdTotal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdTotal.Name = "cmdTotal";
			this.txtReqGP.AutoSize = false;
			this.txtReqGP.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtReqGP.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.txtReqGP.Size = new System.Drawing.Size(120, 19);
			this.txtReqGP.Location = new System.Drawing.Point(616, 36);
			this.txtReqGP.TabIndex = 2;
			this.txtReqGP.Text = "0.00";
			this.txtReqGP.AcceptsReturn = true;
			this.txtReqGP.CausesValidation = true;
			this.txtReqGP.Enabled = true;
			this.txtReqGP.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtReqGP.HideSelection = true;
			this.txtReqGP.ReadOnly = false;
			this.txtReqGP.MaxLength = 0;
			this.txtReqGP.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtReqGP.Multiline = false;
			this.txtReqGP.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtReqGP.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtReqGP.TabStop = true;
			this.txtReqGP.Visible = true;
			this.txtReqGP.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtReqGP.Name = "txtReqGP";
			this.txtVAT.AutoSize = false;
			this.txtVAT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtVAT.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.txtVAT.Size = new System.Drawing.Size(120, 19);
			this.txtVAT.Location = new System.Drawing.Point(616, 92);
			this.txtVAT.TabIndex = 3;
			this.txtVAT.Text = "0.00";
			this.txtVAT.AcceptsReturn = true;
			this.txtVAT.CausesValidation = true;
			this.txtVAT.Enabled = true;
			this.txtVAT.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtVAT.HideSelection = true;
			this.txtVAT.ReadOnly = false;
			this.txtVAT.MaxLength = 0;
			this.txtVAT.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtVAT.Multiline = false;
			this.txtVAT.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtVAT.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtVAT.TabStop = true;
			this.txtVAT.Visible = true;
			this.txtVAT.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtVAT.Name = "txtVAT";
			this.lblQuantity.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblQuantity.Text = "lblQuantity";
			this.lblQuantity.Size = new System.Drawing.Size(64, 17);
			this.lblQuantity.Location = new System.Drawing.Point(673, 195);
			this.lblQuantity.TabIndex = 35;
			this.lblQuantity.BackColor = System.Drawing.SystemColors.Control;
			this.lblQuantity.Enabled = true;
			this.lblQuantity.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblQuantity.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblQuantity.UseMnemonic = true;
			this.lblQuantity.Visible = true;
			this.lblQuantity.AutoSize = false;
			this.lblQuantity.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblQuantity.Name = "lblQuantity";
			this._lbl_8.Text = "No Of Cases";
			this._lbl_8.Size = new System.Drawing.Size(60, 13);
			this._lbl_8.Location = new System.Drawing.Point(673, 183);
			this._lbl_8.TabIndex = 34;
			this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_8.BackColor = System.Drawing.Color.Transparent;
			this._lbl_8.Enabled = true;
			this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_8.UseMnemonic = true;
			this._lbl_8.Visible = true;
			this._lbl_8.AutoSize = true;
			this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_8.Name = "_lbl_8";
			this.lblBrokenPack.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblBrokenPack.Text = "lblQuantity";
			this.lblBrokenPack.Size = new System.Drawing.Size(64, 17);
			this.lblBrokenPack.Location = new System.Drawing.Point(745, 195);
			this.lblBrokenPack.TabIndex = 33;
			this.lblBrokenPack.BackColor = System.Drawing.SystemColors.Control;
			this.lblBrokenPack.Enabled = true;
			this.lblBrokenPack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblBrokenPack.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblBrokenPack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblBrokenPack.UseMnemonic = true;
			this.lblBrokenPack.Visible = true;
			this.lblBrokenPack.AutoSize = false;
			this.lblBrokenPack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblBrokenPack.Name = "lblBrokenPack";
			this._lbl_2.Text = "Broken Packs";
			this._lbl_2.Size = new System.Drawing.Size(67, 13);
			this._lbl_2.Location = new System.Drawing.Point(742, 183);
			this._lbl_2.TabIndex = 32;
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = true;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this.lblContentExclusive.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentExclusive.BackColor = System.Drawing.Color.FromArgb(128, 128, 255);
			this.lblContentExclusive.Text = "person name";
			this.lblContentExclusive.Size = new System.Drawing.Size(234, 16);
			this.lblContentExclusive.Location = new System.Drawing.Point(215, 20);
			this.lblContentExclusive.TabIndex = 31;
			this.lblContentExclusive.Enabled = true;
			this.lblContentExclusive.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentExclusive.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentExclusive.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentExclusive.UseMnemonic = true;
			this.lblContentExclusive.Visible = true;
			this.lblContentExclusive.AutoSize = false;
			this.lblContentExclusive.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentExclusive.Name = "lblContentExclusive";
			this.lblContentInclusives.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentInclusives.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblContentInclusives.Text = "0.00";
			this.lblContentInclusives.Size = new System.Drawing.Size(233, 16);
			this.lblContentInclusives.Location = new System.Drawing.Point(840, 32);
			this.lblContentInclusives.TabIndex = 30;
			this.lblContentInclusives.Visible = false;
			this.lblContentInclusives.Enabled = true;
			this.lblContentInclusives.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentInclusives.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentInclusives.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentInclusives.UseMnemonic = true;
			this.lblContentInclusives.AutoSize = false;
			this.lblContentInclusives.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentInclusives.Name = "lblContentInclusives";
			this.lblDepositExclusives.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositExclusives.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblDepositExclusives.Text = "0.00";
			this.lblDepositExclusives.Size = new System.Drawing.Size(233, 16);
			this.lblDepositExclusives.Location = new System.Drawing.Point(840, 16);
			this.lblDepositExclusives.TabIndex = 29;
			this.lblDepositExclusives.Visible = false;
			this.lblDepositExclusives.Enabled = true;
			this.lblDepositExclusives.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositExclusives.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositExclusives.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositExclusives.UseMnemonic = true;
			this.lblDepositExclusives.AutoSize = false;
			this.lblDepositExclusives.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositExclusives.Name = "lblDepositExclusives";
			this.lblA.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblA.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblA.Text = "0.00";
			this.lblA.Size = new System.Drawing.Size(234, 16);
			this.lblA.Location = new System.Drawing.Point(215, 74);
			this.lblA.TabIndex = 28;
			this.lblA.Enabled = true;
			this.lblA.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblA.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblA.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblA.UseMnemonic = true;
			this.lblA.Visible = true;
			this.lblA.AutoSize = false;
			this.lblA.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblA.Name = "lblA";
			this.lblB.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblB.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblB.Text = "0.00";
			this.lblB.Size = new System.Drawing.Size(234, 16);
			this.lblB.Location = new System.Drawing.Point(215, 92);
			this.lblB.TabIndex = 27;
			this.lblB.Enabled = true;
			this.lblB.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblB.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblB.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblB.UseMnemonic = true;
			this.lblB.Visible = true;
			this.lblB.AutoSize = false;
			this.lblB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblB.Name = "lblB";
			this.lblC.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblC.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblC.Text = "0.00";
			this.lblC.Size = new System.Drawing.Size(234, 16);
			this.lblC.Location = new System.Drawing.Point(215, 110);
			this.lblC.TabIndex = 26;
			this.lblC.Enabled = true;
			this.lblC.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblC.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblC.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblC.UseMnemonic = true;
			this.lblC.Visible = true;
			this.lblC.AutoSize = false;
			this.lblC.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblC.Name = "lblC";
			this._lblTotal_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_0.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_0.Text = "Person Cutting :";
			this._lblTotal_0.Size = new System.Drawing.Size(203, 16);
			this._lblTotal_0.Location = new System.Drawing.Point(0, 20);
			this._lblTotal_0.TabIndex = 25;
			this._lblTotal_0.Enabled = true;
			this._lblTotal_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_0.UseMnemonic = true;
			this._lblTotal_0.Visible = true;
			this._lblTotal_0.AutoSize = false;
			this._lblTotal_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_0.Name = "_lblTotal_0";
			this._lblTotal_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_1.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_1.Text = "Price Per Kg :";
			this._lblTotal_1.Size = new System.Drawing.Size(203, 16);
			this._lblTotal_1.Location = new System.Drawing.Point(2, 38);
			this._lblTotal_1.TabIndex = 24;
			this._lblTotal_1.Enabled = true;
			this._lblTotal_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_1.UseMnemonic = true;
			this._lblTotal_1.Visible = true;
			this._lblTotal_1.AutoSize = false;
			this._lblTotal_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_1.Name = "_lblTotal_1";
			this._lblTotal_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_2.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_2.Text = "Weight of Carcass :";
			this._lblTotal_2.Size = new System.Drawing.Size(203, 16);
			this._lblTotal_2.Location = new System.Drawing.Point(2, 56);
			this._lblTotal_2.TabIndex = 23;
			this._lblTotal_2.Enabled = true;
			this._lblTotal_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_2.UseMnemonic = true;
			this._lblTotal_2.Visible = true;
			this._lblTotal_2.AutoSize = false;
			this._lblTotal_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_2.Name = "_lblTotal_2";
			this._lblTotal_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_3.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_3.Text = "Cost of Carcass :";
			this._lblTotal_3.Size = new System.Drawing.Size(203, 16);
			this._lblTotal_3.Location = new System.Drawing.Point(2, 74);
			this._lblTotal_3.TabIndex = 22;
			this._lblTotal_3.Enabled = true;
			this._lblTotal_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_3.UseMnemonic = true;
			this._lblTotal_3.Visible = true;
			this._lblTotal_3.AutoSize = false;
			this._lblTotal_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_3.Name = "_lblTotal_3";
			this._lblTotal_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_4.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_4.Text = "Weight Loss & Cutting Loss :";
			this._lblTotal_4.Size = new System.Drawing.Size(203, 16);
			this._lblTotal_4.Location = new System.Drawing.Point(2, 92);
			this._lblTotal_4.TabIndex = 21;
			this._lblTotal_4.Enabled = true;
			this._lblTotal_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_4.UseMnemonic = true;
			this._lblTotal_4.Visible = true;
			this._lblTotal_4.AutoSize = false;
			this._lblTotal_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_4.Name = "_lblTotal_4";
			this._lblTotal_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_5.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_5.Text = "Effective Price per Kg after loss :";
			this._lblTotal_5.Size = new System.Drawing.Size(203, 16);
			this._lblTotal_5.Location = new System.Drawing.Point(2, 110);
			this._lblTotal_5.TabIndex = 20;
			this._lblTotal_5.Enabled = true;
			this._lblTotal_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_5.UseMnemonic = true;
			this._lblTotal_5.Visible = true;
			this._lblTotal_5.AutoSize = false;
			this._lblTotal_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_5.Name = "_lblTotal_5";
			this.lblX.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblX.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblX.Text = "0.00";
			this.lblX.Size = new System.Drawing.Size(120, 16);
			this.lblX.Location = new System.Drawing.Point(616, 110);
			this.lblX.TabIndex = 19;
			this.lblX.Enabled = true;
			this.lblX.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblX.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblX.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblX.UseMnemonic = true;
			this.lblX.Visible = true;
			this.lblX.AutoSize = false;
			this.lblX.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblX.Name = "lblX";
			this.lblGP_Y.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblGP_Y.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblGP_Y.Text = "0.00";
			this.lblGP_Y.Size = new System.Drawing.Size(120, 16);
			this.lblGP_Y.Location = new System.Drawing.Point(616, 56);
			this.lblGP_Y.TabIndex = 18;
			this.lblGP_Y.Enabled = true;
			this.lblGP_Y.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblGP_Y.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblGP_Y.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblGP_Y.UseMnemonic = true;
			this.lblGP_Y.Visible = true;
			this.lblGP_Y.AutoSize = false;
			this.lblGP_Y.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblGP_Y.Name = "lblGP_Y";
			this.lblB_Z.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblB_Z.BackColor = System.Drawing.Color.FromArgb(192, 255, 192);
			this.lblB_Z.Text = "0.00";
			this.lblB_Z.Size = new System.Drawing.Size(120, 16);
			this.lblB_Z.Location = new System.Drawing.Point(616, 74);
			this.lblB_Z.TabIndex = 17;
			this.lblB_Z.Enabled = true;
			this.lblB_Z.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblB_Z.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblB_Z.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblB_Z.UseMnemonic = true;
			this.lblB_Z.Visible = true;
			this.lblB_Z.AutoSize = false;
			this.lblB_Z.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblB_Z.Name = "lblB_Z";
			this._lblTotal_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_6.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_6.Text = "X - VAT+1 :";
			this._lblTotal_6.Size = new System.Drawing.Size(133, 16);
			this._lblTotal_6.Location = new System.Drawing.Point(472, 110);
			this._lblTotal_6.TabIndex = 16;
			this._lblTotal_6.Enabled = true;
			this._lblTotal_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_6.UseMnemonic = true;
			this._lblTotal_6.Visible = true;
			this._lblTotal_6.AutoSize = false;
			this._lblTotal_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_6.Name = "_lblTotal_6";
			this._lblTotal_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_7.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_7.Text = "VAT :";
			this._lblTotal_7.Size = new System.Drawing.Size(133, 16);
			this._lblTotal_7.Location = new System.Drawing.Point(472, 92);
			this._lblTotal_7.TabIndex = 15;
			this._lblTotal_7.Enabled = true;
			this._lblTotal_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_7.UseMnemonic = true;
			this._lblTotal_7.Visible = true;
			this._lblTotal_7.AutoSize = false;
			this._lblTotal_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_7.Name = "_lblTotal_7";
			this._lblTotal_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_8.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_8.Text = "B/Z :";
			this._lblTotal_8.Size = new System.Drawing.Size(133, 16);
			this._lblTotal_8.Location = new System.Drawing.Point(472, 74);
			this._lblTotal_8.TabIndex = 14;
			this._lblTotal_8.Enabled = true;
			this._lblTotal_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_8.UseMnemonic = true;
			this._lblTotal_8.Visible = true;
			this._lblTotal_8.AutoSize = false;
			this._lblTotal_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_8.Name = "_lblTotal_8";
			this._lblTotal_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_9.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_9.Text = "(1 - GP%) :";
			this._lblTotal_9.Size = new System.Drawing.Size(133, 16);
			this._lblTotal_9.Location = new System.Drawing.Point(472, 56);
			this._lblTotal_9.TabIndex = 13;
			this._lblTotal_9.Enabled = true;
			this._lblTotal_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_9.UseMnemonic = true;
			this._lblTotal_9.Visible = true;
			this._lblTotal_9.AutoSize = false;
			this._lblTotal_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_9.Name = "_lblTotal_9";
			this._lblTotal_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblTotal_10.BackColor = System.Drawing.Color.Transparent;
			this._lblTotal_10.Text = "Required GP :";
			this._lblTotal_10.Size = new System.Drawing.Size(133, 16);
			this._lblTotal_10.Location = new System.Drawing.Point(472, 38);
			this._lblTotal_10.TabIndex = 12;
			this._lblTotal_10.Enabled = true;
			this._lblTotal_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblTotal_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblTotal_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblTotal_10.UseMnemonic = true;
			this._lblTotal_10.Visible = true;
			this._lblTotal_10.AutoSize = false;
			this._lblTotal_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblTotal_10.Name = "_lblTotal_10";
			this._txtEdit_1.AutoSize = false;
			this._txtEdit_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtEdit_1.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this._txtEdit_1.Size = new System.Drawing.Size(55, 16);
			this._txtEdit_1.Location = new System.Drawing.Point(350, 583);
			this._txtEdit_1.MaxLength = 10;
			this._txtEdit_1.TabIndex = 9;
			this._txtEdit_1.Tag = "0";
			this._txtEdit_1.Text = "0";
			this._txtEdit_1.Visible = false;
			this._txtEdit_1.AcceptsReturn = true;
			this._txtEdit_1.CausesValidation = true;
			this._txtEdit_1.Enabled = true;
			this._txtEdit_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtEdit_1.HideSelection = true;
			this._txtEdit_1.ReadOnly = false;
			this._txtEdit_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtEdit_1.Multiline = false;
			this._txtEdit_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtEdit_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtEdit_1.TabStop = true;
			this._txtEdit_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._txtEdit_1.Name = "_txtEdit_1";
			this._txtEdit_2.AutoSize = false;
			this._txtEdit_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtEdit_2.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this._txtEdit_2.Size = new System.Drawing.Size(55, 16);
			this._txtEdit_2.Location = new System.Drawing.Point(422, 583);
			this._txtEdit_2.MaxLength = 10;
			this._txtEdit_2.TabIndex = 8;
			this._txtEdit_2.Tag = "0";
			this._txtEdit_2.Text = "0";
			this._txtEdit_2.Visible = false;
			this._txtEdit_2.AcceptsReturn = true;
			this._txtEdit_2.CausesValidation = true;
			this._txtEdit_2.Enabled = true;
			this._txtEdit_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtEdit_2.HideSelection = true;
			this._txtEdit_2.ReadOnly = false;
			this._txtEdit_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtEdit_2.Multiline = false;
			this._txtEdit_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtEdit_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtEdit_2.TabStop = true;
			this._txtEdit_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._txtEdit_2.Name = "_txtEdit_2";
			this.Picture2.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture2.BackColor = System.Drawing.Color.Blue;
			this.Picture2.Size = new System.Drawing.Size(1016, 49);
			this.Picture2.Location = new System.Drawing.Point(0, 0);
			this.Picture2.TabIndex = 5;
			this.Picture2.TabStop = false;
			this.Picture2.CausesValidation = true;
			this.Picture2.Enabled = true;
			this.Picture2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture2.Visible = true;
			this.Picture2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture2.Name = "Picture2";
			this.cmdReg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdReg.Text = "&Register 4MEAT";
			this.cmdReg.Size = new System.Drawing.Size(115, 40);
			this.cmdReg.Location = new System.Drawing.Point(352, 3);
			this.cmdReg.TabIndex = 55;
			this.cmdReg.TabStop = false;
			this.cmdReg.Visible = false;
			this.cmdReg.BackColor = System.Drawing.SystemColors.Control;
			this.cmdReg.CausesValidation = true;
			this.cmdReg.Enabled = true;
			this.cmdReg.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdReg.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdReg.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdReg.Name = "cmdReg";
			this.cmdProc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdProc.Text = "&Process";
			this.cmdProc.Size = new System.Drawing.Size(67, 40);
			this.cmdProc.Location = new System.Drawing.Point(168, 3);
			this.cmdProc.TabIndex = 52;
			this.cmdProc.TabStop = false;
			this.cmdProc.BackColor = System.Drawing.SystemColors.Control;
			this.cmdProc.CausesValidation = true;
			this.cmdProc.Enabled = true;
			this.cmdProc.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdProc.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdProc.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdProc.Name = "cmdProc";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "P&rint";
			this.cmdPrint.Size = new System.Drawing.Size(67, 40);
			this.cmdPrint.Location = new System.Drawing.Point(88, 3);
			this.cmdPrint.TabIndex = 7;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(67, 40);
			this.cmdExit.Location = new System.Drawing.Point(7, 3);
			this.cmdExit.TabIndex = 6;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			//gridItem.OcxState = CType(resources.GetObject("gridItem.OcxState"), System.Windows.Forms.AxHost.State)
			this.gridItem.Size = new System.Drawing.Size(901, 359);
			this.gridItem.Location = new System.Drawing.Point(3, 200);
			this.gridItem.TabIndex = 4;
			this.gridItem.Name = "gridItem";
			this.Controls.Add(picTotal);
			this.Controls.Add(_txtEdit_0);
			this.Controls.Add(frmTotals);
			this.Controls.Add(_txtEdit_1);
			this.Controls.Add(_txtEdit_2);
			this.Controls.Add(Picture2);
			this.Controls.Add(gridItem);
			this.picTotal.Controls.Add(lblTotalOP);
			this.picTotal.Controls.Add(lblTotalLP);
			this.picTotal.Controls.Add(lblTotalO);
			this.picTotal.Controls.Add(_lblTotal_17);
			this.picTotal.Controls.Add(lblTotalL);
			this.picTotal.Controls.Add(_lblTotal_16);
			this.picTotal.Controls.Add(lblTotalH);
			this.picTotal.Controls.Add(_lblTotal_15);
			this.picTotal.Controls.Add(lblTotalG);
			this.picTotal.Controls.Add(_lblTotal_14);
			this.picTotal.Controls.Add(_lblTotal_13);
			this.picTotal.Controls.Add(lblTotalQ);
			this.picTotal.Controls.Add(_lblTotal_12);
			this.picTotal.Controls.Add(lblTotalF);
			this.picTotal.Controls.Add(lblP);
			this.picTotal.Controls.Add(_lblTotal_11);
			this.frmTotals.Controls.Add(cmdLoadNext);
			this.frmTotals.Controls.Add(txtR);
			this.frmTotals.Controls.Add(txtZ);
			this.frmTotals.Controls.Add(cmdTotal);
			this.frmTotals.Controls.Add(txtReqGP);
			this.frmTotals.Controls.Add(txtVAT);
			this.frmTotals.Controls.Add(lblQuantity);
			this.frmTotals.Controls.Add(_lbl_8);
			this.frmTotals.Controls.Add(lblBrokenPack);
			this.frmTotals.Controls.Add(_lbl_2);
			this.frmTotals.Controls.Add(lblContentExclusive);
			this.frmTotals.Controls.Add(lblContentInclusives);
			this.frmTotals.Controls.Add(lblDepositExclusives);
			this.frmTotals.Controls.Add(lblA);
			this.frmTotals.Controls.Add(lblB);
			this.frmTotals.Controls.Add(lblC);
			this.frmTotals.Controls.Add(_lblTotal_0);
			this.frmTotals.Controls.Add(_lblTotal_1);
			this.frmTotals.Controls.Add(_lblTotal_2);
			this.frmTotals.Controls.Add(_lblTotal_3);
			this.frmTotals.Controls.Add(_lblTotal_4);
			this.frmTotals.Controls.Add(_lblTotal_5);
			this.frmTotals.Controls.Add(lblX);
			this.frmTotals.Controls.Add(lblGP_Y);
			this.frmTotals.Controls.Add(lblB_Z);
			this.frmTotals.Controls.Add(_lblTotal_6);
			this.frmTotals.Controls.Add(_lblTotal_7);
			this.frmTotals.Controls.Add(_lblTotal_8);
			this.frmTotals.Controls.Add(_lblTotal_9);
			this.frmTotals.Controls.Add(_lblTotal_10);
			this.Picture2.Controls.Add(cmdReg);
			this.Picture2.Controls.Add(cmdProc);
			this.Picture2.Controls.Add(cmdPrint);
			this.Picture2.Controls.Add(cmdExit);
			//Me.lbl.SetIndex(_lbl_8, CType(8, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lblTotal.SetIndex(_lblTotal_17, CType(17, Short))
			//Me.lblTotal.SetIndex(_lblTotal_16, CType(16, Short))
			//Me.lblTotal.SetIndex(_lblTotal_15, CType(15, Short))
			//Me.lblTotal.SetIndex(_lblTotal_14, CType(14, Short))
			//Me.lblTotal.SetIndex(_lblTotal_13, CType(13, Short))
			//Me.lblTotal.SetIndex(_lblTotal_12, CType(12, Short))
			//Me.lblTotal.SetIndex(_lblTotal_11, CType(11, Short))
			//Me.lblTotal.SetIndex(_lblTotal_0, CType(0, Short))
			//Me.lblTotal.SetIndex(_lblTotal_1, CType(1, Short))
			//Me.lblTotal.SetIndex(_lblTotal_2, CType(2, Short))
			//Me.lblTotal.SetIndex(_lblTotal_3, CType(3, Short))
			//Me.lblTotal.SetIndex(_lblTotal_4, CType(4, Short))
			//Me.lblTotal.SetIndex(_lblTotal_5, CType(5, Short))
			//Me.lblTotal.SetIndex(_lblTotal_6, CType(6, Short))
			//Me.lblTotal.SetIndex(_lblTotal_7, CType(7, Short))
			//Me.lblTotal.SetIndex(_lblTotal_8, CType(8, Short))
			//Me.lblTotal.SetIndex(_lblTotal_9, CType(9, Short))
			//Me.lblTotal.SetIndex(_lblTotal_10, CType(10, Short))
			//Me.txtEdit.SetIndex(_txtEdit_0, CType(0, Short))
			//Me.txtEdit.SetIndex(_txtEdit_1, CType(1, Short))
			//Me.txtEdit.SetIndex(_txtEdit_2, CType(2, Short))
			//CType(Me.txtEdit, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblTotal, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.gridItem).EndInit();
			this.picTotal.ResumeLayout(false);
			this.frmTotals.ResumeLayout(false);
			this.Picture2.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTakeLIQ));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.tmrGetWei  = new System.Windows.Forms.Timer(components);
     this.Picture1   = new System.Windows.Forms.Panel();
     this.cmdReg     = new System.Windows.Forms.Button();
     this.Label4     = new System.Windows.Forms.Label();
     this.Timer1     = new System.Windows.Forms.Timer(components);
     this.picBC      = new System.Windows.Forms.PictureBox();
     this.chkPic     = new System.Windows.Forms.CheckBox();
     this.picButtons = new System.Windows.Forms.Panel();
     this.cmdDiff    = new System.Windows.Forms.Button();
     this.cmdClose   = new System.Windows.Forms.Button();
     this.cmdsearch  = new System.Windows.Forms.Button();
     this.txtqty     = new System.Windows.Forms.TextBox();
     this.txtdesc    = new System.Windows.Forms.TextBox();
     this.txtcode    = new System.Windows.Forms.TextBox();
     this.DataGrid1  = new myDataGridView();
     this.imgBC      = new System.Windows.Forms.PictureBox();
     this.Label3     = new System.Windows.Forms.Label();
     this.Label2     = new System.Windows.Forms.Label();
     this.Label1     = new System.Windows.Forms.Label();
     this.Picture1.SuspendLayout();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataGrid1).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Text                        = "StockTake";
     this.ClientSize                  = new System.Drawing.Size(567, 391);
     this.Location                    = new System.Drawing.Point(3, 29);
     this.Icon                        = (System.Drawing.Icon)resources.GetObject("frmStockTakeLIQ.Icon");
     this.KeyPreview                  = true;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.ControlBox                  = true;
     this.Enabled                     = true;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar               = true;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmStockTakeLIQ";
     this.tmrGetWei.Enabled           = false;
     this.tmrGetWei.Interval          = 100;
     this.Picture1.BackColor          = System.Drawing.Color.FromArgb(255, 192, 192);
     this.Picture1.ForeColor          = System.Drawing.SystemColors.WindowText;
     this.Picture1.Size               = new System.Drawing.Size(553, 153);
     this.Picture1.Location           = new System.Drawing.Point(8, 432);
     this.Picture1.TabIndex           = 13;
     this.Picture1.Dock               = System.Windows.Forms.DockStyle.None;
     this.Picture1.CausesValidation   = true;
     this.Picture1.Enabled            = true;
     this.Picture1.Cursor             = System.Windows.Forms.Cursors.Default;
     this.Picture1.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.Picture1.TabStop            = true;
     this.Picture1.Visible            = true;
     this.Picture1.BorderStyle        = System.Windows.Forms.BorderStyle.FixedSingle;
     this.Picture1.Name               = "Picture1";
     this.cmdReg.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdReg.Text                 = "&Register 4LIQUOR";
     this.cmdReg.Font                 = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdReg.Size                 = new System.Drawing.Size(115, 40);
     this.cmdReg.Location             = new System.Drawing.Point(208, 88);
     this.cmdReg.TabIndex             = 15;
     this.cmdReg.TabStop              = false;
     this.cmdReg.Visible              = false;
     this.cmdReg.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdReg.CausesValidation     = true;
     this.cmdReg.Enabled              = true;
     this.cmdReg.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdReg.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdReg.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdReg.Name                 = "cmdReg";
     this.Label4.TextAlign            = System.Drawing.ContentAlignment.TopCenter;
     this.Label4.Font                 = new System.Drawing.Font("Arial", 15.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
     this.Label4.Size                 = new System.Drawing.Size(545, 73);
     this.Label4.Location             = new System.Drawing.Point(0, 8);
     this.Label4.TabIndex             = 14;
     this.Label4.BackColor            = System.Drawing.Color.Transparent;
     this.Label4.Enabled              = true;
     this.Label4.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.Label4.Cursor               = System.Windows.Forms.Cursors.Default;
     this.Label4.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.Label4.UseMnemonic          = true;
     this.Label4.Visible              = true;
     this.Label4.AutoSize             = false;
     this.Label4.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.Label4.Name                 = "Label4";
     this.Timer1.Enabled              = false;
     this.Timer1.Interval             = 100;
     this.picBC.Size                  = new System.Drawing.Size(265, 300);
     this.picBC.Location              = new System.Drawing.Point(576, 472);
     this.picBC.TabIndex              = 11;
     this.picBC.Visible               = false;
     this.picBC.Dock                  = System.Windows.Forms.DockStyle.None;
     this.picBC.BackColor             = System.Drawing.SystemColors.Control;
     this.picBC.CausesValidation      = true;
     this.picBC.Enabled               = true;
     this.picBC.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.picBC.Cursor                = System.Windows.Forms.Cursors.Default;
     this.picBC.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.picBC.TabStop               = true;
     this.picBC.SizeMode              = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
     this.picBC.BorderStyle           = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picBC.Name                  = "picBC";
     this.chkPic.Text                 = "Show Pictures";
     this.chkPic.Size                 = new System.Drawing.Size(89, 17);
     this.chkPic.Location             = new System.Drawing.Point(472, 440);
     this.chkPic.TabIndex             = 10;
     this.chkPic.CheckAlign           = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkPic.FlatStyle            = System.Windows.Forms.FlatStyle.Standard;
     this.chkPic.BackColor            = System.Drawing.SystemColors.Control;
     this.chkPic.CausesValidation     = true;
     this.chkPic.Enabled              = true;
     this.chkPic.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.chkPic.Cursor               = System.Windows.Forms.Cursors.Default;
     this.chkPic.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.chkPic.Appearance           = System.Windows.Forms.Appearance.Normal;
     this.chkPic.TabStop              = true;
     this.chkPic.CheckState           = System.Windows.Forms.CheckState.Unchecked;
     this.chkPic.Visible              = true;
     this.chkPic.Name                 = "chkPic";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.Size             = new System.Drawing.Size(567, 38);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 7;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Name             = "picButtons";
     this.cmdDiff.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdDiff.Text                = "Show Difference";
     this.cmdDiff.Size                = new System.Drawing.Size(97, 29);
     this.cmdDiff.Location            = new System.Drawing.Point(360, 2);
     this.cmdDiff.TabIndex            = 12;
     this.cmdDiff.TabStop             = false;
     this.cmdDiff.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdDiff.CausesValidation    = true;
     this.cmdDiff.Enabled             = true;
     this.cmdDiff.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdDiff.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdDiff.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdDiff.Name                = "cmdDiff";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "Save and E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(89, 29);
     this.cmdClose.Location           = new System.Drawing.Point(472, 2);
     this.cmdClose.TabIndex           = 8;
     this.cmdClose.TabStop            = false;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.Name               = "cmdClose";
     this.cmdsearch.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdsearch.Text              = "&Search";
     this.AcceptButton                = this.cmdsearch;
     this.cmdsearch.Font              = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdsearch.Size              = new System.Drawing.Size(89, 33);
     this.cmdsearch.Location          = new System.Drawing.Point(8, 352);
     this.cmdsearch.TabIndex          = 3;
     this.cmdsearch.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdsearch.CausesValidation  = true;
     this.cmdsearch.Enabled           = true;
     this.cmdsearch.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdsearch.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdsearch.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdsearch.TabStop           = true;
     this.cmdsearch.Name              = "cmdsearch";
     this.txtqty.AutoSize             = false;
     this.txtqty.Size                 = new System.Drawing.Size(89, 25);
     this.txtqty.Location             = new System.Drawing.Point(472, 48);
     this.txtqty.TabIndex             = 2;
     this.txtqty.AcceptsReturn        = true;
     this.txtqty.TextAlign            = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtqty.BackColor            = System.Drawing.SystemColors.Window;
     this.txtqty.CausesValidation     = true;
     this.txtqty.Enabled              = true;
     this.txtqty.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtqty.HideSelection        = true;
     this.txtqty.ReadOnly             = false;
     this.txtqty.MaxLength            = 0;
     this.txtqty.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtqty.Multiline            = false;
     this.txtqty.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtqty.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtqty.TabStop              = true;
     this.txtqty.Visible              = true;
     this.txtqty.BorderStyle          = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtqty.Name                 = "txtqty";
     this.txtdesc.AutoSize            = false;
     this.txtdesc.Enabled             = false;
     this.txtdesc.Size                = new System.Drawing.Size(153, 25);
     this.txtdesc.Location            = new System.Drawing.Point(272, 48);
     this.txtdesc.TabIndex            = 1;
     this.txtdesc.AcceptsReturn       = true;
     this.txtdesc.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtdesc.BackColor           = System.Drawing.SystemColors.Window;
     this.txtdesc.CausesValidation    = true;
     this.txtdesc.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtdesc.HideSelection       = true;
     this.txtdesc.ReadOnly            = false;
     this.txtdesc.MaxLength           = 0;
     this.txtdesc.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtdesc.Multiline           = false;
     this.txtdesc.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtdesc.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtdesc.TabStop             = true;
     this.txtdesc.Visible             = true;
     this.txtdesc.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtdesc.Name                = "txtdesc";
     this.txtcode.AutoSize            = false;
     this.txtcode.Size                = new System.Drawing.Size(89, 25);
     this.txtcode.Location            = new System.Drawing.Point(88, 48);
     this.txtcode.TabIndex            = 0;
     this.txtcode.AcceptsReturn       = true;
     this.txtcode.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtcode.BackColor           = System.Drawing.SystemColors.Window;
     this.txtcode.CausesValidation    = true;
     this.txtcode.Enabled             = true;
     this.txtcode.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtcode.HideSelection       = true;
     this.txtcode.ReadOnly            = false;
     this.txtcode.MaxLength           = 0;
     this.txtcode.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtcode.Multiline           = false;
     this.txtcode.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtcode.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtcode.TabStop             = true;
     this.txtcode.Visible             = true;
     this.txtcode.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtcode.Name                = "txtcode";
     //DataGrid1.OcxState = CType(resources.GetObject("DataGrid1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataGrid1.Size     = new System.Drawing.Size(553, 257);
     this.DataGrid1.Location = new System.Drawing.Point(8, 88);
     this.DataGrid1.TabIndex = 9;
     this.DataGrid1.Name     = "DataGrid1";
     this.imgBC.Size         = new System.Drawing.Size(265, 300);
     this.imgBC.Location     = new System.Drawing.Point(568, 48);
     this.imgBC.SizeMode     = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.imgBC.Visible      = false;
     this.imgBC.Enabled      = true;
     this.imgBC.Cursor       = System.Windows.Forms.Cursors.Default;
     this.imgBC.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this.imgBC.Name         = "imgBC";
     this.Label3.Text        = "Qty";
     this.Label3.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.Label3.Size        = new System.Drawing.Size(33, 17);
     this.Label3.Location    = new System.Drawing.Point(432, 56);
     this.Label3.TabIndex    = 6;
     this.Label3.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label3.BackColor   = System.Drawing.SystemColors.Control;
     this.Label3.Enabled     = true;
     this.Label3.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label3.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label3.UseMnemonic = true;
     this.Label3.Visible     = true;
     this.Label3.AutoSize    = false;
     this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label3.Name        = "Label3";
     this.Label2.Text        = "Description";
     this.Label2.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.Label2.Size        = new System.Drawing.Size(81, 25);
     this.Label2.Location    = new System.Drawing.Point(184, 56);
     this.Label2.TabIndex    = 5;
     this.Label2.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor   = System.Drawing.SystemColors.Control;
     this.Label2.Enabled     = true;
     this.Label2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label2.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label2.UseMnemonic = true;
     this.Label2.Visible     = true;
     this.Label2.AutoSize    = false;
     this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label2.Name        = "Label2";
     this.Label1.Text        = "Barcode";
     this.Label1.Font        = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.Label1.Size        = new System.Drawing.Size(81, 25);
     this.Label1.Location    = new System.Drawing.Point(8, 56);
     this.Label1.TabIndex    = 4;
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.Enabled     = true;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic = true;
     this.Label1.Visible     = true;
     this.Label1.AutoSize    = false;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name        = "Label1";
     this.Controls.Add(Picture1);
     this.Controls.Add(picBC);
     this.Controls.Add(chkPic);
     this.Controls.Add(picButtons);
     this.Controls.Add(cmdsearch);
     this.Controls.Add(txtqty);
     this.Controls.Add(txtdesc);
     this.Controls.Add(txtcode);
     this.Controls.Add(DataGrid1);
     this.Controls.Add(imgBC);
     this.Controls.Add(Label3);
     this.Controls.Add(Label2);
     this.Controls.Add(Label1);
     this.Picture1.Controls.Add(cmdReg);
     this.Picture1.Controls.Add(Label4);
     this.picButtons.Controls.Add(cmdDiff);
     this.picButtons.Controls.Add(cmdClose);
     ((System.ComponentModel.ISupportInitialize) this.DataGrid1).EndInit();
     this.Picture1.ResumeLayout(false);
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockfromFile));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.Frame2 = new System.Windows.Forms.GroupBox();
			this.txtFile = new System.Windows.Forms.TextBox();
			this.prgStockItem = new System.Windows.Forms.ProgressBar();
			this.Label1 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdNext = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this.CommonDialog1Open = new System.Windows.Forms.OpenFileDialog();
			this.CommonDialog1Save = new System.Windows.Forms.SaveFileDialog();
			this.CommonDialog1Font = new System.Windows.Forms.FontDialog();
			this.CommonDialog1Color = new System.Windows.Forms.ColorDialog();
			this.CommonDialog1Print = new System.Windows.Forms.PrintDialog();
			this._frmMode_1 = new System.Windows.Forms.GroupBox();
			this.Picture1 = new System.Windows.Forms.PictureBox();
			this.txtName = new System.Windows.Forms.TextBox();
			this.txtReceipt = new System.Windows.Forms.TextBox();
			this.Frame1 = new System.Windows.Forms.GroupBox();
			this.txtQuantity = new System.Windows.Forms.TextBox();
			this.txtCost = new System.Windows.Forms.TextBox();
			this.cmbShrink = new myDataGridView();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this.cmbPricingGroup = new myDataGridView();
			this.cmbStockGroup = new myDataGridView();
			this.cmbDeposit = new myDataGridView();
			this.cmbSupplier = new myDataGridView();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			//Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Frame2.SuspendLayout();
			this.picButtons.SuspendLayout();
			this._frmMode_1.SuspendLayout();
			this.Frame1.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPricingGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbStockGroup).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbSupplier).BeginInit();
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Adding Stock Items";
			this.ClientSize = new System.Drawing.Size(528, 170);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockfromFile";
			this.Frame2.Size = new System.Drawing.Size(515, 99);
			this.Frame2.Location = new System.Drawing.Point(6, 62);
			this.Frame2.TabIndex = 24;
			this.Frame2.BackColor = System.Drawing.SystemColors.Control;
			this.Frame2.Enabled = true;
			this.Frame2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame2.Visible = true;
			this.Frame2.Padding = new System.Windows.Forms.Padding(0);
			this.Frame2.Name = "Frame2";
			this.txtFile.AutoSize = false;
			this.txtFile.Enabled = false;
			this.txtFile.Size = new System.Drawing.Size(403, 19);
			this.txtFile.Location = new System.Drawing.Point(104, 12);
			this.txtFile.TabIndex = 26;
			this.txtFile.AcceptsReturn = true;
			this.txtFile.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtFile.BackColor = System.Drawing.SystemColors.Window;
			this.txtFile.CausesValidation = true;
			this.txtFile.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtFile.HideSelection = true;
			this.txtFile.ReadOnly = false;
			this.txtFile.MaxLength = 0;
			this.txtFile.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtFile.Multiline = false;
			this.txtFile.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtFile.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtFile.TabStop = true;
			this.txtFile.Visible = true;
			this.txtFile.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtFile.Name = "txtFile";
			this.prgStockItem.Size = new System.Drawing.Size(495, 21);
			this.prgStockItem.Location = new System.Drawing.Point(14, 34);
			this.prgStockItem.TabIndex = 25;
			this.prgStockItem.Maximum = 10000;
			this.prgStockItem.Name = "prgStockItem";
			this.Label1.Text = "File Name: ";
			this.Label1.Size = new System.Drawing.Size(81, 17);
			this.Label1.Location = new System.Drawing.Point(20, 12);
			this.Label1.TabIndex = 28;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.Label2.Text = ":";
			this.Label2.Size = new System.Drawing.Size(295, 23);
			this.Label2.Location = new System.Drawing.Point(212, 60);
			this.Label2.TabIndex = 27;
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.Enabled = true;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.UseMnemonic = true;
			this.Label2.Visible = true;
			this.Label2.AutoSize = false;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Name = "Label2";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(528, 53);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 21;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Do Update>>";
			this.cmdNext.Size = new System.Drawing.Size(96, 33);
			this.cmdNext.Location = new System.Drawing.Point(420, 6);
			this.cmdNext.TabIndex = 23;
			this.cmdNext.TabStop = false;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.Name = "cmdNext";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "E&xit";
			this.cmdBack.Size = new System.Drawing.Size(97, 33);
			this.cmdBack.Location = new System.Drawing.Point(8, 6);
			this.cmdBack.TabIndex = 22;
			this.cmdBack.TabStop = false;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.Name = "cmdBack";
			this._frmMode_1.Text = "New \"Stock Item\" Details.";
			this._frmMode_1.Enabled = false;
			this._frmMode_1.Size = new System.Drawing.Size(331, 263);
			this._frmMode_1.Location = new System.Drawing.Point(-2, 506);
			this._frmMode_1.TabIndex = 0;
			this._frmMode_1.BackColor = System.Drawing.SystemColors.Control;
			this._frmMode_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._frmMode_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._frmMode_1.Visible = true;
			this._frmMode_1.Padding = new System.Windows.Forms.Padding(0);
			this._frmMode_1.Name = "_frmMode_1";
			this.Picture1.Size = new System.Drawing.Size(295, 4);
			this.Picture1.Location = new System.Drawing.Point(28, 162);
			this.Picture1.TabIndex = 10;
			this.Picture1.TabStop = false;
			this.Picture1.Dock = System.Windows.Forms.DockStyle.None;
			this.Picture1.BackColor = System.Drawing.SystemColors.Control;
			this.Picture1.CausesValidation = true;
			this.Picture1.Enabled = true;
			this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture1.Visible = true;
			this.Picture1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Normal;
			this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture1.Name = "Picture1";
			this.txtName.AutoSize = false;
			this.txtName.Size = new System.Drawing.Size(241, 19);
			this.txtName.Location = new System.Drawing.Point(82, 18);
			this.txtName.TabIndex = 9;
			this.txtName.Text = "[New Product]";
			this.txtName.AcceptsReturn = true;
			this.txtName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtName.BackColor = System.Drawing.SystemColors.Window;
			this.txtName.CausesValidation = true;
			this.txtName.Enabled = true;
			this.txtName.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtName.HideSelection = true;
			this.txtName.ReadOnly = false;
			this.txtName.MaxLength = 0;
			this.txtName.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtName.Multiline = false;
			this.txtName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtName.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtName.TabStop = true;
			this.txtName.Visible = true;
			this.txtName.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtName.Name = "txtName";
			this.txtReceipt.AutoSize = false;
			this.txtReceipt.Size = new System.Drawing.Size(241, 19);
			this.txtReceipt.Location = new System.Drawing.Point(82, 39);
			this.txtReceipt.MaxLength = 20;
			this.txtReceipt.TabIndex = 8;
			this.txtReceipt.AcceptsReturn = true;
			this.txtReceipt.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtReceipt.BackColor = System.Drawing.SystemColors.Window;
			this.txtReceipt.CausesValidation = true;
			this.txtReceipt.Enabled = true;
			this.txtReceipt.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtReceipt.HideSelection = true;
			this.txtReceipt.ReadOnly = false;
			this.txtReceipt.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtReceipt.Multiline = false;
			this.txtReceipt.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtReceipt.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtReceipt.TabStop = true;
			this.txtReceipt.Visible = true;
			this.txtReceipt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtReceipt.Name = "txtReceipt";
			this.Frame1.Size = new System.Drawing.Size(317, 57);
			this.Frame1.Location = new System.Drawing.Point(8, 168);
			this.Frame1.TabIndex = 1;
			this.Frame1.BackColor = System.Drawing.SystemColors.Control;
			this.Frame1.Enabled = true;
			this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame1.Visible = true;
			this.Frame1.Padding = new System.Windows.Forms.Padding(0);
			this.Frame1.Name = "Frame1";
			this.txtQuantity.AutoSize = false;
			this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQuantity.Size = new System.Drawing.Size(28, 19);
			this.txtQuantity.Location = new System.Drawing.Point(56, 12);
			this.txtQuantity.TabIndex = 3;
			this.txtQuantity.Text = "12";
			this.txtQuantity.AcceptsReturn = true;
			this.txtQuantity.BackColor = System.Drawing.SystemColors.Window;
			this.txtQuantity.CausesValidation = true;
			this.txtQuantity.Enabled = true;
			this.txtQuantity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQuantity.HideSelection = true;
			this.txtQuantity.ReadOnly = false;
			this.txtQuantity.MaxLength = 0;
			this.txtQuantity.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQuantity.Multiline = false;
			this.txtQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQuantity.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQuantity.TabStop = true;
			this.txtQuantity.Visible = true;
			this.txtQuantity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtQuantity.Name = "txtQuantity";
			this.txtCost.AutoSize = false;
			this.txtCost.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtCost.Size = new System.Drawing.Size(56, 19);
			this.txtCost.Location = new System.Drawing.Point(256, 14);
			this.txtCost.TabIndex = 2;
			this.txtCost.Text = "0.00";
			this.txtCost.AcceptsReturn = true;
			this.txtCost.BackColor = System.Drawing.SystemColors.Window;
			this.txtCost.CausesValidation = true;
			this.txtCost.Enabled = true;
			this.txtCost.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCost.HideSelection = true;
			this.txtCost.ReadOnly = false;
			this.txtCost.MaxLength = 0;
			this.txtCost.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCost.Multiline = false;
			this.txtCost.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCost.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtCost.TabStop = true;
			this.txtCost.Visible = true;
			this.txtCost.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.txtCost.Name = "txtCost";
			//cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbShrink.Size = new System.Drawing.Size(91, 21);
			this.cmbShrink.Location = new System.Drawing.Point(134, 30);
			this.cmbShrink.TabIndex = 4;
			this.cmbShrink.Name = "cmbShrink";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.Text = "There are ";
			this._lblLabels_2.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(6, 16);
			this._lblLabels_2.TabIndex = 7;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Enabled = true;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.UseMnemonic = true;
			this._lblLabels_2.Visible = true;
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_10.Text = "Units in a case/carton, which costs";
			this._lblLabels_10.Size = new System.Drawing.Size(167, 13);
			this._lblLabels_10.Location = new System.Drawing.Point(86, 16);
			this._lblLabels_10.TabIndex = 6;
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Enabled = true;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.UseMnemonic = true;
			this._lblLabels_10.Visible = true;
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_1.Text = "and you sell in shrinks of";
			this._lblLabels_1.Size = new System.Drawing.Size(115, 13);
			this._lblLabels_1.Location = new System.Drawing.Point(8, 38);
			this._lblLabels_1.TabIndex = 5;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Enabled = true;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.UseMnemonic = true;
			this._lblLabels_1.Visible = true;
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_1.Name = "_lblLabels_1";
			//cmbPricingGroup.OcxState = CType(resources.GetObject("cmbPricingGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbPricingGroup.Size = new System.Drawing.Size(241, 21);
			this.cmbPricingGroup.Location = new System.Drawing.Point(82, 108);
			this.cmbPricingGroup.TabIndex = 11;
			this.cmbPricingGroup.Name = "cmbPricingGroup";
			//cmbStockGroup.OcxState = CType(resources.GetObject("cmbStockGroup.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbStockGroup.Size = new System.Drawing.Size(241, 21);
			this.cmbStockGroup.Location = new System.Drawing.Point(82, 132);
			this.cmbStockGroup.TabIndex = 12;
			this.cmbStockGroup.Name = "cmbStockGroup";
			//cmbDeposit.OcxState = CType(resources.GetObject("cmbDeposit.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbDeposit.Size = new System.Drawing.Size(241, 21);
			this.cmbDeposit.Location = new System.Drawing.Point(82, 84);
			this.cmbDeposit.TabIndex = 13;
			this.cmbDeposit.Name = "cmbDeposit";
			//cmbSupplier.OcxState = CType(resources.GetObject("cmbSupplier.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbSupplier.Size = new System.Drawing.Size(241, 21);
			this.cmbSupplier.Location = new System.Drawing.Point(82, 60);
			this.cmbSupplier.TabIndex = 14;
			this.cmbSupplier.Name = "cmbSupplier";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_6.Text = "Deposit:";
			this._lblLabels_6.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_6.Location = new System.Drawing.Point(38, 90);
			this._lblLabels_6.TabIndex = 20;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Enabled = true;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.UseMnemonic = true;
			this._lblLabels_6.Visible = true;
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_0.Text = "Supplier:";
			this._lblLabels_0.Size = new System.Drawing.Size(41, 13);
			this._lblLabels_0.Location = new System.Drawing.Point(36, 66);
			this._lblLabels_0.TabIndex = 19;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Enabled = true;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.UseMnemonic = true;
			this._lblLabels_0.Visible = true;
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_3.Text = "Pricing Group:";
			this._lblLabels_3.Size = new System.Drawing.Size(67, 13);
			this._lblLabels_3.Location = new System.Drawing.Point(10, 114);
			this._lblLabels_3.TabIndex = 18;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Enabled = true;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.UseMnemonic = true;
			this._lblLabels_3.Visible = true;
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_4.Text = "Stock Group:";
			this._lblLabels_4.Size = new System.Drawing.Size(63, 13);
			this._lblLabels_4.Location = new System.Drawing.Point(14, 138);
			this._lblLabels_4.TabIndex = 17;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Enabled = true;
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.UseMnemonic = true;
			this._lblLabels_4.Visible = true;
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.Text = "Display Name:";
			this._lblLabels_7.Size = new System.Drawing.Size(68, 13);
			this._lblLabels_7.Location = new System.Drawing.Point(10, 20);
			this._lblLabels_7.TabIndex = 16;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.UseMnemonic = true;
			this._lblLabels_7.Visible = true;
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.Text = "Receipt Name:";
			this._lblLabels_8.Size = new System.Drawing.Size(71, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(6, 45);
			this._lblLabels_8.TabIndex = 15;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.UseMnemonic = true;
			this._lblLabels_8.Visible = true;
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_8.Name = "_lblLabels_8";
			this.Controls.Add(Frame2);
			this.Controls.Add(picButtons);
			this.Controls.Add(_frmMode_1);
			this.Frame2.Controls.Add(txtFile);
			this.Frame2.Controls.Add(prgStockItem);
			this.Frame2.Controls.Add(Label1);
			this.Frame2.Controls.Add(Label2);
			this.picButtons.Controls.Add(cmdNext);
			this.picButtons.Controls.Add(cmdBack);
			this._frmMode_1.Controls.Add(Picture1);
			this._frmMode_1.Controls.Add(txtName);
			this._frmMode_1.Controls.Add(txtReceipt);
			this._frmMode_1.Controls.Add(Frame1);
			this._frmMode_1.Controls.Add(cmbPricingGroup);
			this._frmMode_1.Controls.Add(cmbStockGroup);
			this._frmMode_1.Controls.Add(cmbDeposit);
			this._frmMode_1.Controls.Add(cmbSupplier);
			this._frmMode_1.Controls.Add(_lblLabels_6);
			this._frmMode_1.Controls.Add(_lblLabels_0);
			this._frmMode_1.Controls.Add(_lblLabels_3);
			this._frmMode_1.Controls.Add(_lblLabels_4);
			this._frmMode_1.Controls.Add(_lblLabels_7);
			this._frmMode_1.Controls.Add(_lblLabels_8);
			this.Frame1.Controls.Add(txtQuantity);
			this.Frame1.Controls.Add(txtCost);
			this.Frame1.Controls.Add(cmbShrink);
			this.Frame1.Controls.Add(_lblLabels_2);
			this.Frame1.Controls.Add(_lblLabels_10);
			this.Frame1.Controls.Add(_lblLabels_1);
			//Me.frmMode.SetIndex(_frmMode_1, CType(1, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_10, CType(10, Short))
			//Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short))
			//Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
			//Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_3, CType(3, Short))
			//Me.lblLabels.SetIndex(_lblLabels_4, CType(4, Short))
			//Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.cmbSupplier).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbDeposit).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbStockGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbPricingGroup).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).EndInit();
			this.Frame2.ResumeLayout(false);
			this.picButtons.ResumeLayout(false);
			this._frmMode_1.ResumeLayout(false);
			this.Frame1.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmLangMenu));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.picButtons = new System.Windows.Forms.Panel();
     this.cmdClose   = new System.Windows.Forms.Button();
     this.gridEdit   = new myDataGridView();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                        = "Menu Language Translation Editor";
     this.ClientSize                  = new System.Drawing.Size(454, 637);
     this.Location                    = new System.Drawing.Point(3, 29);
     this.ControlBox                  = false;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.KeyPreview                  = false;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmLangMenu";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size             = new System.Drawing.Size(454, 44);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 1;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name             = "picButtons";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(73, 29);
     this.cmdClose.Location           = new System.Drawing.Point(368, 6);
     this.cmdClose.TabIndex           = 2;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     //gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
     this.gridEdit.Size     = new System.Drawing.Size(435, 582);
     this.gridEdit.Location = new System.Drawing.Point(9, 48);
     this.gridEdit.TabIndex = 0;
     this.gridEdit.Name     = "gridEdit";
     this.Controls.Add(picButtons);
     this.Controls.Add(gridEdit);
     this.picButtons.Controls.Add(cmdClose);
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #40
0
 private void doDataControl(ref myDataGridView dataControl, ref string sql, ref string DataField, ref string boundColumn, ref string listField)
 {
     //Dim rs As ADODB.Recordset
     //rs = getRS(sql)
     //dataControl.DataSource = rs
     //dataControl.DataSource = adoPrimaryRS
     //dataControl.DataField = DataField
     //dataControl.boundColumn = boundColumn
     //dataControl.listField = listField
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmReportPriceList));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.Frame2 = new System.Windows.Forms.GroupBox();
			this.cmbChannel = new myDataGridView();
			this.Label1 = new System.Windows.Forms.Label();
			this._Frame1_2 = new System.Windows.Forms.GroupBox();
			this.cmdGroup = new System.Windows.Forms.Button();
			this.lblGroup = new System.Windows.Forms.Label();
			this._Frame1_1 = new System.Windows.Forms.GroupBox();
			this.cmbSort = new System.Windows.Forms.ComboBox();
			this.cmbSortField = new System.Windows.Forms.ComboBox();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._Frame1_0 = new System.Windows.Forms.GroupBox();
			this.chkQty = new System.Windows.Forms.CheckBox();
			this.chkPageBreak = new System.Windows.Forms.CheckBox();
			this.cmbGroup = new System.Windows.Forms.ComboBox();
			this._lbl_3 = new System.Windows.Forms.Label();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdLoad = new System.Windows.Forms.Button();
			//Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.Frame2.SuspendLayout();
			this._Frame1_2.SuspendLayout();
			this._Frame1_1.SuspendLayout();
			this._Frame1_0.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).BeginInit();
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Price List";
			this.ClientSize = new System.Drawing.Size(256, 477);
			this.Location = new System.Drawing.Point(3, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmReportPriceList";
			this.Frame2.Text = "&4. Channel Filter";
			this.Frame2.Size = new System.Drawing.Size(233, 57);
			this.Frame2.Location = new System.Drawing.Point(12, 352);
			this.Frame2.TabIndex = 14;
			this.Frame2.BackColor = System.Drawing.SystemColors.Control;
			this.Frame2.Enabled = true;
			this.Frame2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Frame2.Visible = true;
			this.Frame2.Padding = new System.Windows.Forms.Padding(0);
			this.Frame2.Name = "Frame2";
			//cmbChannel.OcxState = CType(resources.GetObject("cmbChannel.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbChannel.Size = new System.Drawing.Size(124, 21);
			this.cmbChannel.Location = new System.Drawing.Point(96, 24);
			this.cmbChannel.TabIndex = 15;
			this.cmbChannel.Name = "cmbChannel";
			this.Label1.Text = "Channel:";
			this.Label1.Size = new System.Drawing.Size(49, 17);
			this.Label1.Location = new System.Drawing.Point(8, 24);
			this.Label1.TabIndex = 16;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this._Frame1_2.Text = "&3. Report Filter";
			this._Frame1_2.Size = new System.Drawing.Size(232, 145);
			this._Frame1_2.Location = new System.Drawing.Point(12, 202);
			this._Frame1_2.TabIndex = 9;
			this._Frame1_2.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_2.Enabled = true;
			this._Frame1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_2.Visible = true;
			this._Frame1_2.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_2.Name = "_Frame1_2";
			this.cmdGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdGroup.Text = "&Filter";
			this.cmdGroup.Size = new System.Drawing.Size(97, 31);
			this.cmdGroup.Location = new System.Drawing.Point(129, 105);
			this.cmdGroup.TabIndex = 11;
			this.cmdGroup.BackColor = System.Drawing.SystemColors.Control;
			this.cmdGroup.CausesValidation = true;
			this.cmdGroup.Enabled = true;
			this.cmdGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdGroup.TabStop = true;
			this.cmdGroup.Name = "cmdGroup";
			this.lblGroup.BackColor = System.Drawing.Color.FromArgb(192, 192, 192);
			this.lblGroup.Text = "lblGroup";
			this.lblGroup.Size = new System.Drawing.Size(220, 76);
			this.lblGroup.Location = new System.Drawing.Point(6, 21);
			this.lblGroup.TabIndex = 10;
			this.lblGroup.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblGroup.Enabled = true;
			this.lblGroup.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblGroup.UseMnemonic = true;
			this.lblGroup.Visible = true;
			this.lblGroup.AutoSize = false;
			this.lblGroup.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblGroup.Name = "lblGroup";
			this._Frame1_1.Text = "&2. Report Sort Order";
			this._Frame1_1.Size = new System.Drawing.Size(232, 85);
			this._Frame1_1.Location = new System.Drawing.Point(12, 109);
			this._Frame1_1.TabIndex = 4;
			this._Frame1_1.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_1.Enabled = true;
			this._Frame1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_1.Visible = true;
			this._Frame1_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_1.Name = "_Frame1_1";
			this.cmbSort.Size = new System.Drawing.Size(124, 21);
			this.cmbSort.Location = new System.Drawing.Point(63, 48);
			this.cmbSort.Items.AddRange(new object[] {
				"Ascending",
				"Descending"
			});
			this.cmbSort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbSort.TabIndex = 8;
			this.cmbSort.BackColor = System.Drawing.SystemColors.Window;
			this.cmbSort.CausesValidation = true;
			this.cmbSort.Enabled = true;
			this.cmbSort.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbSort.IntegralHeight = true;
			this.cmbSort.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbSort.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbSort.Sorted = false;
			this.cmbSort.TabStop = true;
			this.cmbSort.Visible = true;
			this.cmbSort.Name = "cmbSort";
			this.cmbSortField.Size = new System.Drawing.Size(124, 21);
			this.cmbSortField.Location = new System.Drawing.Point(63, 24);
			this.cmbSortField.Items.AddRange(new object[] {
				"Item Name",
				"Cost",
				"Selling",
				"Gross Profit",
				"Gross Profit %"
			});
			this.cmbSortField.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbSortField.TabIndex = 6;
			this.cmbSortField.BackColor = System.Drawing.SystemColors.Window;
			this.cmbSortField.CausesValidation = true;
			this.cmbSortField.Enabled = true;
			this.cmbSortField.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbSortField.IntegralHeight = true;
			this.cmbSortField.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbSortField.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbSortField.Sorted = false;
			this.cmbSortField.TabStop = true;
			this.cmbSortField.Visible = true;
			this.cmbSortField.Name = "cmbSortField";
			this._lbl_0.Text = "Sort Field:";
			this._lbl_0.Size = new System.Drawing.Size(47, 13);
			this._lbl_0.Location = new System.Drawing.Point(12, 30);
			this._lbl_0.TabIndex = 5;
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this._lbl_2.Text = "Sort Order:";
			this._lbl_2.Size = new System.Drawing.Size(51, 13);
			this._lbl_2.Location = new System.Drawing.Point(9, 54);
			this._lbl_2.TabIndex = 7;
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = true;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this._Frame1_0.Text = "&1. Report Options";
			this._Frame1_0.Size = new System.Drawing.Size(232, 92);
			this._Frame1_0.Location = new System.Drawing.Point(9, 9);
			this._Frame1_0.TabIndex = 0;
			this._Frame1_0.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_0.Enabled = true;
			this._Frame1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_0.Visible = true;
			this._Frame1_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_0.Name = "_Frame1_0";
			this.chkQty.Text = "Show Total Quantity";
			this.chkQty.Size = new System.Drawing.Size(163, 13);
			this.chkQty.Location = new System.Drawing.Point(56, 70);
			this.chkQty.TabIndex = 17;
			this.chkQty.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkQty.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.chkQty.BackColor = System.Drawing.SystemColors.Control;
			this.chkQty.CausesValidation = true;
			this.chkQty.Enabled = true;
			this.chkQty.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkQty.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkQty.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkQty.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkQty.TabStop = true;
			this.chkQty.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkQty.Visible = true;
			this.chkQty.Name = "chkQty";
			this.chkPageBreak.Text = "Page Break after each Group.";
			this.chkPageBreak.Size = new System.Drawing.Size(163, 13);
			this.chkPageBreak.Location = new System.Drawing.Point(54, 45);
			this.chkPageBreak.TabIndex = 3;
			this.chkPageBreak.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkPageBreak.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.chkPageBreak.BackColor = System.Drawing.SystemColors.Control;
			this.chkPageBreak.CausesValidation = true;
			this.chkPageBreak.Enabled = true;
			this.chkPageBreak.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkPageBreak.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkPageBreak.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkPageBreak.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkPageBreak.TabStop = true;
			this.chkPageBreak.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkPageBreak.Visible = true;
			this.chkPageBreak.Name = "chkPageBreak";
			this.cmbGroup.Size = new System.Drawing.Size(106, 21);
			this.cmbGroup.Location = new System.Drawing.Point(108, 18);
			this.cmbGroup.Items.AddRange(new object[] {
				"Pricing Group",
				"Stock Group",
				"Supplier",
				"No Grouping"
			});
			this.cmbGroup.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbGroup.TabIndex = 2;
			this.cmbGroup.BackColor = System.Drawing.SystemColors.Window;
			this.cmbGroup.CausesValidation = true;
			this.cmbGroup.Enabled = true;
			this.cmbGroup.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbGroup.IntegralHeight = true;
			this.cmbGroup.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbGroup.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbGroup.Sorted = false;
			this.cmbGroup.TabStop = true;
			this.cmbGroup.Visible = true;
			this.cmbGroup.Name = "cmbGroup";
			this._lbl_3.Text = "Group on:";
			this._lbl_3.Size = new System.Drawing.Size(47, 13);
			this._lbl_3.Location = new System.Drawing.Point(54, 21);
			this._lbl_3.TabIndex = 1;
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Enabled = true;
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.UseMnemonic = true;
			this._lbl_3.Visible = true;
			this._lbl_3.AutoSize = true;
			this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_3.Name = "_lbl_3";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(79, 43);
			this.cmdExit.Location = new System.Drawing.Point(16, 424);
			this.cmdExit.TabIndex = 13;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.TabStop = true;
			this.cmdExit.Name = "cmdExit";
			this.cmdLoad.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdLoad.Text = "Show/&Print Report";
			this.cmdLoad.Size = new System.Drawing.Size(79, 43);
			this.cmdLoad.Location = new System.Drawing.Point(162, 424);
			this.cmdLoad.TabIndex = 12;
			this.cmdLoad.BackColor = System.Drawing.SystemColors.Control;
			this.cmdLoad.CausesValidation = true;
			this.cmdLoad.Enabled = true;
			this.cmdLoad.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdLoad.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdLoad.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdLoad.TabStop = true;
			this.cmdLoad.Name = "cmdLoad";
			this.Controls.Add(Frame2);
			this.Controls.Add(_Frame1_2);
			this.Controls.Add(_Frame1_1);
			this.Controls.Add(_Frame1_0);
			this.Controls.Add(cmdExit);
			this.Controls.Add(cmdLoad);
			this.Frame2.Controls.Add(cmbChannel);
			this.Frame2.Controls.Add(Label1);
			this._Frame1_2.Controls.Add(cmdGroup);
			this._Frame1_2.Controls.Add(lblGroup);
			this._Frame1_1.Controls.Add(cmbSort);
			this._Frame1_1.Controls.Add(cmbSortField);
			this._Frame1_1.Controls.Add(_lbl_0);
			this._Frame1_1.Controls.Add(_lbl_2);
			this._Frame1_0.Controls.Add(chkQty);
			this._Frame1_0.Controls.Add(chkPageBreak);
			this._Frame1_0.Controls.Add(cmbGroup);
			this._Frame1_0.Controls.Add(_lbl_3);
			//Me.Frame1.SetIndex(_Frame1_2, CType(2, Short))
			//Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
			//Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).EndInit();
			this.Frame2.ResumeLayout(false);
			this._Frame1_2.ResumeLayout(false);
			this._Frame1_1.ResumeLayout(false);
			this._Frame1_0.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmDesign));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.cmdnew     = new System.Windows.Forms.Button();
     this._Option1_1 = new System.Windows.Forms.RadioButton();
     this._Option1_2 = new System.Windows.Forms.RadioButton();
     this.cmdexit    = new System.Windows.Forms.Button();
     this.cmdnext    = new System.Windows.Forms.Button();
     this.DataList1  = new myDataGridView();
     this.Label1     = new System.Windows.Forms.Label();
     //Me.Option1 = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     //CType(Me.Option1, System.ComponentModel.ISupportInitialize).BeginInit()
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                        = "Barcode Design";
     this.ClientSize                  = new System.Drawing.Size(425, 383);
     this.Location                    = new System.Drawing.Point(3, 29);
     this.ControlBox                  = false;
     this.KeyPreview                  = true;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmDesign";
     this.cmdnew.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdnew.Text                 = "N&ew";
     this.cmdnew.Size                 = new System.Drawing.Size(81, 33);
     this.cmdnew.Location             = new System.Drawing.Point(168, 344);
     this.cmdnew.TabIndex             = 6;
     this.cmdnew.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdnew.CausesValidation     = true;
     this.cmdnew.Enabled              = true;
     this.cmdnew.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdnew.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdnew.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdnew.TabStop              = true;
     this.cmdnew.Name                 = "cmdnew";
     this._Option1_1.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this._Option1_1.Text             = "&Shelf Talker";
     this._Option1_1.Size             = new System.Drawing.Size(113, 33);
     this._Option1_1.Location         = new System.Drawing.Point(144, 32);
     this._Option1_1.Appearance       = System.Windows.Forms.Appearance.Button;
     this._Option1_1.TabIndex         = 5;
     this._Option1_1.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this._Option1_1.BackColor        = System.Drawing.SystemColors.Control;
     this._Option1_1.CausesValidation = true;
     this._Option1_1.Enabled          = true;
     this._Option1_1.ForeColor        = System.Drawing.SystemColors.ControlText;
     this._Option1_1.Cursor           = System.Windows.Forms.Cursors.Default;
     this._Option1_1.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._Option1_1.TabStop          = true;
     this._Option1_1.Checked          = false;
     this._Option1_1.Visible          = true;
     this._Option1_1.Name             = "_Option1_1";
     this._Option1_2.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this._Option1_2.Text             = "Stock &Barcode";
     this._Option1_2.Size             = new System.Drawing.Size(129, 33);
     this._Option1_2.Location         = new System.Drawing.Point(8, 32);
     this._Option1_2.Appearance       = System.Windows.Forms.Appearance.Button;
     this._Option1_2.TabIndex         = 4;
     this._Option1_2.Checked          = true;
     this._Option1_2.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this._Option1_2.BackColor        = System.Drawing.SystemColors.Control;
     this._Option1_2.CausesValidation = true;
     this._Option1_2.Enabled          = true;
     this._Option1_2.ForeColor        = System.Drawing.SystemColors.ControlText;
     this._Option1_2.Cursor           = System.Windows.Forms.Cursors.Default;
     this._Option1_2.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this._Option1_2.TabStop          = true;
     this._Option1_2.Visible          = true;
     this._Option1_2.Name             = "_Option1_2";
     this.cmdexit.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdexit.Text                = "E&xit";
     this.cmdexit.Size                = new System.Drawing.Size(81, 33);
     this.cmdexit.Location            = new System.Drawing.Point(8, 344);
     this.cmdexit.TabIndex            = 2;
     this.cmdexit.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdexit.CausesValidation    = true;
     this.cmdexit.Enabled             = true;
     this.cmdexit.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdexit.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdexit.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdexit.TabStop             = true;
     this.cmdexit.Name                = "cmdexit";
     this.cmdnext.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdnext.Text                = "&Next";
     this.cmdnext.Size                = new System.Drawing.Size(81, 33);
     this.cmdnext.Location            = new System.Drawing.Point(336, 344);
     this.cmdnext.TabIndex            = 1;
     this.cmdnext.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdnext.CausesValidation    = true;
     this.cmdnext.Enabled             = true;
     this.cmdnext.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdnext.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdnext.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdnext.TabStop             = true;
     this.cmdnext.Name                = "cmdnext";
     //'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataList1.Size     = new System.Drawing.Size(409, 264);
     this.DataList1.Location = new System.Drawing.Point(8, 72);
     this.DataList1.TabIndex = 0;
     this.DataList1.Name     = "DataList1";
     this.Label1.Text        = "Please select the Stock Barcode you wish to modify";
     this.Label1.Size        = new System.Drawing.Size(353, 25);
     this.Label1.Location    = new System.Drawing.Point(8, 8);
     this.Label1.TabIndex    = 3;
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor   = System.Drawing.SystemColors.Control;
     this.Label1.Enabled     = true;
     this.Label1.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic = true;
     this.Label1.Visible     = true;
     this.Label1.AutoSize    = false;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name        = "Label1";
     this.Controls.Add(cmdnew);
     this.Controls.Add(_Option1_1);
     this.Controls.Add(_Option1_2);
     this.Controls.Add(cmdexit);
     this.Controls.Add(cmdnext);
     this.Controls.Add(DataList1);
     this.Controls.Add(Label1);
     //Me.Option1.SetIndex(_Option1_1, CType(1, Short))
     //Me.Option1.SetIndex(_Option1_2, CType(2, Short))
     //CType(Me.Option1, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #43
0
 private void InitializeComponent()
 {
     this.components  = new System.ComponentModel.Container();
     this.ToolTip1    = new System.Windows.Forms.ToolTip(this.components);
     this.txtSearch   = new System.Windows.Forms.TextBox();
     this.picButtons  = new System.Windows.Forms.Panel();
     this.chkFields   = new System.Windows.Forms.CheckBox();
     this.cmbMonthEnd = new System.Windows.Forms.ComboBox();
     this.cmbMonth    = new System.Windows.Forms.ComboBox();
     this.cmdPrint    = new System.Windows.Forms.Button();
     this.cmdExit     = new System.Windows.Forms.Button();
     this.DataList1   = new _4PosBackOffice.NET.myDataGridView();
     this.lbl         = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     this.SuspendLayout();
     //
     //txtSearch
     //
     this.txtSearch.AcceptsReturn = true;
     this.txtSearch.BackColor     = System.Drawing.SystemColors.Window;
     this.txtSearch.Cursor        = System.Windows.Forms.Cursors.IBeam;
     this.txtSearch.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.txtSearch.Location      = new System.Drawing.Point(54, 115);
     this.txtSearch.MaxLength     = 0;
     this.txtSearch.Name          = "txtSearch";
     this.txtSearch.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.txtSearch.Size          = new System.Drawing.Size(199, 19);
     this.txtSearch.TabIndex      = 1;
     //
     //picButtons
     //
     this.picButtons.BackColor   = System.Drawing.Color.Blue;
     this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.picButtons.Controls.Add(this.chkFields);
     this.picButtons.Controls.Add(this.cmbMonthEnd);
     this.picButtons.Controls.Add(this.cmbMonth);
     this.picButtons.Controls.Add(this.cmdPrint);
     this.picButtons.Controls.Add(this.cmdExit);
     this.picButtons.Cursor      = System.Windows.Forms.Cursors.Default;
     this.picButtons.Dock        = System.Windows.Forms.DockStyle.Top;
     this.picButtons.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.picButtons.Location    = new System.Drawing.Point(0, 0);
     this.picButtons.Name        = "picButtons";
     this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Size        = new System.Drawing.Size(263, 109);
     this.picButtons.TabIndex    = 4;
     //
     //chkFields
     //
     this.chkFields.BackColor               = System.Drawing.Color.Blue;
     this.chkFields.CheckAlign              = System.Drawing.ContentAlignment.MiddleRight;
     this.chkFields.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.chkFields.FlatStyle               = System.Windows.Forms.FlatStyle.Flat;
     this.chkFields.ForeColor               = System.Drawing.Color.White;
     this.chkFields.Location                = new System.Drawing.Point(7, 82);
     this.chkFields.Name                    = "chkFields";
     this.chkFields.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.chkFields.Size                    = new System.Drawing.Size(241, 23);
     this.chkFields.TabIndex                = 8;
     this.chkFields.Text                    = "Do not print Payment Date on Statement :";
     this.chkFields.UseVisualStyleBackColor = false;
     //
     //cmbMonthEnd
     //
     this.cmbMonthEnd.BackColor     = System.Drawing.SystemColors.Window;
     this.cmbMonthEnd.Cursor        = System.Windows.Forms.Cursors.Default;
     this.cmbMonthEnd.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbMonthEnd.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.cmbMonthEnd.Location      = new System.Drawing.Point(7, 31);
     this.cmbMonthEnd.Name          = "cmbMonthEnd";
     this.cmbMonthEnd.RightToLeft   = System.Windows.Forms.RightToLeft.No;
     this.cmbMonthEnd.Size          = new System.Drawing.Size(243, 21);
     this.cmbMonthEnd.TabIndex      = 7;
     //
     //cmbMonth
     //
     this.cmbMonth.BackColor     = System.Drawing.SystemColors.Window;
     this.cmbMonth.Cursor        = System.Windows.Forms.Cursors.Default;
     this.cmbMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbMonth.ForeColor     = System.Drawing.SystemColors.WindowText;
     this.cmbMonth.Items.AddRange(new object[] {
         "Last Month",
         "2 Months Ago",
         "3 Months Ago",
         "4 Months Ago",
         "5 Months Ago",
         "6 Months Ago",
         "7 Months Ago",
         "8 Months Ago",
         "9 Months Ago",
         "10 Months Ago",
         "11 Months Ago",
         "12 Months Ago",
         "13 Months Ago",
         "14 Months Ago",
         "15 Months Ago"
     });
     this.cmbMonth.Location    = new System.Drawing.Point(7, 8);
     this.cmbMonth.Name        = "cmbMonth";
     this.cmbMonth.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.cmbMonth.Size        = new System.Drawing.Size(242, 21);
     this.cmbMonth.TabIndex    = 3;
     this.cmbMonth.Visible     = false;
     //
     //cmdPrint
     //
     this.cmdPrint.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdPrint.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Location                = new System.Drawing.Point(5, 53);
     this.cmdPrint.Name                    = "cmdPrint";
     this.cmdPrint.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Size                    = new System.Drawing.Size(73, 29);
     this.cmdPrint.TabIndex                = 6;
     this.cmdPrint.TabStop                 = false;
     this.cmdPrint.Text                    = "&Print";
     this.cmdPrint.UseVisualStyleBackColor = false;
     //
     //cmdExit
     //
     this.cmdExit.BackColor               = System.Drawing.SystemColors.Control;
     this.cmdExit.Cursor                  = System.Windows.Forms.Cursors.Default;
     this.cmdExit.ForeColor               = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Location                = new System.Drawing.Point(177, 53);
     this.cmdExit.Name                    = "cmdExit";
     this.cmdExit.RightToLeft             = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.Size                    = new System.Drawing.Size(73, 29);
     this.cmdExit.TabIndex                = 5;
     this.cmdExit.TabStop                 = false;
     this.cmdExit.Text                    = "E&xit";
     this.cmdExit.UseVisualStyleBackColor = false;
     //
     //DataList1
     //
     this.DataList1.AllowAddNew   = true;
     this.DataList1.BoundText     = "";
     this.DataList1.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
     this.DataList1.Col           = 0;
     this.DataList1.CtlText       = "";
     this.DataList1.DataField     = null;
     this.DataList1.Location      = new System.Drawing.Point(9, 141);
     this.DataList1.Name          = "DataList1";
     this.DataList1.row           = 0;
     this.DataList1.Size          = new System.Drawing.Size(244, 321);
     this.DataList1.TabIndex      = 2;
     this.DataList1.TopRow        = 0;
     //
     //lbl
     //
     this.lbl.AutoSize    = true;
     this.lbl.BackColor   = System.Drawing.Color.Transparent;
     this.lbl.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lbl.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lbl.Location    = new System.Drawing.Point(6, 115);
     this.lbl.Name        = "lbl";
     this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lbl.Size        = new System.Drawing.Size(47, 13);
     this.lbl.TabIndex    = 0;
     this.lbl.Text        = "&Search :";
     this.lbl.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     //
     //frmCustomerStatement
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor           = System.Drawing.SystemColors.Control;
     this.ClientSize          = new System.Drawing.Size(263, 468);
     this.ControlBox          = false;
     this.Controls.Add(this.txtSearch);
     this.Controls.Add(this.picButtons);
     this.Controls.Add(this.DataList1);
     this.Controls.Add(this.lbl);
     this.Cursor          = System.Windows.Forms.Cursors.Default;
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Location        = new System.Drawing.Point(3, 22);
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "frmCustomerStatement";
     this.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Customer Statement Run";
     this.picButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this.txtCustomer = new System.Windows.Forms.TextBox();
			this.cmbPOS = new System.Windows.Forms.ComboBox();
			this.txtStock = new System.Windows.Forms.TextBox();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmdProfit = new System.Windows.Forms.Button();
			this.txtSerial = new System.Windows.Forms.TextBox();
			this._txtFields_0 = new System.Windows.Forms.TextBox();
			this.cmbTerms = new System.Windows.Forms.ComboBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_3 = new System.Windows.Forms.TextBox();
			this._txtFields_4 = new System.Windows.Forms.TextBox();
			this._txtFields_5 = new System.Windows.Forms.TextBox();
			this._txtFields_6 = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this._txtFields_9 = new System.Windows.Forms.TextBox();
			this._txtFields_10 = new System.Windows.Forms.TextBox();
			this._chkFields_11 = new System.Windows.Forms.CheckBox();
			this._txtFloat_12 = new System.Windows.Forms.TextBox();
			this._txtFloat_13 = new System.Windows.Forms.TextBox();
			this._txtFloat_14 = new System.Windows.Forms.TextBox();
			this._txtFloat_15 = new System.Windows.Forms.TextBox();
			this._txtFloat_16 = new System.Windows.Forms.TextBox();
			this._txtFloat_17 = new System.Windows.Forms.TextBox();
			this._txtFloat_18 = new System.Windows.Forms.TextBox();
			this._chkFields_19 = new System.Windows.Forms.CheckBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdSearch = new System.Windows.Forms.Button();
			this.cmbMonth = new System.Windows.Forms.ComboBox();
			this.cmdPrintHistory = new System.Windows.Forms.Button();
			this.cmdInv = new System.Windows.Forms.Button();
			this.cmdShowHistory = new System.Windows.Forms.Button();
			this.cmdStatement = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbChannel = new _4PosBackOffice.NET.myDataGridView();
			this.lvTransaction = new System.Windows.Forms.ListView();
			this._lvTransaction_ColumnHeader_1 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_2 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_3 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_4 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lvTransaction_ColumnHeader_5 = (System.Windows.Forms.ColumnHeader)new System.Windows.Forms.ColumnHeader();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblcount = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this._lblLabels_11 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_12 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lblLabels_15 = new System.Windows.Forms.Label();
			this._lblLabels_17 = new System.Windows.Forms.Label();
			this._lblLabels_0 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lblLabels_1 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_3 = new System.Windows.Forms.Label();
			this._lblLabels_4 = new System.Windows.Forms.Label();
			this._lblLabels_5 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_10 = new System.Windows.Forms.Label();
			this._lblLabels_14 = new System.Windows.Forms.Label();
			this._lblLabels_16 = new System.Windows.Forms.Label();
			this._lblLabels_18 = new System.Windows.Forms.Label();
			this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components);
			this.picButtons.SuspendLayout();
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.SuspendLayout();
			//
			//ShapeContainer1
			//
			this.ShapeContainer1.Location = new System.Drawing.Point(0, 0);
			this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0);
			this.ShapeContainer1.Name = "ShapeContainer1";
			this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] {
				this._Shape1_0,
				this._Shape1_1
			});
			this.ShapeContainer1.Size = new System.Drawing.Size(659, 653);
			this.ShapeContainer1.TabIndex = 61;
			this.ShapeContainer1.TabStop = false;
			//
			//_Shape1_0
			//
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0));
			this._Shape1_0.Location = new System.Drawing.Point(342, 57);
			this._Shape1_0.Name = "_Shape1_0";
			this._Shape1_0.Size = new System.Drawing.Size(310, 200);
			//
			//_Shape1_1
			//
			this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this.Shape1.SetIndex(this._Shape1_1, Convert.ToInt16(1));
			this._Shape1_1.Location = new System.Drawing.Point(6, 57);
			this._Shape1_1.Name = "_Shape1_1";
			this._Shape1_1.Size = new System.Drawing.Size(328, 200);
			//
			//txtCustomer
			//
			this.txtCustomer.AcceptsReturn = true;
			this.txtCustomer.BackColor = System.Drawing.SystemColors.Window;
			this.txtCustomer.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtCustomer.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtCustomer.Location = new System.Drawing.Point(729, 266);
			this.txtCustomer.MaxLength = 0;
			this.txtCustomer.Name = "txtCustomer";
			this.txtCustomer.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtCustomer.Size = new System.Drawing.Size(112, 19);
			this.txtCustomer.TabIndex = 54;
			//
			//cmbPOS
			//
			this.cmbPOS.BackColor = System.Drawing.SystemColors.Window;
			this.cmbPOS.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbPOS.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbPOS.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbPOS.Location = new System.Drawing.Point(729, 227);
			this.cmbPOS.Name = "cmbPOS";
			this.cmbPOS.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbPOS.Size = new System.Drawing.Size(112, 21);
			this.cmbPOS.TabIndex = 53;
			//
			//txtStock
			//
			this.txtStock.AcceptsReturn = true;
			this.txtStock.BackColor = System.Drawing.SystemColors.Window;
			this.txtStock.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtStock.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtStock.Location = new System.Drawing.Point(729, 302);
			this.txtStock.MaxLength = 0;
			this.txtStock.Name = "txtStock";
			this.txtStock.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtStock.Size = new System.Drawing.Size(112, 19);
			this.txtStock.TabIndex = 52;
			//
			//cmdPrint
			//
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Location = new System.Drawing.Point(750, 480);
			this.cmdPrint.Name = "cmdPrint";
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Size = new System.Drawing.Size(94, 28);
			this.cmdPrint.TabIndex = 50;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.UseVisualStyleBackColor = false;
			//
			//cmdProfit
			//
			this.cmdProfit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdProfit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdProfit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdProfit.Location = new System.Drawing.Point(752, 526);
			this.cmdProfit.Name = "cmdProfit";
			this.cmdProfit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdProfit.Size = new System.Drawing.Size(94, 28);
			this.cmdProfit.TabIndex = 49;
			this.cmdProfit.TabStop = false;
			this.cmdProfit.Text = "&Detail Profit";
			this.cmdProfit.UseVisualStyleBackColor = false;
			//
			//txtSerial
			//
			this.txtSerial.AcceptsReturn = true;
			this.txtSerial.BackColor = System.Drawing.SystemColors.Window;
			this.txtSerial.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSerial.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSerial.Location = new System.Drawing.Point(730, 336);
			this.txtSerial.MaxLength = 0;
			this.txtSerial.Name = "txtSerial";
			this.txtSerial.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSerial.Size = new System.Drawing.Size(112, 19);
			this.txtSerial.TabIndex = 48;
			//
			//_txtFields_0
			//
			this._txtFields_0.AcceptsReturn = true;
			this._txtFields_0.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_0.Enabled = false;
			this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_0.Location = new System.Drawing.Point(924, 238);
			this._txtFields_0.MaxLength = 0;
			this._txtFields_0.Name = "_txtFields_0";
			this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_0.Size = new System.Drawing.Size(226, 19);
			this._txtFields_0.TabIndex = 44;
			//
			//cmbTerms
			//
			this.cmbTerms.BackColor = System.Drawing.SystemColors.Window;
			this.cmbTerms.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbTerms.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbTerms.Enabled = false;
			this.cmbTerms.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbTerms.Items.AddRange(new object[] {
				"C.O.D.",
				"Current",
				"30 Days",
				"60 Days",
				"90 Days"
			});
			this.cmbTerms.Location = new System.Drawing.Point(567, 63);
			this.cmbTerms.Name = "cmbTerms";
			this.cmbTerms.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbTerms.Size = new System.Drawing.Size(79, 21);
			this.cmbTerms.TabIndex = 23;
			//
			//_txtFields_2
			//
			this._txtFields_2.AcceptsReturn = true;
			this._txtFields_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_2.Location = new System.Drawing.Point(102, 63);
			this._txtFields_2.MaxLength = 0;
			this._txtFields_2.Name = "_txtFields_2";
			this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_2.Size = new System.Drawing.Size(226, 19);
			this._txtFields_2.TabIndex = 2;
			//
			//_txtFields_3
			//
			this._txtFields_3.AcceptsReturn = true;
			this._txtFields_3.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_3.Location = new System.Drawing.Point(102, 84);
			this._txtFields_3.MaxLength = 0;
			this._txtFields_3.Name = "_txtFields_3";
			this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_3.Size = new System.Drawing.Size(226, 19);
			this._txtFields_3.TabIndex = 4;
			//
			//_txtFields_4
			//
			this._txtFields_4.AcceptsReturn = true;
			this._txtFields_4.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_4.Location = new System.Drawing.Point(15, 120);
			this._txtFields_4.MaxLength = 0;
			this._txtFields_4.Name = "_txtFields_4";
			this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_4.Size = new System.Drawing.Size(157, 19);
			this._txtFields_4.TabIndex = 6;
			//
			//_txtFields_5
			//
			this._txtFields_5.AcceptsReturn = true;
			this._txtFields_5.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_5.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_5.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_5.Location = new System.Drawing.Point(174, 120);
			this._txtFields_5.MaxLength = 0;
			this._txtFields_5.Name = "_txtFields_5";
			this._txtFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_5.Size = new System.Drawing.Size(154, 19);
			this._txtFields_5.TabIndex = 8;
			//
			//_txtFields_6
			//
			this._txtFields_6.AcceptsReturn = true;
			this._txtFields_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_6.Location = new System.Drawing.Point(102, 195);
			this._txtFields_6.MaxLength = 0;
			this._txtFields_6.Multiline = true;
			this._txtFields_6.Name = "_txtFields_6";
			this._txtFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_6.Size = new System.Drawing.Size(226, 58);
			this._txtFields_6.TabIndex = 16;
			//
			//_txtFields_7
			//
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.Location = new System.Drawing.Point(422, 195);
			this._txtFields_7.MaxLength = 0;
			this._txtFields_7.Multiline = true;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.Size = new System.Drawing.Size(226, 58);
			this._txtFields_7.TabIndex = 18;
			//
			//_txtFields_8
			//
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.Location = new System.Drawing.Point(102, 144);
			this._txtFields_8.MaxLength = 0;
			this._txtFields_8.Name = "_txtFields_8";
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.Size = new System.Drawing.Size(226, 19);
			this._txtFields_8.TabIndex = 10;
			//
			//_txtFields_9
			//
			this._txtFields_9.AcceptsReturn = true;
			this._txtFields_9.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_9.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_9.Location = new System.Drawing.Point(422, 170);
			this._txtFields_9.MaxLength = 0;
			this._txtFields_9.Name = "_txtFields_9";
			this._txtFields_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_9.Size = new System.Drawing.Size(226, 19);
			this._txtFields_9.TabIndex = 12;
			//
			//_txtFields_10
			//
			this._txtFields_10.AcceptsReturn = true;
			this._txtFields_10.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_10.Location = new System.Drawing.Point(102, 170);
			this._txtFields_10.MaxLength = 0;
			this._txtFields_10.Name = "_txtFields_10";
			this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_10.Size = new System.Drawing.Size(226, 19);
			this._txtFields_10.TabIndex = 14;
			//
			//_chkFields_11
			//
			this._chkFields_11.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_11.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_11.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_11.Location = new System.Drawing.Point(829, 83);
			this._chkFields_11.Name = "_chkFields_11";
			this._chkFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_11.Size = new System.Drawing.Size(214, 19);
			this._chkFields_11.TabIndex = 11;
			this._chkFields_11.Text = "Disable this customer from Point Of Sale:";
			this._chkFields_11.UseVisualStyleBackColor = false;
			//
			//_txtFloat_12
			//
			this._txtFloat_12.AcceptsReturn = true;
			this._txtFloat_12.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_12.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_12.Enabled = false;
			this._txtFloat_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_12.Location = new System.Drawing.Point(423, 63);
			this._txtFloat_12.MaxLength = 0;
			this._txtFloat_12.Name = "_txtFloat_12";
			this._txtFloat_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_12.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_12.TabIndex = 21;
			this._txtFloat_12.Text = "9,999,999.00";
			this._txtFloat_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_13
			//
			this._txtFloat_13.AcceptsReturn = true;
			this._txtFloat_13.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_13.Enabled = false;
			this._txtFloat_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_13.Location = new System.Drawing.Point(423, 87);
			this._txtFloat_13.MaxLength = 0;
			this._txtFloat_13.Name = "_txtFloat_13";
			this._txtFloat_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_13.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_13.TabIndex = 25;
			this._txtFloat_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_14
			//
			this._txtFloat_14.AcceptsReturn = true;
			this._txtFloat_14.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_14.Enabled = false;
			this._txtFloat_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_14.Location = new System.Drawing.Point(567, 87);
			this._txtFloat_14.MaxLength = 0;
			this._txtFloat_14.Name = "_txtFloat_14";
			this._txtFloat_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_14.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_14.TabIndex = 27;
			this._txtFloat_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_15
			//
			this._txtFloat_15.AcceptsReturn = true;
			this._txtFloat_15.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_15.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_15.Enabled = false;
			this._txtFloat_15.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_15.Location = new System.Drawing.Point(423, 108);
			this._txtFloat_15.MaxLength = 0;
			this._txtFloat_15.Name = "_txtFloat_15";
			this._txtFloat_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_15.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_15.TabIndex = 29;
			this._txtFloat_15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_16
			//
			this._txtFloat_16.AcceptsReturn = true;
			this._txtFloat_16.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_16.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_16.Enabled = false;
			this._txtFloat_16.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_16.Location = new System.Drawing.Point(567, 108);
			this._txtFloat_16.MaxLength = 0;
			this._txtFloat_16.Name = "_txtFloat_16";
			this._txtFloat_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_16.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_16.TabIndex = 31;
			this._txtFloat_16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_17
			//
			this._txtFloat_17.AcceptsReturn = true;
			this._txtFloat_17.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_17.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_17.Enabled = false;
			this._txtFloat_17.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_17.Location = new System.Drawing.Point(423, 129);
			this._txtFloat_17.MaxLength = 0;
			this._txtFloat_17.Name = "_txtFloat_17";
			this._txtFloat_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_17.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_17.TabIndex = 33;
			this._txtFloat_17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_txtFloat_18
			//
			this._txtFloat_18.AcceptsReturn = true;
			this._txtFloat_18.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_18.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_18.Enabled = false;
			this._txtFloat_18.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_18.Location = new System.Drawing.Point(567, 129);
			this._txtFloat_18.MaxLength = 0;
			this._txtFloat_18.Name = "_txtFloat_18";
			this._txtFloat_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_18.Size = new System.Drawing.Size(79, 19);
			this._txtFloat_18.TabIndex = 35;
			this._txtFloat_18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			//
			//_chkFields_19
			//
			this._chkFields_19.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255)));
			this._chkFields_19.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_19.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_19.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_19.Location = new System.Drawing.Point(811, 65);
			this._chkFields_19.Name = "_chkFields_19";
			this._chkFields_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_19.Size = new System.Drawing.Size(232, 19);
			this._chkFields_19.TabIndex = 19;
			this._chkFields_19.Text = "Automatically print a statement at monthend:";
			this._chkFields_19.UseVisualStyleBackColor = false;
			//
			//picButtons
			//
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Controls.Add(this.cmdSearch);
			this.picButtons.Controls.Add(this.cmbMonth);
			this.picButtons.Controls.Add(this.cmdPrintHistory);
			this.picButtons.Controls.Add(this.cmdInv);
			this.picButtons.Controls.Add(this.cmdShowHistory);
			this.picButtons.Controls.Add(this.cmdStatement);
			this.picButtons.Controls.Add(this.cmdCancel);
			this.picButtons.Controls.Add(this.cmdClose);
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.Name = "picButtons";
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Size = new System.Drawing.Size(659, 38);
			this.picButtons.TabIndex = 42;
			//
			//cmdSearch
			//
			this.cmdSearch.BackColor = System.Drawing.SystemColors.Control;
			this.cmdSearch.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdSearch.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdSearch.Location = new System.Drawing.Point(368, 3);
			this.cmdSearch.Name = "cmdSearch";
			this.cmdSearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdSearch.Size = new System.Drawing.Size(57, 28);
			this.cmdSearch.TabIndex = 64;
			this.cmdSearch.Text = "<< Show ";
			this.cmdSearch.UseVisualStyleBackColor = false;
			//
			//cmbMonth
			//
			this.cmbMonth.BackColor = System.Drawing.SystemColors.Window;
			this.cmbMonth.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbMonth.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbMonth.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbMonth.Location = new System.Drawing.Point(248, 8);
			this.cmbMonth.Name = "cmbMonth";
			this.cmbMonth.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbMonth.Size = new System.Drawing.Size(112, 21);
			this.cmbMonth.TabIndex = 62;
			//
			//cmdPrintHistory
			//
			this.cmdPrintHistory.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrintHistory.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrintHistory.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrintHistory.Location = new System.Drawing.Point(480, 3);
			this.cmdPrintHistory.Name = "cmdPrintHistory";
			this.cmdPrintHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrintHistory.Size = new System.Drawing.Size(105, 29);
			this.cmdPrintHistory.TabIndex = 61;
			this.cmdPrintHistory.TabStop = false;
			this.cmdPrintHistory.Text = "&Print Full History";
			this.cmdPrintHistory.UseVisualStyleBackColor = false;
			//
			//cmdInv
			//
			this.cmdInv.BackColor = System.Drawing.SystemColors.Control;
			this.cmdInv.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdInv.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdInv.Location = new System.Drawing.Point(184, 3);
			this.cmdInv.Name = "cmdInv";
			this.cmdInv.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdInv.Size = new System.Drawing.Size(57, 29);
			this.cmdInv.TabIndex = 47;
			this.cmdInv.TabStop = false;
			this.cmdInv.Text = "&Print";
			this.cmdInv.UseVisualStyleBackColor = false;
			//
			//cmdShowHistory
			//
			this.cmdShowHistory.BackColor = System.Drawing.SystemColors.Control;
			this.cmdShowHistory.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdShowHistory.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdShowHistory.Location = new System.Drawing.Point(72, 3);
			this.cmdShowHistory.Name = "cmdShowHistory";
			this.cmdShowHistory.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdShowHistory.Size = new System.Drawing.Size(105, 29);
			this.cmdShowHistory.TabIndex = 46;
			this.cmdShowHistory.TabStop = false;
			this.cmdShowHistory.Text = "&Show Full History";
			this.cmdShowHistory.UseVisualStyleBackColor = false;
			//
			//cmdStatement
			//
			this.cmdStatement.BackColor = System.Drawing.SystemColors.Control;
			this.cmdStatement.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdStatement.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdStatement.Location = new System.Drawing.Point(656, 3);
			this.cmdStatement.Name = "cmdStatement";
			this.cmdStatement.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdStatement.Size = new System.Drawing.Size(73, 29);
			this.cmdStatement.TabIndex = 43;
			this.cmdStatement.TabStop = false;
			this.cmdStatement.Text = "&Statement";
			this.cmdStatement.UseVisualStyleBackColor = false;
			this.cmdStatement.Visible = false;
			//
			//cmdCancel
			//
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.Name = "cmdCancel";
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Size = new System.Drawing.Size(57, 29);
			this.cmdCancel.TabIndex = 40;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.UseVisualStyleBackColor = false;
			//
			//cmdClose
			//
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Location = new System.Drawing.Point(592, 3);
			this.cmdClose.Name = "cmdClose";
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Size = new System.Drawing.Size(57, 29);
			this.cmdClose.TabIndex = 41;
			this.cmdClose.TabStop = false;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.UseVisualStyleBackColor = false;
			//
			//cmbChannel
			//
			this.cmbChannel.AllowAddNew = true;
			this.cmbChannel.BoundText = "";
			this.cmbChannel.CellBackColor = System.Drawing.SystemColors.AppWorkspace;
			this.cmbChannel.Col = 0;
			this.cmbChannel.CtlText = "";
			this.cmbChannel.DataField = null;
			this.cmbChannel.Location = new System.Drawing.Point(823, 38);
			this.cmbChannel.Name = "cmbChannel";
			this.cmbChannel.row = 0;
			this.cmbChannel.Size = new System.Drawing.Size(223, 21);
			this.cmbChannel.TabIndex = 37;
			this.cmbChannel.TopRow = 0;
			//
			//lvTransaction
			//
			this.lvTransaction.BackColor = System.Drawing.SystemColors.Window;
			this.lvTransaction.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
				this._lvTransaction_ColumnHeader_1,
				this._lvTransaction_ColumnHeader_2,
				this._lvTransaction_ColumnHeader_3,
				this._lvTransaction_ColumnHeader_4,
				this._lvTransaction_ColumnHeader_5
			});
			this.lvTransaction.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lvTransaction.FullRowSelect = true;
			this.lvTransaction.GridLines = true;
			this.lvTransaction.HideSelection = false;
			this.lvTransaction.LabelWrap = false;
			this.lvTransaction.Location = new System.Drawing.Point(8, 264);
			this.lvTransaction.Name = "lvTransaction";
			this.lvTransaction.Size = new System.Drawing.Size(646, 385);
			this.lvTransaction.TabIndex = 51;
			this.lvTransaction.UseCompatibleStateImageBehavior = false;
			this.lvTransaction.View = System.Windows.Forms.View.Details;
			//
			//_lvTransaction_ColumnHeader_1
			//
			this._lvTransaction_ColumnHeader_1.Text = "Date";
			this._lvTransaction_ColumnHeader_1.Width = 200;
			//
			//_lvTransaction_ColumnHeader_2
			//
			this._lvTransaction_ColumnHeader_2.Text = "Reference";
			this._lvTransaction_ColumnHeader_2.Width = 294;
			//
			//_lvTransaction_ColumnHeader_3
			//
			this._lvTransaction_ColumnHeader_3.Text = "Type";
			this._lvTransaction_ColumnHeader_3.Width = 200;
			//
			//_lvTransaction_ColumnHeader_4
			//
			this._lvTransaction_ColumnHeader_4.Text = "Debit";
			this._lvTransaction_ColumnHeader_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvTransaction_ColumnHeader_4.Width = 118;
			//
			//_lvTransaction_ColumnHeader_5
			//
			this._lvTransaction_ColumnHeader_5.Text = "Credit";
			this._lvTransaction_ColumnHeader_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvTransaction_ColumnHeader_5.Width = 118;
			//
			//_lbl_6
			//
			this._lbl_6.AutoSize = true;
			this._lbl_6.BackColor = System.Drawing.Color.Transparent;
			this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_6.Location = new System.Drawing.Point(729, 192);
			this._lbl_6.Name = "_lbl_6";
			this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_6.Size = new System.Drawing.Size(49, 13);
			this._lbl_6.TabIndex = 6;
			this._lbl_6.Text = "&1. Month";
			//
			//lblcount
			//
			this.lblcount.AutoSize = true;
			this.lblcount.BackColor = System.Drawing.SystemColors.Control;
			this.lblcount.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblcount.Font = new System.Drawing.Font("Arial", 13.5f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblcount.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblcount.Location = new System.Drawing.Point(791, 442);
			this.lblcount.Name = "lblcount";
			this.lblcount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblcount.Size = new System.Drawing.Size(57, 21);
			this.lblcount.TabIndex = 60;
			this.lblcount.Text = "0 of 0";
			this.lblcount.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_5
			//
			this._lbl_5.AutoSize = true;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Location = new System.Drawing.Point(729, 212);
			this._lbl_5.Name = "_lbl_5";
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.Size = new System.Drawing.Size(81, 13);
			this._lbl_5.TabIndex = 5;
			this._lbl_5.Text = "&2. Point Of Sale";
			//
			//_lbl_2
			//
			this._lbl_2.AutoSize = true;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Location = new System.Drawing.Point(729, 251);
			this._lbl_2.Name = "_lbl_2";
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.Size = new System.Drawing.Size(92, 13);
			this._lbl_2.TabIndex = 2;
			this._lbl_2.Text = "&3. Customer name";
			//
			//_lbl_3
			//
			this._lbl_3.AutoSize = true;
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Location = new System.Drawing.Point(729, 287);
			this._lbl_3.Name = "_lbl_3";
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.Size = new System.Drawing.Size(101, 13);
			this._lbl_3.TabIndex = 3;
			this._lbl_3.Text = "&4. Stock Item Name";
			//
			//_lbl_4
			//
			this._lbl_4.AutoSize = true;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Location = new System.Drawing.Point(736, 416);
			this._lbl_4.Name = "_lbl_4";
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.Size = new System.Drawing.Size(101, 13);
			this._lbl_4.TabIndex = 4;
			this._lbl_4.Text = "&4. Stock Item Name";
			//
			//Label1
			//
			this.Label1.BackColor = System.Drawing.Color.Transparent;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Location = new System.Drawing.Point(729, 322);
			this.Label1.Name = "Label1";
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.Size = new System.Drawing.Size(99, 15);
			this.Label1.TabIndex = 55;
			this.Label1.Text = "&5: Serial Number";
			//
			//_lblLabels_11
			//
			this._lblLabels_11.AutoSize = true;
			this._lblLabels_11.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_11.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_11.Location = new System.Drawing.Point(855, 241);
			this._lblLabels_11.Name = "_lblLabels_11";
			this._lblLabels_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_11.Size = new System.Drawing.Size(71, 13);
			this._lblLabels_11.TabIndex = 11;
			this._lblLabels_11.Text = "VAT Number:";
			this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_0
			//
			this._lbl_0.AutoSize = true;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Location = new System.Drawing.Point(342, 42);
			this._lbl_0.Name = "_lbl_0";
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.Size = new System.Drawing.Size(73, 14);
			this._lbl_0.TabIndex = 0;
			this._lbl_0.Text = "&2. Financials";
			//
			//_lblLabels_12
			//
			this._lblLabels_12.AutoSize = true;
			this._lblLabels_12.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_12.Location = new System.Drawing.Point(363, 66);
			this._lblLabels_12.Name = "_lblLabels_12";
			this._lblLabels_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_12.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_12.TabIndex = 12;
			this._lblLabels_12.Text = "Credit Limit:";
			this._lblLabels_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_13
			//
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_13.Location = new System.Drawing.Point(381, 90);
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.Size = new System.Drawing.Size(44, 13);
			this._lblLabels_13.TabIndex = 13;
			this._lblLabels_13.Text = "Current:";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_15
			//
			this._lblLabels_15.AutoSize = true;
			this._lblLabels_15.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_15.Location = new System.Drawing.Point(375, 111);
			this._lblLabels_15.Name = "_lblLabels_15";
			this._lblLabels_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_15.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_15.TabIndex = 15;
			this._lblLabels_15.Text = "60 Days:";
			this._lblLabels_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_17
			//
			this._lblLabels_17.AutoSize = true;
			this._lblLabels_17.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_17.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_17.Location = new System.Drawing.Point(369, 132);
			this._lblLabels_17.Name = "_lblLabels_17";
			this._lblLabels_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_17.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_17.TabIndex = 17;
			this._lblLabels_17.Text = "120 Days:";
			this._lblLabels_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_0
			//
			this._lblLabels_0.AutoSize = true;
			this._lblLabels_0.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_0.Location = new System.Drawing.Point(530, 66);
			this._lblLabels_0.Name = "_lblLabels_0";
			this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_0.Size = new System.Drawing.Size(39, 13);
			this._lblLabels_0.TabIndex = 0;
			this._lblLabels_0.Text = "Terms:";
			this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lbl_1
			//
			this._lbl_1.AutoSize = true;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Location = new System.Drawing.Point(6, 42);
			this._lbl_1.Name = "_lbl_1";
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.Size = new System.Drawing.Size(62, 14);
			this._lbl_1.TabIndex = 1;
			this._lbl_1.Text = "&1. General";
			//
			//_lblLabels_1
			//
			this._lblLabels_1.AutoSize = true;
			this._lblLabels_1.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_1.Location = new System.Drawing.Point(755, 44);
			this._lblLabels_1.Name = "_lblLabels_1";
			this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_1.Size = new System.Drawing.Size(73, 13);
			this._lblLabels_1.TabIndex = 1;
			this._lblLabels_1.Text = "Sale Channel:";
			this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_2
			//
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Location = new System.Drawing.Point(12, 63);
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.Size = new System.Drawing.Size(83, 14);
			this._lblLabels_2.TabIndex = 2;
			this._lblLabels_2.Text = "Invoice Name:";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_3
			//
			this._lblLabels_3.AutoSize = true;
			this._lblLabels_3.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_3.Location = new System.Drawing.Point(36, 84);
			this._lblLabels_3.Name = "_lblLabels_3";
			this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_3.Size = new System.Drawing.Size(65, 13);
			this._lblLabels_3.TabIndex = 3;
			this._lblLabels_3.Text = "Department:";
			this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_4
			//
			this._lblLabels_4.AutoSize = true;
			this._lblLabels_4.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_4.Location = new System.Drawing.Point(9, 108);
			this._lblLabels_4.Name = "_lblLabels_4";
			this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_4.Size = new System.Drawing.Size(156, 14);
			this._lblLabels_4.TabIndex = 4;
			this._lblLabels_4.Text = "Responsible Person Name:";
			this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_5
			//
			this._lblLabels_5.AutoSize = true;
			this._lblLabels_5.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lblLabels_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_5.Location = new System.Drawing.Point(174, 108);
			this._lblLabels_5.Name = "_lblLabels_5";
			this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_5.Size = new System.Drawing.Size(60, 14);
			this._lblLabels_5.TabIndex = 5;
			this._lblLabels_5.Text = "Surname:";
			this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_6
			//
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Location = new System.Drawing.Point(11, 197);
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.Size = new System.Drawing.Size(90, 13);
			this._lblLabels_6.TabIndex = 6;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_7
			//
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Location = new System.Drawing.Point(347, 195);
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.Size = new System.Drawing.Size(80, 13);
			this._lblLabels_7.TabIndex = 7;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_8
			//
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Location = new System.Drawing.Point(42, 144);
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.Size = new System.Drawing.Size(61, 13);
			this._lblLabels_8.TabIndex = 8;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_9
			//
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Location = new System.Drawing.Point(395, 170);
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.Size = new System.Drawing.Size(27, 13);
			this._lblLabels_9.TabIndex = 9;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_10
			//
			this._lblLabels_10.AutoSize = true;
			this._lblLabels_10.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_10.Location = new System.Drawing.Point(69, 170);
			this._lblLabels_10.Name = "_lblLabels_10";
			this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_10.Size = new System.Drawing.Size(35, 13);
			this._lblLabels_10.TabIndex = 10;
			this._lblLabels_10.Text = "Email:";
			this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_14
			//
			this._lblLabels_14.AutoSize = true;
			this._lblLabels_14.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_14.Location = new System.Drawing.Point(519, 87);
			this._lblLabels_14.Name = "_lblLabels_14";
			this._lblLabels_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_14.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_14.TabIndex = 14;
			this._lblLabels_14.Text = "30 Days:";
			this._lblLabels_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_16
			//
			this._lblLabels_16.AutoSize = true;
			this._lblLabels_16.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_16.Location = new System.Drawing.Point(519, 108);
			this._lblLabels_16.Name = "_lblLabels_16";
			this._lblLabels_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_16.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_16.TabIndex = 16;
			this._lblLabels_16.Text = "90 Days:";
			this._lblLabels_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//_lblLabels_18
			//
			this._lblLabels_18.AutoSize = true;
			this._lblLabels_18.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_18.Location = new System.Drawing.Point(513, 129);
			this._lblLabels_18.Name = "_lblLabels_18";
			this._lblLabels_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_18.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_18.TabIndex = 18;
			this._lblLabels_18.Text = "150 Days:";
			this._lblLabels_18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			//
			//frmCustomerHistory
			//
			this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)));
			this.ClientSize = new System.Drawing.Size(659, 653);
			this.ControlBox = false;
			this.Controls.Add(this.txtCustomer);
			this.Controls.Add(this.cmbPOS);
			this.Controls.Add(this.txtStock);
			this.Controls.Add(this.cmdPrint);
			this.Controls.Add(this.cmdProfit);
			this.Controls.Add(this.txtSerial);
			this.Controls.Add(this._txtFields_0);
			this.Controls.Add(this.cmbTerms);
			this.Controls.Add(this._txtFields_2);
			this.Controls.Add(this._txtFields_3);
			this.Controls.Add(this._txtFields_4);
			this.Controls.Add(this._txtFields_5);
			this.Controls.Add(this._txtFields_6);
			this.Controls.Add(this._txtFields_7);
			this.Controls.Add(this._txtFields_8);
			this.Controls.Add(this._txtFields_9);
			this.Controls.Add(this._txtFields_10);
			this.Controls.Add(this._chkFields_11);
			this.Controls.Add(this._txtFloat_12);
			this.Controls.Add(this._txtFloat_13);
			this.Controls.Add(this._txtFloat_14);
			this.Controls.Add(this._txtFloat_15);
			this.Controls.Add(this._txtFloat_16);
			this.Controls.Add(this._txtFloat_17);
			this.Controls.Add(this._txtFloat_18);
			this.Controls.Add(this._chkFields_19);
			this.Controls.Add(this.picButtons);
			this.Controls.Add(this.cmbChannel);
			this.Controls.Add(this.lvTransaction);
			this.Controls.Add(this._lbl_6);
			this.Controls.Add(this.lblcount);
			this.Controls.Add(this._lbl_5);
			this.Controls.Add(this._lbl_2);
			this.Controls.Add(this._lbl_3);
			this.Controls.Add(this._lbl_4);
			this.Controls.Add(this.Label1);
			this.Controls.Add(this._lblLabels_11);
			this.Controls.Add(this._lbl_0);
			this.Controls.Add(this._lblLabels_12);
			this.Controls.Add(this._lblLabels_13);
			this.Controls.Add(this._lblLabels_15);
			this.Controls.Add(this._lblLabels_17);
			this.Controls.Add(this._lblLabels_0);
			this.Controls.Add(this._lbl_1);
			this.Controls.Add(this._lblLabels_1);
			this.Controls.Add(this._lblLabels_2);
			this.Controls.Add(this._lblLabels_3);
			this.Controls.Add(this._lblLabels_4);
			this.Controls.Add(this._lblLabels_5);
			this.Controls.Add(this._lblLabels_6);
			this.Controls.Add(this._lblLabels_7);
			this.Controls.Add(this._lblLabels_8);
			this.Controls.Add(this._lblLabels_9);
			this.Controls.Add(this._lblLabels_10);
			this.Controls.Add(this._lblLabels_14);
			this.Controls.Add(this._lblLabels_16);
			this.Controls.Add(this._lblLabels_18);
			this.Controls.Add(this.ShapeContainer1);
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.KeyPreview = true;
			this.Location = new System.Drawing.Point(73, 22);
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.Name = "frmCustomerHistory";
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.Text = "View Customer History";
			this.picButtons.ResumeLayout(false);
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).EndInit();
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();

		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVimport));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.tmrAutoGRV = new System.Windows.Forms.Timer(components);
			this.cmdNext = new System.Windows.Forms.Button();
			this.CDOpen = new System.Windows.Forms.OpenFileDialog();
			this.cmdExit = new System.Windows.Forms.Button();
			this._Frame1_0 = new System.Windows.Forms.GroupBox();
			this.lvImport = new System.Windows.Forms.ListView();
			this._lvImport_ColumnHeader_1 = new System.Windows.Forms.ColumnHeader();
			this._lvImport_ColumnHeader_2 = new System.Windows.Forms.ColumnHeader();
			this._lvImport_ColumnHeader_3 = new System.Windows.Forms.ColumnHeader();
			this._lvImport_ColumnHeader_4 = new System.Windows.Forms.ColumnHeader();
			this._lvImport_ColumnHeader_5 = new System.Windows.Forms.ColumnHeader();
			this._lvImport_ColumnHeader_6 = new System.Windows.Forms.ColumnHeader();
			this._lvImport_ColumnHeader_7 = new System.Windows.Forms.ColumnHeader();
			this._Frame1_1 = new System.Windows.Forms.GroupBox();
			this.DataList1 = new myDataGridView();
			//Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			this._Frame1_0.SuspendLayout();
			this.lvImport.SuspendLayout();
			this._Frame1_1.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Import a GRV ...";
			this.ClientSize = new System.Drawing.Size(590, 462);
			this.Location = new System.Drawing.Point(3, 29);
			this.ControlBox = false;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.KeyPreview = false;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmGRVimport";
			this.tmrAutoGRV.Enabled = false;
			this.tmrAutoGRV.Interval = 10;
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "&Next";
			this.cmdNext.Size = new System.Drawing.Size(88, 49);
			this.cmdNext.Location = new System.Drawing.Point(486, 402);
			this.cmdNext.TabIndex = 1;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.TabStop = true;
			this.cmdNext.Name = "cmdNext";
			this.CDOpen.Title = "Select GRV import file ...";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Size = new System.Drawing.Size(88, 49);
			this.cmdExit.Location = new System.Drawing.Point(15, 402);
			this.cmdExit.TabIndex = 0;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.TabStop = true;
			this.cmdExit.Name = "cmdExit";
			this._Frame1_0.Text = "Imported GRV Data";
			this._Frame1_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_0.Size = new System.Drawing.Size(559, 370);
			this._Frame1_0.Location = new System.Drawing.Point(15, 24);
			this._Frame1_0.TabIndex = 2;
			this._Frame1_0.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_0.Enabled = true;
			this._Frame1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_0.Visible = true;
			this._Frame1_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_0.Name = "_Frame1_0";
			this.lvImport.Size = new System.Drawing.Size(541, 346);
			this.lvImport.Location = new System.Drawing.Point(9, 15);
			this.lvImport.TabIndex = 3;
			this.lvImport.View = System.Windows.Forms.View.Details;
			this.lvImport.LabelEdit = false;
			this.lvImport.LabelWrap = true;
			this.lvImport.HideSelection = false;
			this.lvImport.ForeColor = System.Drawing.SystemColors.WindowText;
			this.lvImport.BackColor = System.Drawing.SystemColors.Window;
			this.lvImport.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lvImport.Name = "lvImport";
			this._lvImport_ColumnHeader_1.Text = "Barcode";
			this._lvImport_ColumnHeader_1.Width = 118;
			this._lvImport_ColumnHeader_2.Text = "Name";
			this._lvImport_ColumnHeader_2.Width = 236;
			this._lvImport_ColumnHeader_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvImport_ColumnHeader_3.Text = "Pack Size";
			this._lvImport_ColumnHeader_3.Width = 106;
			this._lvImport_ColumnHeader_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvImport_ColumnHeader_4.Text = "Quantity";
			this._lvImport_ColumnHeader_4.Width = 95;
			this._lvImport_ColumnHeader_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvImport_ColumnHeader_5.Text = "Cost";
			this._lvImport_ColumnHeader_5.Width = 118;
			this._lvImport_ColumnHeader_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvImport_ColumnHeader_6.Text = "Price";
			this._lvImport_ColumnHeader_6.Width = 118;
			this._lvImport_ColumnHeader_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._lvImport_ColumnHeader_7.Text = "Order";
			this._lvImport_ColumnHeader_7.Width = 71;
			this._Frame1_1.Text = "Select a Supplier for this GRV ...";
			this._Frame1_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_1.Size = new System.Drawing.Size(559, 370);
			this._Frame1_1.Location = new System.Drawing.Point(15, 24);
			this._Frame1_1.TabIndex = 4;
			this._Frame1_1.Visible = false;
			this._Frame1_1.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_1.Enabled = true;
			this._Frame1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_1.Name = "_Frame1_1";
			//'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(328, 342);
			this.DataList1.Location = new System.Drawing.Point(219, 15);
			this.DataList1.TabIndex = 5;
			this.DataList1.Name = "DataList1";
			this.Controls.Add(cmdNext);
			this.Controls.Add(cmdExit);
			this.Controls.Add(_Frame1_0);
			this.Controls.Add(_Frame1_1);
			this._Frame1_0.Controls.Add(lvImport);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_1);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_2);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_3);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_4);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_5);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_6);
			this.lvImport.Columns.Add(_lvImport_ColumnHeader_7);
			this._Frame1_1.Controls.Add(DataList1);
			//Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
			//Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this._Frame1_0.ResumeLayout(false);
			this.lvImport.ResumeLayout(false);
			this._Frame1_1.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmKeyboard));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.txtName    = new System.Windows.Forms.TextBox();
     this.picButtons = new System.Windows.Forms.Panel();
     this.cmdClose   = new System.Windows.Forms.Button();
     this.cmdPrint   = new System.Windows.Forms.Button();
     this.gridEdit   = new myDataGridView();
     this.Label1     = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                        = "Keyboard Layout Editor";
     this.ClientSize                  = new System.Drawing.Size(434, 611);
     this.Location                    = new System.Drawing.Point(3, 29);
     this.ControlBox                  = false;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.KeyPreview                  = false;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmKeyboard";
     this.txtName.AutoSize            = false;
     this.txtName.Size                = new System.Drawing.Size(301, 24);
     this.txtName.Location            = new System.Drawing.Point(125, 48);
     this.txtName.TabIndex            = 4;
     this.txtName.Text                = "Text1";
     this.txtName.AcceptsReturn       = true;
     this.txtName.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtName.BackColor           = System.Drawing.SystemColors.Window;
     this.txtName.CausesValidation    = true;
     this.txtName.Enabled             = true;
     this.txtName.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtName.HideSelection       = true;
     this.txtName.ReadOnly            = false;
     this.txtName.MaxLength           = 0;
     this.txtName.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtName.Multiline           = false;
     this.txtName.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtName.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtName.TabStop             = true;
     this.txtName.Visible             = true;
     this.txtName.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtName.Name                = "txtName";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size             = new System.Drawing.Size(434, 44);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 1;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name             = "picButtons";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(73, 29);
     this.cmdClose.Location           = new System.Drawing.Point(352, 6);
     this.cmdClose.TabIndex           = 3;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     this.cmdPrint.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text               = "&Print";
     this.cmdPrint.Size               = new System.Drawing.Size(73, 29);
     this.cmdPrint.Location           = new System.Drawing.Point(270, 6);
     this.cmdPrint.TabIndex           = 2;
     this.cmdPrint.TabStop            = false;
     this.cmdPrint.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation   = true;
     this.cmdPrint.Enabled            = true;
     this.cmdPrint.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name               = "cmdPrint";
     //gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
     this.gridEdit.Size      = new System.Drawing.Size(419, 526);
     this.gridEdit.Location  = new System.Drawing.Point(9, 75);
     this.gridEdit.TabIndex  = 0;
     this.gridEdit.Name      = "gridEdit";
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this.Label1.Text        = "Keyboard Name:";
     this.Label1.ForeColor   = System.Drawing.Color.Black;
     this.Label1.Size        = new System.Drawing.Size(117, 16);
     this.Label1.Location    = new System.Drawing.Point(6, 51);
     this.Label1.TabIndex    = 5;
     this.Label1.BackColor   = System.Drawing.Color.Transparent;
     this.Label1.Enabled     = true;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic = true;
     this.Label1.Visible     = true;
     this.Label1.AutoSize    = true;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name        = "Label1";
     this.Controls.Add(txtName);
     this.Controls.Add(picButtons);
     this.Controls.Add(gridEdit);
     this.Controls.Add(Label1);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdPrint);
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
Exemple #47
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmReportGroupList));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.cmdExit    = new System.Windows.Forms.Button();
     this.txtSearch  = new System.Windows.Forms.TextBox();
     this.cmdNew     = new System.Windows.Forms.Button();
     this.DataList1  = new myDataGridView();
     this.lbl        = new System.Windows.Forms.Label();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.DataList1).BeginInit();
     this.Text                       = "Select a Report Group";
     this.ClientSize                 = new System.Drawing.Size(256, 442);
     this.Location                   = new System.Drawing.Point(4, 23);
     this.ControlBox                 = false;
     this.StartPosition              = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode              = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                  = System.Drawing.SystemColors.Control;
     this.FormBorderStyle            = System.Windows.Forms.FormBorderStyle.Sizable;
     this.Enabled                    = true;
     this.KeyPreview                 = false;
     this.MaximizeBox                = true;
     this.MinimizeBox                = true;
     this.Cursor                     = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar              = true;
     this.HelpButton                 = false;
     this.WindowState                = System.Windows.Forms.FormWindowState.Normal;
     this.Name                       = "frmReportGroupList";
     this.cmdExit.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text               = "E&xit";
     this.cmdExit.Size               = new System.Drawing.Size(97, 52);
     this.cmdExit.Location           = new System.Drawing.Point(153, 384);
     this.cmdExit.TabIndex           = 3;
     this.cmdExit.TabStop            = false;
     this.cmdExit.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation   = true;
     this.cmdExit.Enabled            = true;
     this.cmdExit.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.Name               = "cmdExit";
     this.txtSearch.AutoSize         = false;
     this.txtSearch.Size             = new System.Drawing.Size(199, 19);
     this.txtSearch.Location         = new System.Drawing.Point(51, 12);
     this.txtSearch.TabIndex         = 1;
     this.txtSearch.AcceptsReturn    = true;
     this.txtSearch.TextAlign        = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtSearch.BackColor        = System.Drawing.SystemColors.Window;
     this.txtSearch.CausesValidation = true;
     this.txtSearch.Enabled          = true;
     this.txtSearch.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtSearch.HideSelection    = true;
     this.txtSearch.ReadOnly         = false;
     this.txtSearch.MaxLength        = 0;
     this.txtSearch.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtSearch.Multiline        = false;
     this.txtSearch.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtSearch.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtSearch.TabStop          = true;
     this.txtSearch.Visible          = true;
     this.txtSearch.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtSearch.Name             = "txtSearch";
     this.cmdNew.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNew.Text                = "&New";
     this.cmdNew.Size                = new System.Drawing.Size(97, 52);
     this.cmdNew.Location            = new System.Drawing.Point(6, 384);
     this.cmdNew.TabIndex            = 0;
     this.cmdNew.TabStop             = false;
     this.cmdNew.BackColor           = System.Drawing.SystemColors.Control;
     this.cmdNew.CausesValidation    = true;
     this.cmdNew.Enabled             = true;
     this.cmdNew.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.cmdNew.Cursor              = System.Windows.Forms.Cursors.Default;
     this.cmdNew.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.cmdNew.Name                = "cmdNew";
     //DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
     this.DataList1.Size     = new System.Drawing.Size(244, 342);
     this.DataList1.Location = new System.Drawing.Point(8, 36);
     this.DataList1.TabIndex = 2;
     this.DataList1.Name     = "DataList1";
     this.lbl.TextAlign      = System.Drawing.ContentAlignment.TopRight;
     this.lbl.Text           = "&Search :";
     this.lbl.Size           = new System.Drawing.Size(40, 13);
     this.lbl.Location       = new System.Drawing.Point(8, 15);
     this.lbl.TabIndex       = 4;
     this.lbl.BackColor      = System.Drawing.Color.Transparent;
     this.lbl.Enabled        = true;
     this.lbl.ForeColor      = System.Drawing.SystemColors.ControlText;
     this.lbl.Cursor         = System.Windows.Forms.Cursors.Default;
     this.lbl.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this.lbl.UseMnemonic    = true;
     this.lbl.Visible        = true;
     this.lbl.AutoSize       = true;
     this.lbl.BorderStyle    = System.Windows.Forms.BorderStyle.None;
     this.lbl.Name           = "lbl";
     this.Controls.Add(cmdExit);
     this.Controls.Add(txtSearch);
     this.Controls.Add(cmdNew);
     this.Controls.Add(DataList1);
     this.Controls.Add(lbl);
     ((System.ComponentModel.ISupportInitialize) this.DataList1).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmFloatLister));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.Command2 = new System.Windows.Forms.Button();
			this.cmdNew = new System.Windows.Forms.Button();
			this.DataList1 = new myDataGridView();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			this.Text = "Denomination";
			this.ClientSize = new System.Drawing.Size(223, 328);
			this.Location = new System.Drawing.Point(4, 23);
			this.ControlBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
			this.Enabled = true;
			this.KeyPreview = false;
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmFloatLister";
			this.Command2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command2.Text = "&Exit";
			this.Command2.Size = new System.Drawing.Size(97, 41);
			this.Command2.Location = new System.Drawing.Point(124, 282);
			this.Command2.TabIndex = 2;
			this.Command2.BackColor = System.Drawing.SystemColors.Control;
			this.Command2.CausesValidation = true;
			this.Command2.Enabled = true;
			this.Command2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command2.TabStop = true;
			this.Command2.Name = "Command2";
			this.cmdNew.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNew.Text = "&New";
			this.cmdNew.Size = new System.Drawing.Size(97, 41);
			this.cmdNew.Location = new System.Drawing.Point(6, 282);
			this.cmdNew.TabIndex = 1;
			this.cmdNew.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNew.CausesValidation = true;
			this.cmdNew.Enabled = true;
			this.cmdNew.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNew.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNew.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNew.TabStop = true;
			this.cmdNew.Name = "cmdNew";
			//'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(216, 264);
			this.DataList1.Location = new System.Drawing.Point(4, 10);
			this.DataList1.TabIndex = 0;
			this.DataList1.Name = "DataList1";
			this.Controls.Add(Command2);
			this.Controls.Add(cmdNew);
			this.Controls.Add(DataList1);
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();
		}
Exemple #49
0
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmRPpriceCompare));
     this.components   = new System.ComponentModel.Container();
     this.ToolTip1     = new System.Windows.Forms.ToolTip(components);
     this.txtAbove     = new System.Windows.Forms.TextBox();
     this.chkAbove     = new System.Windows.Forms.CheckBox();
     this.txtBelow     = new System.Windows.Forms.TextBox();
     this.chkBelow     = new System.Windows.Forms.CheckBox();
     this.chkQuantity  = new System.Windows.Forms.CheckBox();
     this.chkDifferent = new System.Windows.Forms.CheckBox();
     this.cmdExit      = new System.Windows.Forms.Button();
     this.cmdPrint     = new System.Windows.Forms.Button();
     this.cmdNamespace = new System.Windows.Forms.Button();
     this.cmbChannel   = new myDataGridView();
     this.cmbShrink    = new myDataGridView();
     this._lbl_2       = new System.Windows.Forms.Label();
     this._lbl_1       = new System.Windows.Forms.Label();
     this.lblHeading   = new System.Windows.Forms.Label();
     this._lbl_0       = new System.Windows.Forms.Label();
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.cmbChannel).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbShrink).BeginInit();
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     this.BackColor                     = System.Drawing.Color.FromArgb(224, 224, 224);
     this.Text                          = "Setup Price Comparison Report";
     this.ClientSize                    = new System.Drawing.Size(462, 215);
     this.Location                      = new System.Drawing.Point(4, 23);
     this.ControlBox                    = false;
     this.KeyPreview                    = true;
     this.StartPosition                 = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode                 = System.Windows.Forms.AutoScaleMode.Font;
     this.FormBorderStyle               = System.Windows.Forms.FormBorderStyle.Sizable;
     this.Enabled                       = true;
     this.MaximizeBox                   = true;
     this.MinimizeBox                   = true;
     this.Cursor                        = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                   = System.Windows.Forms.RightToLeft.No;
     this.ShowInTaskbar                 = true;
     this.HelpButton                    = false;
     this.WindowState                   = System.Windows.Forms.FormWindowState.Normal;
     this.Name                          = "frmRPpriceCompare";
     this.txtAbove.AutoSize             = false;
     this.txtAbove.TextAlign            = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtAbove.Size                 = new System.Drawing.Size(28, 19);
     this.txtAbove.Location             = new System.Drawing.Point(252, 168);
     this.txtAbove.TabIndex             = 13;
     this.txtAbove.Text                 = "0";
     this.txtAbove.AcceptsReturn        = true;
     this.txtAbove.BackColor            = System.Drawing.SystemColors.Window;
     this.txtAbove.CausesValidation     = true;
     this.txtAbove.Enabled              = true;
     this.txtAbove.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtAbove.HideSelection        = true;
     this.txtAbove.ReadOnly             = false;
     this.txtAbove.MaxLength            = 0;
     this.txtAbove.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtAbove.Multiline            = false;
     this.txtAbove.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtAbove.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtAbove.TabStop              = true;
     this.txtAbove.Visible              = true;
     this.txtAbove.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtAbove.Name                 = "txtAbove";
     this.chkAbove.FlatStyle            = System.Windows.Forms.FlatStyle.Flat;
     this.chkAbove.BackColor            = System.Drawing.Color.FromArgb(224, 224, 224);
     this.chkAbove.Text                 = "Show stock Items where exit price above";
     this.chkAbove.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.chkAbove.Size                 = new System.Drawing.Size(217, 13);
     this.chkAbove.Location             = new System.Drawing.Point(33, 171);
     this.chkAbove.TabIndex             = 12;
     this.chkAbove.CheckAlign           = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkAbove.CausesValidation     = true;
     this.chkAbove.Enabled              = true;
     this.chkAbove.Cursor               = System.Windows.Forms.Cursors.Default;
     this.chkAbove.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.chkAbove.Appearance           = System.Windows.Forms.Appearance.Normal;
     this.chkAbove.TabStop              = true;
     this.chkAbove.CheckState           = System.Windows.Forms.CheckState.Unchecked;
     this.chkAbove.Visible              = true;
     this.chkAbove.Name                 = "chkAbove";
     this.txtBelow.AutoSize             = false;
     this.txtBelow.TextAlign            = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtBelow.Size                 = new System.Drawing.Size(28, 19);
     this.txtBelow.Location             = new System.Drawing.Point(252, 189);
     this.txtBelow.TabIndex             = 10;
     this.txtBelow.Text                 = "0";
     this.txtBelow.AcceptsReturn        = true;
     this.txtBelow.BackColor            = System.Drawing.SystemColors.Window;
     this.txtBelow.CausesValidation     = true;
     this.txtBelow.Enabled              = true;
     this.txtBelow.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.txtBelow.HideSelection        = true;
     this.txtBelow.ReadOnly             = false;
     this.txtBelow.MaxLength            = 0;
     this.txtBelow.Cursor               = System.Windows.Forms.Cursors.IBeam;
     this.txtBelow.Multiline            = false;
     this.txtBelow.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.txtBelow.ScrollBars           = System.Windows.Forms.ScrollBars.None;
     this.txtBelow.TabStop              = true;
     this.txtBelow.Visible              = true;
     this.txtBelow.BorderStyle          = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtBelow.Name                 = "txtBelow";
     this.chkBelow.FlatStyle            = System.Windows.Forms.FlatStyle.Flat;
     this.chkBelow.BackColor            = System.Drawing.Color.FromArgb(224, 224, 224);
     this.chkBelow.Text                 = "Show stock Items where exit price below ";
     this.chkBelow.ForeColor            = System.Drawing.SystemColors.WindowText;
     this.chkBelow.Size                 = new System.Drawing.Size(217, 13);
     this.chkBelow.Location             = new System.Drawing.Point(33, 192);
     this.chkBelow.TabIndex             = 9;
     this.chkBelow.CheckAlign           = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkBelow.CausesValidation     = true;
     this.chkBelow.Enabled              = true;
     this.chkBelow.Cursor               = System.Windows.Forms.Cursors.Default;
     this.chkBelow.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.chkBelow.Appearance           = System.Windows.Forms.Appearance.Normal;
     this.chkBelow.TabStop              = true;
     this.chkBelow.CheckState           = System.Windows.Forms.CheckState.Unchecked;
     this.chkBelow.Visible              = true;
     this.chkBelow.Name                 = "chkBelow";
     this.chkQuantity.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.chkQuantity.BackColor         = System.Drawing.Color.FromArgb(224, 224, 224);
     this.chkQuantity.Text              = "Show stock Items where quantity is exactly ";
     this.chkQuantity.ForeColor         = System.Drawing.SystemColors.WindowText;
     this.chkQuantity.Size              = new System.Drawing.Size(226, 13);
     this.chkQuantity.Location          = new System.Drawing.Point(33, 141);
     this.chkQuantity.TabIndex          = 5;
     this.chkQuantity.CheckAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkQuantity.CausesValidation  = true;
     this.chkQuantity.Enabled           = true;
     this.chkQuantity.Cursor            = System.Windows.Forms.Cursors.Default;
     this.chkQuantity.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.chkQuantity.Appearance        = System.Windows.Forms.Appearance.Normal;
     this.chkQuantity.TabStop           = true;
     this.chkQuantity.CheckState        = System.Windows.Forms.CheckState.Unchecked;
     this.chkQuantity.Visible           = true;
     this.chkQuantity.Name              = "chkQuantity";
     this.chkDifferent.FlatStyle        = System.Windows.Forms.FlatStyle.Flat;
     this.chkDifferent.BackColor        = System.Drawing.Color.FromArgb(224, 224, 224);
     this.chkDifferent.Text             = "Only show stock item where prices are different";
     this.chkDifferent.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.chkDifferent.Size             = new System.Drawing.Size(268, 13);
     this.chkDifferent.Location         = new System.Drawing.Point(33, 111);
     this.chkDifferent.TabIndex         = 4;
     this.chkDifferent.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkDifferent.CausesValidation = true;
     this.chkDifferent.Enabled          = true;
     this.chkDifferent.Cursor           = System.Windows.Forms.Cursors.Default;
     this.chkDifferent.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.chkDifferent.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.chkDifferent.TabStop          = true;
     this.chkDifferent.CheckState       = System.Windows.Forms.CheckState.Unchecked;
     this.chkDifferent.Visible          = true;
     this.chkDifferent.Name             = "chkDifferent";
     this.cmdExit.TextAlign             = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text                  = "E&xit";
     this.cmdExit.Size                  = new System.Drawing.Size(97, 52);
     this.cmdExit.Location              = new System.Drawing.Point(363, 156);
     this.cmdExit.TabIndex              = 8;
     this.cmdExit.TabStop               = false;
     this.cmdExit.BackColor             = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation      = true;
     this.cmdExit.Enabled               = true;
     this.cmdExit.ForeColor             = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor                = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft           = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.Name                  = "cmdExit";
     this.cmdPrint.TextAlign            = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text                 = "&Print";
     this.cmdPrint.Size                 = new System.Drawing.Size(97, 52);
     this.cmdPrint.Location             = new System.Drawing.Point(363, 96);
     this.cmdPrint.TabIndex             = 7;
     this.cmdPrint.BackColor            = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation     = true;
     this.cmdPrint.Enabled              = true;
     this.cmdPrint.ForeColor            = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor               = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.TabStop              = true;
     this.cmdPrint.Name                 = "cmdPrint";
     this.cmdNamespace.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNamespace.Text             = "&Filter";
     this.cmdNamespace.Size             = new System.Drawing.Size(97, 52);
     this.cmdNamespace.Location         = new System.Drawing.Point(363, 3);
     this.cmdNamespace.TabIndex         = 1;
     this.cmdNamespace.TabStop          = false;
     this.cmdNamespace.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdNamespace.CausesValidation = true;
     this.cmdNamespace.Enabled          = true;
     this.cmdNamespace.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdNamespace.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdNamespace.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdNamespace.Name             = "cmdNamespace";
     //cmbChannel.OcxState = CType(resources.GetObject("cmbChannel.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbChannel.Size     = new System.Drawing.Size(124, 21);
     this.cmbChannel.Location = new System.Drawing.Point(153, 60);
     this.cmbChannel.TabIndex = 3;
     this.cmbChannel.Name     = "cmbChannel";
     //cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbShrink.Size         = new System.Drawing.Size(67, 21);
     this.cmbShrink.Location     = new System.Drawing.Point(261, 138);
     this.cmbShrink.TabIndex     = 6;
     this.cmbShrink.Name         = "cmbShrink";
     this._lbl_2.TextAlign       = System.Drawing.ContentAlignment.TopRight;
     this._lbl_2.Text            = "%";
     this._lbl_2.Size            = new System.Drawing.Size(11, 13);
     this._lbl_2.Location        = new System.Drawing.Point(282, 171);
     this._lbl_2.TabIndex        = 14;
     this._lbl_2.BackColor       = System.Drawing.Color.Transparent;
     this._lbl_2.Enabled         = true;
     this._lbl_2.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._lbl_2.Cursor          = System.Windows.Forms.Cursors.Default;
     this._lbl_2.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this._lbl_2.UseMnemonic     = true;
     this._lbl_2.Visible         = true;
     this._lbl_2.AutoSize        = true;
     this._lbl_2.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this._lbl_2.Name            = "_lbl_2";
     this._lbl_1.TextAlign       = System.Drawing.ContentAlignment.TopRight;
     this._lbl_1.Text            = "%";
     this._lbl_1.Size            = new System.Drawing.Size(11, 13);
     this._lbl_1.Location        = new System.Drawing.Point(282, 192);
     this._lbl_1.TabIndex        = 11;
     this._lbl_1.BackColor       = System.Drawing.Color.Transparent;
     this._lbl_1.Enabled         = true;
     this._lbl_1.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._lbl_1.Cursor          = System.Windows.Forms.Cursors.Default;
     this._lbl_1.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this._lbl_1.UseMnemonic     = true;
     this._lbl_1.Visible         = true;
     this._lbl_1.AutoSize        = true;
     this._lbl_1.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this._lbl_1.Name            = "_lbl_1";
     this.lblHeading.Text        = "Using the \"Stock Item Selector\" .....";
     this.lblHeading.Size        = new System.Drawing.Size(349, 52);
     this.lblHeading.Location    = new System.Drawing.Point(3, 3);
     this.lblHeading.TabIndex    = 0;
     this.lblHeading.TextAlign   = System.Drawing.ContentAlignment.TopLeft;
     this.lblHeading.BackColor   = System.Drawing.SystemColors.Control;
     this.lblHeading.Enabled     = true;
     this.lblHeading.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.lblHeading.Cursor      = System.Windows.Forms.Cursors.Default;
     this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.lblHeading.UseMnemonic = true;
     this.lblHeading.Visible     = true;
     this.lblHeading.AutoSize    = false;
     this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblHeading.Name        = "lblHeading";
     this._lbl_0.TextAlign       = System.Drawing.ContentAlignment.TopRight;
     this._lbl_0.Text            = "For which Sale Channel";
     this._lbl_0.Size            = new System.Drawing.Size(112, 13);
     this._lbl_0.Location        = new System.Drawing.Point(34, 63);
     this._lbl_0.TabIndex        = 2;
     this._lbl_0.BackColor       = System.Drawing.Color.Transparent;
     this._lbl_0.Enabled         = true;
     this._lbl_0.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Cursor          = System.Windows.Forms.Cursors.Default;
     this._lbl_0.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.UseMnemonic     = true;
     this._lbl_0.Visible         = true;
     this._lbl_0.AutoSize        = true;
     this._lbl_0.BorderStyle     = System.Windows.Forms.BorderStyle.None;
     this._lbl_0.Name            = "_lbl_0";
     this.Controls.Add(txtAbove);
     this.Controls.Add(chkAbove);
     this.Controls.Add(txtBelow);
     this.Controls.Add(chkBelow);
     this.Controls.Add(chkQuantity);
     this.Controls.Add(chkDifferent);
     this.Controls.Add(cmdExit);
     this.Controls.Add(cmdPrint);
     this.Controls.Add(cmdNamespace);
     this.Controls.Add(cmbChannel);
     this.Controls.Add(cmbShrink);
     this.Controls.Add(_lbl_2);
     this.Controls.Add(_lbl_1);
     this.Controls.Add(lblHeading);
     this.Controls.Add(_lbl_0);
     //Me.lbl.SetIndex(_lbl_2, CType(2, Short))
     //Me.lbl.SetIndex(_lbl_1, CType(1, Short))
     //Me.lbl.SetIndex(_lbl_0, CType(0, Short))
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.cmbShrink).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbChannel).EndInit();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTakeAdd));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.txtSARef = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdPrintSlip = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.lblHeading = new System.Windows.Forms.Label();
			this.grdDataGrid = new System.Windows.Forms.Panel();
			this.grdDataGrid1 = new myDataGridView();
			this.lbl = new System.Windows.Forms.Label();
			this.picButtons.SuspendLayout();
			this.grdDataGrid.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.grdDataGrid1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Text = "Stock Take Add(This option only add stock to your quantities and is not a stock take)";
			this.ClientSize = new System.Drawing.Size(564, 555);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockTakeAdd";
			this.txtSARef.AutoSize = false;
			this.txtSARef.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.txtSARef.Size = new System.Drawing.Size(486, 22);
			this.txtSARef.Location = new System.Drawing.Point(72, 528);
			this.txtSARef.TabIndex = 6;
			this.txtSARef.AcceptsReturn = true;
			this.txtSARef.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtSARef.CausesValidation = true;
			this.txtSARef.Enabled = true;
			this.txtSARef.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtSARef.HideSelection = true;
			this.txtSARef.ReadOnly = false;
			this.txtSARef.MaxLength = 0;
			this.txtSARef.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtSARef.Multiline = false;
			this.txtSARef.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtSARef.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtSARef.TabStop = true;
			this.txtSARef.Visible = true;
			this.txtSARef.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtSARef.Name = "txtSARef";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.ForeColor = System.Drawing.SystemColors.WindowText;
			this.picButtons.Size = new System.Drawing.Size(564, 35);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 1;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.picButtons.Name = "picButtons";
			this.cmdPrintSlip.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrintSlip.Text = "&Print Slip";
			this.cmdPrintSlip.Size = new System.Drawing.Size(73, 29);
			this.cmdPrintSlip.Location = new System.Drawing.Point(336, 0);
			this.cmdPrintSlip.TabIndex = 8;
			this.cmdPrintSlip.TabStop = false;
			this.cmdPrintSlip.Visible = false;
			this.cmdPrintSlip.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrintSlip.CausesValidation = true;
			this.cmdPrintSlip.Enabled = true;
			this.cmdPrintSlip.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrintSlip.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrintSlip.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrintSlip.Name = "cmdPrintSlip";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(488, 2);
			this.cmdClose.TabIndex = 3;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.TabStop = true;
			this.cmdClose.Name = "cmdClose";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(411, 3);
			this.cmdPrint.TabIndex = 2;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.lblHeading.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblHeading.Text = "Using the \"Stock Item Selector\" .....";
			this.lblHeading.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblHeading.Size = new System.Drawing.Size(403, 22);
			this.lblHeading.Location = new System.Drawing.Point(3, 6);
			this.lblHeading.TabIndex = 4;
			this.lblHeading.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblHeading.Enabled = true;
			this.lblHeading.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblHeading.UseMnemonic = true;
			this.lblHeading.Visible = true;
			this.lblHeading.AutoSize = false;
			this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblHeading.Name = "lblHeading";
			this.grdDataGrid.Dock = System.Windows.Forms.DockStyle.Top;
			this.grdDataGrid.Size = new System.Drawing.Size(564, 486);
			this.grdDataGrid.Location = new System.Drawing.Point(0, 35);
			this.grdDataGrid.TabIndex = 0;
			this.grdDataGrid.BackColor = System.Drawing.SystemColors.Control;
			this.grdDataGrid.CausesValidation = true;
			this.grdDataGrid.Enabled = true;
			this.grdDataGrid.ForeColor = System.Drawing.SystemColors.ControlText;
			this.grdDataGrid.Cursor = System.Windows.Forms.Cursors.Default;
			this.grdDataGrid.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.grdDataGrid.TabStop = true;
			this.grdDataGrid.Visible = true;
			this.grdDataGrid.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.grdDataGrid.Name = "grdDataGrid";
			//grdDataGrid1.OcxState = CType(resources.GetObject("grdDataGrid1.OcxState"), System.Windows.Forms.AxHost.State)
			this.grdDataGrid1.Size = new System.Drawing.Size(557, 247);
			this.grdDataGrid1.Location = new System.Drawing.Point(0, 0);
			this.grdDataGrid1.TabIndex = 5;
			this.grdDataGrid1.Name = "grdDataGrid1";
			this.lbl.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lbl.Text = "&Reference :";
			this.lbl.Size = new System.Drawing.Size(64, 22);
			this.lbl.Location = new System.Drawing.Point(0, 530);
			this.lbl.TabIndex = 7;
			this.lbl.BackColor = System.Drawing.Color.Transparent;
			this.lbl.Enabled = true;
			this.lbl.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lbl.Cursor = System.Windows.Forms.Cursors.Default;
			this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lbl.UseMnemonic = true;
			this.lbl.Visible = true;
			this.lbl.AutoSize = true;
			this.lbl.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lbl.Name = "lbl";
			this.Controls.Add(txtSARef);
			this.Controls.Add(picButtons);
			this.Controls.Add(grdDataGrid);
			this.Controls.Add(lbl);
			this.picButtons.Controls.Add(cmdPrintSlip);
			this.picButtons.Controls.Add(cmdClose);
			this.picButtons.Controls.Add(cmdPrint);
			this.picButtons.Controls.Add(lblHeading);
			this.grdDataGrid.Controls.Add(grdDataGrid1);
			((System.ComponentModel.ISupportInitialize)this.grdDataGrid1).EndInit();
			this.picButtons.ResumeLayout(false);
			this.grdDataGrid.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRV));
     this.components      = new System.ComponentModel.Container();
     this.ToolTip1        = new System.Windows.Forms.ToolTip(components);
     this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
     this.tmrAutoGRV      = new System.Windows.Forms.Timer(components);
     this.cmdNext         = new System.Windows.Forms.Button();
     this.cmdBack         = new System.Windows.Forms.Button();
     this._frmMode_1      = new System.Windows.Forms.GroupBox();
     this.cmdNewGT        = new System.Windows.Forms.Button();
     this.MonthView1      = new System.Windows.Forms.MonthCalendar();
     this.cmdLoad         = new System.Windows.Forms.Button();
     this.txtInvoiceTotal = new System.Windows.Forms.TextBox();
     this.txtInvoiceNo    = new System.Windows.Forms.TextBox();
     this.cmbTemplate     = new myDataGridView();
     this._lbl_4          = new System.Windows.Forms.Label();
     this._lblLabels_0    = new System.Windows.Forms.Label();
     this._lblData_3      = new System.Windows.Forms.Label();
     this._lbl_5          = new System.Windows.Forms.Label();
     this._lbl_6          = new System.Windows.Forms.Label();
     this._lbl_7          = new System.Windows.Forms.Label();
     this._lblData_7      = new System.Windows.Forms.Label();
     this._lblLabels_36   = new System.Windows.Forms.Label();
     this._lbl_2          = new System.Windows.Forms.Label();
     this._lbl_1          = new System.Windows.Forms.Label();
     this._lblLabels_2    = new System.Windows.Forms.Label();
     this._lblLabels_8    = new System.Windows.Forms.Label();
     this._lblLabels_9    = new System.Windows.Forms.Label();
     this._lblData_0      = new System.Windows.Forms.Label();
     this._lblData_1      = new System.Windows.Forms.Label();
     this._lblData_2      = new System.Windows.Forms.Label();
     this._Shape1_1       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     this._Shape1_2       = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
     //Me.frmMode = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.lblData = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Shape1 = new OvalShapeArray(components);
     this._frmMode_1.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.MonthView1).BeginInit();
     ((System.ComponentModel.ISupportInitialize) this.cmbTemplate).BeginInit();
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblData, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
     ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit();
     this.FormBorderStyle           = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                      = "Process a 'Good Receiving Voucher'";
     this.ClientSize                = new System.Drawing.Size(360, 449);
     this.Location                  = new System.Drawing.Point(3, 22);
     this.ControlBox                = false;
     this.KeyPreview                = true;
     this.MaximizeBox               = false;
     this.MinimizeBox               = false;
     this.ShowInTaskbar             = false;
     this.StartPosition             = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode             = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                 = System.Drawing.SystemColors.Control;
     this.Enabled                   = true;
     this.Cursor                    = System.Windows.Forms.Cursors.Default;
     this.RightToLeft               = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                = false;
     this.WindowState               = System.Windows.Forms.FormWindowState.Normal;
     this.Name                      = "frmGRV";
     this.tmrAutoGRV.Enabled        = false;
     this.tmrAutoGRV.Interval       = 10;
     this.cmdNext.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNext.Text              = "&Next";
     this.cmdNext.Font              = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdNext.Size              = new System.Drawing.Size(97, 34);
     this.cmdNext.Location          = new System.Drawing.Point(246, 409);
     this.cmdNext.TabIndex          = 9;
     this.cmdNext.TabStop           = false;
     this.cmdNext.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdNext.CausesValidation  = true;
     this.cmdNext.Enabled           = true;
     this.cmdNext.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdNext.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdNext.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdNext.Name              = "cmdNext";
     this.cmdBack.TextAlign         = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdBack.Text              = "E&xit";
     this.cmdBack.Font              = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdBack.Size              = new System.Drawing.Size(97, 34);
     this.cmdBack.Location          = new System.Drawing.Point(15, 409);
     this.cmdBack.TabIndex          = 8;
     this.cmdBack.TabStop           = false;
     this.cmdBack.BackColor         = System.Drawing.SystemColors.Control;
     this.cmdBack.CausesValidation  = true;
     this.cmdBack.Enabled           = true;
     this.cmdBack.ForeColor         = System.Drawing.SystemColors.ControlText;
     this.cmdBack.Cursor            = System.Windows.Forms.Cursors.Default;
     this.cmdBack.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this.cmdBack.Name              = "cmdBack";
     this._frmMode_1.Text           = "Select a supplier to transact with.";
     this._frmMode_1.Font           = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._frmMode_1.Size           = new System.Drawing.Size(346, 395);
     this._frmMode_1.Location       = new System.Drawing.Point(6, 6);
     this._frmMode_1.TabIndex       = 10;
     this._frmMode_1.BackColor      = System.Drawing.SystemColors.Control;
     this._frmMode_1.Enabled        = true;
     this._frmMode_1.ForeColor      = System.Drawing.SystemColors.ControlText;
     this._frmMode_1.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._frmMode_1.Visible        = true;
     this._frmMode_1.Padding        = new System.Windows.Forms.Padding(0);
     this._frmMode_1.Name           = "_frmMode_1";
     this.cmdNewGT.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdNewGT.Text             = "Maintain GRV Templates";
     this.AcceptButton              = this.cmdNewGT;
     this.cmdNewGT.Font             = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdNewGT.Size             = new System.Drawing.Size(169, 23);
     this.cmdNewGT.Location         = new System.Drawing.Point(167, 144);
     this.cmdNewGT.TabIndex         = 24;
     this.cmdNewGT.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdNewGT.CausesValidation = true;
     this.cmdNewGT.Enabled          = true;
     this.cmdNewGT.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdNewGT.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdNewGT.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdNewGT.TabStop          = true;
     this.cmdNewGT.Name             = "cmdNewGT";
     //MonthView1.OcxState = CType(resources.GetObject("MonthView1.OcxState"), System.Windows.Forms.AxHost.State)
     this.MonthView1.Size                  = new System.Drawing.Size(176, 154);
     this.MonthView1.Location              = new System.Drawing.Point(72, 223);
     this.MonthView1.TabIndex              = 6;
     this.MonthView1.Name                  = "MonthView1";
     this.cmdLoad.TextAlign                = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdLoad.Text                     = "Load GRV";
     this.cmdLoad.Font                     = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this.cmdLoad.Size                     = new System.Drawing.Size(73, 52);
     this.cmdLoad.Location                 = new System.Drawing.Point(255, 322);
     this.cmdLoad.TabIndex                 = 7;
     this.cmdLoad.BackColor                = System.Drawing.SystemColors.Control;
     this.cmdLoad.CausesValidation         = true;
     this.cmdLoad.Enabled                  = true;
     this.cmdLoad.ForeColor                = System.Drawing.SystemColors.ControlText;
     this.cmdLoad.Cursor                   = System.Windows.Forms.Cursors.Default;
     this.cmdLoad.RightToLeft              = System.Windows.Forms.RightToLeft.No;
     this.cmdLoad.TabStop                  = true;
     this.cmdLoad.Name                     = "cmdLoad";
     this.txtInvoiceTotal.AutoSize         = false;
     this.txtInvoiceTotal.TextAlign        = System.Windows.Forms.HorizontalAlignment.Right;
     this.txtInvoiceTotal.Size             = new System.Drawing.Size(103, 19);
     this.txtInvoiceTotal.Location         = new System.Drawing.Point(147, 199);
     this.txtInvoiceTotal.TabIndex         = 4;
     this.txtInvoiceTotal.AcceptsReturn    = true;
     this.txtInvoiceTotal.BackColor        = System.Drawing.SystemColors.Window;
     this.txtInvoiceTotal.CausesValidation = true;
     this.txtInvoiceTotal.Enabled          = true;
     this.txtInvoiceTotal.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.txtInvoiceTotal.HideSelection    = true;
     this.txtInvoiceTotal.ReadOnly         = false;
     this.txtInvoiceTotal.MaxLength        = 0;
     this.txtInvoiceTotal.Cursor           = System.Windows.Forms.Cursors.IBeam;
     this.txtInvoiceTotal.Multiline        = false;
     this.txtInvoiceTotal.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.txtInvoiceTotal.ScrollBars       = System.Windows.Forms.ScrollBars.None;
     this.txtInvoiceTotal.TabStop          = true;
     this.txtInvoiceTotal.Visible          = true;
     this.txtInvoiceTotal.BorderStyle      = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtInvoiceTotal.Name             = "txtInvoiceTotal";
     this.txtInvoiceNo.AutoSize            = false;
     this.txtInvoiceNo.Size                = new System.Drawing.Size(178, 19);
     this.txtInvoiceNo.Location            = new System.Drawing.Point(72, 178);
     this.txtInvoiceNo.TabIndex            = 2;
     this.txtInvoiceNo.AcceptsReturn       = true;
     this.txtInvoiceNo.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtInvoiceNo.BackColor           = System.Drawing.SystemColors.Window;
     this.txtInvoiceNo.CausesValidation    = true;
     this.txtInvoiceNo.Enabled             = true;
     this.txtInvoiceNo.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtInvoiceNo.HideSelection       = true;
     this.txtInvoiceNo.ReadOnly            = false;
     this.txtInvoiceNo.MaxLength           = 0;
     this.txtInvoiceNo.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtInvoiceNo.Multiline           = false;
     this.txtInvoiceNo.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtInvoiceNo.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtInvoiceNo.TabStop             = true;
     this.txtInvoiceNo.Visible             = true;
     this.txtInvoiceNo.BorderStyle         = System.Windows.Forms.BorderStyle.FixedSingle;
     this.txtInvoiceNo.Name                = "txtInvoiceNo";
     //cmbTemplate.OcxState = CType(resources.GetObject("cmbTemplate.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbTemplate.Size          = new System.Drawing.Size(228, 21);
     this.cmbTemplate.Location      = new System.Drawing.Point(104, 117);
     this.cmbTemplate.TabIndex      = 22;
     this.cmbTemplate.Name          = "cmbTemplate";
     this._lbl_4.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_4.Text               = "GRV Template :";
     this._lbl_4.Size               = new System.Drawing.Size(76, 13);
     this._lbl_4.Location           = new System.Drawing.Point(22, 120);
     this._lbl_4.TabIndex           = 23;
     this._lbl_4.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_4.Enabled            = true;
     this._lbl_4.ForeColor          = System.Drawing.SystemColors.ControlText;
     this._lbl_4.Cursor             = System.Windows.Forms.Cursors.Default;
     this._lbl_4.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this._lbl_4.UseMnemonic        = true;
     this._lbl_4.Visible            = true;
     this._lbl_4.AutoSize           = true;
     this._lbl_4.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_4.Name               = "_lbl_4";
     this._lblLabels_0.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_0.Text         = "Order Reference:";
     this._lblLabels_0.Size         = new System.Drawing.Size(82, 13);
     this._lblLabels_0.Location     = new System.Drawing.Point(16, 96);
     this._lblLabels_0.TabIndex     = 21;
     this._lblLabels_0.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_0.Enabled      = true;
     this._lblLabels_0.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_0.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_0.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_0.UseMnemonic  = true;
     this._lblLabels_0.Visible      = true;
     this._lblLabels_0.AutoSize     = true;
     this._lblLabels_0.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_0.Name         = "_lblLabels_0";
     this._lblData_3.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_3.Text           = "PurchaseOrder_Reference";
     this._lblData_3.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_3.Size           = new System.Drawing.Size(226, 16);
     this._lblData_3.Location       = new System.Drawing.Point(106, 96);
     this._lblData_3.TabIndex       = 20;
     this._lblData_3.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_3.Enabled        = true;
     this._lblData_3.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_3.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_3.UseMnemonic    = true;
     this._lblData_3.Visible        = true;
     this._lblData_3.AutoSize       = false;
     this._lblData_3.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_3.Name           = "_lblData_3";
     this._lbl_5.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_5.Text               = "Number :";
     this._lbl_5.Font               = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_5.Size               = new System.Drawing.Size(52, 13);
     this._lbl_5.Location           = new System.Drawing.Point(14, 181);
     this._lbl_5.TabIndex           = 1;
     this._lbl_5.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_5.Enabled            = true;
     this._lbl_5.ForeColor          = System.Drawing.SystemColors.ControlText;
     this._lbl_5.Cursor             = System.Windows.Forms.Cursors.Default;
     this._lbl_5.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this._lbl_5.UseMnemonic        = true;
     this._lbl_5.Visible            = true;
     this._lbl_5.AutoSize           = true;
     this._lbl_5.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_5.Name               = "_lbl_5";
     this._lbl_6.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_6.Text               = "Total :";
     this._lbl_6.Font               = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_6.Size               = new System.Drawing.Size(38, 13);
     this._lbl_6.Location           = new System.Drawing.Point(103, 202);
     this._lbl_6.TabIndex           = 3;
     this._lbl_6.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_6.Enabled            = true;
     this._lbl_6.ForeColor          = System.Drawing.SystemColors.ControlText;
     this._lbl_6.Cursor             = System.Windows.Forms.Cursors.Default;
     this._lbl_6.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this._lbl_6.UseMnemonic        = true;
     this._lbl_6.Visible            = true;
     this._lbl_6.AutoSize           = true;
     this._lbl_6.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_6.Name               = "_lbl_6";
     this._lbl_7.TextAlign          = System.Drawing.ContentAlignment.TopRight;
     this._lbl_7.Text               = "Date :";
     this._lbl_7.Font               = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_7.Size               = new System.Drawing.Size(36, 13);
     this._lbl_7.Location           = new System.Drawing.Point(30, 220);
     this._lbl_7.TabIndex           = 5;
     this._lbl_7.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_7.Enabled            = true;
     this._lbl_7.ForeColor          = System.Drawing.SystemColors.ControlText;
     this._lbl_7.Cursor             = System.Windows.Forms.Cursors.Default;
     this._lbl_7.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this._lbl_7.UseMnemonic        = true;
     this._lbl_7.Visible            = true;
     this._lbl_7.AutoSize           = true;
     this._lbl_7.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_7.Name               = "_lbl_7";
     this._lblData_7.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_7.Text           = "Supplier_ShippingCode";
     this._lblData_7.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_7.Size           = new System.Drawing.Size(226, 16);
     this._lblData_7.Location       = new System.Drawing.Point(105, 75);
     this._lblData_7.TabIndex       = 19;
     this._lblData_7.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_7.Enabled        = true;
     this._lblData_7.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_7.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_7.UseMnemonic    = true;
     this._lblData_7.Visible        = true;
     this._lblData_7.AutoSize       = false;
     this._lblData_7.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_7.Name           = "_lblData_7";
     this._lblLabels_36.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_36.Text        = "Account Number:";
     this._lblLabels_36.Size        = new System.Drawing.Size(83, 13);
     this._lblLabels_36.Location    = new System.Drawing.Point(14, 75);
     this._lblLabels_36.TabIndex    = 18;
     this._lblLabels_36.BackColor   = System.Drawing.Color.Transparent;
     this._lblLabels_36.Enabled     = true;
     this._lblLabels_36.ForeColor   = System.Drawing.SystemColors.ControlText;
     this._lblLabels_36.Cursor      = System.Windows.Forms.Cursors.Default;
     this._lblLabels_36.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_36.UseMnemonic = true;
     this._lblLabels_36.Visible     = true;
     this._lblLabels_36.AutoSize    = true;
     this._lblLabels_36.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_36.Name        = "_lblLabels_36";
     this._lbl_2.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_2.Text               = "&2. Invoice Details";
     this._lbl_2.Font               = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_2.Size               = new System.Drawing.Size(101, 13);
     this._lbl_2.Location           = new System.Drawing.Point(9, 152);
     this._lbl_2.TabIndex           = 0;
     this._lbl_2.TextAlign          = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_2.Enabled            = true;
     this._lbl_2.ForeColor          = System.Drawing.SystemColors.ControlText;
     this._lbl_2.Cursor             = System.Windows.Forms.Cursors.Default;
     this._lbl_2.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this._lbl_2.UseMnemonic        = true;
     this._lbl_2.Visible            = true;
     this._lbl_2.AutoSize           = true;
     this._lbl_2.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_2.Name               = "_lbl_2";
     this._lbl_1.BackColor          = System.Drawing.Color.Transparent;
     this._lbl_1.Text               = "&1. Supplier Details";
     this._lbl_1.Font               = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lbl_1.Size               = new System.Drawing.Size(105, 13);
     this._lbl_1.Location           = new System.Drawing.Point(9, 18);
     this._lbl_1.TabIndex           = 17;
     this._lbl_1.TextAlign          = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_1.Enabled            = true;
     this._lbl_1.ForeColor          = System.Drawing.SystemColors.ControlText;
     this._lbl_1.Cursor             = System.Windows.Forms.Cursors.Default;
     this._lbl_1.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this._lbl_1.UseMnemonic        = true;
     this._lbl_1.Visible            = true;
     this._lbl_1.AutoSize           = true;
     this._lbl_1.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this._lbl_1.Name               = "_lbl_1";
     this._lblLabels_2.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_2.Text         = "Supplier Name:";
     this._lblLabels_2.Font         = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
     this._lblLabels_2.Size         = new System.Drawing.Size(87, 13);
     this._lblLabels_2.Location     = new System.Drawing.Point(13, 39);
     this._lblLabels_2.TabIndex     = 16;
     this._lblLabels_2.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_2.Enabled      = true;
     this._lblLabels_2.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_2.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_2.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_2.UseMnemonic  = true;
     this._lblLabels_2.Visible      = true;
     this._lblLabels_2.AutoSize     = true;
     this._lblLabels_2.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_2.Name         = "_lblLabels_2";
     this._lblLabels_8.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_8.Text         = "Telephone:";
     this._lblLabels_8.Size         = new System.Drawing.Size(55, 13);
     this._lblLabels_8.Location     = new System.Drawing.Point(42, 57);
     this._lblLabels_8.TabIndex     = 15;
     this._lblLabels_8.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_8.Enabled      = true;
     this._lblLabels_8.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_8.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_8.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_8.UseMnemonic  = true;
     this._lblLabels_8.Visible      = true;
     this._lblLabels_8.AutoSize     = true;
     this._lblLabels_8.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_8.Name         = "_lblLabels_8";
     this._lblLabels_9.TextAlign    = System.Drawing.ContentAlignment.TopRight;
     this._lblLabels_9.Text         = "Fax:";
     this._lblLabels_9.Size         = new System.Drawing.Size(22, 13);
     this._lblLabels_9.Location     = new System.Drawing.Point(210, 57);
     this._lblLabels_9.TabIndex     = 14;
     this._lblLabels_9.BackColor    = System.Drawing.Color.Transparent;
     this._lblLabels_9.Enabled      = true;
     this._lblLabels_9.ForeColor    = System.Drawing.SystemColors.ControlText;
     this._lblLabels_9.Cursor       = System.Windows.Forms.Cursors.Default;
     this._lblLabels_9.RightToLeft  = System.Windows.Forms.RightToLeft.No;
     this._lblLabels_9.UseMnemonic  = true;
     this._lblLabels_9.Visible      = true;
     this._lblLabels_9.AutoSize     = true;
     this._lblLabels_9.BorderStyle  = System.Windows.Forms.BorderStyle.None;
     this._lblLabels_9.Name         = "_lblLabels_9";
     this._lblData_0.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_0.Text           = "Supplier_Name";
     this._lblData_0.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_0.Size           = new System.Drawing.Size(226, 16);
     this._lblData_0.Location       = new System.Drawing.Point(105, 39);
     this._lblData_0.TabIndex       = 13;
     this._lblData_0.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_0.Enabled        = true;
     this._lblData_0.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_0.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_0.UseMnemonic    = true;
     this._lblData_0.Visible        = true;
     this._lblData_0.AutoSize       = false;
     this._lblData_0.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_0.Name           = "_lblData_0";
     this._lblData_1.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_1.Text           = "Supplier_Telephone";
     this._lblData_1.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_1.Size           = new System.Drawing.Size(94, 16);
     this._lblData_1.Location       = new System.Drawing.Point(105, 57);
     this._lblData_1.TabIndex       = 12;
     this._lblData_1.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_1.Enabled        = true;
     this._lblData_1.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_1.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_1.UseMnemonic    = true;
     this._lblData_1.Visible        = true;
     this._lblData_1.AutoSize       = false;
     this._lblData_1.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_1.Name           = "_lblData_1";
     this._lblData_2.BackColor      = System.Drawing.Color.FromArgb(224, 224, 224);
     this._lblData_2.Text           = "Supplier_Facimile";
     this._lblData_2.ForeColor      = System.Drawing.SystemColors.WindowText;
     this._lblData_2.Size           = new System.Drawing.Size(94, 16);
     this._lblData_2.Location       = new System.Drawing.Point(237, 57);
     this._lblData_2.TabIndex       = 11;
     this._lblData_2.TextAlign      = System.Drawing.ContentAlignment.TopLeft;
     this._lblData_2.Enabled        = true;
     this._lblData_2.Cursor         = System.Windows.Forms.Cursors.Default;
     this._lblData_2.RightToLeft    = System.Windows.Forms.RightToLeft.No;
     this._lblData_2.UseMnemonic    = true;
     this._lblData_2.Visible        = true;
     this._lblData_2.AutoSize       = false;
     this._lblData_2.BorderStyle    = System.Windows.Forms.BorderStyle.FixedSingle;
     this._lblData_2.Name           = "_lblData_2";
     this._Shape1_1.BackColor       = System.Drawing.Color.FromArgb(192, 192, 255);
     this._Shape1_1.BackStyle       = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_1.Size            = new System.Drawing.Size(328, 112);
     this._Shape1_1.Location        = new System.Drawing.Point(9, 20);
     this._Shape1_1.BorderColor     = System.Drawing.SystemColors.WindowText;
     this._Shape1_1.BorderStyle     = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_1.BorderWidth     = 1;
     this._Shape1_1.FillColor       = System.Drawing.Color.Black;
     this._Shape1_1.FillStyle       = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_1.Visible         = true;
     this._Shape1_1.Name            = "_Shape1_1";
     this._Shape1_2.BackColor       = System.Drawing.Color.FromArgb(255, 192, 192);
     this._Shape1_2.BackStyle       = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
     this._Shape1_2.Size            = new System.Drawing.Size(328, 214);
     this._Shape1_2.Location        = new System.Drawing.Point(9, 156);
     this._Shape1_2.BorderColor     = System.Drawing.SystemColors.WindowText;
     this._Shape1_2.BorderStyle     = System.Drawing.Drawing2D.DashStyle.Solid;
     this._Shape1_2.BorderWidth     = 1;
     this._Shape1_2.FillColor       = System.Drawing.Color.Black;
     this._Shape1_2.FillStyle       = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
     this._Shape1_2.Visible         = true;
     this._Shape1_2.Name            = "_Shape1_2";
     this.Controls.Add(cmdNext);
     this.Controls.Add(cmdBack);
     this.Controls.Add(_frmMode_1);
     this._frmMode_1.Controls.Add(cmdNewGT);
     this._frmMode_1.Controls.Add(MonthView1);
     this._frmMode_1.Controls.Add(cmdLoad);
     this._frmMode_1.Controls.Add(txtInvoiceTotal);
     this._frmMode_1.Controls.Add(txtInvoiceNo);
     this._frmMode_1.Controls.Add(cmbTemplate);
     this._frmMode_1.Controls.Add(_lbl_4);
     this._frmMode_1.Controls.Add(_lblLabels_0);
     this._frmMode_1.Controls.Add(_lblData_3);
     this._frmMode_1.Controls.Add(_lbl_5);
     this._frmMode_1.Controls.Add(_lbl_6);
     this._frmMode_1.Controls.Add(_lbl_7);
     this._frmMode_1.Controls.Add(_lblData_7);
     this._frmMode_1.Controls.Add(_lblLabels_36);
     this._frmMode_1.Controls.Add(_lbl_2);
     this._frmMode_1.Controls.Add(_lbl_1);
     this._frmMode_1.Controls.Add(_lblLabels_2);
     this._frmMode_1.Controls.Add(_lblLabels_8);
     this._frmMode_1.Controls.Add(_lblLabels_9);
     this._frmMode_1.Controls.Add(_lblData_0);
     this._frmMode_1.Controls.Add(_lblData_1);
     this._frmMode_1.Controls.Add(_lblData_2);
     this.ShapeContainer1.Shapes.Add(_Shape1_1);
     this.ShapeContainer1.Shapes.Add(_Shape1_2);
     this._frmMode_1.Controls.Add(ShapeContainer1);
     //Me.frmMode.SetIndex(_frmMode_1, CType(1, Short))
     //Me.lbl.SetIndex(_lbl_4, CType(4, Short))
     //Me.lbl.SetIndex(_lbl_5, CType(5, Short))
     //Me.lbl.SetIndex(_lbl_6, CType(6, Short))
     //Me.lbl.SetIndex(_lbl_7, CType(7, Short))
     //Me.lbl.SetIndex(_lbl_2, CType(2, Short))
     //Me.lbl.SetIndex(_lbl_1, CType(1, Short))
     //Me.lblData.SetIndex(_lblData_3, CType(3, Short))
     //Me.lblData.SetIndex(_lblData_7, CType(7, Short))
     //Me.lblData.SetIndex(_lblData_0, CType(0, Short))
     //Me.lblData.SetIndex(_lblData_1, CType(1, Short))
     //Me.lblData.SetIndex(_lblData_2, CType(2, Short))
     //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short))
     //Me.lblLabels.SetIndex(_lblLabels_36, CType(36, Short))
     //Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
     //Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
     //Me.lblLabels.SetIndex(_lblLabels_9, CType(9, Short))
     //Me.Shape1.SetIndex(_Shape1_1, CType(1, Short))
     //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short))
     ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit();
     //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lblData, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.frmMode, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.cmbTemplate).EndInit();
     ((System.ComponentModel.ISupportInitialize) this.MonthView1).EndInit();
     this._frmMode_1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTakeLIQ));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.tmrGetWei = new System.Windows.Forms.Timer(components);
			this.Picture1 = new System.Windows.Forms.Panel();
			this.cmdReg = new System.Windows.Forms.Button();
			this.Label4 = new System.Windows.Forms.Label();
			this.Timer1 = new System.Windows.Forms.Timer(components);
			this.picBC = new System.Windows.Forms.PictureBox();
			this.chkPic = new System.Windows.Forms.CheckBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdDiff = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmdsearch = new System.Windows.Forms.Button();
			this.txtqty = new System.Windows.Forms.TextBox();
			this.txtdesc = new System.Windows.Forms.TextBox();
			this.txtcode = new System.Windows.Forms.TextBox();
			this.DataGrid1 = new myDataGridView();
			this.imgBC = new System.Windows.Forms.PictureBox();
			this.Label3 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this.Label1 = new System.Windows.Forms.Label();
			this.Picture1.SuspendLayout();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataGrid1).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Text = "StockTake";
			this.ClientSize = new System.Drawing.Size(567, 391);
			this.Location = new System.Drawing.Point(3, 29);
			this.Icon = (System.Drawing.Icon)resources.GetObject("frmStockTakeLIQ.Icon");
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.ControlBox = true;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockTakeLIQ";
			this.tmrGetWei.Enabled = false;
			this.tmrGetWei.Interval = 100;
			this.Picture1.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this.Picture1.ForeColor = System.Drawing.SystemColors.WindowText;
			this.Picture1.Size = new System.Drawing.Size(553, 153);
			this.Picture1.Location = new System.Drawing.Point(8, 432);
			this.Picture1.TabIndex = 13;
			this.Picture1.Dock = System.Windows.Forms.DockStyle.None;
			this.Picture1.CausesValidation = true;
			this.Picture1.Enabled = true;
			this.Picture1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture1.TabStop = true;
			this.Picture1.Visible = true;
			this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this.Picture1.Name = "Picture1";
			this.cmdReg.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdReg.Text = "&Register 4LIQUOR";
			this.cmdReg.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdReg.Size = new System.Drawing.Size(115, 40);
			this.cmdReg.Location = new System.Drawing.Point(208, 88);
			this.cmdReg.TabIndex = 15;
			this.cmdReg.TabStop = false;
			this.cmdReg.Visible = false;
			this.cmdReg.BackColor = System.Drawing.SystemColors.Control;
			this.cmdReg.CausesValidation = true;
			this.cmdReg.Enabled = true;
			this.cmdReg.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdReg.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdReg.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdReg.Name = "cmdReg";
			this.Label4.TextAlign = System.Drawing.ContentAlignment.TopCenter;
			this.Label4.Font = new System.Drawing.Font("Arial", 15.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0));
			this.Label4.Size = new System.Drawing.Size(545, 73);
			this.Label4.Location = new System.Drawing.Point(0, 8);
			this.Label4.TabIndex = 14;
			this.Label4.BackColor = System.Drawing.Color.Transparent;
			this.Label4.Enabled = true;
			this.Label4.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.UseMnemonic = true;
			this.Label4.Visible = true;
			this.Label4.AutoSize = false;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Name = "Label4";
			this.Timer1.Enabled = false;
			this.Timer1.Interval = 100;
			this.picBC.Size = new System.Drawing.Size(265, 300);
			this.picBC.Location = new System.Drawing.Point(576, 472);
			this.picBC.TabIndex = 11;
			this.picBC.Visible = false;
			this.picBC.Dock = System.Windows.Forms.DockStyle.None;
			this.picBC.BackColor = System.Drawing.SystemColors.Control;
			this.picBC.CausesValidation = true;
			this.picBC.Enabled = true;
			this.picBC.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picBC.Cursor = System.Windows.Forms.Cursors.Default;
			this.picBC.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picBC.TabStop = true;
			this.picBC.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize;
			this.picBC.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picBC.Name = "picBC";
			this.chkPic.Text = "Show Pictures";
			this.chkPic.Size = new System.Drawing.Size(89, 17);
			this.chkPic.Location = new System.Drawing.Point(472, 440);
			this.chkPic.TabIndex = 10;
			this.chkPic.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this.chkPic.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
			this.chkPic.BackColor = System.Drawing.SystemColors.Control;
			this.chkPic.CausesValidation = true;
			this.chkPic.Enabled = true;
			this.chkPic.ForeColor = System.Drawing.SystemColors.ControlText;
			this.chkPic.Cursor = System.Windows.Forms.Cursors.Default;
			this.chkPic.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.chkPic.Appearance = System.Windows.Forms.Appearance.Normal;
			this.chkPic.TabStop = true;
			this.chkPic.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this.chkPic.Visible = true;
			this.chkPic.Name = "chkPic";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(567, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 7;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdDiff.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdDiff.Text = "Show Difference";
			this.cmdDiff.Size = new System.Drawing.Size(97, 29);
			this.cmdDiff.Location = new System.Drawing.Point(360, 2);
			this.cmdDiff.TabIndex = 12;
			this.cmdDiff.TabStop = false;
			this.cmdDiff.BackColor = System.Drawing.SystemColors.Control;
			this.cmdDiff.CausesValidation = true;
			this.cmdDiff.Enabled = true;
			this.cmdDiff.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdDiff.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdDiff.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdDiff.Name = "cmdDiff";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "Save and E&xit";
			this.cmdClose.Size = new System.Drawing.Size(89, 29);
			this.cmdClose.Location = new System.Drawing.Point(472, 2);
			this.cmdClose.TabIndex = 8;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			this.cmdsearch.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdsearch.Text = "&Search";
			this.AcceptButton = this.cmdsearch;
			this.cmdsearch.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdsearch.Size = new System.Drawing.Size(89, 33);
			this.cmdsearch.Location = new System.Drawing.Point(8, 352);
			this.cmdsearch.TabIndex = 3;
			this.cmdsearch.BackColor = System.Drawing.SystemColors.Control;
			this.cmdsearch.CausesValidation = true;
			this.cmdsearch.Enabled = true;
			this.cmdsearch.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdsearch.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdsearch.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdsearch.TabStop = true;
			this.cmdsearch.Name = "cmdsearch";
			this.txtqty.AutoSize = false;
			this.txtqty.Size = new System.Drawing.Size(89, 25);
			this.txtqty.Location = new System.Drawing.Point(472, 48);
			this.txtqty.TabIndex = 2;
			this.txtqty.AcceptsReturn = true;
			this.txtqty.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtqty.BackColor = System.Drawing.SystemColors.Window;
			this.txtqty.CausesValidation = true;
			this.txtqty.Enabled = true;
			this.txtqty.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtqty.HideSelection = true;
			this.txtqty.ReadOnly = false;
			this.txtqty.MaxLength = 0;
			this.txtqty.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtqty.Multiline = false;
			this.txtqty.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtqty.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtqty.TabStop = true;
			this.txtqty.Visible = true;
			this.txtqty.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtqty.Name = "txtqty";
			this.txtdesc.AutoSize = false;
			this.txtdesc.Enabled = false;
			this.txtdesc.Size = new System.Drawing.Size(153, 25);
			this.txtdesc.Location = new System.Drawing.Point(272, 48);
			this.txtdesc.TabIndex = 1;
			this.txtdesc.AcceptsReturn = true;
			this.txtdesc.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtdesc.BackColor = System.Drawing.SystemColors.Window;
			this.txtdesc.CausesValidation = true;
			this.txtdesc.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtdesc.HideSelection = true;
			this.txtdesc.ReadOnly = false;
			this.txtdesc.MaxLength = 0;
			this.txtdesc.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtdesc.Multiline = false;
			this.txtdesc.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtdesc.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtdesc.TabStop = true;
			this.txtdesc.Visible = true;
			this.txtdesc.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtdesc.Name = "txtdesc";
			this.txtcode.AutoSize = false;
			this.txtcode.Size = new System.Drawing.Size(89, 25);
			this.txtcode.Location = new System.Drawing.Point(88, 48);
			this.txtcode.TabIndex = 0;
			this.txtcode.AcceptsReturn = true;
			this.txtcode.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtcode.BackColor = System.Drawing.SystemColors.Window;
			this.txtcode.CausesValidation = true;
			this.txtcode.Enabled = true;
			this.txtcode.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtcode.HideSelection = true;
			this.txtcode.ReadOnly = false;
			this.txtcode.MaxLength = 0;
			this.txtcode.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtcode.Multiline = false;
			this.txtcode.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtcode.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtcode.TabStop = true;
			this.txtcode.Visible = true;
			this.txtcode.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtcode.Name = "txtcode";
			//DataGrid1.OcxState = CType(resources.GetObject("DataGrid1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataGrid1.Size = new System.Drawing.Size(553, 257);
			this.DataGrid1.Location = new System.Drawing.Point(8, 88);
			this.DataGrid1.TabIndex = 9;
			this.DataGrid1.Name = "DataGrid1";
			this.imgBC.Size = new System.Drawing.Size(265, 300);
			this.imgBC.Location = new System.Drawing.Point(568, 48);
			this.imgBC.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
			this.imgBC.Visible = false;
			this.imgBC.Enabled = true;
			this.imgBC.Cursor = System.Windows.Forms.Cursors.Default;
			this.imgBC.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.imgBC.Name = "imgBC";
			this.Label3.Text = "Qty";
			this.Label3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label3.Size = new System.Drawing.Size(33, 17);
			this.Label3.Location = new System.Drawing.Point(432, 56);
			this.Label3.TabIndex = 6;
			this.Label3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.Enabled = true;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.UseMnemonic = true;
			this.Label3.Visible = true;
			this.Label3.AutoSize = false;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Name = "Label3";
			this.Label2.Text = "Description";
			this.Label2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label2.Size = new System.Drawing.Size(81, 25);
			this.Label2.Location = new System.Drawing.Point(184, 56);
			this.Label2.TabIndex = 5;
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label2.BackColor = System.Drawing.SystemColors.Control;
			this.Label2.Enabled = true;
			this.Label2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.UseMnemonic = true;
			this.Label2.Visible = true;
			this.Label2.AutoSize = false;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Name = "Label2";
			this.Label1.Text = "Barcode";
			this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Label1.Size = new System.Drawing.Size(81, 25);
			this.Label1.Location = new System.Drawing.Point(8, 56);
			this.Label1.TabIndex = 4;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this.Controls.Add(Picture1);
			this.Controls.Add(picBC);
			this.Controls.Add(chkPic);
			this.Controls.Add(picButtons);
			this.Controls.Add(cmdsearch);
			this.Controls.Add(txtqty);
			this.Controls.Add(txtdesc);
			this.Controls.Add(txtcode);
			this.Controls.Add(DataGrid1);
			this.Controls.Add(imgBC);
			this.Controls.Add(Label3);
			this.Controls.Add(Label2);
			this.Controls.Add(Label1);
			this.Picture1.Controls.Add(cmdReg);
			this.Picture1.Controls.Add(Label4);
			this.picButtons.Controls.Add(cmdDiff);
			this.picButtons.Controls.Add(cmdClose);
			((System.ComponentModel.ISupportInitialize)this.DataGrid1).EndInit();
			this.Picture1.ResumeLayout(false);
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmSupplier));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this._chkFields_1 = new System.Windows.Forms.CheckBox();
			this._txtFields_28 = new System.Windows.Forms.TextBox();
			this._txtFields_27 = new System.Windows.Forms.TextBox();
			this._txtFields_26 = new System.Windows.Forms.TextBox();
			this._txtFields_1 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_11 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_12 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_13 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_14 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_15 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_16 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_17 = new System.Windows.Forms.TextBox();
			this._txtFloatNegative_18 = new System.Windows.Forms.TextBox();
			this._txtFields_2 = new System.Windows.Forms.TextBox();
			this._txtFields_6 = new System.Windows.Forms.TextBox();
			this._txtFields_7 = new System.Windows.Forms.TextBox();
			this._txtFields_8 = new System.Windows.Forms.TextBox();
			this._txtFields_9 = new System.Windows.Forms.TextBox();
			this._txtFloat_13 = new System.Windows.Forms.TextBox();
			this._txtFloat_14 = new System.Windows.Forms.TextBox();
			this._txtFloat_15 = new System.Windows.Forms.TextBox();
			this._txtFloat_16 = new System.Windows.Forms.TextBox();
			this._txtFloat_17 = new System.Windows.Forms.TextBox();
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdStatement = new System.Windows.Forms.Button();
			this.cmdCancel = new System.Windows.Forms.Button();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmbTemplate = new myDataGridView();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this._lblLabels_38 = new System.Windows.Forms.Label();
			this._lblLabels_37 = new System.Windows.Forms.Label();
			this._lblLabels_36 = new System.Windows.Forms.Label();
			this._lblLabels_35 = new System.Windows.Forms.Label();
			this._lblLabels_33 = new System.Windows.Forms.Label();
			this._lblLabels_32 = new System.Windows.Forms.Label();
			this._lblLabels_31 = new System.Windows.Forms.Label();
			this._lblLabels_30 = new System.Windows.Forms.Label();
			this._lblLabels_29 = new System.Windows.Forms.Label();
			this._lblLabels_28 = new System.Windows.Forms.Label();
			this._lblLabels_27 = new System.Windows.Forms.Label();
			this._lblLabels_26 = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this._lblLabels_2 = new System.Windows.Forms.Label();
			this._lblLabels_6 = new System.Windows.Forms.Label();
			this._lblLabels_7 = new System.Windows.Forms.Label();
			this._lblLabels_8 = new System.Windows.Forms.Label();
			this._lblLabels_9 = new System.Windows.Forms.Label();
			this._lblLabels_13 = new System.Windows.Forms.Label();
			this._lblLabels_14 = new System.Windows.Forms.Label();
			this._lblLabels_15 = new System.Windows.Forms.Label();
			this._lblLabels_16 = new System.Windows.Forms.Label();
			this._lblLabels_17 = new System.Windows.Forms.Label();
			this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape();
			//Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//Me.txtFloat = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			//Me.txtFloatNegative = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components)
			this.Shape1 = new RectangleShapeArray(components);
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbTemplate).BeginInit();
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.txtFloatNegative, System.ComponentModel.ISupportInitialize).BeginInit()
			((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit();
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Edit Supplier Details";
			this.ClientSize = new System.Drawing.Size(661, 347);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmSupplier";
			this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight;
			this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
			this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._chkFields_1.Text = "Disable this Supplier";
			this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._chkFields_1.Size = new System.Drawing.Size(118, 13);
			this._chkFields_1.Location = new System.Drawing.Point(210, 216);
			this._chkFields_1.TabIndex = 15;
			this._chkFields_1.CausesValidation = true;
			this._chkFields_1.Enabled = true;
			this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._chkFields_1.Appearance = System.Windows.Forms.Appearance.Normal;
			this._chkFields_1.TabStop = true;
			this._chkFields_1.CheckState = System.Windows.Forms.CheckState.Unchecked;
			this._chkFields_1.Visible = true;
			this._chkFields_1.Name = "_chkFields_1";
			this._txtFields_28.AutoSize = false;
			this._txtFields_28.Size = new System.Drawing.Size(168, 19);
			this._txtFields_28.Location = new System.Drawing.Point(476, 65);
			this._txtFields_28.TabIndex = 28;
			this._txtFields_28.AcceptsReturn = true;
			this._txtFields_28.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_28.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_28.CausesValidation = true;
			this._txtFields_28.Enabled = true;
			this._txtFields_28.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_28.HideSelection = true;
			this._txtFields_28.ReadOnly = false;
			this._txtFields_28.MaxLength = 0;
			this._txtFields_28.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_28.Multiline = false;
			this._txtFields_28.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_28.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_28.TabStop = true;
			this._txtFields_28.Visible = true;
			this._txtFields_28.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_28.Name = "_txtFields_28";
			this._txtFields_27.AutoSize = false;
			this._txtFields_27.Size = new System.Drawing.Size(168, 19);
			this._txtFields_27.Location = new System.Drawing.Point(476, 86);
			this._txtFields_27.TabIndex = 30;
			this._txtFields_27.AcceptsReturn = true;
			this._txtFields_27.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_27.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_27.CausesValidation = true;
			this._txtFields_27.Enabled = true;
			this._txtFields_27.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_27.HideSelection = true;
			this._txtFields_27.ReadOnly = false;
			this._txtFields_27.MaxLength = 0;
			this._txtFields_27.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_27.Multiline = false;
			this._txtFields_27.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_27.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_27.TabStop = true;
			this._txtFields_27.Visible = true;
			this._txtFields_27.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_27.Name = "_txtFields_27";
			this._txtFields_26.AutoSize = false;
			this._txtFields_26.Size = new System.Drawing.Size(168, 19);
			this._txtFields_26.Location = new System.Drawing.Point(476, 108);
			this._txtFields_26.TabIndex = 32;
			this._txtFields_26.AcceptsReturn = true;
			this._txtFields_26.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_26.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_26.CausesValidation = true;
			this._txtFields_26.Enabled = true;
			this._txtFields_26.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_26.HideSelection = true;
			this._txtFields_26.ReadOnly = false;
			this._txtFields_26.MaxLength = 0;
			this._txtFields_26.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_26.Multiline = false;
			this._txtFields_26.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_26.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_26.TabStop = true;
			this._txtFields_26.Visible = true;
			this._txtFields_26.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_26.Name = "_txtFields_26";
			this._txtFields_1.AutoSize = false;
			this._txtFields_1.Size = new System.Drawing.Size(291, 19);
			this._txtFields_1.Location = new System.Drawing.Point(353, 146);
			this._txtFields_1.TabIndex = 34;
			this._txtFields_1.AcceptsReturn = true;
			this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_1.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_1.CausesValidation = true;
			this._txtFields_1.Enabled = true;
			this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_1.HideSelection = true;
			this._txtFields_1.ReadOnly = false;
			this._txtFields_1.MaxLength = 0;
			this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_1.Multiline = false;
			this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_1.TabStop = true;
			this._txtFields_1.Visible = true;
			this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_1.Name = "_txtFields_1";
			this._txtFloatNegative_11.AutoSize = false;
			this._txtFloatNegative_11.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_11.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_11.Location = new System.Drawing.Point(434, 223);
			this._txtFloatNegative_11.TabIndex = 37;
			this._txtFloatNegative_11.AcceptsReturn = true;
			this._txtFloatNegative_11.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_11.CausesValidation = true;
			this._txtFloatNegative_11.Enabled = true;
			this._txtFloatNegative_11.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_11.HideSelection = true;
			this._txtFloatNegative_11.ReadOnly = false;
			this._txtFloatNegative_11.MaxLength = 0;
			this._txtFloatNegative_11.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_11.Multiline = false;
			this._txtFloatNegative_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_11.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_11.TabStop = true;
			this._txtFloatNegative_11.Visible = true;
			this._txtFloatNegative_11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_11.Name = "_txtFloatNegative_11";
			this._txtFloatNegative_12.AutoSize = false;
			this._txtFloatNegative_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_12.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_12.Location = new System.Drawing.Point(434, 244);
			this._txtFloatNegative_12.TabIndex = 39;
			this._txtFloatNegative_12.AcceptsReturn = true;
			this._txtFloatNegative_12.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_12.CausesValidation = true;
			this._txtFloatNegative_12.Enabled = true;
			this._txtFloatNegative_12.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_12.HideSelection = true;
			this._txtFloatNegative_12.ReadOnly = false;
			this._txtFloatNegative_12.MaxLength = 0;
			this._txtFloatNegative_12.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_12.Multiline = false;
			this._txtFloatNegative_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_12.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_12.TabStop = true;
			this._txtFloatNegative_12.Visible = true;
			this._txtFloatNegative_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_12.Name = "_txtFloatNegative_12";
			this._txtFloatNegative_13.AutoSize = false;
			this._txtFloatNegative_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_13.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_13.Location = new System.Drawing.Point(572, 244);
			this._txtFloatNegative_13.TabIndex = 41;
			this._txtFloatNegative_13.AcceptsReturn = true;
			this._txtFloatNegative_13.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_13.CausesValidation = true;
			this._txtFloatNegative_13.Enabled = true;
			this._txtFloatNegative_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_13.HideSelection = true;
			this._txtFloatNegative_13.ReadOnly = false;
			this._txtFloatNegative_13.MaxLength = 0;
			this._txtFloatNegative_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_13.Multiline = false;
			this._txtFloatNegative_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_13.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_13.TabStop = true;
			this._txtFloatNegative_13.Visible = true;
			this._txtFloatNegative_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_13.Name = "_txtFloatNegative_13";
			this._txtFloatNegative_14.AutoSize = false;
			this._txtFloatNegative_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_14.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_14.Location = new System.Drawing.Point(434, 266);
			this._txtFloatNegative_14.TabIndex = 43;
			this._txtFloatNegative_14.AcceptsReturn = true;
			this._txtFloatNegative_14.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_14.CausesValidation = true;
			this._txtFloatNegative_14.Enabled = true;
			this._txtFloatNegative_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_14.HideSelection = true;
			this._txtFloatNegative_14.ReadOnly = false;
			this._txtFloatNegative_14.MaxLength = 0;
			this._txtFloatNegative_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_14.Multiline = false;
			this._txtFloatNegative_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_14.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_14.TabStop = true;
			this._txtFloatNegative_14.Visible = true;
			this._txtFloatNegative_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_14.Name = "_txtFloatNegative_14";
			this._txtFloatNegative_15.AutoSize = false;
			this._txtFloatNegative_15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_15.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_15.Location = new System.Drawing.Point(572, 266);
			this._txtFloatNegative_15.TabIndex = 45;
			this._txtFloatNegative_15.AcceptsReturn = true;
			this._txtFloatNegative_15.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_15.CausesValidation = true;
			this._txtFloatNegative_15.Enabled = true;
			this._txtFloatNegative_15.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_15.HideSelection = true;
			this._txtFloatNegative_15.ReadOnly = false;
			this._txtFloatNegative_15.MaxLength = 0;
			this._txtFloatNegative_15.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_15.Multiline = false;
			this._txtFloatNegative_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_15.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_15.TabStop = true;
			this._txtFloatNegative_15.Visible = true;
			this._txtFloatNegative_15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_15.Name = "_txtFloatNegative_15";
			this._txtFloatNegative_16.AutoSize = false;
			this._txtFloatNegative_16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_16.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_16.Location = new System.Drawing.Point(434, 287);
			this._txtFloatNegative_16.TabIndex = 47;
			this._txtFloatNegative_16.AcceptsReturn = true;
			this._txtFloatNegative_16.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_16.CausesValidation = true;
			this._txtFloatNegative_16.Enabled = true;
			this._txtFloatNegative_16.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_16.HideSelection = true;
			this._txtFloatNegative_16.ReadOnly = false;
			this._txtFloatNegative_16.MaxLength = 0;
			this._txtFloatNegative_16.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_16.Multiline = false;
			this._txtFloatNegative_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_16.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_16.TabStop = true;
			this._txtFloatNegative_16.Visible = true;
			this._txtFloatNegative_16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_16.Name = "_txtFloatNegative_16";
			this._txtFloatNegative_17.AutoSize = false;
			this._txtFloatNegative_17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_17.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_17.Location = new System.Drawing.Point(572, 288);
			this._txtFloatNegative_17.TabIndex = 49;
			this._txtFloatNegative_17.AcceptsReturn = true;
			this._txtFloatNegative_17.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_17.CausesValidation = true;
			this._txtFloatNegative_17.Enabled = true;
			this._txtFloatNegative_17.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_17.HideSelection = true;
			this._txtFloatNegative_17.ReadOnly = false;
			this._txtFloatNegative_17.MaxLength = 0;
			this._txtFloatNegative_17.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_17.Multiline = false;
			this._txtFloatNegative_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_17.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_17.TabStop = true;
			this._txtFloatNegative_17.Visible = true;
			this._txtFloatNegative_17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_17.Name = "_txtFloatNegative_17";
			this._txtFloatNegative_18.AutoSize = false;
			this._txtFloatNegative_18.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloatNegative_18.Size = new System.Drawing.Size(72, 19);
			this._txtFloatNegative_18.Location = new System.Drawing.Point(434, 309);
			this._txtFloatNegative_18.TabIndex = 51;
			this._txtFloatNegative_18.AcceptsReturn = true;
			this._txtFloatNegative_18.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloatNegative_18.CausesValidation = true;
			this._txtFloatNegative_18.Enabled = true;
			this._txtFloatNegative_18.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloatNegative_18.HideSelection = true;
			this._txtFloatNegative_18.ReadOnly = false;
			this._txtFloatNegative_18.MaxLength = 0;
			this._txtFloatNegative_18.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloatNegative_18.Multiline = false;
			this._txtFloatNegative_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloatNegative_18.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloatNegative_18.TabStop = true;
			this._txtFloatNegative_18.Visible = true;
			this._txtFloatNegative_18.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloatNegative_18.Name = "_txtFloatNegative_18";
			this._txtFields_2.AutoSize = false;
			this._txtFields_2.Size = new System.Drawing.Size(226, 19);
			this._txtFields_2.Location = new System.Drawing.Point(102, 63);
			this._txtFields_2.TabIndex = 2;
			this._txtFields_2.AcceptsReturn = true;
			this._txtFields_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_2.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_2.CausesValidation = true;
			this._txtFields_2.Enabled = true;
			this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_2.HideSelection = true;
			this._txtFields_2.ReadOnly = false;
			this._txtFields_2.MaxLength = 0;
			this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_2.Multiline = false;
			this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_2.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_2.TabStop = true;
			this._txtFields_2.Visible = true;
			this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_2.Name = "_txtFields_2";
			this._txtFields_6.AutoSize = false;
			this._txtFields_6.Size = new System.Drawing.Size(226, 49);
			this._txtFields_6.Location = new System.Drawing.Point(102, 108);
			this._txtFields_6.Multiline = true;
			this._txtFields_6.TabIndex = 9;
			this._txtFields_6.AcceptsReturn = true;
			this._txtFields_6.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_6.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_6.CausesValidation = true;
			this._txtFields_6.Enabled = true;
			this._txtFields_6.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_6.HideSelection = true;
			this._txtFields_6.ReadOnly = false;
			this._txtFields_6.MaxLength = 0;
			this._txtFields_6.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_6.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_6.TabStop = true;
			this._txtFields_6.Visible = true;
			this._txtFields_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_6.Name = "_txtFields_6";
			this._txtFields_7.AutoSize = false;
			this._txtFields_7.Size = new System.Drawing.Size(226, 49);
			this._txtFields_7.Location = new System.Drawing.Point(102, 162);
			this._txtFields_7.Multiline = true;
			this._txtFields_7.TabIndex = 13;
			this._txtFields_7.AcceptsReturn = true;
			this._txtFields_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_7.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_7.CausesValidation = true;
			this._txtFields_7.Enabled = true;
			this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_7.HideSelection = true;
			this._txtFields_7.ReadOnly = false;
			this._txtFields_7.MaxLength = 0;
			this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_7.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_7.TabStop = true;
			this._txtFields_7.Visible = true;
			this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_7.Name = "_txtFields_7";
			this._txtFields_8.AutoSize = false;
			this._txtFields_8.Size = new System.Drawing.Size(94, 19);
			this._txtFields_8.Location = new System.Drawing.Point(102, 84);
			this._txtFields_8.TabIndex = 4;
			this._txtFields_8.AcceptsReturn = true;
			this._txtFields_8.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_8.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_8.CausesValidation = true;
			this._txtFields_8.Enabled = true;
			this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_8.HideSelection = true;
			this._txtFields_8.ReadOnly = false;
			this._txtFields_8.MaxLength = 0;
			this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_8.Multiline = false;
			this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_8.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_8.TabStop = true;
			this._txtFields_8.Visible = true;
			this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_8.Name = "_txtFields_8";
			this._txtFields_9.AutoSize = false;
			this._txtFields_9.Size = new System.Drawing.Size(94, 19);
			this._txtFields_9.Location = new System.Drawing.Point(234, 84);
			this._txtFields_9.TabIndex = 6;
			this._txtFields_9.AcceptsReturn = true;
			this._txtFields_9.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this._txtFields_9.BackColor = System.Drawing.SystemColors.Window;
			this._txtFields_9.CausesValidation = true;
			this._txtFields_9.Enabled = true;
			this._txtFields_9.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFields_9.HideSelection = true;
			this._txtFields_9.ReadOnly = false;
			this._txtFields_9.MaxLength = 0;
			this._txtFields_9.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFields_9.Multiline = false;
			this._txtFields_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFields_9.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFields_9.TabStop = true;
			this._txtFields_9.Visible = true;
			this._txtFields_9.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFields_9.Name = "_txtFields_9";
			this._txtFloat_13.AutoSize = false;
			this._txtFloat_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_13.Enabled = false;
			this._txtFloat_13.Size = new System.Drawing.Size(91, 19);
			this._txtFloat_13.Location = new System.Drawing.Point(84, 261);
			this._txtFloat_13.TabIndex = 17;
			this._txtFloat_13.AcceptsReturn = true;
			this._txtFloat_13.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_13.CausesValidation = true;
			this._txtFloat_13.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_13.HideSelection = true;
			this._txtFloat_13.ReadOnly = false;
			this._txtFloat_13.MaxLength = 0;
			this._txtFloat_13.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_13.Multiline = false;
			this._txtFloat_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_13.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_13.TabStop = true;
			this._txtFloat_13.Visible = true;
			this._txtFloat_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_13.Name = "_txtFloat_13";
			this._txtFloat_14.AutoSize = false;
			this._txtFloat_14.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_14.Enabled = false;
			this._txtFloat_14.Size = new System.Drawing.Size(91, 19);
			this._txtFloat_14.Location = new System.Drawing.Point(237, 261);
			this._txtFloat_14.TabIndex = 19;
			this._txtFloat_14.AcceptsReturn = true;
			this._txtFloat_14.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_14.CausesValidation = true;
			this._txtFloat_14.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_14.HideSelection = true;
			this._txtFloat_14.ReadOnly = false;
			this._txtFloat_14.MaxLength = 0;
			this._txtFloat_14.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_14.Multiline = false;
			this._txtFloat_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_14.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_14.TabStop = true;
			this._txtFloat_14.Visible = true;
			this._txtFloat_14.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_14.Name = "_txtFloat_14";
			this._txtFloat_15.AutoSize = false;
			this._txtFloat_15.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_15.Enabled = false;
			this._txtFloat_15.Size = new System.Drawing.Size(91, 19);
			this._txtFloat_15.Location = new System.Drawing.Point(84, 282);
			this._txtFloat_15.TabIndex = 21;
			this._txtFloat_15.AcceptsReturn = true;
			this._txtFloat_15.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_15.CausesValidation = true;
			this._txtFloat_15.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_15.HideSelection = true;
			this._txtFloat_15.ReadOnly = false;
			this._txtFloat_15.MaxLength = 0;
			this._txtFloat_15.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_15.Multiline = false;
			this._txtFloat_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_15.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_15.TabStop = true;
			this._txtFloat_15.Visible = true;
			this._txtFloat_15.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_15.Name = "_txtFloat_15";
			this._txtFloat_16.AutoSize = false;
			this._txtFloat_16.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_16.Enabled = false;
			this._txtFloat_16.Size = new System.Drawing.Size(91, 19);
			this._txtFloat_16.Location = new System.Drawing.Point(237, 282);
			this._txtFloat_16.TabIndex = 23;
			this._txtFloat_16.AcceptsReturn = true;
			this._txtFloat_16.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_16.CausesValidation = true;
			this._txtFloat_16.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_16.HideSelection = true;
			this._txtFloat_16.ReadOnly = false;
			this._txtFloat_16.MaxLength = 0;
			this._txtFloat_16.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_16.Multiline = false;
			this._txtFloat_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_16.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_16.TabStop = true;
			this._txtFloat_16.Visible = true;
			this._txtFloat_16.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_16.Name = "_txtFloat_16";
			this._txtFloat_17.AutoSize = false;
			this._txtFloat_17.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this._txtFloat_17.Enabled = false;
			this._txtFloat_17.Size = new System.Drawing.Size(91, 19);
			this._txtFloat_17.Location = new System.Drawing.Point(84, 303);
			this._txtFloat_17.TabIndex = 25;
			this._txtFloat_17.AcceptsReturn = true;
			this._txtFloat_17.BackColor = System.Drawing.SystemColors.Window;
			this._txtFloat_17.CausesValidation = true;
			this._txtFloat_17.ForeColor = System.Drawing.SystemColors.WindowText;
			this._txtFloat_17.HideSelection = true;
			this._txtFloat_17.ReadOnly = false;
			this._txtFloat_17.MaxLength = 0;
			this._txtFloat_17.Cursor = System.Windows.Forms.Cursors.IBeam;
			this._txtFloat_17.Multiline = false;
			this._txtFloat_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._txtFloat_17.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this._txtFloat_17.TabStop = true;
			this._txtFloat_17.Visible = true;
			this._txtFloat_17.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
			this._txtFloat_17.Name = "_txtFloat_17";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.Size = new System.Drawing.Size(661, 38);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 12;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.picButtons.Name = "picButtons";
			this.cmdStatement.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdStatement.Text = "Statement";
			this.cmdStatement.Size = new System.Drawing.Size(103, 29);
			this.cmdStatement.Location = new System.Drawing.Point(232, 2);
			this.cmdStatement.TabIndex = 52;
			this.cmdStatement.BackColor = System.Drawing.SystemColors.Control;
			this.cmdStatement.CausesValidation = true;
			this.cmdStatement.Enabled = true;
			this.cmdStatement.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdStatement.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdStatement.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdStatement.TabStop = true;
			this.cmdStatement.Name = "cmdStatement";
			this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdCancel.Text = "&Undo";
			this.cmdCancel.Size = new System.Drawing.Size(73, 29);
			this.cmdCancel.Location = new System.Drawing.Point(5, 3);
			this.cmdCancel.TabIndex = 10;
			this.cmdCancel.TabStop = false;
			this.cmdCancel.BackColor = System.Drawing.SystemColors.Control;
			this.cmdCancel.CausesValidation = true;
			this.cmdCancel.Enabled = true;
			this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdCancel.Name = "cmdCancel";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(576, 3);
			this.cmdClose.TabIndex = 8;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			//cmbTemplate.OcxState = CType(resources.GetObject("cmbTemplate.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbTemplate.Size = new System.Drawing.Size(212, 21);
			this.cmbTemplate.Location = new System.Drawing.Point(432, 168);
			this.cmbTemplate.TabIndex = 54;
			this.cmbTemplate.Name = "cmbTemplate";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "GRV Template :";
			this._lbl_4.Size = new System.Drawing.Size(76, 13);
			this._lbl_4.Location = new System.Drawing.Point(350, 171);
			this._lbl_4.TabIndex = 53;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Enabled = true;
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.UseMnemonic = true;
			this._lbl_4.Visible = true;
			this._lbl_4.AutoSize = true;
			this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_4.Name = "_lbl_4";
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Text = "&3. Payment Terms";
			this._lbl_3.Size = new System.Drawing.Size(102, 13);
			this._lbl_3.Location = new System.Drawing.Point(345, 201);
			this._lbl_3.TabIndex = 35;
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_3.Enabled = true;
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.UseMnemonic = true;
			this._lbl_3.Visible = true;
			this._lbl_3.AutoSize = true;
			this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_3.Name = "_lbl_3";
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Text = "&2. Ordering Details";
			this._lbl_2.Size = new System.Drawing.Size(107, 13);
			this._lbl_2.Location = new System.Drawing.Point(345, 42);
			this._lbl_2.TabIndex = 26;
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = true;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_38.Text = "Representative Name:";
			this._lblLabels_38.Size = new System.Drawing.Size(106, 13);
			this._lblLabels_38.Location = new System.Drawing.Point(363, 65);
			this._lblLabels_38.TabIndex = 27;
			this._lblLabels_38.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_38.Enabled = true;
			this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_38.UseMnemonic = true;
			this._lblLabels_38.Visible = true;
			this._lblLabels_38.AutoSize = true;
			this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_38.Name = "_lblLabels_38";
			this._lblLabels_37.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_37.Text = "Representative Number:";
			this._lblLabels_37.Size = new System.Drawing.Size(115, 13);
			this._lblLabels_37.Location = new System.Drawing.Point(354, 86);
			this._lblLabels_37.TabIndex = 29;
			this._lblLabels_37.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_37.Enabled = true;
			this._lblLabels_37.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_37.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_37.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_37.UseMnemonic = true;
			this._lblLabels_37.Visible = true;
			this._lblLabels_37.AutoSize = true;
			this._lblLabels_37.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_37.Name = "_lblLabels_37";
			this._lblLabels_36.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_36.Text = "Account Number:";
			this._lblLabels_36.Size = new System.Drawing.Size(83, 13);
			this._lblLabels_36.Location = new System.Drawing.Point(386, 108);
			this._lblLabels_36.TabIndex = 31;
			this._lblLabels_36.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_36.Enabled = true;
			this._lblLabels_36.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_36.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_36.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_36.UseMnemonic = true;
			this._lblLabels_36.Visible = true;
			this._lblLabels_36.AutoSize = true;
			this._lblLabels_36.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_36.Name = "_lblLabels_36";
			this._lblLabels_35.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_35.Text = "Default Order Attention Line text:";
			this._lblLabels_35.Size = new System.Drawing.Size(154, 13);
			this._lblLabels_35.Location = new System.Drawing.Point(357, 129);
			this._lblLabels_35.TabIndex = 33;
			this._lblLabels_35.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_35.Enabled = true;
			this._lblLabels_35.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_35.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_35.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_35.UseMnemonic = true;
			this._lblLabels_35.Visible = true;
			this._lblLabels_35.AutoSize = true;
			this._lblLabels_35.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_35.Name = "_lblLabels_35";
			this._lblLabels_33.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_33.Text = "Ullage Discount:";
			this._lblLabels_33.Size = new System.Drawing.Size(78, 13);
			this._lblLabels_33.Location = new System.Drawing.Point(349, 223);
			this._lblLabels_33.TabIndex = 36;
			this._lblLabels_33.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_33.Enabled = true;
			this._lblLabels_33.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_33.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_33.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_33.UseMnemonic = true;
			this._lblLabels_33.Visible = true;
			this._lblLabels_33.AutoSize = true;
			this._lblLabels_33.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_33.Name = "_lblLabels_33";
			this._lblLabels_32.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_32.Text = "C.O.D.:";
			this._lblLabels_32.Size = new System.Drawing.Size(35, 13);
			this._lblLabels_32.Location = new System.Drawing.Point(392, 244);
			this._lblLabels_32.TabIndex = 38;
			this._lblLabels_32.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_32.Enabled = true;
			this._lblLabels_32.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_32.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_32.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_32.UseMnemonic = true;
			this._lblLabels_32.Visible = true;
			this._lblLabels_32.AutoSize = true;
			this._lblLabels_32.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_32.Name = "_lblLabels_32";
			this._lblLabels_31.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_31.Text = "15 days:";
			this._lblLabels_31.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_31.Location = new System.Drawing.Point(525, 244);
			this._lblLabels_31.TabIndex = 40;
			this._lblLabels_31.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_31.Enabled = true;
			this._lblLabels_31.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_31.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_31.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_31.UseMnemonic = true;
			this._lblLabels_31.Visible = true;
			this._lblLabels_31.AutoSize = true;
			this._lblLabels_31.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_31.Name = "_lblLabels_31";
			this._lblLabels_30.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_30.Text = "30 days:";
			this._lblLabels_30.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_30.Location = new System.Drawing.Point(387, 266);
			this._lblLabels_30.TabIndex = 42;
			this._lblLabels_30.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_30.Enabled = true;
			this._lblLabels_30.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_30.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_30.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_30.UseMnemonic = true;
			this._lblLabels_30.Visible = true;
			this._lblLabels_30.AutoSize = true;
			this._lblLabels_30.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_30.Name = "_lblLabels_30";
			this._lblLabels_29.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_29.Text = "60 days:";
			this._lblLabels_29.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_29.Location = new System.Drawing.Point(525, 266);
			this._lblLabels_29.TabIndex = 44;
			this._lblLabels_29.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_29.Enabled = true;
			this._lblLabels_29.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_29.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_29.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_29.UseMnemonic = true;
			this._lblLabels_29.Visible = true;
			this._lblLabels_29.AutoSize = true;
			this._lblLabels_29.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_29.Name = "_lblLabels_29";
			this._lblLabels_28.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_28.Text = "90 days:";
			this._lblLabels_28.Size = new System.Drawing.Size(40, 13);
			this._lblLabels_28.Location = new System.Drawing.Point(387, 287);
			this._lblLabels_28.TabIndex = 46;
			this._lblLabels_28.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_28.Enabled = true;
			this._lblLabels_28.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_28.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_28.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_28.UseMnemonic = true;
			this._lblLabels_28.Visible = true;
			this._lblLabels_28.AutoSize = true;
			this._lblLabels_28.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_28.Name = "_lblLabels_28";
			this._lblLabels_27.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_27.Text = "120 days:";
			this._lblLabels_27.Size = new System.Drawing.Size(46, 13);
			this._lblLabels_27.Location = new System.Drawing.Point(519, 288);
			this._lblLabels_27.TabIndex = 48;
			this._lblLabels_27.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_27.Enabled = true;
			this._lblLabels_27.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_27.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_27.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_27.UseMnemonic = true;
			this._lblLabels_27.Visible = true;
			this._lblLabels_27.AutoSize = true;
			this._lblLabels_27.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_27.Name = "_lblLabels_27";
			this._lblLabels_26.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_26.Text = "Smart Card:";
			this._lblLabels_26.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_26.Location = new System.Drawing.Point(372, 309);
			this._lblLabels_26.TabIndex = 50;
			this._lblLabels_26.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_26.Enabled = true;
			this._lblLabels_26.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_26.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_26.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_26.UseMnemonic = true;
			this._lblLabels_26.Visible = true;
			this._lblLabels_26.AutoSize = true;
			this._lblLabels_26.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_26.Name = "_lblLabels_26";
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Text = "&1. General";
			this._lbl_1.Size = new System.Drawing.Size(61, 13);
			this._lbl_1.Location = new System.Drawing.Point(6, 42);
			this._lbl_1.TabIndex = 0;
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = true;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Text = "Aging";
			this._lbl_0.Size = new System.Drawing.Size(33, 13);
			this._lbl_0.Location = new System.Drawing.Point(6, 240);
			this._lbl_0.TabIndex = 14;
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_2.Text = "Supplier Name:";
			this._lblLabels_2.Size = new System.Drawing.Size(87, 13);
			this._lblLabels_2.Location = new System.Drawing.Point(10, 63);
			this._lblLabels_2.TabIndex = 1;
			this._lblLabels_2.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_2.Enabled = true;
			this._lblLabels_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_2.UseMnemonic = true;
			this._lblLabels_2.Visible = true;
			this._lblLabels_2.AutoSize = true;
			this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_2.Name = "_lblLabels_2";
			this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_6.Text = "Physical Address:";
			this._lblLabels_6.Size = new System.Drawing.Size(83, 13);
			this._lblLabels_6.Location = new System.Drawing.Point(14, 108);
			this._lblLabels_6.TabIndex = 7;
			this._lblLabels_6.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_6.Enabled = true;
			this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_6.UseMnemonic = true;
			this._lblLabels_6.Visible = true;
			this._lblLabels_6.AutoSize = true;
			this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_6.Name = "_lblLabels_6";
			this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_7.Text = "Postal Address:";
			this._lblLabels_7.Size = new System.Drawing.Size(76, 13);
			this._lblLabels_7.Location = new System.Drawing.Point(21, 159);
			this._lblLabels_7.TabIndex = 11;
			this._lblLabels_7.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_7.Enabled = true;
			this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_7.UseMnemonic = true;
			this._lblLabels_7.Visible = true;
			this._lblLabels_7.AutoSize = true;
			this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_7.Name = "_lblLabels_7";
			this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_8.Text = "Telephone:";
			this._lblLabels_8.Size = new System.Drawing.Size(55, 13);
			this._lblLabels_8.Location = new System.Drawing.Point(39, 84);
			this._lblLabels_8.TabIndex = 3;
			this._lblLabels_8.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_8.Enabled = true;
			this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_8.UseMnemonic = true;
			this._lblLabels_8.Visible = true;
			this._lblLabels_8.AutoSize = true;
			this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_8.Name = "_lblLabels_8";
			this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_9.Text = "Fax:";
			this._lblLabels_9.Size = new System.Drawing.Size(22, 13);
			this._lblLabels_9.Location = new System.Drawing.Point(207, 84);
			this._lblLabels_9.TabIndex = 5;
			this._lblLabels_9.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_9.Enabled = true;
			this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_9.UseMnemonic = true;
			this._lblLabels_9.Visible = true;
			this._lblLabels_9.AutoSize = true;
			this._lblLabels_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_9.Name = "_lblLabels_9";
			this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_13.Text = "Current:";
			this._lblLabels_13.Size = new System.Drawing.Size(37, 13);
			this._lblLabels_13.Location = new System.Drawing.Point(36, 264);
			this._lblLabels_13.TabIndex = 16;
			this._lblLabels_13.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_13.Enabled = true;
			this._lblLabels_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_13.UseMnemonic = true;
			this._lblLabels_13.Visible = true;
			this._lblLabels_13.AutoSize = true;
			this._lblLabels_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_13.Name = "_lblLabels_13";
			this._lblLabels_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_14.Text = "30 Days:";
			this._lblLabels_14.Size = new System.Drawing.Size(43, 13);
			this._lblLabels_14.Location = new System.Drawing.Point(189, 261);
			this._lblLabels_14.TabIndex = 18;
			this._lblLabels_14.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_14.Enabled = true;
			this._lblLabels_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_14.UseMnemonic = true;
			this._lblLabels_14.Visible = true;
			this._lblLabels_14.AutoSize = true;
			this._lblLabels_14.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_14.Name = "_lblLabels_14";
			this._lblLabels_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_15.Text = "60 Days:";
			this._lblLabels_15.Size = new System.Drawing.Size(43, 13);
			this._lblLabels_15.Location = new System.Drawing.Point(30, 285);
			this._lblLabels_15.TabIndex = 20;
			this._lblLabels_15.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_15.Enabled = true;
			this._lblLabels_15.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_15.UseMnemonic = true;
			this._lblLabels_15.Visible = true;
			this._lblLabels_15.AutoSize = true;
			this._lblLabels_15.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_15.Name = "_lblLabels_15";
			this._lblLabels_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_16.Text = "90 Days:";
			this._lblLabels_16.Size = new System.Drawing.Size(43, 13);
			this._lblLabels_16.Location = new System.Drawing.Point(189, 282);
			this._lblLabels_16.TabIndex = 22;
			this._lblLabels_16.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_16.Enabled = true;
			this._lblLabels_16.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_16.UseMnemonic = true;
			this._lblLabels_16.Visible = true;
			this._lblLabels_16.AutoSize = true;
			this._lblLabels_16.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_16.Name = "_lblLabels_16";
			this._lblLabels_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lblLabels_17.Text = "120 Days:";
			this._lblLabels_17.Size = new System.Drawing.Size(49, 13);
			this._lblLabels_17.Location = new System.Drawing.Point(24, 306);
			this._lblLabels_17.TabIndex = 24;
			this._lblLabels_17.BackColor = System.Drawing.Color.Transparent;
			this._lblLabels_17.Enabled = true;
			this._lblLabels_17.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lblLabels_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lblLabels_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lblLabels_17.UseMnemonic = true;
			this._lblLabels_17.Visible = true;
			this._lblLabels_17.AutoSize = true;
			this._lblLabels_17.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lblLabels_17.Name = "_lblLabels_17";
			this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_0.Size = new System.Drawing.Size(328, 76);
			this._Shape1_0.Location = new System.Drawing.Point(6, 255);
			this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_0.BorderWidth = 1;
			this._Shape1_0.FillColor = System.Drawing.Color.Black;
			this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_0.Visible = true;
			this._Shape1_0.Name = "_Shape1_0";
			this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_1.Size = new System.Drawing.Size(328, 181);
			this._Shape1_1.Location = new System.Drawing.Point(6, 57);
			this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_1.BorderWidth = 1;
			this._Shape1_1.FillColor = System.Drawing.Color.Black;
			this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_1.Visible = true;
			this._Shape1_1.Name = "_Shape1_1";
			this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_2.Size = new System.Drawing.Size(304, 140);
			this._Shape1_2.Location = new System.Drawing.Point(345, 57);
			this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_2.BorderWidth = 1;
			this._Shape1_2.FillColor = System.Drawing.Color.Black;
			this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_2.Visible = true;
			this._Shape1_2.Name = "_Shape1_2";
			this._Shape1_3.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Shape1_3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque;
			this._Shape1_3.Size = new System.Drawing.Size(304, 118);
			this._Shape1_3.Location = new System.Drawing.Point(345, 216);
			this._Shape1_3.BorderColor = System.Drawing.SystemColors.WindowText;
			this._Shape1_3.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this._Shape1_3.BorderWidth = 1;
			this._Shape1_3.FillColor = System.Drawing.Color.Black;
			this._Shape1_3.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent;
			this._Shape1_3.Visible = true;
			this._Shape1_3.Name = "_Shape1_3";
			this.Controls.Add(_chkFields_1);
			this.Controls.Add(_txtFields_28);
			this.Controls.Add(_txtFields_27);
			this.Controls.Add(_txtFields_26);
			this.Controls.Add(_txtFields_1);
			this.Controls.Add(_txtFloatNegative_11);
			this.Controls.Add(_txtFloatNegative_12);
			this.Controls.Add(_txtFloatNegative_13);
			this.Controls.Add(_txtFloatNegative_14);
			this.Controls.Add(_txtFloatNegative_15);
			this.Controls.Add(_txtFloatNegative_16);
			this.Controls.Add(_txtFloatNegative_17);
			this.Controls.Add(_txtFloatNegative_18);
			this.Controls.Add(_txtFields_2);
			this.Controls.Add(_txtFields_6);
			this.Controls.Add(_txtFields_7);
			this.Controls.Add(_txtFields_8);
			this.Controls.Add(_txtFields_9);
			this.Controls.Add(_txtFloat_13);
			this.Controls.Add(_txtFloat_14);
			this.Controls.Add(_txtFloat_15);
			this.Controls.Add(_txtFloat_16);
			this.Controls.Add(_txtFloat_17);
			this.Controls.Add(picButtons);
			this.Controls.Add(cmbTemplate);
			this.Controls.Add(_lbl_4);
			this.Controls.Add(_lbl_3);
			this.Controls.Add(_lbl_2);
			this.Controls.Add(_lblLabels_38);
			this.Controls.Add(_lblLabels_37);
			this.Controls.Add(_lblLabels_36);
			this.Controls.Add(_lblLabels_35);
			this.Controls.Add(_lblLabels_33);
			this.Controls.Add(_lblLabels_32);
			this.Controls.Add(_lblLabels_31);
			this.Controls.Add(_lblLabels_30);
			this.Controls.Add(_lblLabels_29);
			this.Controls.Add(_lblLabels_28);
			this.Controls.Add(_lblLabels_27);
			this.Controls.Add(_lblLabels_26);
			this.Controls.Add(_lbl_1);
			this.Controls.Add(_lbl_0);
			this.Controls.Add(_lblLabels_2);
			this.Controls.Add(_lblLabels_6);
			this.Controls.Add(_lblLabels_7);
			this.Controls.Add(_lblLabels_8);
			this.Controls.Add(_lblLabels_9);
			this.Controls.Add(_lblLabels_13);
			this.Controls.Add(_lblLabels_14);
			this.Controls.Add(_lblLabels_15);
			this.Controls.Add(_lblLabels_16);
			this.Controls.Add(_lblLabels_17);
			this.ShapeContainer1.Shapes.Add(_Shape1_0);
			this.ShapeContainer1.Shapes.Add(_Shape1_1);
			this.ShapeContainer1.Shapes.Add(_Shape1_2);
			this.ShapeContainer1.Shapes.Add(_Shape1_3);
			this.Controls.Add(ShapeContainer1);
			this.picButtons.Controls.Add(cmdStatement);
			this.picButtons.Controls.Add(cmdCancel);
			this.picButtons.Controls.Add(cmdClose);
			//Me.chkFields.SetIndex(_chkFields_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short))
			//Me.lblLabels.SetIndex(_lblLabels_37, CType(37, Short))
			//Me.lblLabels.SetIndex(_lblLabels_36, CType(36, Short))
			//Me.lblLabels.SetIndex(_lblLabels_35, CType(35, Short))
			//Me.lblLabels.SetIndex(_lblLabels_33, CType(33, Short))
			//Me.lblLabels.SetIndex(_lblLabels_32, CType(32, Short))
			//Me.lblLabels.SetIndex(_lblLabels_31, CType(31, Short))
			//Me.lblLabels.SetIndex(_lblLabels_30, CType(30, Short))
			//Me.lblLabels.SetIndex(_lblLabels_29, CType(29, Short))
			//Me.lblLabels.SetIndex(_lblLabels_28, CType(28, Short))
			//Me.lblLabels.SetIndex(_lblLabels_27, CType(27, Short))
			//Me.lblLabels.SetIndex(_lblLabels_26, CType(26, Short))
			//Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short))
			//Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short))
			//Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short))
			//Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short))
			//Me.lblLabels.SetIndex(_lblLabels_9, CType(9, Short))
			//Me.lblLabels.SetIndex(_lblLabels_13, CType(13, Short))
			//Me.lblLabels.SetIndex(_lblLabels_14, CType(14, Short))
			//Me.lblLabels.SetIndex(_lblLabels_15, CType(15, Short))
			//Me.lblLabels.SetIndex(_lblLabels_16, CType(16, Short))
			//Me.lblLabels.SetIndex(_lblLabels_17, CType(17, Short))
			//Me.txtFields.SetIndex(_txtFields_28, CType(28, Short))
			//Me.txtFields.SetIndex(_txtFields_27, CType(27, Short))
			//Me.txtFields.SetIndex(_txtFields_26, CType(26, Short))
			//Me.txtFields.SetIndex(_txtFields_1, CType(1, Short))
			//Me.txtFields.SetIndex(_txtFields_2, CType(2, Short))
			//Me.txtFields.SetIndex(_txtFields_6, CType(6, Short))
			//Me.txtFields.SetIndex(_txtFields_7, CType(7, Short))
			//Me.txtFields.SetIndex(_txtFields_8, CType(8, Short))
			//Me.txtFields.SetIndex(_txtFields_9, CType(9, Short))
			//Me.txtFloat.SetIndex(_txtFloat_13, CType(13, Short))
			//Me.txtFloat.SetIndex(_txtFloat_14, CType(14, Short))
			//Me.txtFloat.SetIndex(_txtFloat_15, CType(15, Short))
			//M() ''e.txtFloat.SetIndex(_txtFloat_16, CType(16, Short))
			//M() 'e.txtFloat.SetIndex(_txtFloat_17, CType(17, Short))
			//M() 'e.txtFloatNegative.SetIndex(_txtFloatNegative_11, CType(11, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_12, CType(12, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_13, CType(13, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_14, CType(14, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_15, CType(15, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_16, CType(16, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_17, CType(17, Short))
			//Me.txtFloatNegative.SetIndex(_txtFloatNegative_18, CType(18, Short))
			this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0));
			this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1));
			this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2));
			this.Shape1.SetIndex(_Shape1_3, Convert.ToInt16(3));
			((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit();
			//CType(Me.txtFloatNegative, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFloat, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.cmbTemplate).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmGRVSummaryFnV));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer();
			this.cmdNextFnV = new System.Windows.Forms.Button();
			this._Frame1_6 = new System.Windows.Forms.GroupBox();
			this.cmdNext = new System.Windows.Forms.Button();
			this.Text1 = new System.Windows.Forms.TextBox();
			this.Command2 = new System.Windows.Forms.Button();
			this.Command1 = new System.Windows.Forms.Button();
			this.txtQuantity = new System.Windows.Forms.TextBox();
			this.FGRecipe = new myDataGridView();
			this.Label5 = new System.Windows.Forms.Label();
			this.Label4 = new System.Windows.Forms.Label();
			this.lblRecipeCost = new System.Windows.Forms.Label();
			this.tmrAutoGRV = new System.Windows.Forms.Timer(components);
			this.Picture2 = new System.Windows.Forms.Panel();
			this.cmdExit = new System.Windows.Forms.Button();
			this.cmdBack = new System.Windows.Forms.Button();
			this.frmProcess = new System.Windows.Forms.GroupBox();
			this.txtNotes = new System.Windows.Forms.TextBox();
			this._optClose_0 = new System.Windows.Forms.RadioButton();
			this.Label3 = new System.Windows.Forms.Label();
			this.frmMain = new System.Windows.Forms.GroupBox();
			this._Frame1_5 = new System.Windows.Forms.GroupBox();
			this.lblDepositReturnIn = new System.Windows.Forms.Label();
			this._lbl_35 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatIn = new System.Windows.Forms.Label();
			this._lbl_34 = new System.Windows.Forms.Label();
			this.lblDepositReturnInclusiveIn = new System.Windows.Forms.Label();
			this._lbl_33 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatRateIn = new System.Windows.Forms.Label();
			this._Frame1_3 = new System.Windows.Forms.GroupBox();
			this.lblContentOut = new System.Windows.Forms.Label();
			this.lblDiscountLineOut = new System.Windows.Forms.Label();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_3 = new System.Windows.Forms.Label();
			this.lblExclusiveOut = new System.Windows.Forms.Label();
			this._lbl_4 = new System.Windows.Forms.Label();
			this._lbl_5 = new System.Windows.Forms.Label();
			this.lblVATout = new System.Windows.Forms.Label();
			this._lbl_12 = new System.Windows.Forms.Label();
			this.lblInclusiveOut = new System.Windows.Forms.Label();
			this.lblVatRateOut = new System.Windows.Forms.Label();
			this._lbl_37 = new System.Windows.Forms.Label();
			this.lblLinesOut = new System.Windows.Forms.Label();
			this._Frame1_4 = new System.Windows.Forms.GroupBox();
			this.lblDepositVatRateOut = new System.Windows.Forms.Label();
			this.lblDepositOut = new System.Windows.Forms.Label();
			this._lbl_9 = new System.Windows.Forms.Label();
			this.lblDepositVatOut = new System.Windows.Forms.Label();
			this._lbl_23 = new System.Windows.Forms.Label();
			this.lblDepositInclusiveOut = new System.Windows.Forms.Label();
			this._lbl_24 = new System.Windows.Forms.Label();
			this._Frame1_2 = new System.Windows.Forms.GroupBox();
			this.lblDepositReturnVatRateOut = new System.Windows.Forms.Label();
			this._lbl_15 = new System.Windows.Forms.Label();
			this.lblDepositReturnInclusiveOut = new System.Windows.Forms.Label();
			this._lbl_16 = new System.Windows.Forms.Label();
			this.lblDepositReturnVatOut = new System.Windows.Forms.Label();
			this._lbl_17 = new System.Windows.Forms.Label();
			this.lblDepositReturnOut = new System.Windows.Forms.Label();
			this._Frame1_0 = new System.Windows.Forms.GroupBox();
			this.cmbPayment = new System.Windows.Forms.ComboBox();
			this.txtUllage = new System.Windows.Forms.TextBox();
			this.txtDiscount = new System.Windows.Forms.TextBox();
			this.txtMinus = new System.Windows.Forms.TextBox();
			this.txtPlus = new System.Windows.Forms.TextBox();
			this.lblContentIn = new System.Windows.Forms.Label();
			this.lblDiscountLineIn = new System.Windows.Forms.Label();
			this._lbl_20 = new System.Windows.Forms.Label();
			this._lbl_21 = new System.Windows.Forms.Label();
			this.lblExclusiveIn = new System.Windows.Forms.Label();
			this._lbl_22 = new System.Windows.Forms.Label();
			this._lbl_29 = new System.Windows.Forms.Label();
			this.lblVATin = new System.Windows.Forms.Label();
			this._lbl_30 = new System.Windows.Forms.Label();
			this.lblInclusiveIn = new System.Windows.Forms.Label();
			this.lblVatRateIn = new System.Windows.Forms.Label();
			this._lbl_19 = new System.Windows.Forms.Label();
			this._Label1_1 = new System.Windows.Forms.Label();
			this.Label2 = new System.Windows.Forms.Label();
			this._Label1_0 = new System.Windows.Forms.Label();
			this.lblDiscount = new System.Windows.Forms.Label();
			this.lblUllage = new System.Windows.Forms.Label();
			this.lblDiscountName = new System.Windows.Forms.Label();
			this._lbl_31 = new System.Windows.Forms.Label();
			this.lblContentExclusiveIn = new System.Windows.Forms.Label();
			this._lbl_11 = new System.Windows.Forms.Label();
			this._lbl_10 = new System.Windows.Forms.Label();
			this._lbl_32 = new System.Windows.Forms.Label();
			this.lblLinesIn = new System.Windows.Forms.Label();
			this._Frame1_1 = new System.Windows.Forms.GroupBox();
			this.lblDepositVatRateIn = new System.Windows.Forms.Label();
			this.lblDepositIn = new System.Windows.Forms.Label();
			this._lbl_2 = new System.Windows.Forms.Label();
			this.lblDepositVatIn = new System.Windows.Forms.Label();
			this._lbl_13 = new System.Windows.Forms.Label();
			this.lblDepositInclusiveIn = new System.Windows.Forms.Label();
			this._lbl_14 = new System.Windows.Forms.Label();
			this.Line2 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape();
			this._lbl_28 = new System.Windows.Forms.Label();
			this.lblInBoundVat = new System.Windows.Forms.Label();
			this._lbl_27 = new System.Windows.Forms.Label();
			this.lblInBound = new System.Windows.Forms.Label();
			this._lbl_26 = new System.Windows.Forms.Label();
			this.lblCreditVat = new System.Windows.Forms.Label();
			this._lbl_25 = new System.Windows.Forms.Label();
			this.lblCredit = new System.Windows.Forms.Label();
			this._lbl_8 = new System.Windows.Forms.Label();
			this.lblOutBoundVat = new System.Windows.Forms.Label();
			this.lblOutBound = new System.Windows.Forms.Label();
			this._lbl_6 = new System.Windows.Forms.Label();
			this.lblTotal = new System.Windows.Forms.Label();
			this._lbl_7 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblTotalOriginal = new System.Windows.Forms.Label();
			this.lblDifference = new System.Windows.Forms.Label();
			this._lbl_18 = new System.Windows.Forms.Label();
			this.Picture1 = new System.Windows.Forms.Panel();
			this.lblSupplier = new System.Windows.Forms.Label();
			//Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
			//Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			//Me.optClose = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
			this._Frame1_6.SuspendLayout();
			this.Picture2.SuspendLayout();
			this.frmProcess.SuspendLayout();
			this.frmMain.SuspendLayout();
			this._Frame1_5.SuspendLayout();
			this._Frame1_3.SuspendLayout();
			this._Frame1_4.SuspendLayout();
			this._Frame1_2.SuspendLayout();
			this._Frame1_0.SuspendLayout();
			this._Frame1_1.SuspendLayout();
			this.Picture1.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.FGRecipe).BeginInit();
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			//CType(Me.optClose, System.ComponentModel.ISupportInitialize).BeginInit()
			this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.Text = "GRV Summary and Process - Fruit and Veg";
			this.ClientSize = new System.Drawing.Size(760, 684);
			this.Location = new System.Drawing.Point(4, 23);
			this.ControlBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
			this.Enabled = true;
			this.KeyPreview = false;
			this.MaximizeBox = true;
			this.MinimizeBox = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.Name = "frmGRVSummaryFnV";
			this.cmdNextFnV.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNextFnV.Text = "P&rocess";
			this.cmdNextFnV.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdNextFnV.Size = new System.Drawing.Size(139, 55);
			this.cmdNextFnV.Location = new System.Drawing.Point(840, 560);
			this.cmdNextFnV.TabIndex = 108;
			this.cmdNextFnV.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNextFnV.CausesValidation = true;
			this.cmdNextFnV.Enabled = true;
			this.cmdNextFnV.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNextFnV.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNextFnV.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNextFnV.TabStop = true;
			this.cmdNextFnV.Name = "cmdNextFnV";
			this._Frame1_6.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_6.Size = new System.Drawing.Size(988, 547);
			this._Frame1_6.Location = new System.Drawing.Point(8, 88);
			this._Frame1_6.TabIndex = 104;
			this._Frame1_6.Visible = false;
			this._Frame1_6.BackColor = System.Drawing.SystemColors.Control;
			this._Frame1_6.Enabled = true;
			this._Frame1_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_6.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_6.Name = "_Frame1_6";
			this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdNext.Text = "Finish";
			this.cmdNext.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdNext.Size = new System.Drawing.Size(139, 55);
			this.cmdNext.Location = new System.Drawing.Point(520, 24);
			this.cmdNext.TabIndex = 112;
			this.cmdNext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdNext.CausesValidation = true;
			this.cmdNext.Enabled = true;
			this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdNext.TabStop = true;
			this.cmdNext.Name = "cmdNext";
			this.Text1.AutoSize = false;
			this.Text1.Size = new System.Drawing.Size(41, 25);
			this.Text1.Location = new System.Drawing.Point(256, 392);
			this.Text1.TabIndex = 111;
			this.Text1.Text = "0";
			this.Text1.Visible = false;
			this.Text1.AcceptsReturn = true;
			this.Text1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.Text1.BackColor = System.Drawing.SystemColors.Window;
			this.Text1.CausesValidation = true;
			this.Text1.Enabled = true;
			this.Text1.ForeColor = System.Drawing.SystemColors.WindowText;
			this.Text1.HideSelection = true;
			this.Text1.ReadOnly = false;
			this.Text1.MaxLength = 0;
			this.Text1.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.Text1.Multiline = false;
			this.Text1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Text1.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.Text1.TabStop = true;
			this.Text1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Text1.Name = "Text1";
			this.Command2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command2.Text = "Next >>";
			this.Command2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Command2.Size = new System.Drawing.Size(73, 40);
			this.Command2.Location = new System.Drawing.Point(584, 384);
			this.Command2.TabIndex = 110;
			this.Command2.TabStop = false;
			this.Command2.BackColor = System.Drawing.SystemColors.Control;
			this.Command2.CausesValidation = true;
			this.Command2.Enabled = true;
			this.Command2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command2.Name = "Command2";
			this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.Command1.Text = "<< &Back";
			this.Command1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.Command1.Size = new System.Drawing.Size(73, 40);
			this.Command1.Location = new System.Drawing.Point(16, 384);
			this.Command1.TabIndex = 109;
			this.Command1.TabStop = false;
			this.Command1.BackColor = System.Drawing.SystemColors.Control;
			this.Command1.CausesValidation = true;
			this.Command1.Enabled = true;
			this.Command1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Command1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Command1.Name = "Command1";
			this.txtQuantity.AutoSize = false;
			this.txtQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtQuantity.BackColor = System.Drawing.Color.FromArgb(255, 255, 192);
			this.txtQuantity.Size = new System.Drawing.Size(64, 19);
			this.txtQuantity.Location = new System.Drawing.Point(168, 368);
			this.txtQuantity.TabIndex = 105;
			this.txtQuantity.Text = "Text1";
			this.txtQuantity.Visible = false;
			this.txtQuantity.AcceptsReturn = true;
			this.txtQuantity.CausesValidation = true;
			this.txtQuantity.Enabled = true;
			this.txtQuantity.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtQuantity.HideSelection = true;
			this.txtQuantity.ReadOnly = false;
			this.txtQuantity.MaxLength = 0;
			this.txtQuantity.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtQuantity.Multiline = false;
			this.txtQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtQuantity.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtQuantity.TabStop = true;
			this.txtQuantity.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.txtQuantity.Name = "txtQuantity";
			//FGRecipe.OcxState = CType(resources.GetObject("FGRecipe.OcxState"), System.Windows.Forms.AxHost.State)
			this.FGRecipe.Size = new System.Drawing.Size(646, 273);
			this.FGRecipe.Location = new System.Drawing.Point(14, 90);
			this.FGRecipe.TabIndex = 106;
			this.FGRecipe.Name = "FGRecipe";
			this.Label5.Text = "-";
			this.Label5.ForeColor = System.Drawing.Color.Black;
			this.Label5.Size = new System.Drawing.Size(505, 25);
			this.Label5.Location = new System.Drawing.Point(16, 56);
			this.Label5.TabIndex = 114;
			this.Label5.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label5.BackColor = System.Drawing.SystemColors.Control;
			this.Label5.Enabled = true;
			this.Label5.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label5.UseMnemonic = true;
			this.Label5.Visible = true;
			this.Label5.AutoSize = false;
			this.Label5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label5.Name = "Label5";
			this.Label4.Text = "BILL OF MATERIAL for :";
			this.Label4.ForeColor = System.Drawing.Color.Black;
			this.Label4.Size = new System.Drawing.Size(265, 25);
			this.Label4.Location = new System.Drawing.Point(16, 24);
			this.Label4.TabIndex = 113;
			this.Label4.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label4.BackColor = System.Drawing.SystemColors.Control;
			this.Label4.Enabled = true;
			this.Label4.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label4.UseMnemonic = true;
			this.Label4.Visible = true;
			this.Label4.AutoSize = false;
			this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label4.Name = "Label4";
			this.lblRecipeCost.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblRecipeCost.Text = "0.00";
			this.lblRecipeCost.Size = new System.Drawing.Size(88, 19);
			this.lblRecipeCost.Location = new System.Drawing.Point(416, 365);
			this.lblRecipeCost.TabIndex = 107;
			this.lblRecipeCost.Visible = false;
			this.lblRecipeCost.BackColor = System.Drawing.SystemColors.Control;
			this.lblRecipeCost.Enabled = true;
			this.lblRecipeCost.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblRecipeCost.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblRecipeCost.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblRecipeCost.UseMnemonic = true;
			this.lblRecipeCost.AutoSize = false;
			this.lblRecipeCost.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblRecipeCost.Name = "lblRecipeCost";
			this.tmrAutoGRV.Enabled = false;
			this.tmrAutoGRV.Interval = 10;
			this.Picture2.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture2.BackColor = System.Drawing.Color.Blue;
			this.Picture2.Size = new System.Drawing.Size(760, 49);
			this.Picture2.Location = new System.Drawing.Point(0, 0);
			this.Picture2.TabIndex = 101;
			this.Picture2.TabStop = false;
			this.Picture2.CausesValidation = true;
			this.Picture2.Enabled = true;
			this.Picture2.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture2.Visible = true;
			this.Picture2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture2.Name = "Picture2";
			this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdExit.Text = "E&xit";
			this.cmdExit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdExit.Size = new System.Drawing.Size(73, 40);
			this.cmdExit.Location = new System.Drawing.Point(627, 3);
			this.cmdExit.TabIndex = 103;
			this.cmdExit.TabStop = false;
			this.cmdExit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdExit.CausesValidation = true;
			this.cmdExit.Enabled = true;
			this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdExit.Name = "cmdExit";
			this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdBack.Text = "<< &Back";
			this.cmdBack.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.cmdBack.Size = new System.Drawing.Size(73, 40);
			this.cmdBack.Location = new System.Drawing.Point(426, 3);
			this.cmdBack.TabIndex = 102;
			this.cmdBack.TabStop = false;
			this.cmdBack.BackColor = System.Drawing.SystemColors.Control;
			this.cmdBack.CausesValidation = true;
			this.cmdBack.Enabled = true;
			this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdBack.Name = "cmdBack";
			this.frmProcess.Text = "Process this 'Goods Receiving Voucher'";
			this.frmProcess.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.frmProcess.Size = new System.Drawing.Size(343, 271);
			this.frmProcess.Location = new System.Drawing.Point(657, 363);
			this.frmProcess.TabIndex = 3;
			this.frmProcess.BackColor = System.Drawing.SystemColors.Control;
			this.frmProcess.Enabled = true;
			this.frmProcess.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmProcess.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmProcess.Visible = true;
			this.frmProcess.Padding = new System.Windows.Forms.Padding(0);
			this.frmProcess.Name = "frmProcess";
			this.txtNotes.AutoSize = false;
			this.txtNotes.Size = new System.Drawing.Size(301, 85);
			this.txtNotes.Location = new System.Drawing.Point(21, 102);
			this.txtNotes.MaxLength = 255;
			this.txtNotes.Multiline = true;
			this.txtNotes.TabIndex = 6;
			this.txtNotes.Text = "txtNotes";
			this.txtNotes.AcceptsReturn = true;
			this.txtNotes.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
			this.txtNotes.BackColor = System.Drawing.SystemColors.Window;
			this.txtNotes.CausesValidation = true;
			this.txtNotes.Enabled = true;
			this.txtNotes.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtNotes.HideSelection = true;
			this.txtNotes.ReadOnly = false;
			this.txtNotes.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtNotes.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtNotes.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtNotes.TabStop = true;
			this.txtNotes.Visible = true;
			this.txtNotes.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtNotes.Name = "txtNotes";
			this._optClose_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optClose_0.Text = "This Purchase Order has been delivered in full.";
			this._optClose_0.Size = new System.Drawing.Size(310, 19);
			this._optClose_0.Location = new System.Drawing.Point(18, 18);
			this._optClose_0.TabIndex = 4;
			this._optClose_0.Checked = true;
			this._optClose_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._optClose_0.BackColor = System.Drawing.SystemColors.Control;
			this._optClose_0.CausesValidation = true;
			this._optClose_0.Enabled = true;
			this._optClose_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._optClose_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._optClose_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._optClose_0.Appearance = System.Windows.Forms.Appearance.Normal;
			this._optClose_0.TabStop = true;
			this._optClose_0.Visible = true;
			this._optClose_0.Name = "_optClose_0";
			this.Label3.Text = "Notes:";
			this.Label3.Size = new System.Drawing.Size(31, 13);
			this.Label3.Location = new System.Drawing.Point(21, 84);
			this.Label3.TabIndex = 5;
			this.Label3.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label3.BackColor = System.Drawing.SystemColors.Control;
			this.Label3.Enabled = true;
			this.Label3.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label3.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label3.UseMnemonic = true;
			this.Label3.Visible = true;
			this.Label3.AutoSize = true;
			this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label3.Name = "Label3";
			this.frmMain.Text = "fmHeading";
			this.frmMain.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.frmMain.Size = new System.Drawing.Size(631, 550);
			this.frmMain.Location = new System.Drawing.Point(3, 84);
			this.frmMain.TabIndex = 10;
			this.frmMain.BackColor = System.Drawing.SystemColors.Control;
			this.frmMain.Enabled = true;
			this.frmMain.ForeColor = System.Drawing.SystemColors.ControlText;
			this.frmMain.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.frmMain.Visible = true;
			this.frmMain.Padding = new System.Windows.Forms.Padding(0);
			this.frmMain.Name = "frmMain";
			this._Frame1_5.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Frame1_5.Text = "Purchased Deposits";
			this._Frame1_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_5.Size = new System.Drawing.Size(301, 79);
			this._Frame1_5.Location = new System.Drawing.Point(9, 375);
			this._Frame1_5.TabIndex = 93;
			this._Frame1_5.Enabled = true;
			this._Frame1_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_5.Visible = true;
			this._Frame1_5.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_5.Name = "_Frame1_5";
			this.lblDepositReturnIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnIn.Text = "0.00";
			this.lblDepositReturnIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnIn.Location = new System.Drawing.Point(150, 18);
			this.lblDepositReturnIn.TabIndex = 100;
			this.lblDepositReturnIn.Enabled = true;
			this.lblDepositReturnIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnIn.UseMnemonic = true;
			this.lblDepositReturnIn.Visible = true;
			this.lblDepositReturnIn.AutoSize = false;
			this.lblDepositReturnIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnIn.Name = "lblDepositReturnIn";
			this._lbl_35.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_35.Text = "Deposit Value:";
			this._lbl_35.ForeColor = System.Drawing.Color.Black;
			this._lbl_35.Size = new System.Drawing.Size(133, 13);
			this._lbl_35.Location = new System.Drawing.Point(16, 21);
			this._lbl_35.TabIndex = 99;
			this._lbl_35.BackColor = System.Drawing.Color.Transparent;
			this._lbl_35.Enabled = true;
			this._lbl_35.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_35.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_35.UseMnemonic = true;
			this._lbl_35.Visible = true;
			this._lbl_35.AutoSize = false;
			this._lbl_35.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_35.Name = "_lbl_35";
			this.lblDepositReturnVatIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnVatIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnVatIn.Text = "0.00";
			this.lblDepositReturnVatIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnVatIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnVatIn.Location = new System.Drawing.Point(150, 36);
			this.lblDepositReturnVatIn.TabIndex = 98;
			this.lblDepositReturnVatIn.Enabled = true;
			this.lblDepositReturnVatIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatIn.UseMnemonic = true;
			this.lblDepositReturnVatIn.Visible = true;
			this.lblDepositReturnVatIn.AutoSize = false;
			this.lblDepositReturnVatIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnVatIn.Name = "lblDepositReturnVatIn";
			this._lbl_34.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_34.Text = "VAT:";
			this._lbl_34.ForeColor = System.Drawing.Color.Black;
			this._lbl_34.Size = new System.Drawing.Size(133, 13);
			this._lbl_34.Location = new System.Drawing.Point(16, 39);
			this._lbl_34.TabIndex = 97;
			this._lbl_34.BackColor = System.Drawing.Color.Transparent;
			this._lbl_34.Enabled = true;
			this._lbl_34.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_34.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_34.UseMnemonic = true;
			this._lbl_34.Visible = true;
			this._lbl_34.AutoSize = false;
			this._lbl_34.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_34.Name = "_lbl_34";
			this.lblDepositReturnInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnInclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnInclusiveIn.Text = "0.00";
			this.lblDepositReturnInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositReturnInclusiveIn.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblDepositReturnInclusiveIn.Location = new System.Drawing.Point(150, 54);
			this.lblDepositReturnInclusiveIn.TabIndex = 96;
			this.lblDepositReturnInclusiveIn.Enabled = true;
			this.lblDepositReturnInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnInclusiveIn.UseMnemonic = true;
			this.lblDepositReturnInclusiveIn.Visible = true;
			this.lblDepositReturnInclusiveIn.AutoSize = false;
			this.lblDepositReturnInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnInclusiveIn.Name = "lblDepositReturnInclusiveIn";
			this._lbl_33.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_33.Text = "Inclusive:";
			this._lbl_33.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_33.ForeColor = System.Drawing.Color.Black;
			this._lbl_33.Size = new System.Drawing.Size(133, 13);
			this._lbl_33.Location = new System.Drawing.Point(16, 57);
			this._lbl_33.TabIndex = 95;
			this._lbl_33.BackColor = System.Drawing.Color.Transparent;
			this._lbl_33.Enabled = true;
			this._lbl_33.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_33.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_33.UseMnemonic = true;
			this._lbl_33.Visible = true;
			this._lbl_33.AutoSize = false;
			this._lbl_33.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_33.Name = "_lbl_33";
			this.lblDepositReturnVatRateIn.Text = "0.00";
			this.lblDepositReturnVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblDepositReturnVatRateIn.Location = new System.Drawing.Point(243, 39);
			this.lblDepositReturnVatRateIn.TabIndex = 94;
			this.lblDepositReturnVatRateIn.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositReturnVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositReturnVatRateIn.Enabled = true;
			this.lblDepositReturnVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositReturnVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatRateIn.UseMnemonic = true;
			this.lblDepositReturnVatRateIn.Visible = true;
			this.lblDepositReturnVatRateIn.AutoSize = false;
			this.lblDepositReturnVatRateIn.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositReturnVatRateIn.Name = "lblDepositReturnVatRateIn";
			this._Frame1_3.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Frame1_3.Text = "Credited Content / Liquid";
			this._Frame1_3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_3.Size = new System.Drawing.Size(301, 145);
			this._Frame1_3.Location = new System.Drawing.Point(318, 18);
			this._Frame1_3.TabIndex = 68;
			this._Frame1_3.Enabled = true;
			this._Frame1_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_3.Visible = true;
			this._Frame1_3.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_3.Name = "_Frame1_3";
			this.lblContentOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentOut.Text = "0.00";
			this.lblContentOut.Size = new System.Drawing.Size(91, 19);
			this.lblContentOut.Location = new System.Drawing.Point(153, 33);
			this.lblContentOut.TabIndex = 81;
			this.lblContentOut.Enabled = true;
			this.lblContentOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentOut.UseMnemonic = true;
			this.lblContentOut.Visible = true;
			this.lblContentOut.AutoSize = false;
			this.lblContentOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentOut.Name = "lblContentOut";
			this.lblDiscountLineOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscountLineOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDiscountLineOut.Text = "0.00";
			this.lblDiscountLineOut.Size = new System.Drawing.Size(91, 19);
			this.lblDiscountLineOut.Location = new System.Drawing.Point(153, 54);
			this.lblDiscountLineOut.TabIndex = 80;
			this.lblDiscountLineOut.Enabled = true;
			this.lblDiscountLineOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDiscountLineOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountLineOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountLineOut.UseMnemonic = true;
			this.lblDiscountLineOut.Visible = true;
			this.lblDiscountLineOut.AutoSize = false;
			this.lblDiscountLineOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscountLineOut.Name = "lblDiscountLineOut";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_1.Text = "Contents Value :";
			this._lbl_1.Size = new System.Drawing.Size(133, 13);
			this._lbl_1.Location = new System.Drawing.Point(18, 36);
			this._lbl_1.TabIndex = 79;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Enabled = true;
			this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = false;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_3.Text = "Line Item Discount :";
			this._lbl_3.Size = new System.Drawing.Size(133, 13);
			this._lbl_3.Location = new System.Drawing.Point(18, 57);
			this._lbl_3.TabIndex = 78;
			this._lbl_3.BackColor = System.Drawing.Color.Transparent;
			this._lbl_3.Enabled = true;
			this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_3.UseMnemonic = true;
			this._lbl_3.Visible = true;
			this._lbl_3.AutoSize = false;
			this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_3.Name = "_lbl_3";
			this.lblExclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblExclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblExclusiveOut.Text = "0.00";
			this.lblExclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblExclusiveOut.Location = new System.Drawing.Point(153, 75);
			this.lblExclusiveOut.TabIndex = 77;
			this.lblExclusiveOut.Enabled = true;
			this.lblExclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblExclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblExclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblExclusiveOut.UseMnemonic = true;
			this.lblExclusiveOut.Visible = true;
			this.lblExclusiveOut.AutoSize = false;
			this.lblExclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblExclusiveOut.Name = "lblExclusiveOut";
			this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_4.Text = "Exclusive:";
			this._lbl_4.Size = new System.Drawing.Size(133, 13);
			this._lbl_4.Location = new System.Drawing.Point(18, 78);
			this._lbl_4.TabIndex = 76;
			this._lbl_4.BackColor = System.Drawing.Color.Transparent;
			this._lbl_4.Enabled = true;
			this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_4.UseMnemonic = true;
			this._lbl_4.Visible = true;
			this._lbl_4.AutoSize = false;
			this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_4.Name = "_lbl_4";
			this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_5.Text = "VAT :";
			this._lbl_5.Size = new System.Drawing.Size(133, 13);
			this._lbl_5.Location = new System.Drawing.Point(18, 99);
			this._lbl_5.TabIndex = 75;
			this._lbl_5.BackColor = System.Drawing.Color.Transparent;
			this._lbl_5.Enabled = true;
			this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_5.UseMnemonic = true;
			this._lbl_5.Visible = true;
			this._lbl_5.AutoSize = false;
			this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_5.Name = "_lbl_5";
			this.lblVATout.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblVATout.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblVATout.Text = "0.00";
			this.lblVATout.Size = new System.Drawing.Size(91, 19);
			this.lblVATout.Location = new System.Drawing.Point(153, 96);
			this.lblVATout.TabIndex = 74;
			this.lblVATout.Enabled = true;
			this.lblVATout.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVATout.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVATout.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVATout.UseMnemonic = true;
			this.lblVATout.Visible = true;
			this.lblVATout.AutoSize = false;
			this.lblVATout.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblVATout.Name = "lblVATout";
			this._lbl_12.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_12.Text = "Inclusive:";
			this._lbl_12.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_12.Size = new System.Drawing.Size(133, 13);
			this._lbl_12.Location = new System.Drawing.Point(18, 120);
			this._lbl_12.TabIndex = 73;
			this._lbl_12.BackColor = System.Drawing.Color.Transparent;
			this._lbl_12.Enabled = true;
			this._lbl_12.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_12.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_12.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_12.UseMnemonic = true;
			this._lbl_12.Visible = true;
			this._lbl_12.AutoSize = false;
			this._lbl_12.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_12.Name = "_lbl_12";
			this.lblInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblInclusiveOut.Text = "0.00";
			this.lblInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblInclusiveOut.Location = new System.Drawing.Point(153, 117);
			this.lblInclusiveOut.TabIndex = 72;
			this.lblInclusiveOut.Enabled = true;
			this.lblInclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInclusiveOut.UseMnemonic = true;
			this.lblInclusiveOut.Visible = true;
			this.lblInclusiveOut.AutoSize = false;
			this.lblInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInclusiveOut.Name = "lblInclusiveOut";
			this.lblVatRateOut.Text = "lblVatRateOut";
			this.lblVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblVatRateOut.Location = new System.Drawing.Point(246, 99);
			this.lblVatRateOut.TabIndex = 71;
			this.lblVatRateOut.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblVatRateOut.Enabled = true;
			this.lblVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatRateOut.UseMnemonic = true;
			this.lblVatRateOut.Visible = true;
			this.lblVatRateOut.AutoSize = false;
			this.lblVatRateOut.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblVatRateOut.Name = "lblVatRateOut";
			this._lbl_37.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_37.Text = "No Of Lines :";
			this._lbl_37.Size = new System.Drawing.Size(133, 13);
			this._lbl_37.Location = new System.Drawing.Point(18, 15);
			this._lbl_37.TabIndex = 70;
			this._lbl_37.BackColor = System.Drawing.Color.Transparent;
			this._lbl_37.Enabled = true;
			this._lbl_37.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_37.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_37.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_37.UseMnemonic = true;
			this._lbl_37.Visible = true;
			this._lbl_37.AutoSize = false;
			this._lbl_37.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_37.Name = "_lbl_37";
			this.lblLinesOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblLinesOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblLinesOut.Text = "0.00";
			this.lblLinesOut.Size = new System.Drawing.Size(91, 19);
			this.lblLinesOut.Location = new System.Drawing.Point(153, 12);
			this.lblLinesOut.TabIndex = 69;
			this.lblLinesOut.Enabled = true;
			this.lblLinesOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblLinesOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblLinesOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblLinesOut.UseMnemonic = true;
			this.lblLinesOut.Visible = true;
			this.lblLinesOut.AutoSize = false;
			this.lblLinesOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblLinesOut.Name = "lblLinesOut";
			this._Frame1_4.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Frame1_4.Text = "Deposits with Credits";
			this._Frame1_4.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_4.Size = new System.Drawing.Size(301, 82);
			this._Frame1_4.Location = new System.Drawing.Point(318, 162);
			this._Frame1_4.TabIndex = 60;
			this._Frame1_4.Enabled = true;
			this._Frame1_4.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_4.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_4.Visible = true;
			this._Frame1_4.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_4.Name = "_Frame1_4";
			this.lblDepositVatRateOut.Text = "0.00";
			this.lblDepositVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblDepositVatRateOut.Location = new System.Drawing.Point(243, 39);
			this.lblDepositVatRateOut.TabIndex = 67;
			this.lblDepositVatRateOut.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositVatRateOut.Enabled = true;
			this.lblDepositVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatRateOut.UseMnemonic = true;
			this.lblDepositVatRateOut.Visible = true;
			this.lblDepositVatRateOut.AutoSize = false;
			this.lblDepositVatRateOut.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositVatRateOut.Name = "lblDepositVatRateOut";
			this.lblDepositOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositOut.Text = "0.00";
			this.lblDepositOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositOut.Location = new System.Drawing.Point(150, 18);
			this.lblDepositOut.TabIndex = 66;
			this.lblDepositOut.Enabled = true;
			this.lblDepositOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositOut.UseMnemonic = true;
			this.lblDepositOut.Visible = true;
			this.lblDepositOut.AutoSize = false;
			this.lblDepositOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositOut.Name = "lblDepositOut";
			this._lbl_9.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_9.Text = "Deposit Value:";
			this._lbl_9.Size = new System.Drawing.Size(133, 13);
			this._lbl_9.Location = new System.Drawing.Point(16, 21);
			this._lbl_9.TabIndex = 65;
			this._lbl_9.BackColor = System.Drawing.Color.Transparent;
			this._lbl_9.Enabled = true;
			this._lbl_9.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_9.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_9.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_9.UseMnemonic = true;
			this._lbl_9.Visible = true;
			this._lbl_9.AutoSize = false;
			this._lbl_9.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_9.Name = "_lbl_9";
			this.lblDepositVatOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositVatOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositVatOut.Text = "0.00";
			this.lblDepositVatOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositVatOut.Location = new System.Drawing.Point(150, 36);
			this.lblDepositVatOut.TabIndex = 64;
			this.lblDepositVatOut.Enabled = true;
			this.lblDepositVatOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatOut.UseMnemonic = true;
			this.lblDepositVatOut.Visible = true;
			this.lblDepositVatOut.AutoSize = false;
			this.lblDepositVatOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositVatOut.Name = "lblDepositVatOut";
			this._lbl_23.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_23.Text = "VAT:";
			this._lbl_23.Size = new System.Drawing.Size(133, 13);
			this._lbl_23.Location = new System.Drawing.Point(16, 39);
			this._lbl_23.TabIndex = 63;
			this._lbl_23.BackColor = System.Drawing.Color.Transparent;
			this._lbl_23.Enabled = true;
			this._lbl_23.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_23.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_23.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_23.UseMnemonic = true;
			this._lbl_23.Visible = true;
			this._lbl_23.AutoSize = false;
			this._lbl_23.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_23.Name = "_lbl_23";
			this.lblDepositInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositInclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositInclusiveOut.Text = "0.00";
			this.lblDepositInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblDepositInclusiveOut.Location = new System.Drawing.Point(150, 54);
			this.lblDepositInclusiveOut.TabIndex = 62;
			this.lblDepositInclusiveOut.Enabled = true;
			this.lblDepositInclusiveOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositInclusiveOut.UseMnemonic = true;
			this.lblDepositInclusiveOut.Visible = true;
			this.lblDepositInclusiveOut.AutoSize = false;
			this.lblDepositInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositInclusiveOut.Name = "lblDepositInclusiveOut";
			this._lbl_24.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_24.Text = "Inclusive:";
			this._lbl_24.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_24.Size = new System.Drawing.Size(133, 13);
			this._lbl_24.Location = new System.Drawing.Point(16, 57);
			this._lbl_24.TabIndex = 61;
			this._lbl_24.BackColor = System.Drawing.Color.Transparent;
			this._lbl_24.Enabled = true;
			this._lbl_24.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_24.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_24.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_24.UseMnemonic = true;
			this._lbl_24.Visible = true;
			this._lbl_24.AutoSize = false;
			this._lbl_24.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_24.Name = "_lbl_24";
			this._Frame1_2.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this._Frame1_2.Text = "Returned Deposits";
			this._Frame1_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_2.Size = new System.Drawing.Size(301, 79);
			this._Frame1_2.Location = new System.Drawing.Point(321, 375);
			this._Frame1_2.TabIndex = 21;
			this._Frame1_2.Enabled = true;
			this._Frame1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_2.Visible = true;
			this._Frame1_2.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_2.Name = "_Frame1_2";
			this.lblDepositReturnVatRateOut.Text = "0.00";
			this.lblDepositReturnVatRateOut.Size = new System.Drawing.Size(55, 16);
			this.lblDepositReturnVatRateOut.Location = new System.Drawing.Point(243, 39);
			this.lblDepositReturnVatRateOut.TabIndex = 82;
			this.lblDepositReturnVatRateOut.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositReturnVatRateOut.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositReturnVatRateOut.Enabled = true;
			this.lblDepositReturnVatRateOut.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositReturnVatRateOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatRateOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatRateOut.UseMnemonic = true;
			this.lblDepositReturnVatRateOut.Visible = true;
			this.lblDepositReturnVatRateOut.AutoSize = false;
			this.lblDepositReturnVatRateOut.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositReturnVatRateOut.Name = "lblDepositReturnVatRateOut";
			this._lbl_15.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_15.Text = "Inclusive:";
			this._lbl_15.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_15.ForeColor = System.Drawing.Color.Black;
			this._lbl_15.Size = new System.Drawing.Size(133, 13);
			this._lbl_15.Location = new System.Drawing.Point(16, 57);
			this._lbl_15.TabIndex = 26;
			this._lbl_15.BackColor = System.Drawing.Color.Transparent;
			this._lbl_15.Enabled = true;
			this._lbl_15.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_15.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_15.UseMnemonic = true;
			this._lbl_15.Visible = true;
			this._lbl_15.AutoSize = false;
			this._lbl_15.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_15.Name = "_lbl_15";
			this.lblDepositReturnInclusiveOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnInclusiveOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnInclusiveOut.Text = "0.00";
			this.lblDepositReturnInclusiveOut.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositReturnInclusiveOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnInclusiveOut.Size = new System.Drawing.Size(91, 19);
			this.lblDepositReturnInclusiveOut.Location = new System.Drawing.Point(150, 54);
			this.lblDepositReturnInclusiveOut.TabIndex = 27;
			this.lblDepositReturnInclusiveOut.Enabled = true;
			this.lblDepositReturnInclusiveOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnInclusiveOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnInclusiveOut.UseMnemonic = true;
			this.lblDepositReturnInclusiveOut.Visible = true;
			this.lblDepositReturnInclusiveOut.AutoSize = false;
			this.lblDepositReturnInclusiveOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnInclusiveOut.Name = "lblDepositReturnInclusiveOut";
			this._lbl_16.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_16.Text = "VAT:";
			this._lbl_16.ForeColor = System.Drawing.Color.Black;
			this._lbl_16.Size = new System.Drawing.Size(133, 13);
			this._lbl_16.Location = new System.Drawing.Point(16, 39);
			this._lbl_16.TabIndex = 24;
			this._lbl_16.BackColor = System.Drawing.Color.Transparent;
			this._lbl_16.Enabled = true;
			this._lbl_16.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_16.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_16.UseMnemonic = true;
			this._lbl_16.Visible = true;
			this._lbl_16.AutoSize = false;
			this._lbl_16.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_16.Name = "_lbl_16";
			this.lblDepositReturnVatOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnVatOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnVatOut.Text = "0.00";
			this.lblDepositReturnVatOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnVatOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnVatOut.Location = new System.Drawing.Point(150, 36);
			this.lblDepositReturnVatOut.TabIndex = 25;
			this.lblDepositReturnVatOut.Enabled = true;
			this.lblDepositReturnVatOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnVatOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnVatOut.UseMnemonic = true;
			this.lblDepositReturnVatOut.Visible = true;
			this.lblDepositReturnVatOut.AutoSize = false;
			this.lblDepositReturnVatOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnVatOut.Name = "lblDepositReturnVatOut";
			this._lbl_17.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_17.Text = "Deposit Value:";
			this._lbl_17.ForeColor = System.Drawing.Color.Black;
			this._lbl_17.Size = new System.Drawing.Size(133, 13);
			this._lbl_17.Location = new System.Drawing.Point(16, 21);
			this._lbl_17.TabIndex = 22;
			this._lbl_17.BackColor = System.Drawing.Color.Transparent;
			this._lbl_17.Enabled = true;
			this._lbl_17.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_17.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_17.UseMnemonic = true;
			this._lbl_17.Visible = true;
			this._lbl_17.AutoSize = false;
			this._lbl_17.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_17.Name = "_lbl_17";
			this.lblDepositReturnOut.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositReturnOut.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositReturnOut.Text = "0.00";
			this.lblDepositReturnOut.ForeColor = System.Drawing.Color.Black;
			this.lblDepositReturnOut.Size = new System.Drawing.Size(91, 17);
			this.lblDepositReturnOut.Location = new System.Drawing.Point(150, 18);
			this.lblDepositReturnOut.TabIndex = 23;
			this.lblDepositReturnOut.Enabled = true;
			this.lblDepositReturnOut.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositReturnOut.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositReturnOut.UseMnemonic = true;
			this.lblDepositReturnOut.Visible = true;
			this.lblDepositReturnOut.AutoSize = false;
			this.lblDepositReturnOut.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositReturnOut.Name = "lblDepositReturnOut";
			this._Frame1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Frame1_0.Text = "Purchased Content / Liquid";
			this._Frame1_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_0.Size = new System.Drawing.Size(301, 268);
			this._Frame1_0.Location = new System.Drawing.Point(9, 18);
			this._Frame1_0.TabIndex = 11;
			this._Frame1_0.Enabled = true;
			this._Frame1_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_0.Visible = true;
			this._Frame1_0.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_0.Name = "_Frame1_0";
			this.cmbPayment.Size = new System.Drawing.Size(91, 21);
			this.cmbPayment.Location = new System.Drawing.Point(153, 96);
			this.cmbPayment.Items.AddRange(new object[] {
				"C.O.D.",
				"15 Days",
				"30 Days",
				"60 Days",
				"90 Days",
				"120 Days",
				"Smart Card"
			});
			this.cmbPayment.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
			this.cmbPayment.TabIndex = 0;
			this.cmbPayment.BackColor = System.Drawing.SystemColors.Window;
			this.cmbPayment.CausesValidation = true;
			this.cmbPayment.Enabled = true;
			this.cmbPayment.ForeColor = System.Drawing.SystemColors.WindowText;
			this.cmbPayment.IntegralHeight = true;
			this.cmbPayment.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmbPayment.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmbPayment.Sorted = false;
			this.cmbPayment.TabStop = true;
			this.cmbPayment.Visible = true;
			this.cmbPayment.Name = "cmbPayment";
			this.txtUllage.AutoSize = false;
			this.txtUllage.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtUllage.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.txtUllage.Enabled = false;
			this.txtUllage.ForeColor = System.Drawing.Color.Red;
			this.txtUllage.Size = new System.Drawing.Size(40, 19);
			this.txtUllage.Location = new System.Drawing.Point(99, 135);
			this.txtUllage.TabIndex = 7;
			this.txtUllage.Text = "0.20";
			this.txtUllage.AcceptsReturn = true;
			this.txtUllage.CausesValidation = true;
			this.txtUllage.HideSelection = true;
			this.txtUllage.ReadOnly = false;
			this.txtUllage.MaxLength = 0;
			this.txtUllage.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtUllage.Multiline = false;
			this.txtUllage.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtUllage.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtUllage.TabStop = true;
			this.txtUllage.Visible = true;
			this.txtUllage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtUllage.Name = "txtUllage";
			this.txtDiscount.AutoSize = false;
			this.txtDiscount.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtDiscount.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.txtDiscount.Enabled = false;
			this.txtDiscount.ForeColor = System.Drawing.Color.Red;
			this.txtDiscount.Size = new System.Drawing.Size(40, 19);
			this.txtDiscount.Location = new System.Drawing.Point(99, 117);
			this.txtDiscount.TabIndex = 34;
			this.txtDiscount.TabStop = false;
			this.txtDiscount.Text = "2.00";
			this.txtDiscount.AcceptsReturn = true;
			this.txtDiscount.CausesValidation = true;
			this.txtDiscount.HideSelection = true;
			this.txtDiscount.ReadOnly = false;
			this.txtDiscount.MaxLength = 0;
			this.txtDiscount.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtDiscount.Multiline = false;
			this.txtDiscount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtDiscount.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtDiscount.Visible = true;
			this.txtDiscount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtDiscount.Name = "txtDiscount";
			this.txtMinus.AutoSize = false;
			this.txtMinus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtMinus.ForeColor = System.Drawing.Color.Red;
			this.txtMinus.Size = new System.Drawing.Size(91, 19);
			this.txtMinus.Location = new System.Drawing.Point(153, 180);
			this.txtMinus.TabIndex = 2;
			this.txtMinus.Text = "0.00";
			this.txtMinus.AcceptsReturn = true;
			this.txtMinus.BackColor = System.Drawing.SystemColors.Window;
			this.txtMinus.CausesValidation = true;
			this.txtMinus.Enabled = true;
			this.txtMinus.HideSelection = true;
			this.txtMinus.ReadOnly = false;
			this.txtMinus.MaxLength = 0;
			this.txtMinus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtMinus.Multiline = false;
			this.txtMinus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtMinus.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtMinus.TabStop = true;
			this.txtMinus.Visible = true;
			this.txtMinus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtMinus.Name = "txtMinus";
			this.txtPlus.AutoSize = false;
			this.txtPlus.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.txtPlus.Size = new System.Drawing.Size(91, 19);
			this.txtPlus.Location = new System.Drawing.Point(153, 159);
			this.txtPlus.TabIndex = 1;
			this.txtPlus.Text = "0.00";
			this.txtPlus.AcceptsReturn = true;
			this.txtPlus.BackColor = System.Drawing.SystemColors.Window;
			this.txtPlus.CausesValidation = true;
			this.txtPlus.Enabled = true;
			this.txtPlus.ForeColor = System.Drawing.SystemColors.WindowText;
			this.txtPlus.HideSelection = true;
			this.txtPlus.ReadOnly = false;
			this.txtPlus.MaxLength = 0;
			this.txtPlus.Cursor = System.Windows.Forms.Cursors.IBeam;
			this.txtPlus.Multiline = false;
			this.txtPlus.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.txtPlus.ScrollBars = System.Windows.Forms.ScrollBars.None;
			this.txtPlus.TabStop = true;
			this.txtPlus.Visible = true;
			this.txtPlus.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.txtPlus.Name = "txtPlus";
			this.lblContentIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentIn.Text = "0.00";
			this.lblContentIn.Size = new System.Drawing.Size(91, 19);
			this.lblContentIn.Location = new System.Drawing.Point(153, 33);
			this.lblContentIn.TabIndex = 58;
			this.lblContentIn.Enabled = true;
			this.lblContentIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentIn.UseMnemonic = true;
			this.lblContentIn.Visible = true;
			this.lblContentIn.AutoSize = false;
			this.lblContentIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentIn.Name = "lblContentIn";
			this.lblDiscountLineIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscountLineIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDiscountLineIn.Text = "0.00";
			this.lblDiscountLineIn.Size = new System.Drawing.Size(91, 19);
			this.lblDiscountLineIn.Location = new System.Drawing.Point(153, 54);
			this.lblDiscountLineIn.TabIndex = 57;
			this.lblDiscountLineIn.Enabled = true;
			this.lblDiscountLineIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDiscountLineIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountLineIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountLineIn.UseMnemonic = true;
			this.lblDiscountLineIn.Visible = true;
			this.lblDiscountLineIn.AutoSize = false;
			this.lblDiscountLineIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscountLineIn.Name = "lblDiscountLineIn";
			this._lbl_20.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_20.Text = "Contents Value :";
			this._lbl_20.Size = new System.Drawing.Size(133, 13);
			this._lbl_20.Location = new System.Drawing.Point(18, 36);
			this._lbl_20.TabIndex = 56;
			this._lbl_20.BackColor = System.Drawing.Color.Transparent;
			this._lbl_20.Enabled = true;
			this._lbl_20.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_20.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_20.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_20.UseMnemonic = true;
			this._lbl_20.Visible = true;
			this._lbl_20.AutoSize = false;
			this._lbl_20.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_20.Name = "_lbl_20";
			this._lbl_21.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_21.Text = "Line Item Discount :";
			this._lbl_21.Size = new System.Drawing.Size(133, 13);
			this._lbl_21.Location = new System.Drawing.Point(18, 57);
			this._lbl_21.TabIndex = 55;
			this._lbl_21.BackColor = System.Drawing.Color.Transparent;
			this._lbl_21.Enabled = true;
			this._lbl_21.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_21.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_21.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_21.UseMnemonic = true;
			this._lbl_21.Visible = true;
			this._lbl_21.AutoSize = false;
			this._lbl_21.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_21.Name = "_lbl_21";
			this.lblExclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblExclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblExclusiveIn.Text = "0.00";
			this.lblExclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblExclusiveIn.Location = new System.Drawing.Point(153, 201);
			this.lblExclusiveIn.TabIndex = 54;
			this.lblExclusiveIn.Enabled = true;
			this.lblExclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblExclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblExclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblExclusiveIn.UseMnemonic = true;
			this.lblExclusiveIn.Visible = true;
			this.lblExclusiveIn.AutoSize = false;
			this.lblExclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblExclusiveIn.Name = "lblExclusiveIn";
			this._lbl_22.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_22.Text = "Exclusive:";
			this._lbl_22.Size = new System.Drawing.Size(133, 13);
			this._lbl_22.Location = new System.Drawing.Point(18, 204);
			this._lbl_22.TabIndex = 53;
			this._lbl_22.BackColor = System.Drawing.Color.Transparent;
			this._lbl_22.Enabled = true;
			this._lbl_22.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_22.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_22.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_22.UseMnemonic = true;
			this._lbl_22.Visible = true;
			this._lbl_22.AutoSize = false;
			this._lbl_22.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_22.Name = "_lbl_22";
			this._lbl_29.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_29.Text = "VAT :";
			this._lbl_29.Size = new System.Drawing.Size(133, 13);
			this._lbl_29.Location = new System.Drawing.Point(18, 225);
			this._lbl_29.TabIndex = 52;
			this._lbl_29.BackColor = System.Drawing.Color.Transparent;
			this._lbl_29.Enabled = true;
			this._lbl_29.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_29.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_29.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_29.UseMnemonic = true;
			this._lbl_29.Visible = true;
			this._lbl_29.AutoSize = false;
			this._lbl_29.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_29.Name = "_lbl_29";
			this.lblVATin.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblVATin.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblVATin.Text = "0.00";
			this.lblVATin.Size = new System.Drawing.Size(91, 19);
			this.lblVATin.Location = new System.Drawing.Point(153, 222);
			this.lblVATin.TabIndex = 51;
			this.lblVATin.Enabled = true;
			this.lblVATin.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVATin.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVATin.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVATin.UseMnemonic = true;
			this.lblVATin.Visible = true;
			this.lblVATin.AutoSize = false;
			this.lblVATin.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblVATin.Name = "lblVATin";
			this._lbl_30.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_30.Text = "Inclusive:";
			this._lbl_30.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_30.Size = new System.Drawing.Size(133, 13);
			this._lbl_30.Location = new System.Drawing.Point(18, 246);
			this._lbl_30.TabIndex = 50;
			this._lbl_30.BackColor = System.Drawing.Color.Transparent;
			this._lbl_30.Enabled = true;
			this._lbl_30.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_30.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_30.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_30.UseMnemonic = true;
			this._lbl_30.Visible = true;
			this._lbl_30.AutoSize = false;
			this._lbl_30.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_30.Name = "_lbl_30";
			this.lblInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblInclusiveIn.Text = "0.00";
			this.lblInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblInclusiveIn.Location = new System.Drawing.Point(153, 243);
			this.lblInclusiveIn.TabIndex = 49;
			this.lblInclusiveIn.Enabled = true;
			this.lblInclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInclusiveIn.UseMnemonic = true;
			this.lblInclusiveIn.Visible = true;
			this.lblInclusiveIn.AutoSize = false;
			this.lblInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInclusiveIn.Name = "lblInclusiveIn";
			this.lblVatRateIn.Text = "0.00";
			this.lblVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblVatRateIn.Location = new System.Drawing.Point(246, 225);
			this.lblVatRateIn.TabIndex = 48;
			this.lblVatRateIn.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblVatRateIn.Enabled = true;
			this.lblVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblVatRateIn.UseMnemonic = true;
			this.lblVatRateIn.Visible = true;
			this.lblVatRateIn.AutoSize = false;
			this.lblVatRateIn.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblVatRateIn.Name = "lblVatRateIn";
			this._lbl_19.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_19.Text = "Payment Terms";
			this._lbl_19.Size = new System.Drawing.Size(133, 13);
			this._lbl_19.Location = new System.Drawing.Point(18, 99);
			this._lbl_19.TabIndex = 47;
			this._lbl_19.BackColor = System.Drawing.Color.Transparent;
			this._lbl_19.Enabled = true;
			this._lbl_19.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_19.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_19.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_19.UseMnemonic = true;
			this._lbl_19.Visible = true;
			this._lbl_19.AutoSize = false;
			this._lbl_19.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_19.Name = "_lbl_19";
			this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._Label1_1.Text = "%:";
			this._Label1_1.ForeColor = System.Drawing.Color.Red;
			this._Label1_1.Size = new System.Drawing.Size(13, 13);
			this._Label1_1.Location = new System.Drawing.Point(138, 138);
			this._Label1_1.TabIndex = 46;
			this._Label1_1.BackColor = System.Drawing.Color.Transparent;
			this._Label1_1.Enabled = true;
			this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_1.UseMnemonic = true;
			this._Label1_1.Visible = true;
			this._Label1_1.AutoSize = true;
			this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_1.Name = "_Label1_1";
			this.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.Label2.Text = "Ullage @";
			this.Label2.ForeColor = System.Drawing.Color.Red;
			this.Label2.Size = new System.Drawing.Size(133, 13);
			this.Label2.Location = new System.Drawing.Point(-36, 138);
			this.Label2.TabIndex = 45;
			this.Label2.BackColor = System.Drawing.Color.Transparent;
			this.Label2.Enabled = true;
			this.Label2.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label2.UseMnemonic = true;
			this.Label2.Visible = true;
			this.Label2.AutoSize = false;
			this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label2.Name = "Label2";
			this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._Label1_0.Text = "%:";
			this._Label1_0.ForeColor = System.Drawing.Color.Red;
			this._Label1_0.Size = new System.Drawing.Size(13, 13);
			this._Label1_0.Location = new System.Drawing.Point(138, 120);
			this._Label1_0.TabIndex = 44;
			this._Label1_0.BackColor = System.Drawing.Color.Transparent;
			this._Label1_0.Enabled = true;
			this._Label1_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._Label1_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Label1_0.UseMnemonic = true;
			this._Label1_0.Visible = true;
			this._Label1_0.AutoSize = true;
			this._Label1_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._Label1_0.Name = "_Label1_0";
			this.lblDiscount.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscount.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDiscount.Text = "0.00";
			this.lblDiscount.ForeColor = System.Drawing.Color.Red;
			this.lblDiscount.Size = new System.Drawing.Size(91, 19);
			this.lblDiscount.Location = new System.Drawing.Point(153, 117);
			this.lblDiscount.TabIndex = 43;
			this.lblDiscount.Enabled = true;
			this.lblDiscount.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscount.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscount.UseMnemonic = true;
			this.lblDiscount.Visible = true;
			this.lblDiscount.AutoSize = false;
			this.lblDiscount.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDiscount.Name = "lblDiscount";
			this.lblUllage.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblUllage.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblUllage.Text = "0.00";
			this.lblUllage.ForeColor = System.Drawing.Color.Red;
			this.lblUllage.Size = new System.Drawing.Size(91, 19);
			this.lblUllage.Location = new System.Drawing.Point(153, 138);
			this.lblUllage.TabIndex = 42;
			this.lblUllage.Enabled = true;
			this.lblUllage.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblUllage.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblUllage.UseMnemonic = true;
			this.lblUllage.Visible = true;
			this.lblUllage.AutoSize = false;
			this.lblUllage.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblUllage.Name = "lblUllage";
			this.lblDiscountName.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDiscountName.Text = "Account Discount";
			this.lblDiscountName.ForeColor = System.Drawing.Color.Red;
			this.lblDiscountName.Size = new System.Drawing.Size(133, 13);
			this.lblDiscountName.Location = new System.Drawing.Point(-42, 120);
			this.lblDiscountName.TabIndex = 41;
			this.lblDiscountName.BackColor = System.Drawing.Color.Transparent;
			this.lblDiscountName.Enabled = true;
			this.lblDiscountName.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDiscountName.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDiscountName.UseMnemonic = true;
			this.lblDiscountName.Visible = true;
			this.lblDiscountName.AutoSize = false;
			this.lblDiscountName.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDiscountName.Name = "lblDiscountName";
			this._lbl_31.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_31.Text = "Content Sub Total :";
			this._lbl_31.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_31.Size = new System.Drawing.Size(133, 13);
			this._lbl_31.Location = new System.Drawing.Point(18, 78);
			this._lbl_31.TabIndex = 40;
			this._lbl_31.BackColor = System.Drawing.Color.Transparent;
			this._lbl_31.Enabled = true;
			this._lbl_31.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_31.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_31.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_31.UseMnemonic = true;
			this._lbl_31.Visible = true;
			this._lbl_31.AutoSize = false;
			this._lbl_31.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_31.Name = "_lbl_31";
			this.lblContentExclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblContentExclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblContentExclusiveIn.Text = "0.00";
			this.lblContentExclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblContentExclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblContentExclusiveIn.Location = new System.Drawing.Point(153, 75);
			this.lblContentExclusiveIn.TabIndex = 39;
			this.lblContentExclusiveIn.Enabled = true;
			this.lblContentExclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblContentExclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblContentExclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblContentExclusiveIn.UseMnemonic = true;
			this.lblContentExclusiveIn.Visible = true;
			this.lblContentExclusiveIn.AutoSize = false;
			this.lblContentExclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblContentExclusiveIn.Name = "lblContentExclusiveIn";
			this._lbl_11.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_11.Text = "Sundry Minuses:";
			this._lbl_11.ForeColor = System.Drawing.Color.Red;
			this._lbl_11.Size = new System.Drawing.Size(133, 13);
			this._lbl_11.Location = new System.Drawing.Point(18, 183);
			this._lbl_11.TabIndex = 38;
			this._lbl_11.BackColor = System.Drawing.Color.Transparent;
			this._lbl_11.Enabled = true;
			this._lbl_11.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_11.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_11.UseMnemonic = true;
			this._lbl_11.Visible = true;
			this._lbl_11.AutoSize = false;
			this._lbl_11.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_11.Name = "_lbl_11";
			this._lbl_10.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_10.Text = "Sundry Pluses:";
			this._lbl_10.Size = new System.Drawing.Size(133, 13);
			this._lbl_10.Location = new System.Drawing.Point(18, 162);
			this._lbl_10.TabIndex = 37;
			this._lbl_10.BackColor = System.Drawing.Color.Transparent;
			this._lbl_10.Enabled = true;
			this._lbl_10.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_10.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_10.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_10.UseMnemonic = true;
			this._lbl_10.Visible = true;
			this._lbl_10.AutoSize = false;
			this._lbl_10.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_10.Name = "_lbl_10";
			this._lbl_32.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_32.Text = "No Of Lines :";
			this._lbl_32.Size = new System.Drawing.Size(133, 13);
			this._lbl_32.Location = new System.Drawing.Point(18, 15);
			this._lbl_32.TabIndex = 36;
			this._lbl_32.BackColor = System.Drawing.Color.Transparent;
			this._lbl_32.Enabled = true;
			this._lbl_32.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_32.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_32.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_32.UseMnemonic = true;
			this._lbl_32.Visible = true;
			this._lbl_32.AutoSize = false;
			this._lbl_32.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_32.Name = "_lbl_32";
			this.lblLinesIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblLinesIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblLinesIn.Text = "0";
			this.lblLinesIn.Size = new System.Drawing.Size(91, 19);
			this.lblLinesIn.Location = new System.Drawing.Point(153, 12);
			this.lblLinesIn.TabIndex = 35;
			this.lblLinesIn.Enabled = true;
			this.lblLinesIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblLinesIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblLinesIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblLinesIn.UseMnemonic = true;
			this.lblLinesIn.Visible = true;
			this.lblLinesIn.AutoSize = false;
			this.lblLinesIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblLinesIn.Name = "lblLinesIn";
			this._Frame1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this._Frame1_1.Text = "Deposits with Purchases";
			this._Frame1_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._Frame1_1.Size = new System.Drawing.Size(301, 82);
			this._Frame1_1.Location = new System.Drawing.Point(9, 285);
			this._Frame1_1.TabIndex = 12;
			this._Frame1_1.Enabled = true;
			this._Frame1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Frame1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Frame1_1.Visible = true;
			this._Frame1_1.Padding = new System.Windows.Forms.Padding(0);
			this._Frame1_1.Name = "_Frame1_1";
			this.lblDepositVatRateIn.Text = "0.00";
			this.lblDepositVatRateIn.Size = new System.Drawing.Size(55, 16);
			this.lblDepositVatRateIn.Location = new System.Drawing.Point(243, 39);
			this.lblDepositVatRateIn.TabIndex = 59;
			this.lblDepositVatRateIn.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblDepositVatRateIn.BackColor = System.Drawing.Color.Transparent;
			this.lblDepositVatRateIn.Enabled = true;
			this.lblDepositVatRateIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatRateIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatRateIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatRateIn.UseMnemonic = true;
			this.lblDepositVatRateIn.Visible = true;
			this.lblDepositVatRateIn.AutoSize = false;
			this.lblDepositVatRateIn.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblDepositVatRateIn.Name = "lblDepositVatRateIn";
			this.lblDepositIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositIn.Text = "0.00";
			this.lblDepositIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositIn.Location = new System.Drawing.Point(150, 18);
			this.lblDepositIn.TabIndex = 14;
			this.lblDepositIn.Enabled = true;
			this.lblDepositIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositIn.UseMnemonic = true;
			this.lblDepositIn.Visible = true;
			this.lblDepositIn.AutoSize = false;
			this.lblDepositIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositIn.Name = "lblDepositIn";
			this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_2.Text = "Deposit Value:";
			this._lbl_2.Size = new System.Drawing.Size(133, 13);
			this._lbl_2.Location = new System.Drawing.Point(16, 21);
			this._lbl_2.TabIndex = 13;
			this._lbl_2.BackColor = System.Drawing.Color.Transparent;
			this._lbl_2.Enabled = true;
			this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_2.UseMnemonic = true;
			this._lbl_2.Visible = true;
			this._lbl_2.AutoSize = false;
			this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_2.Name = "_lbl_2";
			this.lblDepositVatIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositVatIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositVatIn.Text = "0.00";
			this.lblDepositVatIn.Size = new System.Drawing.Size(91, 17);
			this.lblDepositVatIn.Location = new System.Drawing.Point(150, 36);
			this.lblDepositVatIn.TabIndex = 16;
			this.lblDepositVatIn.Enabled = true;
			this.lblDepositVatIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositVatIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositVatIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositVatIn.UseMnemonic = true;
			this.lblDepositVatIn.Visible = true;
			this.lblDepositVatIn.AutoSize = false;
			this.lblDepositVatIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositVatIn.Name = "lblDepositVatIn";
			this._lbl_13.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_13.Text = "VAT:";
			this._lbl_13.Size = new System.Drawing.Size(133, 13);
			this._lbl_13.Location = new System.Drawing.Point(16, 39);
			this._lbl_13.TabIndex = 15;
			this._lbl_13.BackColor = System.Drawing.Color.Transparent;
			this._lbl_13.Enabled = true;
			this._lbl_13.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_13.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_13.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_13.UseMnemonic = true;
			this._lbl_13.Visible = true;
			this._lbl_13.AutoSize = false;
			this._lbl_13.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_13.Name = "_lbl_13";
			this.lblDepositInclusiveIn.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDepositInclusiveIn.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDepositInclusiveIn.Text = "0.00";
			this.lblDepositInclusiveIn.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDepositInclusiveIn.Size = new System.Drawing.Size(91, 19);
			this.lblDepositInclusiveIn.Location = new System.Drawing.Point(150, 54);
			this.lblDepositInclusiveIn.TabIndex = 18;
			this.lblDepositInclusiveIn.Enabled = true;
			this.lblDepositInclusiveIn.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDepositInclusiveIn.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDepositInclusiveIn.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDepositInclusiveIn.UseMnemonic = true;
			this.lblDepositInclusiveIn.Visible = true;
			this.lblDepositInclusiveIn.AutoSize = false;
			this.lblDepositInclusiveIn.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDepositInclusiveIn.Name = "lblDepositInclusiveIn";
			this._lbl_14.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_14.Text = "Inclusive:";
			this._lbl_14.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_14.Size = new System.Drawing.Size(133, 13);
			this._lbl_14.Location = new System.Drawing.Point(16, 57);
			this._lbl_14.TabIndex = 17;
			this._lbl_14.BackColor = System.Drawing.Color.Transparent;
			this._lbl_14.Enabled = true;
			this._lbl_14.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_14.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_14.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_14.UseMnemonic = true;
			this._lbl_14.Visible = true;
			this._lbl_14.AutoSize = false;
			this._lbl_14.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_14.Name = "_lbl_14";
			this.Line2.X1 = 620;
			this.Line2.X2 = 24;
			this.Line2.Y1 = 485;
			this.Line2.Y2 = 485;
			this.Line2.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line2.BorderWidth = 1;
			this.Line2.Visible = true;
			this.Line2.Name = "Line2";
			this.Line1.X1 = 620;
			this.Line1.X2 = 24;
			this.Line1.Y1 = 482;
			this.Line1.Y2 = 482;
			this.Line1.BorderColor = System.Drawing.SystemColors.WindowText;
			this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid;
			this.Line1.BorderWidth = 1;
			this.Line1.Visible = true;
			this.Line1.Name = "Line1";
			this._lbl_28.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_28.Text = "In Bound VAT:";
			this._lbl_28.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_28.Size = new System.Drawing.Size(133, 13);
			this._lbl_28.Location = new System.Drawing.Point(336, 456);
			this._lbl_28.TabIndex = 92;
			this._lbl_28.BackColor = System.Drawing.Color.Transparent;
			this._lbl_28.Enabled = true;
			this._lbl_28.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_28.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_28.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_28.UseMnemonic = true;
			this._lbl_28.Visible = true;
			this._lbl_28.AutoSize = false;
			this._lbl_28.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_28.Name = "_lbl_28";
			this.lblInBoundVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInBoundVat.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this.lblInBoundVat.Text = "0.00";
			this.lblInBoundVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInBoundVat.Size = new System.Drawing.Size(91, 19);
			this.lblInBoundVat.Location = new System.Drawing.Point(470, 453);
			this.lblInBoundVat.TabIndex = 91;
			this.lblInBoundVat.Enabled = true;
			this.lblInBoundVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInBoundVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInBoundVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInBoundVat.UseMnemonic = true;
			this.lblInBoundVat.Visible = true;
			this.lblInBoundVat.AutoSize = false;
			this.lblInBoundVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInBoundVat.Name = "lblInBoundVat";
			this._lbl_27.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_27.Text = "Credit Inclusive:";
			this._lbl_27.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_27.Size = new System.Drawing.Size(133, 13);
			this._lbl_27.Location = new System.Drawing.Point(337, 477);
			this._lbl_27.TabIndex = 90;
			this._lbl_27.BackColor = System.Drawing.Color.Transparent;
			this._lbl_27.Enabled = true;
			this._lbl_27.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_27.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_27.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_27.UseMnemonic = true;
			this._lbl_27.Visible = true;
			this._lbl_27.AutoSize = false;
			this._lbl_27.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_27.Name = "_lbl_27";
			this.lblInBound.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblInBound.BackColor = System.Drawing.Color.FromArgb(255, 192, 192);
			this.lblInBound.Text = "0.00";
			this.lblInBound.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblInBound.Size = new System.Drawing.Size(91, 19);
			this.lblInBound.Location = new System.Drawing.Point(471, 474);
			this.lblInBound.TabIndex = 89;
			this.lblInBound.Enabled = true;
			this.lblInBound.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblInBound.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblInBound.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblInBound.UseMnemonic = true;
			this.lblInBound.Visible = true;
			this.lblInBound.AutoSize = false;
			this.lblInBound.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblInBound.Name = "lblInBound";
			this._lbl_26.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_26.Text = "Credits VAT:";
			this._lbl_26.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_26.Size = new System.Drawing.Size(133, 13);
			this._lbl_26.Location = new System.Drawing.Point(336, 246);
			this._lbl_26.TabIndex = 88;
			this._lbl_26.BackColor = System.Drawing.Color.Transparent;
			this._lbl_26.Enabled = true;
			this._lbl_26.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_26.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_26.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_26.UseMnemonic = true;
			this._lbl_26.Visible = true;
			this._lbl_26.AutoSize = false;
			this._lbl_26.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_26.Name = "_lbl_26";
			this.lblCreditVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblCreditVat.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblCreditVat.Text = "0.00";
			this.lblCreditVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblCreditVat.Size = new System.Drawing.Size(91, 19);
			this.lblCreditVat.Location = new System.Drawing.Point(470, 243);
			this.lblCreditVat.TabIndex = 87;
			this.lblCreditVat.Enabled = true;
			this.lblCreditVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblCreditVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblCreditVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblCreditVat.UseMnemonic = true;
			this.lblCreditVat.Visible = true;
			this.lblCreditVat.AutoSize = false;
			this.lblCreditVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblCreditVat.Name = "lblCreditVat";
			this._lbl_25.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_25.Text = "Credits Inclusive:";
			this._lbl_25.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_25.Size = new System.Drawing.Size(133, 13);
			this._lbl_25.Location = new System.Drawing.Point(337, 267);
			this._lbl_25.TabIndex = 86;
			this._lbl_25.BackColor = System.Drawing.Color.Transparent;
			this._lbl_25.Enabled = true;
			this._lbl_25.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_25.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_25.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_25.UseMnemonic = true;
			this._lbl_25.Visible = true;
			this._lbl_25.AutoSize = false;
			this._lbl_25.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_25.Name = "_lbl_25";
			this.lblCredit.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblCredit.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblCredit.Text = "0.00";
			this.lblCredit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblCredit.Size = new System.Drawing.Size(91, 19);
			this.lblCredit.Location = new System.Drawing.Point(471, 264);
			this.lblCredit.TabIndex = 85;
			this.lblCredit.Enabled = true;
			this.lblCredit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblCredit.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblCredit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblCredit.UseMnemonic = true;
			this.lblCredit.Visible = true;
			this.lblCredit.AutoSize = false;
			this.lblCredit.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblCredit.Name = "lblCredit";
			this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_8.Text = "Out Bound VAT:";
			this._lbl_8.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_8.Size = new System.Drawing.Size(133, 13);
			this._lbl_8.Location = new System.Drawing.Point(24, 456);
			this._lbl_8.TabIndex = 84;
			this._lbl_8.BackColor = System.Drawing.Color.Transparent;
			this._lbl_8.Enabled = true;
			this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_8.UseMnemonic = true;
			this._lbl_8.Visible = true;
			this._lbl_8.AutoSize = false;
			this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_8.Name = "_lbl_8";
			this.lblOutBoundVat.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblOutBoundVat.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblOutBoundVat.Text = "0.00";
			this.lblOutBoundVat.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblOutBoundVat.Size = new System.Drawing.Size(91, 19);
			this.lblOutBoundVat.Location = new System.Drawing.Point(158, 453);
			this.lblOutBoundVat.TabIndex = 83;
			this.lblOutBoundVat.Enabled = true;
			this.lblOutBoundVat.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblOutBoundVat.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblOutBoundVat.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblOutBoundVat.UseMnemonic = true;
			this.lblOutBoundVat.Visible = true;
			this.lblOutBoundVat.AutoSize = false;
			this.lblOutBoundVat.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblOutBoundVat.Name = "lblOutBoundVat";
			this.lblOutBound.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblOutBound.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblOutBound.Text = "0.00";
			this.lblOutBound.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblOutBound.Size = new System.Drawing.Size(91, 19);
			this.lblOutBound.Location = new System.Drawing.Point(159, 474);
			this.lblOutBound.TabIndex = 20;
			this.lblOutBound.Enabled = true;
			this.lblOutBound.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblOutBound.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblOutBound.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblOutBound.UseMnemonic = true;
			this.lblOutBound.Visible = true;
			this.lblOutBound.AutoSize = false;
			this.lblOutBound.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblOutBound.Name = "lblOutBound";
			this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_6.Text = "Purchases Inclusive:";
			this._lbl_6.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_6.Size = new System.Drawing.Size(133, 13);
			this._lbl_6.Location = new System.Drawing.Point(25, 477);
			this._lbl_6.TabIndex = 19;
			this._lbl_6.BackColor = System.Drawing.Color.Transparent;
			this._lbl_6.Enabled = true;
			this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_6.UseMnemonic = true;
			this._lbl_6.Visible = true;
			this._lbl_6.AutoSize = false;
			this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_6.Name = "_lbl_6";
			this.lblTotal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblTotal.Text = "0.00";
			this.lblTotal.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblTotal.Size = new System.Drawing.Size(91, 19);
			this.lblTotal.Location = new System.Drawing.Point(531, 522);
			this.lblTotal.TabIndex = 9;
			this.lblTotal.Enabled = true;
			this.lblTotal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotal.UseMnemonic = true;
			this.lblTotal.Visible = true;
			this.lblTotal.AutoSize = false;
			this.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotal.Name = "lblTotal";
			this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_7.Text = "Nett Invoice Value:";
			this._lbl_7.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_7.Size = new System.Drawing.Size(133, 13);
			this._lbl_7.Location = new System.Drawing.Point(396, 525);
			this._lbl_7.TabIndex = 8;
			this._lbl_7.BackColor = System.Drawing.Color.Transparent;
			this._lbl_7.Enabled = true;
			this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_7.UseMnemonic = true;
			this._lbl_7.Visible = true;
			this._lbl_7.AutoSize = false;
			this._lbl_7.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_7.Name = "_lbl_7";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "Desired Invoice Value:";
			this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_0.Size = new System.Drawing.Size(133, 13);
			this._lbl_0.Location = new System.Drawing.Point(24, 504);
			this._lbl_0.TabIndex = 28;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = false;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this.lblTotalOriginal.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblTotalOriginal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblTotalOriginal.Text = "0.00";
			this.lblTotalOriginal.Size = new System.Drawing.Size(91, 19);
			this.lblTotalOriginal.Location = new System.Drawing.Point(159, 501);
			this.lblTotalOriginal.TabIndex = 29;
			this.lblTotalOriginal.Enabled = true;
			this.lblTotalOriginal.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblTotalOriginal.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblTotalOriginal.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblTotalOriginal.UseMnemonic = true;
			this.lblTotalOriginal.Visible = true;
			this.lblTotalOriginal.AutoSize = false;
			this.lblTotalOriginal.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblTotalOriginal.Name = "lblTotalOriginal";
			this.lblDifference.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this.lblDifference.BackColor = System.Drawing.Color.FromArgb(224, 224, 224);
			this.lblDifference.Text = "0.00";
			this.lblDifference.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblDifference.Size = new System.Drawing.Size(91, 19);
			this.lblDifference.Location = new System.Drawing.Point(159, 522);
			this.lblDifference.TabIndex = 31;
			this.lblDifference.Enabled = true;
			this.lblDifference.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblDifference.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblDifference.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblDifference.UseMnemonic = true;
			this.lblDifference.Visible = true;
			this.lblDifference.AutoSize = false;
			this.lblDifference.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblDifference.Name = "lblDifference";
			this._lbl_18.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_18.Text = "Difference:";
			this._lbl_18.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this._lbl_18.Size = new System.Drawing.Size(133, 13);
			this._lbl_18.Location = new System.Drawing.Point(24, 525);
			this._lbl_18.TabIndex = 30;
			this._lbl_18.BackColor = System.Drawing.Color.Transparent;
			this._lbl_18.Enabled = true;
			this._lbl_18.ForeColor = System.Drawing.SystemColors.ControlText;
			this._lbl_18.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_18.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_18.UseMnemonic = true;
			this._lbl_18.Visible = true;
			this._lbl_18.AutoSize = false;
			this._lbl_18.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_18.Name = "_lbl_18";
			this.Picture1.Dock = System.Windows.Forms.DockStyle.Top;
			this.Picture1.BackColor = System.Drawing.Color.Red;
			this.Picture1.Size = new System.Drawing.Size(760, 25);
			this.Picture1.Location = new System.Drawing.Point(0, 49);
			this.Picture1.TabIndex = 32;
			this.Picture1.TabStop = false;
			this.Picture1.CausesValidation = true;
			this.Picture1.Enabled = true;
			this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Picture1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Picture1.Visible = true;
			this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.Picture1.Name = "Picture1";
			this.lblSupplier.Text = "lblSupplier";
			this.lblSupplier.Font = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178));
			this.lblSupplier.ForeColor = System.Drawing.Color.White;
			this.lblSupplier.Size = new System.Drawing.Size(85, 20);
			this.lblSupplier.Location = new System.Drawing.Point(0, 0);
			this.lblSupplier.TabIndex = 33;
			this.lblSupplier.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblSupplier.BackColor = System.Drawing.Color.Transparent;
			this.lblSupplier.Enabled = true;
			this.lblSupplier.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblSupplier.UseMnemonic = true;
			this.lblSupplier.Visible = true;
			this.lblSupplier.AutoSize = true;
			this.lblSupplier.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.lblSupplier.Name = "lblSupplier";
			this.Controls.Add(cmdNextFnV);
			this.Controls.Add(_Frame1_6);
			this.Controls.Add(Picture2);
			this.Controls.Add(frmProcess);
			this.Controls.Add(frmMain);
			this.Controls.Add(Picture1);
			this._Frame1_6.Controls.Add(cmdNext);
			this._Frame1_6.Controls.Add(Text1);
			this._Frame1_6.Controls.Add(Command2);
			this._Frame1_6.Controls.Add(Command1);
			this._Frame1_6.Controls.Add(txtQuantity);
			this._Frame1_6.Controls.Add(FGRecipe);
			this._Frame1_6.Controls.Add(Label5);
			this._Frame1_6.Controls.Add(Label4);
			this._Frame1_6.Controls.Add(lblRecipeCost);
			this.Picture2.Controls.Add(cmdExit);
			this.Picture2.Controls.Add(cmdBack);
			this.frmProcess.Controls.Add(txtNotes);
			this.frmProcess.Controls.Add(_optClose_0);
			this.frmProcess.Controls.Add(Label3);
			this.frmMain.Controls.Add(_Frame1_5);
			this.frmMain.Controls.Add(_Frame1_3);
			this.frmMain.Controls.Add(_Frame1_4);
			this.frmMain.Controls.Add(_Frame1_2);
			this.frmMain.Controls.Add(_Frame1_0);
			this.frmMain.Controls.Add(_Frame1_1);
			this.ShapeContainer1.Shapes.Add(Line2);
			this.ShapeContainer1.Shapes.Add(Line1);
			this.frmMain.Controls.Add(_lbl_28);
			this.frmMain.Controls.Add(lblInBoundVat);
			this.frmMain.Controls.Add(_lbl_27);
			this.frmMain.Controls.Add(lblInBound);
			this.frmMain.Controls.Add(_lbl_26);
			this.frmMain.Controls.Add(lblCreditVat);
			this.frmMain.Controls.Add(_lbl_25);
			this.frmMain.Controls.Add(lblCredit);
			this.frmMain.Controls.Add(_lbl_8);
			this.frmMain.Controls.Add(lblOutBoundVat);
			this.frmMain.Controls.Add(lblOutBound);
			this.frmMain.Controls.Add(_lbl_6);
			this.frmMain.Controls.Add(lblTotal);
			this.frmMain.Controls.Add(_lbl_7);
			this.frmMain.Controls.Add(_lbl_0);
			this.frmMain.Controls.Add(lblTotalOriginal);
			this.frmMain.Controls.Add(lblDifference);
			this.frmMain.Controls.Add(_lbl_18);
			this.frmMain.Controls.Add(ShapeContainer1);
			this._Frame1_5.Controls.Add(lblDepositReturnIn);
			this._Frame1_5.Controls.Add(_lbl_35);
			this._Frame1_5.Controls.Add(lblDepositReturnVatIn);
			this._Frame1_5.Controls.Add(_lbl_34);
			this._Frame1_5.Controls.Add(lblDepositReturnInclusiveIn);
			this._Frame1_5.Controls.Add(_lbl_33);
			this._Frame1_5.Controls.Add(lblDepositReturnVatRateIn);
			this._Frame1_3.Controls.Add(lblContentOut);
			this._Frame1_3.Controls.Add(lblDiscountLineOut);
			this._Frame1_3.Controls.Add(_lbl_1);
			this._Frame1_3.Controls.Add(_lbl_3);
			this._Frame1_3.Controls.Add(lblExclusiveOut);
			this._Frame1_3.Controls.Add(_lbl_4);
			this._Frame1_3.Controls.Add(_lbl_5);
			this._Frame1_3.Controls.Add(lblVATout);
			this._Frame1_3.Controls.Add(_lbl_12);
			this._Frame1_3.Controls.Add(lblInclusiveOut);
			this._Frame1_3.Controls.Add(lblVatRateOut);
			this._Frame1_3.Controls.Add(_lbl_37);
			this._Frame1_3.Controls.Add(lblLinesOut);
			this._Frame1_4.Controls.Add(lblDepositVatRateOut);
			this._Frame1_4.Controls.Add(lblDepositOut);
			this._Frame1_4.Controls.Add(_lbl_9);
			this._Frame1_4.Controls.Add(lblDepositVatOut);
			this._Frame1_4.Controls.Add(_lbl_23);
			this._Frame1_4.Controls.Add(lblDepositInclusiveOut);
			this._Frame1_4.Controls.Add(_lbl_24);
			this._Frame1_2.Controls.Add(lblDepositReturnVatRateOut);
			this._Frame1_2.Controls.Add(_lbl_15);
			this._Frame1_2.Controls.Add(lblDepositReturnInclusiveOut);
			this._Frame1_2.Controls.Add(_lbl_16);
			this._Frame1_2.Controls.Add(lblDepositReturnVatOut);
			this._Frame1_2.Controls.Add(_lbl_17);
			this._Frame1_2.Controls.Add(lblDepositReturnOut);
			this._Frame1_0.Controls.Add(cmbPayment);
			this._Frame1_0.Controls.Add(txtUllage);
			this._Frame1_0.Controls.Add(txtDiscount);
			this._Frame1_0.Controls.Add(txtMinus);
			this._Frame1_0.Controls.Add(txtPlus);
			this._Frame1_0.Controls.Add(lblContentIn);
			this._Frame1_0.Controls.Add(lblDiscountLineIn);
			this._Frame1_0.Controls.Add(_lbl_20);
			this._Frame1_0.Controls.Add(_lbl_21);
			this._Frame1_0.Controls.Add(lblExclusiveIn);
			this._Frame1_0.Controls.Add(_lbl_22);
			this._Frame1_0.Controls.Add(_lbl_29);
			this._Frame1_0.Controls.Add(lblVATin);
			this._Frame1_0.Controls.Add(_lbl_30);
			this._Frame1_0.Controls.Add(lblInclusiveIn);
			this._Frame1_0.Controls.Add(lblVatRateIn);
			this._Frame1_0.Controls.Add(_lbl_19);
			this._Frame1_0.Controls.Add(_Label1_1);
			this._Frame1_0.Controls.Add(Label2);
			this._Frame1_0.Controls.Add(_Label1_0);
			this._Frame1_0.Controls.Add(lblDiscount);
			this._Frame1_0.Controls.Add(lblUllage);
			this._Frame1_0.Controls.Add(lblDiscountName);
			this._Frame1_0.Controls.Add(_lbl_31);
			this._Frame1_0.Controls.Add(lblContentExclusiveIn);
			this._Frame1_0.Controls.Add(_lbl_11);
			this._Frame1_0.Controls.Add(_lbl_10);
			this._Frame1_0.Controls.Add(_lbl_32);
			this._Frame1_0.Controls.Add(lblLinesIn);
			this._Frame1_1.Controls.Add(lblDepositVatRateIn);
			this._Frame1_1.Controls.Add(lblDepositIn);
			this._Frame1_1.Controls.Add(_lbl_2);
			this._Frame1_1.Controls.Add(lblDepositVatIn);
			this._Frame1_1.Controls.Add(_lbl_13);
			this._Frame1_1.Controls.Add(lblDepositInclusiveIn);
			this._Frame1_1.Controls.Add(_lbl_14);
			this.Picture1.Controls.Add(lblSupplier);
			//Me.Frame1.SetIndex(_Frame1_6, CType(6, Short))
			//Me.Frame1.SetIndex(_Frame1_5, CType(5, Short))
			//Me.Frame1.SetIndex(_Frame1_3, CType(3, Short))
			//Me.Frame1.SetIndex(_Frame1_4, CType(4, Short))
			//Me.Frame1.SetIndex(_Frame1_2, CType(2, Short))
			//Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
			//Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
			//Me.Label1.SetIndex(_Label1_1, CType(1, Short))
			//Me.Label1.SetIndex(_Label1_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_35, CType(35, Short))
			//Me.lbl.SetIndex(_lbl_34, CType(34, Short))
			//Me.lbl.SetIndex(_lbl_33, CType(33, Short))
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_3, CType(3, Short))
			//Me.lbl.SetIndex(_lbl_4, CType(4, Short))
			//Me.lbl.SetIndex(_lbl_5, CType(5, Short))
			//Me.lbl.SetIndex(_lbl_12, CType(12, Short))
			//Me.lbl.SetIndex(_lbl_37, CType(37, Short))
			//Me.lbl.SetIndex(_lbl_9, CType(9, Short))
			//Me.lbl.SetIndex(_lbl_23, CType(23, Short))
			//Me.lbl.SetIndex(_lbl_24, CType(24, Short))
			//Me.lbl.SetIndex(_lbl_15, CType(15, Short))
			//Me.lbl.SetIndex(_lbl_16, CType(16, Short))
			//Me.lbl.SetIndex(_lbl_17, CType(17, Short))
			//Me.lbl.SetIndex(_lbl_20, CType(20, Short))
			//Me.lbl.SetIndex(_lbl_21, CType(21, Short))
			//Me.lbl.SetIndex(_lbl_22, CType(22, Short))
			//Me.lbl.SetIndex(_lbl_29, CType(29, Short))
			//Me.lbl.SetIndex(_lbl_30, CType(30, Short))
			//Me.lbl.SetIndex(_lbl_19, CType(19, Short))
			//Me.lbl.SetIndex(_lbl_31, CType(31, Short))
			//Me.lbl.SetIndex(_lbl_11, CType(11, Short))
			//Me.lbl.SetIndex(_lbl_10, CType(10, Short))
			//Me.lbl.SetIndex(_lbl_32, CType(32, Short))
			//Me.lbl.SetIndex(_lbl_2, CType(2, Short))
			//Me.lbl.SetIndex(_lbl_13, CType(13, Short))
			//Me.lbl.SetIndex(_lbl_14, CType(14, Short))
			//Me.lbl.SetIndex(_lbl_28, CType(28, Short))
			//Me.lbl.SetIndex(_lbl_27, CType(27, Short))
			//Me.lbl.SetIndex(_lbl_26, CType(26, Short))
			//Me.lbl.SetIndex(_lbl_25, CType(25, Short))
			//Me.lbl.SetIndex(_lbl_8, CType(8, Short))
			//Me.lbl.SetIndex(_lbl_6, CType(6, Short))
			//Me.lbl.SetIndex(_lbl_7, CType(7, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//Me.lbl.SetIndex(_lbl_18, CType(18, Short))
			//Me.optClose.SetIndex(_optClose_0, CType(0, Short))
			//CType(Me.optClose, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit()
			//CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.FGRecipe).EndInit();
			this._Frame1_6.ResumeLayout(false);
			this.Picture2.ResumeLayout(false);
			this.frmProcess.ResumeLayout(false);
			this.frmMain.ResumeLayout(false);
			this._Frame1_5.ResumeLayout(false);
			this._Frame1_3.ResumeLayout(false);
			this._Frame1_4.ResumeLayout(false);
			this._Frame1_2.ResumeLayout(false);
			this._Frame1_0.ResumeLayout(false);
			this._Frame1_1.ResumeLayout(false);
			this.Picture1.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmDepositTake));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.lblHeading = new System.Windows.Forms.Label();
			this.grdDataGrid = new myDataGridView();
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.grdDataGrid).BeginInit();
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Text = "Deposit Stock Take Adjustments";
			this.ClientSize = new System.Drawing.Size(565, 493);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmDepositTake";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.ForeColor = System.Drawing.SystemColors.WindowText;
			this.picButtons.Size = new System.Drawing.Size(565, 35);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 0;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.picButtons.Name = "picButtons";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 29);
			this.cmdClose.Location = new System.Drawing.Point(489, 3);
			this.cmdClose.TabIndex = 2;
			this.cmdClose.TabStop = false;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.Name = "cmdClose";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(411, 3);
			this.cmdPrint.TabIndex = 1;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			this.lblHeading.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblHeading.Text = "Deposit Stock Take List";
			this.lblHeading.Size = new System.Drawing.Size(403, 22);
			this.lblHeading.Location = new System.Drawing.Point(3, 6);
			this.lblHeading.TabIndex = 3;
			this.lblHeading.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblHeading.Enabled = true;
			this.lblHeading.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblHeading.UseMnemonic = true;
			this.lblHeading.Visible = true;
			this.lblHeading.AutoSize = false;
			this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblHeading.Name = "lblHeading";
			//grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
			this.grdDataGrid.Dock = System.Windows.Forms.DockStyle.Top;
			this.grdDataGrid.Size = new System.Drawing.Size(565, 233);
			this.grdDataGrid.Location = new System.Drawing.Point(0, 35);
			this.grdDataGrid.TabIndex = 4;
			this.grdDataGrid.Name = "grdDataGrid";
			this.Controls.Add(picButtons);
			this.Controls.Add(grdDataGrid);
			this.picButtons.Controls.Add(cmdClose);
			this.picButtons.Controls.Add(cmdPrint);
			this.picButtons.Controls.Add(lblHeading);
			((System.ComponentModel.ISupportInitialize)this.grdDataGrid).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmLang));
     this.components = new System.ComponentModel.Container();
     this.ToolTip1   = new System.Windows.Forms.ToolTip(components);
     this.txtName    = new System.Windows.Forms.TextBox();
     this.picButtons = new System.Windows.Forms.Panel();
     this.Option3    = new System.Windows.Forms.RadioButton();
     this.Option2    = new System.Windows.Forms.RadioButton();
     this.Option1    = new System.Windows.Forms.RadioButton();
     this.cmdClose   = new System.Windows.Forms.Button();
     this.cmdPrint   = new System.Windows.Forms.Button();
     this.Label2     = new System.Windows.Forms.Label();
     this.gridEdit   = new myDataGridView();
     this.Label1     = new System.Windows.Forms.Label();
     this.picButtons.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).BeginInit();
     this.FormBorderStyle             = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text                        = "Language Translation Editor";
     this.ClientSize                  = new System.Drawing.Size(963, 663);
     this.Location                    = new System.Drawing.Point(3, 29);
     this.ControlBox                  = false;
     this.MaximizeBox                 = false;
     this.MinimizeBox                 = false;
     this.ShowInTaskbar               = false;
     this.StartPosition               = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode               = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor                   = System.Drawing.SystemColors.Control;
     this.Enabled                     = true;
     this.KeyPreview                  = false;
     this.Cursor                      = System.Windows.Forms.Cursors.Default;
     this.RightToLeft                 = System.Windows.Forms.RightToLeft.No;
     this.HelpButton                  = false;
     this.WindowState                 = System.Windows.Forms.FormWindowState.Normal;
     this.Name                        = "frmLang";
     this.txtName.AutoSize            = false;
     this.txtName.Size                = new System.Drawing.Size(301, 24);
     this.txtName.Location            = new System.Drawing.Point(125, 48);
     this.txtName.TabIndex            = 4;
     this.txtName.Text                = "Text1";
     this.txtName.AcceptsReturn       = true;
     this.txtName.TextAlign           = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtName.BackColor           = System.Drawing.SystemColors.Window;
     this.txtName.CausesValidation    = true;
     this.txtName.Enabled             = true;
     this.txtName.ForeColor           = System.Drawing.SystemColors.WindowText;
     this.txtName.HideSelection       = true;
     this.txtName.ReadOnly            = false;
     this.txtName.MaxLength           = 0;
     this.txtName.Cursor              = System.Windows.Forms.Cursors.IBeam;
     this.txtName.Multiline           = false;
     this.txtName.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.txtName.ScrollBars          = System.Windows.Forms.ScrollBars.None;
     this.txtName.TabStop             = true;
     this.txtName.Visible             = true;
     this.txtName.BorderStyle         = System.Windows.Forms.BorderStyle.Fixed3D;
     this.txtName.Name                = "txtName";
     this.picButtons.Dock             = System.Windows.Forms.DockStyle.Top;
     this.picButtons.BackColor        = System.Drawing.Color.Blue;
     this.picButtons.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.picButtons.Size             = new System.Drawing.Size(963, 44);
     this.picButtons.Location         = new System.Drawing.Point(0, 0);
     this.picButtons.TabIndex         = 1;
     this.picButtons.TabStop          = false;
     this.picButtons.CausesValidation = true;
     this.picButtons.Enabled          = true;
     this.picButtons.Cursor           = System.Windows.Forms.Cursors.Default;
     this.picButtons.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.picButtons.Visible          = true;
     this.picButtons.BorderStyle      = System.Windows.Forms.BorderStyle.None;
     this.picButtons.Name             = "picButtons";
     this.Option3.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.Option3.BackColor           = System.Drawing.Color.FromArgb(224, 224, 224);
     this.Option3.Text                = "Touch Screen";
     this.Option3.Size                = new System.Drawing.Size(129, 29);
     this.Option3.Location            = new System.Drawing.Point(448, 6);
     this.Option3.Appearance          = System.Windows.Forms.Appearance.Button;
     this.Option3.TabIndex            = 9;
     this.Option3.CheckAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.Option3.CausesValidation    = true;
     this.Option3.Enabled             = true;
     this.Option3.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.Option3.Cursor              = System.Windows.Forms.Cursors.Default;
     this.Option3.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.Option3.TabStop             = true;
     this.Option3.Checked             = false;
     this.Option3.Visible             = true;
     this.Option3.Name                = "Option3";
     this.Option2.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.Option2.BackColor           = System.Drawing.Color.FromArgb(224, 224, 224);
     this.Option2.Text                = "Point of Sale";
     this.Option2.Size                = new System.Drawing.Size(129, 29);
     this.Option2.Location            = new System.Drawing.Point(312, 6);
     this.Option2.Appearance          = System.Windows.Forms.Appearance.Button;
     this.Option2.TabIndex            = 8;
     this.Option2.CheckAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.Option2.CausesValidation    = true;
     this.Option2.Enabled             = true;
     this.Option2.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.Option2.Cursor              = System.Windows.Forms.Cursors.Default;
     this.Option2.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.Option2.TabStop             = true;
     this.Option2.Checked             = false;
     this.Option2.Visible             = true;
     this.Option2.Name                = "Option2";
     this.Option1.TextAlign           = System.Drawing.ContentAlignment.MiddleCenter;
     this.Option1.BackColor           = System.Drawing.Color.FromArgb(224, 224, 224);
     this.Option1.Text                = "Back Office";
     this.Option1.Size                = new System.Drawing.Size(129, 29);
     this.Option1.Location            = new System.Drawing.Point(176, 6);
     this.Option1.Appearance          = System.Windows.Forms.Appearance.Button;
     this.Option1.TabIndex            = 7;
     this.Option1.CheckAlign          = System.Drawing.ContentAlignment.MiddleLeft;
     this.Option1.CausesValidation    = true;
     this.Option1.Enabled             = true;
     this.Option1.ForeColor           = System.Drawing.SystemColors.ControlText;
     this.Option1.Cursor              = System.Windows.Forms.Cursors.Default;
     this.Option1.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this.Option1.TabStop             = true;
     this.Option1.Checked             = false;
     this.Option1.Visible             = true;
     this.Option1.Name                = "Option1";
     this.cmdClose.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdClose.Text               = "E&xit";
     this.cmdClose.Size               = new System.Drawing.Size(73, 29);
     this.cmdClose.Location           = new System.Drawing.Point(880, 6);
     this.cmdClose.TabIndex           = 3;
     this.cmdClose.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdClose.CausesValidation   = true;
     this.cmdClose.Enabled            = true;
     this.cmdClose.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdClose.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdClose.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdClose.TabStop            = true;
     this.cmdClose.Name               = "cmdClose";
     this.cmdPrint.TextAlign          = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdPrint.Text               = "&Print";
     this.cmdPrint.Size               = new System.Drawing.Size(73, 29);
     this.cmdPrint.Location           = new System.Drawing.Point(798, 6);
     this.cmdPrint.TabIndex           = 2;
     this.cmdPrint.TabStop            = false;
     this.cmdPrint.Visible            = false;
     this.cmdPrint.BackColor          = System.Drawing.SystemColors.Control;
     this.cmdPrint.CausesValidation   = true;
     this.cmdPrint.Enabled            = true;
     this.cmdPrint.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.cmdPrint.Cursor             = System.Windows.Forms.Cursors.Default;
     this.cmdPrint.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.cmdPrint.Name               = "cmdPrint";
     this.Label2.Text                 = "Show Translations for :";
     this.Label2.ForeColor            = System.Drawing.Color.White;
     this.Label2.Size                 = new System.Drawing.Size(158, 21);
     this.Label2.Location             = new System.Drawing.Point(16, 14);
     this.Label2.TabIndex             = 6;
     this.Label2.TextAlign            = System.Drawing.ContentAlignment.TopLeft;
     this.Label2.BackColor            = System.Drawing.Color.Transparent;
     this.Label2.Enabled              = true;
     this.Label2.Cursor               = System.Windows.Forms.Cursors.Default;
     this.Label2.RightToLeft          = System.Windows.Forms.RightToLeft.No;
     this.Label2.UseMnemonic          = true;
     this.Label2.Visible              = true;
     this.Label2.AutoSize             = true;
     this.Label2.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.Label2.Name                 = "Label2";
     //gridEdit.OcxState = CType(resources.GetObject("gridEdit.OcxState"), System.Windows.Forms.AxHost.State)
     this.gridEdit.Size      = new System.Drawing.Size(947, 582);
     this.gridEdit.Location  = new System.Drawing.Point(9, 75);
     this.gridEdit.TabIndex  = 0;
     this.gridEdit.Name      = "gridEdit";
     this.Label1.TextAlign   = System.Drawing.ContentAlignment.TopRight;
     this.Label1.Text        = "Lanuage Name:";
     this.Label1.ForeColor   = System.Drawing.Color.Black;
     this.Label1.Size        = new System.Drawing.Size(110, 16);
     this.Label1.Location    = new System.Drawing.Point(13, 51);
     this.Label1.TabIndex    = 5;
     this.Label1.BackColor   = System.Drawing.Color.Transparent;
     this.Label1.Enabled     = true;
     this.Label1.Cursor      = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic = true;
     this.Label1.Visible     = true;
     this.Label1.AutoSize    = true;
     this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name        = "Label1";
     this.Controls.Add(txtName);
     this.Controls.Add(picButtons);
     this.Controls.Add(gridEdit);
     this.Controls.Add(Label1);
     this.picButtons.Controls.Add(Option3);
     this.picButtons.Controls.Add(Option2);
     this.picButtons.Controls.Add(Option1);
     this.picButtons.Controls.Add(cmdClose);
     this.picButtons.Controls.Add(cmdPrint);
     this.picButtons.Controls.Add(Label2);
     ((System.ComponentModel.ISupportInitialize) this.gridEdit).EndInit();
     this.picButtons.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmDesign));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.cmdnew = new System.Windows.Forms.Button();
			this._Option1_1 = new System.Windows.Forms.RadioButton();
			this._Option1_2 = new System.Windows.Forms.RadioButton();
			this.cmdexit = new System.Windows.Forms.Button();
			this.cmdnext = new System.Windows.Forms.Button();
			this.DataList1 = new myDataGridView();
			this.Label1 = new System.Windows.Forms.Label();
			//Me.Option1 = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components)
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.DataList1).BeginInit();
			//CType(Me.Option1, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
			this.Text = "Barcode Design";
			this.ClientSize = new System.Drawing.Size(425, 383);
			this.Location = new System.Drawing.Point(3, 29);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.ShowInTaskbar = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmDesign";
			this.cmdnew.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdnew.Text = "N&ew";
			this.cmdnew.Size = new System.Drawing.Size(81, 33);
			this.cmdnew.Location = new System.Drawing.Point(168, 344);
			this.cmdnew.TabIndex = 6;
			this.cmdnew.BackColor = System.Drawing.SystemColors.Control;
			this.cmdnew.CausesValidation = true;
			this.cmdnew.Enabled = true;
			this.cmdnew.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdnew.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdnew.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdnew.TabStop = true;
			this.cmdnew.Name = "cmdnew";
			this._Option1_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._Option1_1.Text = "&Shelf Talker";
			this._Option1_1.Size = new System.Drawing.Size(113, 33);
			this._Option1_1.Location = new System.Drawing.Point(144, 32);
			this._Option1_1.Appearance = System.Windows.Forms.Appearance.Button;
			this._Option1_1.TabIndex = 5;
			this._Option1_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._Option1_1.BackColor = System.Drawing.SystemColors.Control;
			this._Option1_1.CausesValidation = true;
			this._Option1_1.Enabled = true;
			this._Option1_1.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Option1_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._Option1_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Option1_1.TabStop = true;
			this._Option1_1.Checked = false;
			this._Option1_1.Visible = true;
			this._Option1_1.Name = "_Option1_1";
			this._Option1_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this._Option1_2.Text = "Stock &Barcode";
			this._Option1_2.Size = new System.Drawing.Size(129, 33);
			this._Option1_2.Location = new System.Drawing.Point(8, 32);
			this._Option1_2.Appearance = System.Windows.Forms.Appearance.Button;
			this._Option1_2.TabIndex = 4;
			this._Option1_2.Checked = true;
			this._Option1_2.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft;
			this._Option1_2.BackColor = System.Drawing.SystemColors.Control;
			this._Option1_2.CausesValidation = true;
			this._Option1_2.Enabled = true;
			this._Option1_2.ForeColor = System.Drawing.SystemColors.ControlText;
			this._Option1_2.Cursor = System.Windows.Forms.Cursors.Default;
			this._Option1_2.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._Option1_2.TabStop = true;
			this._Option1_2.Visible = true;
			this._Option1_2.Name = "_Option1_2";
			this.cmdexit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdexit.Text = "E&xit";
			this.cmdexit.Size = new System.Drawing.Size(81, 33);
			this.cmdexit.Location = new System.Drawing.Point(8, 344);
			this.cmdexit.TabIndex = 2;
			this.cmdexit.BackColor = System.Drawing.SystemColors.Control;
			this.cmdexit.CausesValidation = true;
			this.cmdexit.Enabled = true;
			this.cmdexit.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdexit.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdexit.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdexit.TabStop = true;
			this.cmdexit.Name = "cmdexit";
			this.cmdnext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdnext.Text = "&Next";
			this.cmdnext.Size = new System.Drawing.Size(81, 33);
			this.cmdnext.Location = new System.Drawing.Point(336, 344);
			this.cmdnext.TabIndex = 1;
			this.cmdnext.BackColor = System.Drawing.SystemColors.Control;
			this.cmdnext.CausesValidation = true;
			this.cmdnext.Enabled = true;
			this.cmdnext.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdnext.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdnext.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdnext.TabStop = true;
			this.cmdnext.Name = "cmdnext";
			//'DataList1.OcxState = CType(resources.GetObject("'DataList1.OcxState"), System.Windows.Forms.AxHost.State)
			this.DataList1.Size = new System.Drawing.Size(409, 264);
			this.DataList1.Location = new System.Drawing.Point(8, 72);
			this.DataList1.TabIndex = 0;
			this.DataList1.Name = "DataList1";
			this.Label1.Text = "Please select the Stock Barcode you wish to modify";
			this.Label1.Size = new System.Drawing.Size(353, 25);
			this.Label1.Location = new System.Drawing.Point(8, 8);
			this.Label1.TabIndex = 3;
			this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.Label1.BackColor = System.Drawing.SystemColors.Control;
			this.Label1.Enabled = true;
			this.Label1.ForeColor = System.Drawing.SystemColors.ControlText;
			this.Label1.Cursor = System.Windows.Forms.Cursors.Default;
			this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.Label1.UseMnemonic = true;
			this.Label1.Visible = true;
			this.Label1.AutoSize = false;
			this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.Label1.Name = "Label1";
			this.Controls.Add(cmdnew);
			this.Controls.Add(_Option1_1);
			this.Controls.Add(_Option1_2);
			this.Controls.Add(cmdexit);
			this.Controls.Add(cmdnext);
			this.Controls.Add(DataList1);
			this.Controls.Add(Label1);
			//Me.Option1.SetIndex(_Option1_1, CType(1, Short))
			//Me.Option1.SetIndex(_Option1_2, CType(2, Short))
			//CType(Me.Option1, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.DataList1).EndInit();
			this.ResumeLayout(false);
			this.PerformLayout();
		}
		private void InitializeComponent()
		{
			System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockMultiPrice));
			this.components = new System.ComponentModel.Container();
			this.ToolTip1 = new System.Windows.Forms.ToolTip(components);
			this.picButtons = new System.Windows.Forms.Panel();
			this.cmdClose = new System.Windows.Forms.Button();
			this.cmdFilter = new System.Windows.Forms.Button();
			this.cmdPrint = new System.Windows.Forms.Button();
			this.cmbChannel = new myDataGridView();
			this.cmbShrink = new myDataGridView();
			this._lbl_1 = new System.Windows.Forms.Label();
			this._lbl_0 = new System.Windows.Forms.Label();
			this.lblHeading = new System.Windows.Forms.Label();
			this.grdDataGrid = new myDataGridView();
			//Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
			this.picButtons.SuspendLayout();
			this.SuspendLayout();
			this.ToolTip1.Active = true;
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).BeginInit();
			((System.ComponentModel.ISupportInitialize)this.grdDataGrid).BeginInit();
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
			this.Text = "Edit Stock Item Micro Pricing";
			this.ClientSize = new System.Drawing.Size(565, 493);
			this.Location = new System.Drawing.Point(73, 22);
			this.ControlBox = false;
			this.KeyPreview = true;
			this.MaximizeBox = false;
			this.MinimizeBox = false;
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.BackColor = System.Drawing.SystemColors.Control;
			this.Enabled = true;
			this.Cursor = System.Windows.Forms.Cursors.Default;
			this.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.ShowInTaskbar = true;
			this.HelpButton = false;
			this.WindowState = System.Windows.Forms.FormWindowState.Normal;
			this.Name = "frmStockMultiPrice";
			this.picButtons.Dock = System.Windows.Forms.DockStyle.Top;
			this.picButtons.BackColor = System.Drawing.Color.Blue;
			this.picButtons.ForeColor = System.Drawing.SystemColors.WindowText;
			this.picButtons.Size = new System.Drawing.Size(565, 89);
			this.picButtons.Location = new System.Drawing.Point(0, 0);
			this.picButtons.TabIndex = 1;
			this.picButtons.TabStop = false;
			this.picButtons.CausesValidation = true;
			this.picButtons.Enabled = true;
			this.picButtons.Cursor = System.Windows.Forms.Cursors.Default;
			this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.picButtons.Visible = true;
			this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.picButtons.Name = "picButtons";
			this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdClose.Text = "E&xit";
			this.cmdClose.Size = new System.Drawing.Size(73, 62);
			this.cmdClose.Location = new System.Drawing.Point(489, 3);
			this.cmdClose.TabIndex = 4;
			this.cmdClose.BackColor = System.Drawing.SystemColors.Control;
			this.cmdClose.CausesValidation = true;
			this.cmdClose.Enabled = true;
			this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdClose.TabStop = true;
			this.cmdClose.Name = "cmdClose";
			this.cmdFilter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdFilter.Text = "&Filter";
			this.cmdFilter.Size = new System.Drawing.Size(73, 29);
			this.cmdFilter.Location = new System.Drawing.Point(411, 3);
			this.cmdFilter.TabIndex = 3;
			this.cmdFilter.TabStop = false;
			this.cmdFilter.BackColor = System.Drawing.SystemColors.Control;
			this.cmdFilter.CausesValidation = true;
			this.cmdFilter.Enabled = true;
			this.cmdFilter.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdFilter.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdFilter.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdFilter.Name = "cmdFilter";
			this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
			this.cmdPrint.Text = "&Print";
			this.cmdPrint.Size = new System.Drawing.Size(73, 29);
			this.cmdPrint.Location = new System.Drawing.Point(411, 36);
			this.cmdPrint.TabIndex = 2;
			this.cmdPrint.TabStop = false;
			this.cmdPrint.BackColor = System.Drawing.SystemColors.Control;
			this.cmdPrint.CausesValidation = true;
			this.cmdPrint.Enabled = true;
			this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText;
			this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default;
			this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.cmdPrint.Name = "cmdPrint";
			//cmbChannel.OcxState = CType(resources.GetObject("cmbChannel.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbChannel.Size = new System.Drawing.Size(124, 21);
			this.cmbChannel.Location = new System.Drawing.Point(127, 66);
			this.cmbChannel.TabIndex = 6;
			this.cmbChannel.Name = "cmbChannel";
			//cmbShrink.OcxState = CType(resources.GetObject("cmbShrink.OcxState"), System.Windows.Forms.AxHost.State)
			this.cmbShrink.Size = new System.Drawing.Size(67, 21);
			this.cmbShrink.Location = new System.Drawing.Point(360, 66);
			this.cmbShrink.TabIndex = 8;
			this.cmbShrink.Name = "cmbShrink";
			this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_1.Text = "and for what Quantity";
			this._lbl_1.ForeColor = System.Drawing.Color.White;
			this._lbl_1.Size = new System.Drawing.Size(101, 13);
			this._lbl_1.Location = new System.Drawing.Point(256, 69);
			this._lbl_1.TabIndex = 9;
			this._lbl_1.BackColor = System.Drawing.Color.Transparent;
			this._lbl_1.Enabled = true;
			this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_1.UseMnemonic = true;
			this._lbl_1.Visible = true;
			this._lbl_1.AutoSize = true;
			this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_1.Name = "_lbl_1";
			this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight;
			this._lbl_0.Text = "For which Sale Channel";
			this._lbl_0.ForeColor = System.Drawing.Color.White;
			this._lbl_0.Size = new System.Drawing.Size(112, 13);
			this._lbl_0.Location = new System.Drawing.Point(8, 69);
			this._lbl_0.TabIndex = 7;
			this._lbl_0.BackColor = System.Drawing.Color.Transparent;
			this._lbl_0.Enabled = true;
			this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default;
			this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this._lbl_0.UseMnemonic = true;
			this._lbl_0.Visible = true;
			this._lbl_0.AutoSize = true;
			this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this._lbl_0.Name = "_lbl_0";
			this.lblHeading.BackColor = System.Drawing.Color.FromArgb(192, 192, 255);
			this.lblHeading.Text = "Using the \"Stock Item Selector\" .....";
			this.lblHeading.Size = new System.Drawing.Size(403, 61);
			this.lblHeading.Location = new System.Drawing.Point(3, 3);
			this.lblHeading.TabIndex = 5;
			this.lblHeading.TextAlign = System.Drawing.ContentAlignment.TopLeft;
			this.lblHeading.Enabled = true;
			this.lblHeading.ForeColor = System.Drawing.SystemColors.ControlText;
			this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default;
			this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No;
			this.lblHeading.UseMnemonic = true;
			this.lblHeading.Visible = true;
			this.lblHeading.AutoSize = false;
			this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
			this.lblHeading.Name = "lblHeading";
			// grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State)
			this.grdDataGrid.Dock = System.Windows.Forms.DockStyle.Top;
			this.grdDataGrid.Size = new System.Drawing.Size(565, 239);
			this.grdDataGrid.Location = new System.Drawing.Point(0, 89);
			this.grdDataGrid.TabIndex = 0;
			this.grdDataGrid.Name = "grdDataGrid";
			this.Controls.Add(picButtons);
			this.Controls.Add(grdDataGrid);
			this.picButtons.Controls.Add(cmdClose);
			this.picButtons.Controls.Add(cmdFilter);
			this.picButtons.Controls.Add(cmdPrint);
			this.picButtons.Controls.Add(cmbChannel);
			this.picButtons.Controls.Add(cmbShrink);
			this.picButtons.Controls.Add(_lbl_1);
			this.picButtons.Controls.Add(_lbl_0);
			this.picButtons.Controls.Add(lblHeading);
			//Me.lbl.SetIndex(_lbl_1, CType(1, Short))
			//Me.lbl.SetIndex(_lbl_0, CType(0, Short))
			//CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
			((System.ComponentModel.ISupportInitialize)this.grdDataGrid).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbShrink).EndInit();
			((System.ComponentModel.ISupportInitialize)this.cmbChannel).EndInit();
			this.picButtons.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();
		}
 private void InitializeComponent()
 {
     System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmReportPriceList));
     this.components   = new System.ComponentModel.Container();
     this.ToolTip1     = new System.Windows.Forms.ToolTip(components);
     this.Frame2       = new System.Windows.Forms.GroupBox();
     this.cmbChannel   = new myDataGridView();
     this.Label1       = new System.Windows.Forms.Label();
     this._Frame1_2    = new System.Windows.Forms.GroupBox();
     this.cmdGroup     = new System.Windows.Forms.Button();
     this.lblGroup     = new System.Windows.Forms.Label();
     this._Frame1_1    = new System.Windows.Forms.GroupBox();
     this.cmbSort      = new System.Windows.Forms.ComboBox();
     this.cmbSortField = new System.Windows.Forms.ComboBox();
     this._lbl_0       = new System.Windows.Forms.Label();
     this._lbl_2       = new System.Windows.Forms.Label();
     this._Frame1_0    = new System.Windows.Forms.GroupBox();
     this.chkQty       = new System.Windows.Forms.CheckBox();
     this.chkPageBreak = new System.Windows.Forms.CheckBox();
     this.cmbGroup     = new System.Windows.Forms.ComboBox();
     this._lbl_3       = new System.Windows.Forms.Label();
     this.cmdExit      = new System.Windows.Forms.Button();
     this.cmdLoad      = new System.Windows.Forms.Button();
     //Me.Frame1 = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components)
     //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components)
     this.Frame2.SuspendLayout();
     this._Frame1_2.SuspendLayout();
     this._Frame1_1.SuspendLayout();
     this._Frame1_0.SuspendLayout();
     this.SuspendLayout();
     this.ToolTip1.Active = true;
     ((System.ComponentModel.ISupportInitialize) this.cmbChannel).BeginInit();
     //CType(Me.Frame1, System.ComponentModel.ISupportInitialize).BeginInit()
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit()
     this.FormBorderStyle    = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Text               = "Price List";
     this.ClientSize         = new System.Drawing.Size(256, 477);
     this.Location           = new System.Drawing.Point(3, 22);
     this.ControlBox         = false;
     this.KeyPreview         = true;
     this.MaximizeBox        = false;
     this.MinimizeBox        = false;
     this.ShowInTaskbar      = false;
     this.StartPosition      = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.AutoScaleMode      = System.Windows.Forms.AutoScaleMode.Font;
     this.BackColor          = System.Drawing.SystemColors.Control;
     this.Enabled            = true;
     this.Cursor             = System.Windows.Forms.Cursors.Default;
     this.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.HelpButton         = false;
     this.WindowState        = System.Windows.Forms.FormWindowState.Normal;
     this.Name               = "frmReportPriceList";
     this.Frame2.Text        = "&4. Channel Filter";
     this.Frame2.Size        = new System.Drawing.Size(233, 57);
     this.Frame2.Location    = new System.Drawing.Point(12, 352);
     this.Frame2.TabIndex    = 14;
     this.Frame2.BackColor   = System.Drawing.SystemColors.Control;
     this.Frame2.Enabled     = true;
     this.Frame2.ForeColor   = System.Drawing.SystemColors.ControlText;
     this.Frame2.RightToLeft = System.Windows.Forms.RightToLeft.No;
     this.Frame2.Visible     = true;
     this.Frame2.Padding     = new System.Windows.Forms.Padding(0);
     this.Frame2.Name        = "Frame2";
     //cmbChannel.OcxState = CType(resources.GetObject("cmbChannel.OcxState"), System.Windows.Forms.AxHost.State)
     this.cmbChannel.Size           = new System.Drawing.Size(124, 21);
     this.cmbChannel.Location       = new System.Drawing.Point(96, 24);
     this.cmbChannel.TabIndex       = 15;
     this.cmbChannel.Name           = "cmbChannel";
     this.Label1.Text               = "Channel:";
     this.Label1.Size               = new System.Drawing.Size(49, 17);
     this.Label1.Location           = new System.Drawing.Point(8, 24);
     this.Label1.TabIndex           = 16;
     this.Label1.TextAlign          = System.Drawing.ContentAlignment.TopLeft;
     this.Label1.BackColor          = System.Drawing.SystemColors.Control;
     this.Label1.Enabled            = true;
     this.Label1.ForeColor          = System.Drawing.SystemColors.ControlText;
     this.Label1.Cursor             = System.Windows.Forms.Cursors.Default;
     this.Label1.RightToLeft        = System.Windows.Forms.RightToLeft.No;
     this.Label1.UseMnemonic        = true;
     this.Label1.Visible            = true;
     this.Label1.AutoSize           = false;
     this.Label1.BorderStyle        = System.Windows.Forms.BorderStyle.None;
     this.Label1.Name               = "Label1";
     this._Frame1_2.Text            = "&3. Report Filter";
     this._Frame1_2.Size            = new System.Drawing.Size(232, 145);
     this._Frame1_2.Location        = new System.Drawing.Point(12, 202);
     this._Frame1_2.TabIndex        = 9;
     this._Frame1_2.BackColor       = System.Drawing.SystemColors.Control;
     this._Frame1_2.Enabled         = true;
     this._Frame1_2.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._Frame1_2.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this._Frame1_2.Visible         = true;
     this._Frame1_2.Padding         = new System.Windows.Forms.Padding(0);
     this._Frame1_2.Name            = "_Frame1_2";
     this.cmdGroup.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdGroup.Text             = "&Filter";
     this.cmdGroup.Size             = new System.Drawing.Size(97, 31);
     this.cmdGroup.Location         = new System.Drawing.Point(129, 105);
     this.cmdGroup.TabIndex         = 11;
     this.cmdGroup.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdGroup.CausesValidation = true;
     this.cmdGroup.Enabled          = true;
     this.cmdGroup.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdGroup.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdGroup.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdGroup.TabStop          = true;
     this.cmdGroup.Name             = "cmdGroup";
     this.lblGroup.BackColor        = System.Drawing.Color.FromArgb(192, 192, 192);
     this.lblGroup.Text             = "lblGroup";
     this.lblGroup.Size             = new System.Drawing.Size(220, 76);
     this.lblGroup.Location         = new System.Drawing.Point(6, 21);
     this.lblGroup.TabIndex         = 10;
     this.lblGroup.TextAlign        = System.Drawing.ContentAlignment.TopLeft;
     this.lblGroup.Enabled          = true;
     this.lblGroup.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.lblGroup.Cursor           = System.Windows.Forms.Cursors.Default;
     this.lblGroup.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.lblGroup.UseMnemonic      = true;
     this.lblGroup.Visible          = true;
     this.lblGroup.AutoSize         = false;
     this.lblGroup.BorderStyle      = System.Windows.Forms.BorderStyle.Fixed3D;
     this.lblGroup.Name             = "lblGroup";
     this._Frame1_1.Text            = "&2. Report Sort Order";
     this._Frame1_1.Size            = new System.Drawing.Size(232, 85);
     this._Frame1_1.Location        = new System.Drawing.Point(12, 109);
     this._Frame1_1.TabIndex        = 4;
     this._Frame1_1.BackColor       = System.Drawing.SystemColors.Control;
     this._Frame1_1.Enabled         = true;
     this._Frame1_1.ForeColor       = System.Drawing.SystemColors.ControlText;
     this._Frame1_1.RightToLeft     = System.Windows.Forms.RightToLeft.No;
     this._Frame1_1.Visible         = true;
     this._Frame1_1.Padding         = new System.Windows.Forms.Padding(0);
     this._Frame1_1.Name            = "_Frame1_1";
     this.cmbSort.Size              = new System.Drawing.Size(124, 21);
     this.cmbSort.Location          = new System.Drawing.Point(63, 48);
     this.cmbSort.Items.AddRange(new object[] {
         "Ascending",
         "Descending"
     });
     this.cmbSort.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSort.TabIndex         = 8;
     this.cmbSort.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbSort.CausesValidation = true;
     this.cmbSort.Enabled          = true;
     this.cmbSort.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbSort.IntegralHeight   = true;
     this.cmbSort.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbSort.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbSort.Sorted           = false;
     this.cmbSort.TabStop          = true;
     this.cmbSort.Visible          = true;
     this.cmbSort.Name             = "cmbSort";
     this.cmbSortField.Size        = new System.Drawing.Size(124, 21);
     this.cmbSortField.Location    = new System.Drawing.Point(63, 24);
     this.cmbSortField.Items.AddRange(new object[] {
         "Item Name",
         "Cost",
         "Selling",
         "Gross Profit",
         "Gross Profit %"
     });
     this.cmbSortField.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbSortField.TabIndex         = 6;
     this.cmbSortField.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbSortField.CausesValidation = true;
     this.cmbSortField.Enabled          = true;
     this.cmbSortField.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbSortField.IntegralHeight   = true;
     this.cmbSortField.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbSortField.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbSortField.Sorted           = false;
     this.cmbSortField.TabStop          = true;
     this.cmbSortField.Visible          = true;
     this.cmbSortField.Name             = "cmbSortField";
     this._lbl_0.Text                   = "Sort Field:";
     this._lbl_0.Size                   = new System.Drawing.Size(47, 13);
     this._lbl_0.Location               = new System.Drawing.Point(12, 30);
     this._lbl_0.TabIndex               = 5;
     this._lbl_0.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_0.BackColor              = System.Drawing.Color.Transparent;
     this._lbl_0.Enabled                = true;
     this._lbl_0.ForeColor              = System.Drawing.SystemColors.ControlText;
     this._lbl_0.Cursor                 = System.Windows.Forms.Cursors.Default;
     this._lbl_0.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this._lbl_0.UseMnemonic            = true;
     this._lbl_0.Visible                = true;
     this._lbl_0.AutoSize               = true;
     this._lbl_0.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this._lbl_0.Name                   = "_lbl_0";
     this._lbl_2.Text                   = "Sort Order:";
     this._lbl_2.Size                   = new System.Drawing.Size(51, 13);
     this._lbl_2.Location               = new System.Drawing.Point(9, 54);
     this._lbl_2.TabIndex               = 7;
     this._lbl_2.TextAlign              = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_2.BackColor              = System.Drawing.Color.Transparent;
     this._lbl_2.Enabled                = true;
     this._lbl_2.ForeColor              = System.Drawing.SystemColors.ControlText;
     this._lbl_2.Cursor                 = System.Windows.Forms.Cursors.Default;
     this._lbl_2.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this._lbl_2.UseMnemonic            = true;
     this._lbl_2.Visible                = true;
     this._lbl_2.AutoSize               = true;
     this._lbl_2.BorderStyle            = System.Windows.Forms.BorderStyle.None;
     this._lbl_2.Name                   = "_lbl_2";
     this._Frame1_0.Text                = "&1. Report Options";
     this._Frame1_0.Size                = new System.Drawing.Size(232, 92);
     this._Frame1_0.Location            = new System.Drawing.Point(9, 9);
     this._Frame1_0.TabIndex            = 0;
     this._Frame1_0.BackColor           = System.Drawing.SystemColors.Control;
     this._Frame1_0.Enabled             = true;
     this._Frame1_0.ForeColor           = System.Drawing.SystemColors.ControlText;
     this._Frame1_0.RightToLeft         = System.Windows.Forms.RightToLeft.No;
     this._Frame1_0.Visible             = true;
     this._Frame1_0.Padding             = new System.Windows.Forms.Padding(0);
     this._Frame1_0.Name                = "_Frame1_0";
     this.chkQty.Text                   = "Show Total Quantity";
     this.chkQty.Size                   = new System.Drawing.Size(163, 13);
     this.chkQty.Location               = new System.Drawing.Point(56, 70);
     this.chkQty.TabIndex               = 17;
     this.chkQty.CheckAlign             = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkQty.FlatStyle              = System.Windows.Forms.FlatStyle.Standard;
     this.chkQty.BackColor              = System.Drawing.SystemColors.Control;
     this.chkQty.CausesValidation       = true;
     this.chkQty.Enabled                = true;
     this.chkQty.ForeColor              = System.Drawing.SystemColors.ControlText;
     this.chkQty.Cursor                 = System.Windows.Forms.Cursors.Default;
     this.chkQty.RightToLeft            = System.Windows.Forms.RightToLeft.No;
     this.chkQty.Appearance             = System.Windows.Forms.Appearance.Normal;
     this.chkQty.TabStop                = true;
     this.chkQty.CheckState             = System.Windows.Forms.CheckState.Unchecked;
     this.chkQty.Visible                = true;
     this.chkQty.Name                   = "chkQty";
     this.chkPageBreak.Text             = "Page Break after each Group.";
     this.chkPageBreak.Size             = new System.Drawing.Size(163, 13);
     this.chkPageBreak.Location         = new System.Drawing.Point(54, 45);
     this.chkPageBreak.TabIndex         = 3;
     this.chkPageBreak.CheckAlign       = System.Drawing.ContentAlignment.MiddleLeft;
     this.chkPageBreak.FlatStyle        = System.Windows.Forms.FlatStyle.Standard;
     this.chkPageBreak.BackColor        = System.Drawing.SystemColors.Control;
     this.chkPageBreak.CausesValidation = true;
     this.chkPageBreak.Enabled          = true;
     this.chkPageBreak.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.chkPageBreak.Cursor           = System.Windows.Forms.Cursors.Default;
     this.chkPageBreak.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.chkPageBreak.Appearance       = System.Windows.Forms.Appearance.Normal;
     this.chkPageBreak.TabStop          = true;
     this.chkPageBreak.CheckState       = System.Windows.Forms.CheckState.Unchecked;
     this.chkPageBreak.Visible          = true;
     this.chkPageBreak.Name             = "chkPageBreak";
     this.cmbGroup.Size                 = new System.Drawing.Size(106, 21);
     this.cmbGroup.Location             = new System.Drawing.Point(108, 18);
     this.cmbGroup.Items.AddRange(new object[] {
         "Pricing Group",
         "Stock Group",
         "Supplier",
         "No Grouping"
     });
     this.cmbGroup.DropDownStyle    = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.cmbGroup.TabIndex         = 2;
     this.cmbGroup.BackColor        = System.Drawing.SystemColors.Window;
     this.cmbGroup.CausesValidation = true;
     this.cmbGroup.Enabled          = true;
     this.cmbGroup.ForeColor        = System.Drawing.SystemColors.WindowText;
     this.cmbGroup.IntegralHeight   = true;
     this.cmbGroup.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmbGroup.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmbGroup.Sorted           = false;
     this.cmbGroup.TabStop          = true;
     this.cmbGroup.Visible          = true;
     this.cmbGroup.Name             = "cmbGroup";
     this._lbl_3.Text              = "Group on:";
     this._lbl_3.Size              = new System.Drawing.Size(47, 13);
     this._lbl_3.Location          = new System.Drawing.Point(54, 21);
     this._lbl_3.TabIndex          = 1;
     this._lbl_3.TextAlign         = System.Drawing.ContentAlignment.TopLeft;
     this._lbl_3.BackColor         = System.Drawing.Color.Transparent;
     this._lbl_3.Enabled           = true;
     this._lbl_3.ForeColor         = System.Drawing.SystemColors.ControlText;
     this._lbl_3.Cursor            = System.Windows.Forms.Cursors.Default;
     this._lbl_3.RightToLeft       = System.Windows.Forms.RightToLeft.No;
     this._lbl_3.UseMnemonic       = true;
     this._lbl_3.Visible           = true;
     this._lbl_3.AutoSize          = true;
     this._lbl_3.BorderStyle       = System.Windows.Forms.BorderStyle.None;
     this._lbl_3.Name              = "_lbl_3";
     this.cmdExit.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdExit.Text             = "E&xit";
     this.cmdExit.Size             = new System.Drawing.Size(79, 43);
     this.cmdExit.Location         = new System.Drawing.Point(16, 424);
     this.cmdExit.TabIndex         = 13;
     this.cmdExit.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdExit.CausesValidation = true;
     this.cmdExit.Enabled          = true;
     this.cmdExit.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdExit.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdExit.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdExit.TabStop          = true;
     this.cmdExit.Name             = "cmdExit";
     this.cmdLoad.TextAlign        = System.Drawing.ContentAlignment.MiddleCenter;
     this.cmdLoad.Text             = "Show/&Print Report";
     this.cmdLoad.Size             = new System.Drawing.Size(79, 43);
     this.cmdLoad.Location         = new System.Drawing.Point(162, 424);
     this.cmdLoad.TabIndex         = 12;
     this.cmdLoad.BackColor        = System.Drawing.SystemColors.Control;
     this.cmdLoad.CausesValidation = true;
     this.cmdLoad.Enabled          = true;
     this.cmdLoad.ForeColor        = System.Drawing.SystemColors.ControlText;
     this.cmdLoad.Cursor           = System.Windows.Forms.Cursors.Default;
     this.cmdLoad.RightToLeft      = System.Windows.Forms.RightToLeft.No;
     this.cmdLoad.TabStop          = true;
     this.cmdLoad.Name             = "cmdLoad";
     this.Controls.Add(Frame2);
     this.Controls.Add(_Frame1_2);
     this.Controls.Add(_Frame1_1);
     this.Controls.Add(_Frame1_0);
     this.Controls.Add(cmdExit);
     this.Controls.Add(cmdLoad);
     this.Frame2.Controls.Add(cmbChannel);
     this.Frame2.Controls.Add(Label1);
     this._Frame1_2.Controls.Add(cmdGroup);
     this._Frame1_2.Controls.Add(lblGroup);
     this._Frame1_1.Controls.Add(cmbSort);
     this._Frame1_1.Controls.Add(cmbSortField);
     this._Frame1_1.Controls.Add(_lbl_0);
     this._Frame1_1.Controls.Add(_lbl_2);
     this._Frame1_0.Controls.Add(chkQty);
     this._Frame1_0.Controls.Add(chkPageBreak);
     this._Frame1_0.Controls.Add(cmbGroup);
     this._Frame1_0.Controls.Add(_lbl_3);
     //Me.Frame1.SetIndex(_Frame1_2, CType(2, Short))
     //Me.Frame1.SetIndex(_Frame1_1, CType(1, Short))
     //Me.Frame1.SetIndex(_Frame1_0, CType(0, Short))
     //Me.lbl.SetIndex(_lbl_0, CType(0, Short))
     //Me.lbl.SetIndex(_lbl_2, CType(2, Short))
     //Me.lbl.SetIndex(_lbl_3, CType(3, Short))
     //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit()
     //CType(Me.Frame1, System.ComponentModel.ISupportInitialize).EndInit()
     ((System.ComponentModel.ISupportInitialize) this.cmbChannel).EndInit();
     this.Frame2.ResumeLayout(false);
     this._Frame1_2.ResumeLayout(false);
     this._Frame1_1.ResumeLayout(false);
     this._Frame1_0.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }