private void Set_DIP_Down(Microsoft.VisualBasic.PowerPacks.RectangleShape Rect_back, Microsoft.VisualBasic.PowerPacks.RectangleShape Rect_small) { System.Drawing.Size Offset = new System.Drawing.Size(); Offset.Width = 0; Offset.Height = Rect_back.Size.Height - Rect_small.Height; Rect_small.Location = Rect_back.Location + Offset; }
public Form1() { InitializeComponent(); contenitoreMattoni = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); Cursor.Hide(); FormBorderStyle = FormBorderStyle.None; TopMost = true; Bounds = Screen.PrimaryScreen.Bounds; panel1.Size = ClientSize; informazioni.Left = (panel1.Width / 2) - (informazioni.Width / 2); informazioni.Top = (panel1.Height / 2) - (informazioni.Height / 2); racchetta.Top = panel1.Bottom - (panel1.Bottom / 10); Ball.Top = panel1.Height / 2; Ball.Left = panel1.Width / 2; lblPunteggio.Location = new Point(15, 15); cursore = new Rectangle(Ball.Location.X, Ball.Location.Y, Ball.Width, Ball.Height); for (int riga = panel1.Height / 30; riga < panel1.Height / 3; riga += panel1.Height / 20) { for (double colonna = panel1.Width / 100; colonna < panel1.Width; colonna += panel1.Width / 9) { int larghezzaMattone = Convert.ToInt32(panel1.Width / 10); int fineRiga = Convert.ToInt32(colonna) + panel1.Width / 10; if (fineRiga < panel1.Width) { arrayMattoni[j] = new Microsoft.VisualBasic.PowerPacks.RectangleShape(Convert.ToInt32(colonna), 70 + riga, larghezzaMattone, 30); arrayMattoni[j].FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Solid; arrayMattoni[j].FillColor = Color.FromArgb(_random.Next(0, 255), _random.Next(0, 255), _random.Next(0, 255)); } j++; } } contenitoreMattoni.Location = new System.Drawing.Point(0, 0); contenitoreMattoni.Margin = new System.Windows.Forms.Padding(0); contenitoreMattoni.Name = "contenitoreMattoni"; for (int k = j; k > 0; k--) { contenitoreMattoni.Shapes.Add(arrayMattoni[k - 1]); } contenitoreMattoni.Size = new System.Drawing.Size(663, 329); contenitoreMattoni.TabIndex = 13; contenitoreMattoni.TabStop = false; panel1.Controls.Add(contenitoreMattoni); }
private void Control_DIP_Bit(int DIP_Val, int bitNum, Microsoft.VisualBasic.PowerPacks.RectangleShape Rect_back, Microsoft.VisualBasic.PowerPacks.RectangleShape Rect_small) { if ((DIP_Val & bitNum) == 0) { Set_DIP_UP(Rect_back, Rect_small); } else { Set_DIP_Down(Rect_back, Rect_small); } }
// </Snippet1> // <Snippet2> private void DrawRectangle2() { // Declare a RectangleShape and parent it to // lineShape1's ShapeContainer. Microsoft.VisualBasic.PowerPacks.RectangleShape rect1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(lineShape1.Parent); // Set the location and size of the rectangle. rect1.Left = 40; rect1.Top = 40; rect1.Width = 120; rect1.Height = 220; }
public void renk_ayarı(ColorDialog color, Microsoft.VisualBasic.PowerPacks.RectangleShape rec, TextBox text, LinkLabel llab, Label lab) { DialogResult sa = color.ShowDialog(); if (sa == DialogResult.OK) { rec.FillColor = color.Color; text.BackColor = color.Color; llab.BackColor = color.Color; lab.BackColor = color.Color; } }
// </Snippet2> // <Snippet3> private void DrawSquare() { Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); // Declare a RectangleShape and set the location and size. Microsoft.VisualBasic.PowerPacks.RectangleShape rect1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(15, 15, 105, 105); // Set the form as the parent of the ShapeContainer. canvas.Parent = this; // Set the ShapeContainer as the parent of the RectangleShape. rect1.Parent = canvas; }
// <Snippet1> private void DrawRectangle() { Microsoft.VisualBasic.PowerPacks.ShapeContainer canvas = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); Microsoft.VisualBasic.PowerPacks.RectangleShape rect1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); // Set the form as the parent of the ShapeContainer. canvas.Parent = this; // Set the ShapeContainer as the parent of the RectangleShape. rect1.Parent = canvas; // Set the location and size of the rectangle. rect1.Left = 10; rect1.Top = 10; rect1.Width = 300; rect1.Height = 100; }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmVegTestCode)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Timer1 = new System.Windows.Forms.Timer(components); this.Command2 = new System.Windows.Forms.Button(); this.Command1 = new System.Windows.Forms.Button(); //Me.Drive1 = New Microsoft.VisualBasic.Compatibility.VB6.DriveListBox this.chkFields = new System.Windows.Forms.CheckBox(); this.txtFields = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lblLabels_1 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; // CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() // CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "4VEG Registration"; this.ClientSize = new System.Drawing.Size(345, 120); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmVegTestCode"; this.Timer1.Interval = 1; this.Timer1.Enabled = true; this.Command2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.Command2.Text = "Close CD Tray and Register"; this.Command2.Size = new System.Drawing.Size(151, 19); this.Command2.Location = new System.Drawing.Point(184, 256); this.Command2.TabIndex = 10; this.Command2.BackColor = System.Drawing.SystemColors.Control; this.Command2.CausesValidation = true; this.Command2.Enabled = true; this.Command2.ForeColor = System.Drawing.SystemColors.ControlText; this.Command2.Cursor = System.Windows.Forms.Cursors.Default; this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command2.TabStop = true; this.Command2.Name = "Command2"; this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.Command1.Text = "Open"; this.Command1.Size = new System.Drawing.Size(59, 19); this.Command1.Location = new System.Drawing.Point(216, 280); this.Command1.TabIndex = 8; this.Command1.BackColor = System.Drawing.SystemColors.Control; this.Command1.CausesValidation = true; this.Command1.Enabled = true; this.Command1.ForeColor = System.Drawing.SystemColors.ControlText; this.Command1.Cursor = System.Windows.Forms.Cursors.Default; this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command1.TabStop = true; this.Command1.Name = "Command1"; //Me.Drive1.Enabled = False //Me.Drive1.Size = New System.Drawing.Size(111, 21) //Me.Drive1.Location = New System.Drawing.Point(64, 256) //Me.Drive1.TabIndex = 7 //Me.Drive1.BackColor = System.Drawing.SystemColors.Window //Me.Drive1.CausesValidation = True //Me.Drive1.ForeColor = System.Drawing.SystemColors.WindowText //Me.Drive1.Cursor = System.Windows.Forms.Cursors.Default //Me.Drive1.TabStop = True //Me.Drive1.Visible = True //Me.Drive1.Name = "Drive1" this.chkFields.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkFields.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkFields.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.chkFields.Text = "Manual :"; this.chkFields.ForeColor = System.Drawing.SystemColors.WindowText; this.chkFields.Size = new System.Drawing.Size(68, 17); this.chkFields.Location = new System.Drawing.Point(264, 231); this.chkFields.TabIndex = 2; this.chkFields.CausesValidation = true; this.chkFields.Enabled = true; this.chkFields.Cursor = System.Windows.Forms.Cursors.Default; this.chkFields.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkFields.Appearance = System.Windows.Forms.Appearance.Normal; this.chkFields.TabStop = true; this.chkFields.CheckState = System.Windows.Forms.CheckState.Unchecked; this.chkFields.Visible = true; this.chkFields.Name = "chkFields"; this.txtFields.AutoSize = false; this.txtFields.BackColor = System.Drawing.Color.White; this.txtFields.Size = new System.Drawing.Size(270, 27); this.txtFields.ImeMode = System.Windows.Forms.ImeMode.Disable; this.txtFields.Location = new System.Drawing.Point(64, 76); this.txtFields.TabIndex = 1; this.txtFields.AcceptsReturn = true; this.txtFields.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtFields.CausesValidation = true; this.txtFields.Enabled = true; this.txtFields.ForeColor = System.Drawing.SystemColors.WindowText; this.txtFields.HideSelection = true; this.txtFields.ReadOnly = false; this.txtFields.MaxLength = 0; this.txtFields.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtFields.Multiline = false; this.txtFields.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtFields.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtFields.TabStop = true; this.txtFields.Visible = true; this.txtFields.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFields.Name = "txtFields"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(345, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 6; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 5; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "N&ext"; this.cmdClose.Size = new System.Drawing.Size(81, 29); this.cmdClose.Location = new System.Drawing.Point(256, 2); this.cmdClose.TabIndex = 4; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Text = "CD Drive :"; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_0.Size = new System.Drawing.Size(49, 13); this._lblLabels_0.Location = new System.Drawing.Point(8, 258); this._lblLabels_0.TabIndex = 9; this._lblLabels_0.Enabled = true; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.UseMnemonic = true; this._lblLabels_0.Visible = true; this._lblLabels_0.AutoSize = true; this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Text = "CD Key :"; this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_1.Size = new System.Drawing.Size(51, 16); this._lblLabels_1.Location = new System.Drawing.Point(8, 79); this._lblLabels_1.TabIndex = 0; this._lblLabels_1.Enabled = true; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.UseMnemonic = true; this._lblLabels_1.Visible = true; this._lblLabels_1.AutoSize = true; this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_1.Name = "_lblLabels_1"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(338, 49); this._Shape1_2.Location = new System.Drawing.Point(4, 64); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "Please type in your 4VEG CD Key. [ without dashes ]"; this._lbl_5.Size = new System.Drawing.Size(333, 21); this._lbl_5.Location = new System.Drawing.Point(6, 48); this._lbl_5.TabIndex = 3; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = false; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(Command2); this.Controls.Add(Command1); //Me.Controls.Add(Drive1) this.Controls.Add(chkFields); this.Controls.Add(txtFields); this.Controls.Add(picButtons); this.Controls.Add(_lblLabels_0); this.Controls.Add(_lblLabels_1); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short)) //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short)) //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short)) //CType(Me.Shape1, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTransferItem)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.txtQtyT = new System.Windows.Forms.TextBox(); this.txtPSize = new System.Windows.Forms.TextBox(); this.txtPack = new System.Windows.Forms.TextBox(); this.txtPriceS = new System.Windows.Forms.TextBox(); this.txtQty = new System.Windows.Forms.TextBox(); this.txtPrice = new System.Windows.Forms.TextBox(); this.cmbQuantity = new System.Windows.Forms.ComboBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdPack = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._LBL_6 = new System.Windows.Forms.Label(); this._LBL_4 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblPComp = new System.Windows.Forms.Label(); this.lblSComp = new System.Windows.Forms.Label(); this.lblStockItemS = new System.Windows.Forms.Label(); this._LBL_5 = new System.Windows.Forms.Label(); this._LBL_0 = new System.Windows.Forms.Label(); this._LBL_3 = new System.Windows.Forms.Label(); this._LBL_2 = new System.Windows.Forms.Label(); this._LBL_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.LBL, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Stock Transfer Item"; this.ClientSize = new System.Drawing.Size(400, 249); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmStockTransferItem"; this.txtQtyT.AutoSize = false; this.txtQtyT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQtyT.Size = new System.Drawing.Size(67, 19); this.txtQtyT.Location = new System.Drawing.Point(96, 97); this.txtQtyT.TabIndex = 20; this.txtQtyT.Text = "0"; this.txtQtyT.AcceptsReturn = true; this.txtQtyT.BackColor = System.Drawing.SystemColors.Window; this.txtQtyT.CausesValidation = true; this.txtQtyT.Enabled = true; this.txtQtyT.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQtyT.HideSelection = true; this.txtQtyT.ReadOnly = false; this.txtQtyT.MaxLength = 0; this.txtQtyT.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQtyT.Multiline = false; this.txtQtyT.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQtyT.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQtyT.TabStop = true; this.txtQtyT.Visible = true; this.txtQtyT.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQtyT.Name = "txtQtyT"; this.txtPSize.AutoSize = false; this.txtPSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtPSize.Enabled = false; this.txtPSize.Size = new System.Drawing.Size(27, 19); this.txtPSize.Location = new System.Drawing.Point(184, 97); this.txtPSize.TabIndex = 19; this.txtPSize.Text = "1"; this.txtPSize.AcceptsReturn = true; this.txtPSize.BackColor = System.Drawing.SystemColors.Window; this.txtPSize.CausesValidation = true; this.txtPSize.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPSize.HideSelection = true; this.txtPSize.ReadOnly = false; this.txtPSize.MaxLength = 0; this.txtPSize.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPSize.Multiline = false; this.txtPSize.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPSize.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPSize.TabStop = true; this.txtPSize.Visible = true; this.txtPSize.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPSize.Name = "txtPSize"; this.txtPack.AutoSize = false; this.txtPack.Size = new System.Drawing.Size(41, 19); this.txtPack.Location = new System.Drawing.Point(352, 160); this.txtPack.TabIndex = 17; this.txtPack.Text = "0"; this.txtPack.AcceptsReturn = true; this.txtPack.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtPack.BackColor = System.Drawing.SystemColors.Window; this.txtPack.CausesValidation = true; this.txtPack.Enabled = true; this.txtPack.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPack.HideSelection = true; this.txtPack.ReadOnly = false; this.txtPack.MaxLength = 0; this.txtPack.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPack.Multiline = false; this.txtPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPack.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPack.TabStop = true; this.txtPack.Visible = true; this.txtPack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPack.Name = "txtPack"; this.txtPriceS.AutoSize = false; this.txtPriceS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPriceS.Enabled = false; this.txtPriceS.Size = new System.Drawing.Size(91, 19); this.txtPriceS.Location = new System.Drawing.Point(291, 234); this.txtPriceS.TabIndex = 9; this.txtPriceS.Text = "0.00"; this.txtPriceS.Visible = false; this.txtPriceS.AcceptsReturn = true; this.txtPriceS.BackColor = System.Drawing.SystemColors.Window; this.txtPriceS.CausesValidation = true; this.txtPriceS.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPriceS.HideSelection = true; this.txtPriceS.ReadOnly = false; this.txtPriceS.MaxLength = 0; this.txtPriceS.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPriceS.Multiline = false; this.txtPriceS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPriceS.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPriceS.TabStop = true; this.txtPriceS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPriceS.Name = "txtPriceS"; this.txtQty.AutoSize = false; this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQty.Size = new System.Drawing.Size(67, 19); this.txtQty.Location = new System.Drawing.Point(316, 97); this.txtQty.ReadOnly = true; this.txtQty.TabIndex = 8; this.txtQty.Text = "0"; this.txtQty.AcceptsReturn = true; this.txtQty.BackColor = System.Drawing.SystemColors.Window; this.txtQty.CausesValidation = true; this.txtQty.Enabled = true; this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQty.HideSelection = true; this.txtQty.MaxLength = 0; this.txtQty.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQty.Multiline = false; this.txtQty.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQty.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQty.TabStop = true; this.txtQty.Visible = true; this.txtQty.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQty.Name = "txtQty"; this.txtPrice.AutoSize = false; this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPrice.Enabled = false; this.txtPrice.Size = new System.Drawing.Size(91, 19); this.txtPrice.Location = new System.Drawing.Point(293, 121); this.txtPrice.TabIndex = 4; this.txtPrice.Text = "0.00"; this.txtPrice.AcceptsReturn = true; this.txtPrice.BackColor = System.Drawing.SystemColors.Window; this.txtPrice.CausesValidation = true; this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPrice.HideSelection = true; this.txtPrice.ReadOnly = false; this.txtPrice.MaxLength = 0; this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPrice.Multiline = false; this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPrice.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPrice.TabStop = true; this.txtPrice.Visible = true; this.txtPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPrice.Name = "txtPrice"; this.cmbQuantity.Size = new System.Drawing.Size(79, 21); this.cmbQuantity.Location = new System.Drawing.Point(184, 96); this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbQuantity.TabIndex = 3; this.cmbQuantity.Visible = false; this.cmbQuantity.BackColor = System.Drawing.SystemColors.Window; this.cmbQuantity.CausesValidation = true; this.cmbQuantity.Enabled = true; this.cmbQuantity.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbQuantity.IntegralHeight = true; this.cmbQuantity.Cursor = System.Windows.Forms.Cursors.Default; this.cmbQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbQuantity.Sorted = false; this.cmbQuantity.TabStop = true; this.cmbQuantity.Name = "cmbQuantity"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(400, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 0; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdPack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdPack.Text = "Break / Build P&ack"; this.cmdPack.Size = new System.Drawing.Size(105, 29); this.cmdPack.Location = new System.Drawing.Point(88, 3); this.cmdPack.TabIndex = 18; this.cmdPack.TabStop = false; this.cmdPack.BackColor = System.Drawing.SystemColors.Control; this.cmdPack.CausesValidation = true; this.cmdPack.Enabled = true; this.cmdPack.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPack.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPack.Name = "cmdPack"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(8, 3); this.cmdCancel.TabIndex = 16; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(312, 3); this.cmdClose.TabIndex = 1; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._LBL_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_6.Text = "Item Qty:"; this._LBL_6.Size = new System.Drawing.Size(42, 13); this._LBL_6.Location = new System.Drawing.Point(52, 99); this._LBL_6.TabIndex = 22; this._LBL_6.BackColor = System.Drawing.Color.Transparent; this._LBL_6.Enabled = true; this._LBL_6.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_6.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_6.UseMnemonic = true; this._LBL_6.Visible = true; this._LBL_6.AutoSize = true; this._LBL_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_6.Name = "_LBL_6"; this._LBL_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_4.Text = "x"; this._LBL_4.Size = new System.Drawing.Size(8, 16); this._LBL_4.Location = new System.Drawing.Point(170, 98); this._LBL_4.TabIndex = 21; this._LBL_4.BackColor = System.Drawing.Color.Transparent; this._LBL_4.Enabled = true; this._LBL_4.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_4.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_4.UseMnemonic = true; this._LBL_4.Visible = true; this._LBL_4.AutoSize = true; this._LBL_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_4.Name = "_LBL_4"; this.Label2.Text = "Please verify products from both locations"; this.Label2.ForeColor = System.Drawing.Color.FromArgb(192, 0, 0); this.Label2.Size = new System.Drawing.Size(296, 23); this.Label2.Location = new System.Drawing.Point(56, 160); this.Label2.TabIndex = 15; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Enabled = true; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.lblPComp.Text = "Promotion Name:"; this.lblPComp.Size = new System.Drawing.Size(352, 24); this.lblPComp.Location = new System.Drawing.Point(16, 52); this.lblPComp.TabIndex = 14; this.lblPComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblPComp.BackColor = System.Drawing.Color.Transparent; this.lblPComp.Enabled = true; this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPComp.UseMnemonic = true; this.lblPComp.Visible = true; this.lblPComp.AutoSize = false; this.lblPComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblPComp.Name = "lblPComp"; this.lblSComp.Text = "Promotion Name:"; this.lblSComp.Size = new System.Drawing.Size(360, 24); this.lblSComp.Location = new System.Drawing.Point(16, 192); this.lblSComp.TabIndex = 13; this.lblSComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblSComp.BackColor = System.Drawing.Color.Transparent; this.lblSComp.Enabled = true; this.lblSComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblSComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblSComp.UseMnemonic = true; this.lblSComp.Visible = true; this.lblSComp.AutoSize = false; this.lblSComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblSComp.Name = "lblSComp"; this.lblStockItemS.Text = "Label1"; this.lblStockItemS.Size = new System.Drawing.Size(286, 17); this.lblStockItemS.Location = new System.Drawing.Point(98, 216); this.lblStockItemS.TabIndex = 12; this.lblStockItemS.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItemS.BackColor = System.Drawing.SystemColors.Control; this.lblStockItemS.Enabled = true; this.lblStockItemS.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItemS.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItemS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItemS.UseMnemonic = true; this.lblStockItemS.Visible = true; this.lblStockItemS.AutoSize = false; this.lblStockItemS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItemS.Name = "lblStockItemS"; this._LBL_5.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_5.Text = "Stock Item Name:"; this._LBL_5.Size = new System.Drawing.Size(85, 13); this._LBL_5.Location = new System.Drawing.Point(10, 184); this._LBL_5.TabIndex = 11; this._LBL_5.BackColor = System.Drawing.Color.Transparent; this._LBL_5.Enabled = true; this._LBL_5.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_5.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_5.UseMnemonic = true; this._LBL_5.Visible = true; this._LBL_5.AutoSize = true; this._LBL_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_5.Name = "_LBL_5"; this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_0.Text = "Price:"; this._LBL_0.Size = new System.Drawing.Size(27, 13); this._LBL_0.Location = new System.Drawing.Point(260, 237); this._LBL_0.TabIndex = 10; this._LBL_0.Visible = false; this._LBL_0.BackColor = System.Drawing.Color.Transparent; this._LBL_0.Enabled = true; this._LBL_0.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_0.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_0.UseMnemonic = true; this._LBL_0.AutoSize = true; this._LBL_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_0.Name = "_LBL_0"; this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_3.Text = "Cost Price (singles) :"; this._LBL_3.Size = new System.Drawing.Size(95, 13); this._LBL_3.Location = new System.Drawing.Point(194, 124); this._LBL_3.TabIndex = 7; this._LBL_3.BackColor = System.Drawing.Color.Transparent; this._LBL_3.Enabled = true; this._LBL_3.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_3.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_3.UseMnemonic = true; this._LBL_3.Visible = true; this._LBL_3.AutoSize = true; this._LBL_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_3.Name = "_LBL_3"; this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_2.Text = "Total Qty:"; this._LBL_2.Size = new System.Drawing.Size(46, 13); this._LBL_2.Location = new System.Drawing.Point(268, 99); this._LBL_2.TabIndex = 6; this._LBL_2.BackColor = System.Drawing.Color.Transparent; this._LBL_2.Enabled = true; this._LBL_2.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_2.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_2.UseMnemonic = true; this._LBL_2.Visible = true; this._LBL_2.AutoSize = true; this._LBL_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_2.Name = "_LBL_2"; this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_1.Text = "Stock Item Name:"; this._LBL_1.Size = new System.Drawing.Size(85, 13); this._LBL_1.Location = new System.Drawing.Point(10, 79); this._LBL_1.TabIndex = 5; this._LBL_1.BackColor = System.Drawing.Color.Transparent; this._LBL_1.Enabled = true; this._LBL_1.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_1.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_1.UseMnemonic = true; this._LBL_1.Visible = true; this._LBL_1.AutoSize = true; this._LBL_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_1.Name = "_LBL_1"; this.lblStockItem.Text = "Label1"; this.lblStockItem.Size = new System.Drawing.Size(286, 17); this.lblStockItem.Location = new System.Drawing.Point(98, 79); this.lblStockItem.TabIndex = 2; this.lblStockItem.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.Enabled = true; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.UseMnemonic = true; this.lblStockItem.Visible = true; this.lblStockItem.AutoSize = false; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Name = "lblStockItem"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(383, 104); this._Shape1_2.Location = new System.Drawing.Point(7, 48); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(383, 56); this._Shape1_0.Location = new System.Drawing.Point(7, 184); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this.Controls.Add(txtQtyT); this.Controls.Add(txtPSize); this.Controls.Add(txtPack); this.Controls.Add(txtPriceS); this.Controls.Add(txtQty); this.Controls.Add(txtPrice); this.Controls.Add(cmbQuantity); this.Controls.Add(picButtons); this.Controls.Add(_LBL_6); this.Controls.Add(_LBL_4); this.Controls.Add(Label2); this.Controls.Add(lblPComp); this.Controls.Add(lblSComp); this.Controls.Add(lblStockItemS); this.Controls.Add(_LBL_5); this.Controls.Add(_LBL_0); this.Controls.Add(_LBL_3); this.Controls.Add(_LBL_2); this.Controls.Add(_LBL_1); this.Controls.Add(lblStockItem); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdPack); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.LBL.SetIndex(_LBL_6, CType(6, Short)) //Me.LBL.SetIndex(_LBL_4, CType(4, Short)) //Me.LBL.SetIndex(_LBL_5, CType(5, Short)) //Me.LBL.SetIndex(_LBL_0, CType(0, Short)) //Me.LBL.SetIndex(_LBL_3, CType(3, Short)) //Me.LBL.SetIndex(_LBL_2, CType(2, Short)) //Me.LBL.SetIndex(_LBL_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.LBL, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
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(frmStockTransferWH)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdSelWHB = new System.Windows.Forms.Button(); this.cmdSelWHA = new System.Windows.Forms.Button(); this.cmdDelete = new System.Windows.Forms.Button(); this.cmdAdd = new System.Windows.Forms.Button(); this.lvStockT = new System.Windows.Forms.ListView(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdTransfer = new System.Windows.Forms.Button(); this.cmdPrint = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.lblWHB = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this.lblWHA = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Stock Transfer Details"; this.ClientSize = new System.Drawing.Size(453, 438); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmStockTransferWH"; this.cmdSelWHB.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdSelWHB.Text = "&Select Warehouse Transfer To"; this.cmdSelWHB.Size = new System.Drawing.Size(169, 25); this.cmdSelWHB.Location = new System.Drawing.Point(248, 112); this.cmdSelWHB.TabIndex = 13; this.cmdSelWHB.TabStop = false; this.cmdSelWHB.BackColor = System.Drawing.SystemColors.Control; this.cmdSelWHB.CausesValidation = true; this.cmdSelWHB.Enabled = true; this.cmdSelWHB.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdSelWHB.Cursor = System.Windows.Forms.Cursors.Default; this.cmdSelWHB.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdSelWHB.Name = "cmdSelWHB"; this.cmdSelWHA.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdSelWHA.Text = "&Select Warehouse Transfer From"; this.cmdSelWHA.Size = new System.Drawing.Size(169, 25); this.cmdSelWHA.Location = new System.Drawing.Point(16, 112); this.cmdSelWHA.TabIndex = 9; this.cmdSelWHA.TabStop = false; this.cmdSelWHA.BackColor = System.Drawing.SystemColors.Control; this.cmdSelWHA.CausesValidation = true; this.cmdSelWHA.Enabled = true; this.cmdSelWHA.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdSelWHA.Cursor = System.Windows.Forms.Cursors.Default; this.cmdSelWHA.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdSelWHA.Name = "cmdSelWHA"; this.cmdDelete.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdDelete.Text = "&Delete"; this.cmdDelete.Enabled = false; this.cmdDelete.Size = new System.Drawing.Size(94, 25); this.cmdDelete.Location = new System.Drawing.Point(112, 152); this.cmdDelete.TabIndex = 7; this.cmdDelete.TabStop = false; this.cmdDelete.BackColor = System.Drawing.SystemColors.Control; this.cmdDelete.CausesValidation = true; this.cmdDelete.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdDelete.Cursor = System.Windows.Forms.Cursors.Default; this.cmdDelete.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdDelete.Name = "cmdDelete"; this.cmdAdd.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdAdd.Text = "&Add"; this.cmdAdd.Enabled = false; this.cmdAdd.Size = new System.Drawing.Size(94, 25); this.cmdAdd.Location = new System.Drawing.Point(8, 152); this.cmdAdd.TabIndex = 6; this.cmdAdd.TabStop = false; this.cmdAdd.BackColor = System.Drawing.SystemColors.Control; this.cmdAdd.CausesValidation = true; this.cmdAdd.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdAdd.Cursor = System.Windows.Forms.Cursors.Default; this.cmdAdd.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdAdd.Name = "cmdAdd"; this.lvStockT.Size = new System.Drawing.Size(445, 250); this.lvStockT.Location = new System.Drawing.Point(2, 182); this.lvStockT.TabIndex = 4; this.lvStockT.View = System.Windows.Forms.View.Details; this.lvStockT.LabelEdit = false; this.lvStockT.LabelWrap = true; this.lvStockT.HideSelection = false; this.lvStockT.FullRowSelect = true; this.lvStockT.GridLines = true; this.lvStockT.ForeColor = System.Drawing.SystemColors.WindowText; this.lvStockT.BackColor = System.Drawing.SystemColors.Window; this.lvStockT.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lvStockT.Name = "lvStockT"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(453, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 3; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdTransfer.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdTransfer.Text = "&Transfer"; this.cmdTransfer.Size = new System.Drawing.Size(73, 29); this.cmdTransfer.Location = new System.Drawing.Point(368, 3); this.cmdTransfer.TabIndex = 12; this.cmdTransfer.TabStop = false; this.cmdTransfer.BackColor = System.Drawing.SystemColors.Control; this.cmdTransfer.CausesValidation = true; this.cmdTransfer.Enabled = true; this.cmdTransfer.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdTransfer.Cursor = System.Windows.Forms.Cursors.Default; this.cmdTransfer.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdTransfer.Name = "cmdTransfer"; this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdPrint.Text = "&Print"; this.cmdPrint.Size = new System.Drawing.Size(73, 29); this.cmdPrint.Location = new System.Drawing.Point(80, 3); this.cmdPrint.TabIndex = 8; this.cmdPrint.TabStop = false; this.cmdPrint.Visible = false; this.cmdPrint.BackColor = System.Drawing.SystemColors.Control; this.cmdPrint.CausesValidation = true; this.cmdPrint.Enabled = true; this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPrint.Name = "cmdPrint"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(161, 3); this.cmdClose.TabIndex = 5; this.cmdClose.TabStop = false; this.cmdClose.Visible = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 2; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.lblWHB.Text = "Promotion Name:"; this.lblWHB.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblWHB.Size = new System.Drawing.Size(192, 48); this.lblWHB.Location = new System.Drawing.Point(248, 64); this.lblWHB.TabIndex = 11; this.lblWHB.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblWHB.BackColor = System.Drawing.Color.Transparent; this.lblWHB.Enabled = true; this.lblWHB.ForeColor = System.Drawing.SystemColors.ControlText; this.lblWHB.Cursor = System.Windows.Forms.Cursors.Default; this.lblWHB.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblWHB.UseMnemonic = true; this.lblWHB.Visible = true; this.lblWHB.AutoSize = false; this.lblWHB.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblWHB.Name = "lblWHB"; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Text = "&Transfer To"; this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_0.Size = new System.Drawing.Size(67, 13); this._lbl_0.Location = new System.Drawing.Point(248, 45); this._lbl_0.TabIndex = 10; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = true; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this.lblWHA.Text = "Promotion Name:"; this.lblWHA.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblWHA.Size = new System.Drawing.Size(216, 40); this.lblWHA.Location = new System.Drawing.Point(16, 64); this.lblWHA.TabIndex = 1; this.lblWHA.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblWHA.BackColor = System.Drawing.Color.Transparent; this.lblWHA.Enabled = true; this.lblWHA.ForeColor = System.Drawing.SystemColors.ControlText; this.lblWHA.Cursor = System.Windows.Forms.Cursors.Default; this.lblWHA.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblWHA.UseMnemonic = true; this.lblWHA.Visible = true; this.lblWHA.AutoSize = false; this.lblWHA.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblWHA.Name = "lblWHA"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(439, 88); this._Shape1_2.Location = new System.Drawing.Point(8, 60); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&Transfer From"; this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_5.Size = new System.Drawing.Size(79, 13); this._lbl_5.Location = new System.Drawing.Point(8, 45); this._lbl_5.TabIndex = 0; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(cmdSelWHB); this.Controls.Add(cmdSelWHA); this.Controls.Add(cmdDelete); this.Controls.Add(cmdAdd); this.Controls.Add(lvStockT); this.Controls.Add(picButtons); this.Controls.Add(lblWHB); this.Controls.Add(_lbl_0); this.Controls.Add(lblWHA); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdTransfer); this.picButtons.Controls.Add(cmdPrint); this.picButtons.Controls.Add(cmdClose); this.picButtons.Controls.Add(cmdCancel); //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.txtFields = new System.Windows.Forms.TextBox(); this.Timer1 = new System.Windows.Forms.Timer(this.components); this.Command2 = new System.Windows.Forms.Button(); this.Command1 = new System.Windows.Forms.Button(); this.chkFields = new System.Windows.Forms.CheckBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_1 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this._Shape1_2 }); this.ShapeContainer1.Size = new System.Drawing.Size(347, 120); this.ShapeContainer1.TabIndex = 12; this.ShapeContainer1.TabStop = false; // //_Shape1_2 // this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.Location = new System.Drawing.Point(4, 64); this._Shape1_2.Name = "_Shape1_2"; this._Shape1_2.Size = new System.Drawing.Size(338, 49); // //txtFields // this.txtFields.AcceptsReturn = true; this.txtFields.BackColor = System.Drawing.Color.White; this.txtFields.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFields.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtFields.Font = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.txtFields.ForeColor = System.Drawing.SystemColors.WindowText; this.txtFields.ImeMode = System.Windows.Forms.ImeMode.Disable; this.txtFields.Location = new System.Drawing.Point(64, 76); this.txtFields.MaxLength = 0; this.txtFields.Name = "txtFields"; this.txtFields.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtFields.Size = new System.Drawing.Size(270, 28); this.txtFields.TabIndex = 10; // //Timer1 // this.Timer1.Enabled = true; this.Timer1.Interval = 1; // //Command2 // this.Command2.BackColor = System.Drawing.SystemColors.Control; this.Command2.Cursor = System.Windows.Forms.Cursors.Default; this.Command2.ForeColor = System.Drawing.SystemColors.ControlText; this.Command2.Location = new System.Drawing.Point(184, 344); this.Command2.Name = "Command2"; this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command2.Size = new System.Drawing.Size(151, 19); this.Command2.TabIndex = 8; this.Command2.Text = "Close CD Tray and Register"; this.Command2.UseVisualStyleBackColor = false; // //Command1 // this.Command1.BackColor = System.Drawing.SystemColors.Control; this.Command1.Cursor = System.Windows.Forms.Cursors.Default; this.Command1.ForeColor = System.Drawing.SystemColors.ControlText; this.Command1.Location = new System.Drawing.Point(208, 384); this.Command1.Name = "Command1"; this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command1.Size = new System.Drawing.Size(59, 19); this.Command1.TabIndex = 6; this.Command1.Text = "Open"; this.Command1.UseVisualStyleBackColor = false; // //chkFields // this.chkFields.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.chkFields.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkFields.Cursor = System.Windows.Forms.Cursors.Default; this.chkFields.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkFields.ForeColor = System.Drawing.SystemColors.WindowText; this.chkFields.Location = new System.Drawing.Point(264, 319); this.chkFields.Name = "chkFields"; this.chkFields.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkFields.Size = new System.Drawing.Size(68, 17); this.chkFields.TabIndex = 0; this.chkFields.Text = "Manual :"; this.chkFields.UseVisualStyleBackColor = false; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(347, 39); this.picButtons.TabIndex = 4; // //cmdCancel // this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.TabIndex = 3; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.UseVisualStyleBackColor = false; // //cmdClose // this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Location = new System.Drawing.Point(256, 2); this.cmdClose.Name = "cmdClose"; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Size = new System.Drawing.Size(81, 29); this.cmdClose.TabIndex = 2; this.cmdClose.TabStop = false; this.cmdClose.Text = "N&ext"; this.cmdClose.UseVisualStyleBackColor = false; // //_lblLabels_1 // this._lblLabels_1.AutoSize = true; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_1.Location = new System.Drawing.Point(8, 79); this._lblLabels_1.Name = "_lblLabels_1"; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.Size = new System.Drawing.Size(61, 16); this._lblLabels_1.TabIndex = 11; this._lblLabels_1.Text = "CD Key :"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_0 // this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Location = new System.Drawing.Point(6, 48); this._lbl_0.Name = "_lbl_0"; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.Size = new System.Drawing.Size(333, 21); this._lbl_0.TabIndex = 9; this._lbl_0.Text = "Please type in your 4POS CD Key. [ without dashes ]"; // //_lblLabels_0 // this._lblLabels_0.AutoSize = true; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_0.Location = new System.Drawing.Point(8, 346); this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.Size = new System.Drawing.Size(56, 13); this._lblLabels_0.TabIndex = 7; this._lblLabels_0.Text = "CD Drive :"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_5 // this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Location = new System.Drawing.Point(6, 274); this._lbl_5.Name = "_lbl_5"; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.Size = new System.Drawing.Size(333, 29); this._lbl_5.TabIndex = 1; this._lbl_5.Text = "It looks you don't have CD-ROM drive. Please type the CD Key Manually."; // //frmPOSCode // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224))); this.ClientSize = new System.Drawing.Size(347, 120); this.ControlBox = false; this.Controls.Add(this.txtFields); this.Controls.Add(this.Command2); this.Controls.Add(this.Command1); this.Controls.Add(this.chkFields); this.Controls.Add(this.picButtons); this.Controls.Add(this._lblLabels_1); this.Controls.Add(this._lbl_0); this.Controls.Add(this._lblLabels_0); this.Controls.Add(this._lbl_5); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.Location = new System.Drawing.Point(73, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmPOSCode"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "4POS Registration"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmChannel)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._txtFields_0 = new System.Windows.Forms.TextBox(); this._optType_1 = new System.Windows.Forms.RadioButton(); this._optType_0 = new System.Windows.Forms.RadioButton(); this.cmbChannelPrice = new System.Windows.Forms.ComboBox(); this._chkFields_5 = new System.Windows.Forms.CheckBox(); this._chkFields_4 = new System.Windows.Forms.CheckBox(); this._chkFields_3 = new System.Windows.Forms.CheckBox(); this._txtFields_2 = new System.Windows.Forms.TextBox(); this._txtFields_1 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._Label1_1 = new System.Windows.Forms.Label(); this._Label1_0 = new System.Windows.Forms.Label(); this._lblLabels_2 = new System.Windows.Forms.Label(); this._lblLabels_1 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.optType = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components) //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.optType, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Sale Channel Details"; this.ClientSize = new System.Drawing.Size(432, 298); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmChannel"; this._txtFields_0.AutoSize = false; this._txtFields_0.Size = new System.Drawing.Size(67, 19); this._txtFields_0.Location = new System.Drawing.Point(264, 234); this._txtFields_0.MaxLength = 5; this._txtFields_0.TabIndex = 16; this._txtFields_0.Visible = false; this._txtFields_0.AcceptsReturn = true; this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.CausesValidation = true; this._txtFields_0.Enabled = true; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.HideSelection = true; this._txtFields_0.ReadOnly = false; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.Multiline = false; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_0.TabStop = true; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Name = "_txtFields_0"; this._optType_1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optType_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._optType_1.Text = "Price of default sales channel plus pricing group percentage"; this._optType_1.Size = new System.Drawing.Size(346, 16); this._optType_1.Location = new System.Drawing.Point(54, 252); this._optType_1.TabIndex = 15; this._optType_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optType_1.CausesValidation = true; this._optType_1.Enabled = true; this._optType_1.ForeColor = System.Drawing.SystemColors.ControlText; this._optType_1.Cursor = System.Windows.Forms.Cursors.Default; this._optType_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._optType_1.Appearance = System.Windows.Forms.Appearance.Normal; this._optType_1.TabStop = true; this._optType_1.Checked = false; this._optType_1.Visible = true; this._optType_1.Name = "_optType_1"; this._optType_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optType_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._optType_0.Text = "Cost plus pricing group percentage"; this._optType_0.Size = new System.Drawing.Size(346, 16); this._optType_0.Location = new System.Drawing.Point(54, 234); this._optType_0.TabIndex = 13; this._optType_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optType_0.CausesValidation = true; this._optType_0.Enabled = true; this._optType_0.ForeColor = System.Drawing.SystemColors.ControlText; this._optType_0.Cursor = System.Windows.Forms.Cursors.Default; this._optType_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._optType_0.Appearance = System.Windows.Forms.Appearance.Normal; this._optType_0.TabStop = true; this._optType_0.Checked = false; this._optType_0.Visible = true; this._optType_0.Name = "_optType_0"; this.cmbChannelPrice.Size = new System.Drawing.Size(196, 21); this.cmbChannelPrice.Location = new System.Drawing.Point(78, 174); this.cmbChannelPrice.Items.AddRange(new object[] { "No relationship", "Always the same or cheaper", "Always the same or more expensive" }); this.cmbChannelPrice.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbChannelPrice.TabIndex = 11; this.cmbChannelPrice.BackColor = System.Drawing.SystemColors.Window; this.cmbChannelPrice.CausesValidation = true; this.cmbChannelPrice.Enabled = true; this.cmbChannelPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbChannelPrice.IntegralHeight = true; this.cmbChannelPrice.Cursor = System.Windows.Forms.Cursors.Default; this.cmbChannelPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbChannelPrice.Sorted = false; this.cmbChannelPrice.TabStop = true; this.cmbChannelPrice.Visible = true; this.cmbChannelPrice.Name = "cmbChannelPrice"; this._chkFields_5.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_5.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_5.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_5.Text = "Treat a case/carton price as the unit price when doing the pricing update:"; this._chkFields_5.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_5.Size = new System.Drawing.Size(373, 19); this._chkFields_5.Location = new System.Drawing.Point(33, 135); this._chkFields_5.TabIndex = 10; this._chkFields_5.CausesValidation = true; this._chkFields_5.Enabled = true; this._chkFields_5.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_5.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_5.TabStop = true; this._chkFields_5.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_5.Visible = true; this._chkFields_5.Name = "_chkFields_5"; this._chkFields_4.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_4.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_4.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_4.Text = "Do not use Pricing Strategy when doing pricing update:"; this._chkFields_4.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_4.Size = new System.Drawing.Size(283, 19); this._chkFields_4.Location = new System.Drawing.Point(123, 114); this._chkFields_4.TabIndex = 9; this._chkFields_4.CausesValidation = true; this._chkFields_4.Enabled = true; this._chkFields_4.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_4.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_4.TabStop = true; this._chkFields_4.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_4.Visible = true; this._chkFields_4.Name = "_chkFields_4"; this._chkFields_3.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_3.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_3.Text = "Disable this sale channel on the POS:"; this._chkFields_3.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_3.Size = new System.Drawing.Size(202, 19); this._chkFields_3.Location = new System.Drawing.Point(204, 93); this._chkFields_3.TabIndex = 8; this._chkFields_3.CausesValidation = true; this._chkFields_3.Enabled = true; this._chkFields_3.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_3.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_3.TabStop = true; this._chkFields_3.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_3.Visible = true; this._chkFields_3.Name = "_chkFields_3"; this._txtFields_2.AutoSize = false; this._txtFields_2.Size = new System.Drawing.Size(49, 19); this._txtFields_2.Location = new System.Drawing.Point(357, 69); this._txtFields_2.MaxLength = 5; this._txtFields_2.TabIndex = 7; this._txtFields_2.AcceptsReturn = true; this._txtFields_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_2.BackColor = System.Drawing.SystemColors.Window; this._txtFields_2.CausesValidation = true; this._txtFields_2.Enabled = true; this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_2.HideSelection = true; this._txtFields_2.ReadOnly = false; this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_2.Multiline = false; this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_2.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_2.TabStop = true; this._txtFields_2.Visible = true; this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_2.Name = "_txtFields_2"; this._txtFields_1.AutoSize = false; this._txtFields_1.Size = new System.Drawing.Size(217, 19); this._txtFields_1.Location = new System.Drawing.Point(66, 69); this._txtFields_1.TabIndex = 5; this._txtFields_1.AcceptsReturn = true; this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_1.BackColor = System.Drawing.SystemColors.Window; this._txtFields_1.CausesValidation = true; this._txtFields_1.Enabled = true; this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_1.HideSelection = true; this._txtFields_1.ReadOnly = false; this._txtFields_1.MaxLength = 0; this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_1.Multiline = false; this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_1.TabStop = true; this._txtFields_1.Visible = true; this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_1.Name = "_txtFields_1"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(432, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 2; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 1; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(351, 3); this.cmdClose.TabIndex = 0; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._Label1_1.Text = "When calculating exit price percentages, prices are calculated as,"; this._Label1_1.Size = new System.Drawing.Size(388, 16); this._Label1_1.Location = new System.Drawing.Point(21, 216); this._Label1_1.TabIndex = 14; this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_1.BackColor = System.Drawing.Color.Transparent; this._Label1_1.Enabled = true; this._Label1_1.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_1.UseMnemonic = true; this._Label1_1.Visible = true; this._Label1_1.AutoSize = false; this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_1.Name = "_Label1_1"; this._Label1_0.Text = "When doing the pricing calculation this Sale Channel relationship to the First Sale Channel is,"; this._Label1_0.Size = new System.Drawing.Size(388, 43); this._Label1_0.Location = new System.Drawing.Point(21, 159); this._Label1_0.TabIndex = 12; this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_0.BackColor = System.Drawing.Color.Transparent; this._Label1_0.Enabled = true; this._Label1_0.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_0.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_0.UseMnemonic = true; this._Label1_0.Visible = true; this._Label1_0.AutoSize = false; this._Label1_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_0.Name = "_Label1_0"; this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_2.BackColor = System.Drawing.Color.Transparent; this._lblLabels_2.Text = "Short Name:"; this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_2.Size = new System.Drawing.Size(61, 13); this._lblLabels_2.Location = new System.Drawing.Point(291, 72); this._lblLabels_2.TabIndex = 6; this._lblLabels_2.Enabled = true; this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_2.UseMnemonic = true; this._lblLabels_2.Visible = true; this._lblLabels_2.AutoSize = true; this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_2.Name = "_lblLabels_2"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Text = "Name:"; this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_1.Size = new System.Drawing.Size(31, 13); this._lblLabels_1.Location = new System.Drawing.Point(27, 72); this._lblLabels_1.TabIndex = 4; this._lblLabels_1.Enabled = true; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.UseMnemonic = true; this._lblLabels_1.Visible = true; this._lblLabels_1.AutoSize = true; this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_1.Name = "_lblLabels_1"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(403, 220); this._Shape1_2.Location = new System.Drawing.Point(15, 60); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&1. General"; this._lbl_5.Size = new System.Drawing.Size(60, 13); this._lbl_5.Location = new System.Drawing.Point(15, 45); this._lbl_5.TabIndex = 3; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(_txtFields_0); this.Controls.Add(_optType_1); this.Controls.Add(_optType_0); this.Controls.Add(cmbChannelPrice); this.Controls.Add(_chkFields_5); this.Controls.Add(_chkFields_4); this.Controls.Add(_chkFields_3); this.Controls.Add(_txtFields_2); this.Controls.Add(_txtFields_1); this.Controls.Add(picButtons); this.Controls.Add(_Label1_1); this.Controls.Add(_Label1_0); this.Controls.Add(_lblLabels_2); this.Controls.Add(_lblLabels_1); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.Label1.SetIndex(_Label1_1, CType(1, Short)) //Me.Label1.SetIndex(_Label1_0, CType(0, Short)) //Me.chkFields.SetIndex(_chkFields_5, CType(5, Short)) //Me.chkFields.SetIndex(_chkFields_4, CType(4, Short)) //Me.chkFields.SetIndex(_chkFields_3, CType(3, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short)) //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short)) //Me.optType.SetIndex(_optType_1, CType(1, Short)) //Me.optType.SetIndex(_optType_0, CType(0, Short)) //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short)) //Me.txtFields.SetIndex(_txtFields_2, CType(2, Short)) //Me.txtFields.SetIndex(_txtFields_1, CType(1, Short)) //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short)) ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.optType, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPerson)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.chkController = new System.Windows.Forms.CheckBox(); this.Frame1 = new System.Windows.Forms.GroupBox(); this.txtComm = new System.Windows.Forms.TextBox(); this.Label2 = new System.Windows.Forms.Label(); this.cmdBuild = new System.Windows.Forms.Button(); this._chkFields_2 = new System.Windows.Forms.CheckBox(); this._frmSecurity_1 = new System.Windows.Forms.GroupBox(); this.cmbDraw = new System.Windows.Forms.ComboBox(); this._txtFields_12 = new System.Windows.Forms.TextBox(); this._lblLabels_0 = new System.Windows.Forms.Label(); this.Label1 = new System.Windows.Forms.Label(); this._lblLabels_12 = new System.Windows.Forms.Label(); this._frmSecurity_0 = new System.Windows.Forms.GroupBox(); this._txtFields_11 = new System.Windows.Forms.TextBox(); this._txtFields_10 = new System.Windows.Forms.TextBox(); this._lblLabels_11 = new System.Windows.Forms.Label(); this._lblLabels_10 = new System.Windows.Forms.Label(); this._txtFields_1 = new System.Windows.Forms.TextBox(); this._txtFields_2 = new System.Windows.Forms.TextBox(); this._txtFields_4 = new System.Windows.Forms.TextBox(); this._txtFields_5 = new System.Windows.Forms.TextBox(); this._txtFields_7 = new System.Windows.Forms.TextBox(); this._txtFields_8 = new System.Windows.Forms.TextBox(); this._txtFields_13 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdFPR = new System.Windows.Forms.Button(); this.cmdPOSsecurity = new System.Windows.Forms.Button(); this.cmdBOsecurity = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lbl_1 = new System.Windows.Forms.Label(); this.Line1 = new Microsoft.VisualBasic.PowerPacks.LineShape(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_0 = new System.Windows.Forms.Label(); this._lblLabels_2 = new System.Windows.Forms.Label(); this._lblLabels_4 = new System.Windows.Forms.Label(); this._lblLabels_5 = new System.Windows.Forms.Label(); this._lblLabels_7 = new System.Windows.Forms.Label(); this._lblLabels_8 = new System.Windows.Forms.Label(); this._lblLabels_13 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components) //Me.frmSecurity = New Microsoft.VisualBasic.Compatibility.VB6.GroupBoxArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) this.Shape1 = new RectangleShapeArray(components); this.Frame1.SuspendLayout(); this._frmSecurity_1.SuspendLayout(); this._frmSecurity_0.SuspendLayout(); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.frmSecurity, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Employee Details"; this.ClientSize = new System.Drawing.Size(486, 348); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmPerson"; this.chkController.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkController.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkController.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.chkController.Text = "Permit this person to terminate controller"; this.chkController.ForeColor = System.Drawing.SystemColors.WindowText; this.chkController.Size = new System.Drawing.Size(229, 21); this.chkController.Location = new System.Drawing.Point(226, 286); this.chkController.TabIndex = 34; this.chkController.CausesValidation = true; this.chkController.Enabled = true; this.chkController.Cursor = System.Windows.Forms.Cursors.Default; this.chkController.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkController.Appearance = System.Windows.Forms.Appearance.Normal; this.chkController.TabStop = true; this.chkController.CheckState = System.Windows.Forms.CheckState.Unchecked; this.chkController.Visible = true; this.chkController.Name = "chkController"; this.Frame1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.Frame1.Text = "Commission %"; this.Frame1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Frame1.Size = new System.Drawing.Size(189, 39); this.Frame1.Location = new System.Drawing.Point(22, 242); this.Frame1.TabIndex = 31; this.Frame1.Enabled = true; this.Frame1.ForeColor = System.Drawing.SystemColors.ControlText; this.Frame1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Frame1.Visible = true; this.Frame1.Padding = new System.Windows.Forms.Padding(0); this.Frame1.Name = "Frame1"; this.txtComm.AutoSize = false; this.txtComm.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtComm.Size = new System.Drawing.Size(61, 17); this.txtComm.Location = new System.Drawing.Point(116, 14); this.txtComm.TabIndex = 33; this.txtComm.AcceptsReturn = true; this.txtComm.BackColor = System.Drawing.SystemColors.Window; this.txtComm.CausesValidation = true; this.txtComm.Enabled = true; this.txtComm.ForeColor = System.Drawing.SystemColors.WindowText; this.txtComm.HideSelection = true; this.txtComm.ReadOnly = false; this.txtComm.MaxLength = 0; this.txtComm.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtComm.Multiline = false; this.txtComm.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtComm.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtComm.TabStop = true; this.txtComm.Visible = true; this.txtComm.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtComm.Name = "txtComm"; this.Label2.Text = "Value"; this.Label2.Size = new System.Drawing.Size(71, 17); this.Label2.Location = new System.Drawing.Point(10, 16); this.Label2.TabIndex = 32; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Enabled = true; this.Label2.ForeColor = System.Drawing.SystemColors.ControlText; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.cmdBuild.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdBuild.Text = "Build..."; this.cmdBuild.Size = new System.Drawing.Size(46, 16); this.cmdBuild.Location = new System.Drawing.Point(402, 213); this.cmdBuild.TabIndex = 27; this.cmdBuild.BackColor = System.Drawing.SystemColors.Control; this.cmdBuild.CausesValidation = true; this.cmdBuild.Enabled = true; this.cmdBuild.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdBuild.Cursor = System.Windows.Forms.Cursors.Default; this.cmdBuild.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdBuild.TabStop = true; this.cmdBuild.Name = "cmdBuild"; this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_2.Text = "Disable this person from using the application suite:"; this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_2.Size = new System.Drawing.Size(262, 19); this._chkFields_2.Location = new System.Drawing.Point(194, 308); this._chkFields_2.TabIndex = 29; this._chkFields_2.CausesValidation = true; this._chkFields_2.Enabled = true; this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_2.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_2.TabStop = true; this._chkFields_2.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_2.Visible = true; this._chkFields_2.Name = "_chkFields_2"; this._frmSecurity_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._frmSecurity_1.Text = "Point Of Sale Logon"; this._frmSecurity_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._frmSecurity_1.Size = new System.Drawing.Size(220, 108); this._frmSecurity_1.Location = new System.Drawing.Point(237, 171); this._frmSecurity_1.TabIndex = 24; this._frmSecurity_1.Enabled = true; this._frmSecurity_1.ForeColor = System.Drawing.SystemColors.ControlText; this._frmSecurity_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._frmSecurity_1.Visible = true; this._frmSecurity_1.Padding = new System.Windows.Forms.Padding(0); this._frmSecurity_1.Name = "_frmSecurity_1"; this.cmbDraw.BackColor = System.Drawing.Color.White; this.cmbDraw.Size = new System.Drawing.Size(105, 21); this.cmbDraw.Location = new System.Drawing.Point(104, 80); this.cmbDraw.Items.AddRange(new object[] { "Till / Drawer # 1", "Till / Drawer # 2" }); this.cmbDraw.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbDraw.TabIndex = 37; this.cmbDraw.CausesValidation = true; this.cmbDraw.Enabled = true; this.cmbDraw.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbDraw.IntegralHeight = true; this.cmbDraw.Cursor = System.Windows.Forms.Cursors.Default; this.cmbDraw.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbDraw.Sorted = false; this.cmbDraw.TabStop = true; this.cmbDraw.Visible = true; this.cmbDraw.Name = "cmbDraw"; this._txtFields_12.AutoSize = false; this._txtFields_12.Size = new System.Drawing.Size(114, 19); this._txtFields_12.ImeMode = System.Windows.Forms.ImeMode.Disable; this._txtFields_12.Location = new System.Drawing.Point(96, 18); this._txtFields_12.PasswordChar = Strings.ChrW(35); this._txtFields_12.TabIndex = 26; this._txtFields_12.AcceptsReturn = true; this._txtFields_12.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_12.BackColor = System.Drawing.SystemColors.Window; this._txtFields_12.CausesValidation = true; this._txtFields_12.Enabled = true; this._txtFields_12.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_12.HideSelection = true; this._txtFields_12.ReadOnly = false; this._txtFields_12.MaxLength = 0; this._txtFields_12.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_12.Multiline = false; this._txtFields_12.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_12.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_12.TabStop = true; this._txtFields_12.Visible = true; this._txtFields_12.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_12.Name = "_txtFields_12"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Text = "Default Till/Drawer:"; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_0.Size = new System.Drawing.Size(92, 13); this._lblLabels_0.Location = new System.Drawing.Point(8, 88); this._lblLabels_0.TabIndex = 36; this._lblLabels_0.Enabled = true; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.UseMnemonic = true; this._lblLabels_0.Visible = true; this._lblLabels_0.AutoSize = true; this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_0.Name = "_lblLabels_0"; this.Label1.Text = "This is a barcode used for log-in for the Point Of Sale device."; this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Label1.Size = new System.Drawing.Size(148, 43); this.Label1.Location = new System.Drawing.Point(9, 39); this.Label1.TabIndex = 28; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.Color.Transparent; this.Label1.Enabled = true; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = false; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this._lblLabels_12.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_12.BackColor = System.Drawing.Color.Transparent; this._lblLabels_12.Text = "Access Scan ID:"; this._lblLabels_12.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_12.Size = new System.Drawing.Size(80, 13); this._lblLabels_12.Location = new System.Drawing.Point(9, 18); this._lblLabels_12.TabIndex = 25; this._lblLabels_12.Enabled = true; this._lblLabels_12.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_12.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_12.UseMnemonic = true; this._lblLabels_12.Visible = true; this._lblLabels_12.AutoSize = true; this._lblLabels_12.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_12.Name = "_lblLabels_12"; this._frmSecurity_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._frmSecurity_0.Text = "Back Office Logon"; this._frmSecurity_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._frmSecurity_0.Size = new System.Drawing.Size(190, 66); this._frmSecurity_0.Location = new System.Drawing.Point(21, 171); this._frmSecurity_0.TabIndex = 19; this._frmSecurity_0.Enabled = true; this._frmSecurity_0.ForeColor = System.Drawing.SystemColors.ControlText; this._frmSecurity_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._frmSecurity_0.Visible = true; this._frmSecurity_0.Padding = new System.Windows.Forms.Padding(0); this._frmSecurity_0.Name = "_frmSecurity_0"; this._txtFields_11.AutoSize = false; this._txtFields_11.Size = new System.Drawing.Size(114, 19); this._txtFields_11.ImeMode = System.Windows.Forms.ImeMode.Disable; this._txtFields_11.Location = new System.Drawing.Point(65, 40); this._txtFields_11.PasswordChar = Strings.ChrW(35); this._txtFields_11.TabIndex = 23; this._txtFields_11.AcceptsReturn = true; this._txtFields_11.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_11.BackColor = System.Drawing.SystemColors.Window; this._txtFields_11.CausesValidation = true; this._txtFields_11.Enabled = true; this._txtFields_11.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_11.HideSelection = true; this._txtFields_11.ReadOnly = false; this._txtFields_11.MaxLength = 0; this._txtFields_11.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_11.Multiline = false; this._txtFields_11.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_11.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_11.TabStop = true; this._txtFields_11.Visible = true; this._txtFields_11.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_11.Name = "_txtFields_11"; this._txtFields_10.AutoSize = false; this._txtFields_10.Size = new System.Drawing.Size(114, 19); this._txtFields_10.Location = new System.Drawing.Point(65, 18); this._txtFields_10.TabIndex = 21; this._txtFields_10.AcceptsReturn = true; this._txtFields_10.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_10.BackColor = System.Drawing.SystemColors.Window; this._txtFields_10.CausesValidation = true; this._txtFields_10.Enabled = true; this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_10.HideSelection = true; this._txtFields_10.ReadOnly = false; this._txtFields_10.MaxLength = 0; this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_10.Multiline = false; this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_10.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_10.TabStop = true; this._txtFields_10.Visible = true; this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_10.Name = "_txtFields_10"; this._lblLabels_11.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_11.BackColor = System.Drawing.Color.Transparent; this._lblLabels_11.Text = "Password:"******"_lblLabels_11"; this._lblLabels_10.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_10.BackColor = System.Drawing.Color.Transparent; this._lblLabels_10.Text = "User ID:"; this._lblLabels_10.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_10.Size = new System.Drawing.Size(39, 13); this._lblLabels_10.Location = new System.Drawing.Point(19, 18); this._lblLabels_10.TabIndex = 20; this._lblLabels_10.Enabled = true; this._lblLabels_10.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_10.UseMnemonic = true; this._lblLabels_10.Visible = true; this._lblLabels_10.AutoSize = true; this._lblLabels_10.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_10.Name = "_lblLabels_10"; this._txtFields_1.AutoSize = false; this._txtFields_1.Size = new System.Drawing.Size(31, 19); this._txtFields_1.Location = new System.Drawing.Point(87, 66); this._txtFields_1.TabIndex = 6; this._txtFields_1.Text = "Miss"; this._txtFields_1.AcceptsReturn = true; this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_1.BackColor = System.Drawing.SystemColors.Window; this._txtFields_1.CausesValidation = true; this._txtFields_1.Enabled = true; this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_1.HideSelection = true; this._txtFields_1.ReadOnly = false; this._txtFields_1.MaxLength = 0; this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_1.Multiline = false; this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_1.TabStop = true; this._txtFields_1.Visible = true; this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_1.Name = "_txtFields_1"; this._txtFields_2.AutoSize = false; this._txtFields_2.Size = new System.Drawing.Size(118, 19); this._txtFields_2.Location = new System.Drawing.Point(120, 66); this._txtFields_2.TabIndex = 7; this._txtFields_2.AcceptsReturn = true; this._txtFields_2.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_2.BackColor = System.Drawing.SystemColors.Window; this._txtFields_2.CausesValidation = true; this._txtFields_2.Enabled = true; this._txtFields_2.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_2.HideSelection = true; this._txtFields_2.ReadOnly = false; this._txtFields_2.MaxLength = 0; this._txtFields_2.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_2.Multiline = false; this._txtFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_2.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_2.TabStop = true; this._txtFields_2.Visible = true; this._txtFields_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_2.Name = "_txtFields_2"; this._txtFields_4.AutoSize = false; this._txtFields_4.Size = new System.Drawing.Size(151, 19); this._txtFields_4.Location = new System.Drawing.Point(87, 87); this._txtFields_4.TabIndex = 9; this._txtFields_4.AcceptsReturn = true; this._txtFields_4.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_4.BackColor = System.Drawing.SystemColors.Window; this._txtFields_4.CausesValidation = true; this._txtFields_4.Enabled = true; this._txtFields_4.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_4.HideSelection = true; this._txtFields_4.ReadOnly = false; this._txtFields_4.MaxLength = 0; this._txtFields_4.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_4.Multiline = false; this._txtFields_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_4.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_4.TabStop = true; this._txtFields_4.Visible = true; this._txtFields_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_4.Name = "_txtFields_4"; this._txtFields_5.AutoSize = false; this._txtFields_5.Size = new System.Drawing.Size(151, 19); this._txtFields_5.Location = new System.Drawing.Point(318, 66); this._txtFields_5.TabIndex = 11; this._txtFields_5.AcceptsReturn = true; this._txtFields_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_5.BackColor = System.Drawing.SystemColors.Window; this._txtFields_5.CausesValidation = true; this._txtFields_5.Enabled = true; this._txtFields_5.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_5.HideSelection = true; this._txtFields_5.ReadOnly = false; this._txtFields_5.MaxLength = 0; this._txtFields_5.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_5.Multiline = false; this._txtFields_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_5.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_5.TabStop = true; this._txtFields_5.Visible = true; this._txtFields_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_5.Name = "_txtFields_5"; this._txtFields_7.AutoSize = false; this._txtFields_7.Size = new System.Drawing.Size(151, 19); this._txtFields_7.Location = new System.Drawing.Point(87, 120); this._txtFields_7.TabIndex = 15; this._txtFields_7.AcceptsReturn = true; this._txtFields_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_7.BackColor = System.Drawing.SystemColors.Window; this._txtFields_7.CausesValidation = true; this._txtFields_7.Enabled = true; this._txtFields_7.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_7.HideSelection = true; this._txtFields_7.ReadOnly = false; this._txtFields_7.MaxLength = 0; this._txtFields_7.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_7.Multiline = false; this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_7.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_7.TabStop = true; this._txtFields_7.Visible = true; this._txtFields_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_7.Name = "_txtFields_7"; this._txtFields_8.AutoSize = false; this._txtFields_8.Size = new System.Drawing.Size(151, 19); this._txtFields_8.Location = new System.Drawing.Point(318, 120); this._txtFields_8.TabIndex = 17; this._txtFields_8.AcceptsReturn = true; this._txtFields_8.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_8.BackColor = System.Drawing.SystemColors.Window; this._txtFields_8.CausesValidation = true; this._txtFields_8.Enabled = true; this._txtFields_8.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_8.HideSelection = true; this._txtFields_8.ReadOnly = false; this._txtFields_8.MaxLength = 0; this._txtFields_8.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_8.Multiline = false; this._txtFields_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_8.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_8.TabStop = true; this._txtFields_8.Visible = true; this._txtFields_8.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_8.Name = "_txtFields_8"; this._txtFields_13.AutoSize = false; this._txtFields_13.Size = new System.Drawing.Size(151, 19); this._txtFields_13.Location = new System.Drawing.Point(318, 87); this._txtFields_13.TabIndex = 13; this._txtFields_13.AcceptsReturn = true; this._txtFields_13.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_13.BackColor = System.Drawing.SystemColors.Window; this._txtFields_13.CausesValidation = true; this._txtFields_13.Enabled = true; this._txtFields_13.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_13.HideSelection = true; this._txtFields_13.ReadOnly = false; this._txtFields_13.MaxLength = 0; this._txtFields_13.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_13.Multiline = false; this._txtFields_13.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_13.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_13.TabStop = true; this._txtFields_13.Visible = true; this._txtFields_13.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_13.Name = "_txtFields_13"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(486, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 0; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdFPR.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdFPR.Text = "&Finger Print Registration"; this.cmdFPR.Size = new System.Drawing.Size(73, 29); this.cmdFPR.Location = new System.Drawing.Point(304, 3); this.cmdFPR.TabIndex = 35; this.cmdFPR.TabStop = false; this.cmdFPR.BackColor = System.Drawing.SystemColors.Control; this.cmdFPR.CausesValidation = true; this.cmdFPR.Enabled = true; this.cmdFPR.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdFPR.Cursor = System.Windows.Forms.Cursors.Default; this.cmdFPR.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdFPR.Name = "cmdFPR"; this.cmdPOSsecurity.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdPOSsecurity.Text = "&Point Of Sale Permissions"; this.cmdPOSsecurity.Size = new System.Drawing.Size(73, 29); this.cmdPOSsecurity.Location = new System.Drawing.Point(207, 3); this.cmdPOSsecurity.TabIndex = 2; this.cmdPOSsecurity.TabStop = false; this.cmdPOSsecurity.BackColor = System.Drawing.SystemColors.Control; this.cmdPOSsecurity.CausesValidation = true; this.cmdPOSsecurity.Enabled = true; this.cmdPOSsecurity.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPOSsecurity.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPOSsecurity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPOSsecurity.Name = "cmdPOSsecurity"; this.cmdBOsecurity.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdBOsecurity.Text = "&Back Office Permissions"; this.cmdBOsecurity.Size = new System.Drawing.Size(73, 29); this.cmdBOsecurity.Location = new System.Drawing.Point(104, 3); this.cmdBOsecurity.TabIndex = 30; this.cmdBOsecurity.TabStop = false; this.cmdBOsecurity.BackColor = System.Drawing.SystemColors.Control; this.cmdBOsecurity.CausesValidation = true; this.cmdBOsecurity.Enabled = true; this.cmdBOsecurity.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdBOsecurity.Cursor = System.Windows.Forms.Cursors.Default; this.cmdBOsecurity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdBOsecurity.Name = "cmdBOsecurity"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 3; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(405, 3); this.cmdClose.TabIndex = 1; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Text = "Employee No. "; this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_1.Size = new System.Drawing.Size(77, 14); this._lbl_1.Location = new System.Drawing.Point(400, 44); this._lbl_1.TabIndex = 38; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this.Line1.X1 = 16; this.Line1.X2 = 468; this.Line1.Y1 = 110; this.Line1.Y2 = 110; this.Line1.BorderColor = System.Drawing.SystemColors.WindowText; this.Line1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this.Line1.BorderWidth = 1; this.Line1.Visible = true; this.Line1.Name = "Line1"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(472, 171); this._Shape1_0.Location = new System.Drawing.Point(6, 166); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Text = "&2. Security"; this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_0.Size = new System.Drawing.Size(64, 13); this._lbl_0.Location = new System.Drawing.Point(8, 150); this._lbl_0.TabIndex = 18; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = true; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_2.BackColor = System.Drawing.Color.Transparent; this._lblLabels_2.Text = "First Name:"; this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_2.Size = new System.Drawing.Size(55, 13); this._lblLabels_2.Location = new System.Drawing.Point(27, 66); this._lblLabels_2.TabIndex = 5; this._lblLabels_2.Enabled = true; this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_2.UseMnemonic = true; this._lblLabels_2.Visible = true; this._lblLabels_2.AutoSize = true; this._lblLabels_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_2.Name = "_lblLabels_2"; this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_4.BackColor = System.Drawing.Color.Transparent; this._lblLabels_4.Text = "Surname:"; this._lblLabels_4.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_4.Size = new System.Drawing.Size(46, 13); this._lblLabels_4.Location = new System.Drawing.Point(33, 87); this._lblLabels_4.TabIndex = 8; this._lblLabels_4.Enabled = true; this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_4.UseMnemonic = true; this._lblLabels_4.Visible = true; this._lblLabels_4.AutoSize = true; this._lblLabels_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_4.Name = "_lblLabels_4"; this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_5.BackColor = System.Drawing.Color.Transparent; this._lblLabels_5.Text = "Position:"; this._lblLabels_5.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_5.Size = new System.Drawing.Size(40, 13); this._lblLabels_5.Location = new System.Drawing.Point(258, 66); this._lblLabels_5.TabIndex = 10; this._lblLabels_5.Enabled = true; this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_5.UseMnemonic = true; this._lblLabels_5.Visible = true; this._lblLabels_5.AutoSize = true; this._lblLabels_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_5.Name = "_lblLabels_5"; this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_7.BackColor = System.Drawing.Color.Transparent; this._lblLabels_7.Text = "Cell:"; this._lblLabels_7.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_7.Size = new System.Drawing.Size(22, 13); this._lblLabels_7.Location = new System.Drawing.Point(60, 120); this._lblLabels_7.TabIndex = 14; this._lblLabels_7.Enabled = true; this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_7.UseMnemonic = true; this._lblLabels_7.Visible = true; this._lblLabels_7.AutoSize = true; this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_7.Name = "_lblLabels_7"; this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_8.BackColor = System.Drawing.Color.Transparent; this._lblLabels_8.Text = "Telephone:"; this._lblLabels_8.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_8.Size = new System.Drawing.Size(55, 13); this._lblLabels_8.Location = new System.Drawing.Point(243, 120); this._lblLabels_8.TabIndex = 16; this._lblLabels_8.Enabled = true; this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_8.UseMnemonic = true; this._lblLabels_8.Visible = true; this._lblLabels_8.AutoSize = true; this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_8.Name = "_lblLabels_8"; this._lblLabels_13.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_13.BackColor = System.Drawing.Color.Transparent; this._lblLabels_13.Text = "ID Number:"; this._lblLabels_13.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_13.Size = new System.Drawing.Size(55, 13); this._lblLabels_13.Location = new System.Drawing.Point(243, 87); this._lblLabels_13.TabIndex = 12; this._lblLabels_13.Enabled = true; this._lblLabels_13.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_13.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_13.UseMnemonic = true; this._lblLabels_13.Visible = true; this._lblLabels_13.AutoSize = true; this._lblLabels_13.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_13.Name = "_lblLabels_13"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&1. General"; this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_5.Size = new System.Drawing.Size(61, 13); this._lbl_5.Location = new System.Drawing.Point(8, 44); this._lbl_5.TabIndex = 4; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(472, 85); this._Shape1_2.Location = new System.Drawing.Point(6, 60); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this.Controls.Add(chkController); this.Controls.Add(Frame1); this.Controls.Add(cmdBuild); this.Controls.Add(_chkFields_2); this.Controls.Add(_frmSecurity_1); this.Controls.Add(_frmSecurity_0); this.Controls.Add(_txtFields_1); this.Controls.Add(_txtFields_2); this.Controls.Add(_txtFields_4); this.Controls.Add(_txtFields_5); this.Controls.Add(_txtFields_7); this.Controls.Add(_txtFields_8); this.Controls.Add(_txtFields_13); this.Controls.Add(picButtons); this.Controls.Add(_lbl_1); this.ShapeContainer1.Shapes.Add(Line1); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(_lbl_0); this.Controls.Add(_lblLabels_2); this.Controls.Add(_lblLabels_4); this.Controls.Add(_lblLabels_5); this.Controls.Add(_lblLabels_7); this.Controls.Add(_lblLabels_8); this.Controls.Add(_lblLabels_13); this.Controls.Add(_lbl_5); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(ShapeContainer1); this.Frame1.Controls.Add(txtComm); this.Frame1.Controls.Add(Label2); this._frmSecurity_1.Controls.Add(cmbDraw); this._frmSecurity_1.Controls.Add(_txtFields_12); this._frmSecurity_1.Controls.Add(_lblLabels_0); this._frmSecurity_1.Controls.Add(Label1); this._frmSecurity_1.Controls.Add(_lblLabels_12); this._frmSecurity_0.Controls.Add(_txtFields_11); this._frmSecurity_0.Controls.Add(_txtFields_10); this._frmSecurity_0.Controls.Add(_lblLabels_11); this._frmSecurity_0.Controls.Add(_lblLabels_10); this.picButtons.Controls.Add(cmdFPR); this.picButtons.Controls.Add(cmdPOSsecurity); this.picButtons.Controls.Add(cmdBOsecurity); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.chkFields.SetIndex(_chkFields_2, CType(2, Short)) //Me.frmSecurity.SetIndex(_frmSecurity_1, CType(1, Short)) //Me.frmSecurity.SetIndex(_frmSecurity_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short)) //Me.lblLabels.SetIndex(_lblLabels_12, CType(12, Short)) //Me.lblLabels.SetIndex(_lblLabels_11, CType(11, Short)) //Me.lblLabels.SetIndex(_lblLabels_10, CType(10, Short)) //Me.lblLabels.SetIndex(_lblLabels_2, CType(2, Short)) //Me.lblLabels.SetIndex(_lblLabels_4, CType(4, Short)) //M() ''e.lblLabels.SetIndex(_lblLabels_5, CType(5, Short)) //M() 'e.lblLabels.SetIndex(_lblLabels_7, CType(7, Short)) //M() 'e.lblLabels.SetIndex(_lblLabels_8, CType(8, Short)) //Me.lblLabels.SetIndex(_lblLabels_13, CType(13, Short)) //Me.txtFields.SetIndex(_txtFields_12, CType(12, Short)) //Me.txtFields.SetIndex(_txtFields_11, CType(11, Short)) //Me.txtFields.SetIndex(_txtFields_10, CType(10, Short)) //Me.txtFields.SetIndex(_txtFields_1, CType(1, Short)) //Me.txtFields.SetIndex(_txtFields_2, CType(2, Short)) //Me.txtFields.SetIndex(_txtFields_4, CType(4, Short)) //Me.txtFields.SetIndex(_txtFields_5, CType(5, Short)) //Me.txtFields.SetIndex(_txtFields_7, CType(7, Short)) //Me.txtFields.SetIndex(_txtFields_8, CType(8, Short)) //Me.txtFields.SetIndex(_txtFields_13, CType(13, Short)) this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.frmSecurity, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit() this.Frame1.ResumeLayout(false); this._frmSecurity_1.ResumeLayout(false); this._frmSecurity_0.ResumeLayout(false); this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Shape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.cbmChangeType = new System.Windows.Forms.ComboBox(); this._txtFloat_3 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.Command1 = new System.Windows.Forms.Button(); this.chkDisable = new System.Windows.Forms.CheckBox(); this._txtFloat_2 = new System.Windows.Forms.TextBox(); this._txtFloat_0 = new System.Windows.Forms.TextBox(); this._txtFloat_1 = new System.Windows.Forms.TextBox(); this.chkKey = new System.Windows.Forms.CheckBox(); this._txtKey_0 = new System.Windows.Forms.TextBox(); this._txtKey_1 = new System.Windows.Forms.TextBox(); this.Label8 = new System.Windows.Forms.Label(); this.Label9 = new System.Windows.Forms.Label(); this.Label1 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.Label3 = new System.Windows.Forms.Label(); this.Label4 = new System.Windows.Forms.Label(); this.Label5 = new System.Windows.Forms.Label(); this.Label6 = new System.Windows.Forms.Label(); this.Label7 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Shape2, this.Shape1 }); this.ShapeContainer1.Size = new System.Drawing.Size(343, 231); this.ShapeContainer1.TabIndex = 20; this.ShapeContainer1.TabStop = false; // //Shape2 // this.Shape2.BackColor = System.Drawing.SystemColors.Window; this.Shape2.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape2.FillColor = System.Drawing.Color.Black; this.Shape2.Location = new System.Drawing.Point(4, 160); this.Shape2.Name = "Shape2"; this.Shape2.Size = new System.Drawing.Size(337, 67); // //Shape1 // this.Shape1.BackColor = System.Drawing.SystemColors.Window; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.Location = new System.Drawing.Point(4, 66); this.Shape1.Name = "Shape1"; this.Shape1.Size = new System.Drawing.Size(337, 75); // //cbmChangeType // this.cbmChangeType.BackColor = System.Drawing.SystemColors.Window; this.cbmChangeType.Cursor = System.Windows.Forms.Cursors.Default; this.cbmChangeType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cbmChangeType.ForeColor = System.Drawing.SystemColors.WindowText; this.cbmChangeType.Items.AddRange(new object[] { "Coin", "Note" }); this.cbmChangeType.Location = new System.Drawing.Point(256, 92); this.cbmChangeType.Name = "cbmChangeType"; this.cbmChangeType.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cbmChangeType.Size = new System.Drawing.Size(79, 21); this.cbmChangeType.TabIndex = 18; // //_txtFloat_3 // this._txtFloat_3.AcceptsReturn = true; this._txtFloat_3.BackColor = System.Drawing.SystemColors.Window; this._txtFloat_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFloat_3.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFloat_3.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFloat_3.Location = new System.Drawing.Point(70, 116); this._txtFloat_3.MaxLength = 0; this._txtFloat_3.Name = "_txtFloat_3"; this._txtFloat_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFloat_3.Size = new System.Drawing.Size(75, 20); this._txtFloat_3.TabIndex = 16; this._txtFloat_3.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.Command1); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(343, 38); this.picButtons.TabIndex = 14; // //Command1 // this.Command1.BackColor = System.Drawing.SystemColors.Control; this.Command1.Cursor = System.Windows.Forms.Cursors.Default; this.Command1.ForeColor = System.Drawing.SystemColors.ControlText; this.Command1.Location = new System.Drawing.Point(244, 4); this.Command1.Name = "Command1"; this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command1.Size = new System.Drawing.Size(93, 25); this.Command1.TabIndex = 15; this.Command1.Text = "E&xit"; this.Command1.UseVisualStyleBackColor = false; // //chkDisable // this.chkDisable.BackColor = System.Drawing.SystemColors.Control; this.chkDisable.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkDisable.Cursor = System.Windows.Forms.Cursors.Default; this.chkDisable.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkDisable.ForeColor = System.Drawing.SystemColors.WindowText; this.chkDisable.Location = new System.Drawing.Point(218, 120); this.chkDisable.Name = "chkDisable"; this.chkDisable.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkDisable.Size = new System.Drawing.Size(117, 16); this.chkDisable.TabIndex = 6; this.chkDisable.Text = "Float Disabled"; this.chkDisable.UseVisualStyleBackColor = false; // //_txtFloat_2 // this._txtFloat_2.AcceptsReturn = true; this._txtFloat_2.BackColor = System.Drawing.SystemColors.Window; this._txtFloat_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFloat_2.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFloat_2.Enabled = false; this._txtFloat_2.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFloat_2.Location = new System.Drawing.Point(70, 94); this._txtFloat_2.MaxLength = 0; this._txtFloat_2.Name = "_txtFloat_2"; this._txtFloat_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFloat_2.Size = new System.Drawing.Size(49, 20); this._txtFloat_2.TabIndex = 5; // //_txtFloat_0 // this._txtFloat_0.AcceptsReturn = true; this._txtFloat_0.BackColor = System.Drawing.SystemColors.Window; this._txtFloat_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFloat_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFloat_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFloat_0.Location = new System.Drawing.Point(70, 72); this._txtFloat_0.MaxLength = 0; this._txtFloat_0.Name = "_txtFloat_0"; this._txtFloat_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFloat_0.Size = new System.Drawing.Size(75, 20); this._txtFloat_0.TabIndex = 0; // //_txtFloat_1 // this._txtFloat_1.AcceptsReturn = true; this._txtFloat_1.BackColor = System.Drawing.SystemColors.Window; this._txtFloat_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFloat_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFloat_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFloat_1.Location = new System.Drawing.Point(288, 70); this._txtFloat_1.MaxLength = 0; this._txtFloat_1.Name = "_txtFloat_1"; this._txtFloat_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFloat_1.Size = new System.Drawing.Size(47, 20); this._txtFloat_1.TabIndex = 1; this._txtFloat_1.Text = "0"; this._txtFloat_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //chkKey // this.chkKey.BackColor = System.Drawing.SystemColors.Control; this.chkKey.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkKey.Cursor = System.Windows.Forms.Cursors.Default; this.chkKey.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkKey.ForeColor = System.Drawing.SystemColors.WindowText; this.chkKey.Location = new System.Drawing.Point(8, 165); this.chkKey.Name = "chkKey"; this.chkKey.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkKey.Size = new System.Drawing.Size(329, 19); this.chkKey.TabIndex = 4; this.chkKey.Text = "Float set as a Fast Preset Tender on POS"; this.chkKey.UseVisualStyleBackColor = false; // //_txtKey_0 // this._txtKey_0.AcceptsReturn = true; this._txtKey_0.BackColor = System.Drawing.SystemColors.Window; this._txtKey_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtKey_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtKey_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtKey_0.Location = new System.Drawing.Point(252, 184); this._txtKey_0.MaxLength = 0; this._txtKey_0.Name = "_txtKey_0"; this._txtKey_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtKey_0.Size = new System.Drawing.Size(85, 20); this._txtKey_0.TabIndex = 3; this._txtKey_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //_txtKey_1 // this._txtKey_1.AcceptsReturn = true; this._txtKey_1.BackColor = System.Drawing.SystemColors.Window; this._txtKey_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtKey_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtKey_1.Enabled = false; this._txtKey_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtKey_1.Location = new System.Drawing.Point(252, 204); this._txtKey_1.MaxLength = 0; this._txtKey_1.Name = "_txtKey_1"; this._txtKey_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtKey_1.Size = new System.Drawing.Size(85, 20); this._txtKey_1.TabIndex = 2; this._txtKey_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //Label8 // this.Label8.BackColor = System.Drawing.Color.Transparent; this.Label8.Cursor = System.Windows.Forms.Cursors.Default; this.Label8.ForeColor = System.Drawing.SystemColors.ControlText; this.Label8.Location = new System.Drawing.Point(160, 96); this.Label8.Name = "Label8"; this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label8.Size = new System.Drawing.Size(91, 15); this.Label8.TabIndex = 19; this.Label8.Text = "Change Float Type"; // //Label9 // this.Label9.BackColor = System.Drawing.Color.Transparent; this.Label9.Cursor = System.Windows.Forms.Cursors.Default; this.Label9.ForeColor = System.Drawing.SystemColors.ControlText; this.Label9.Location = new System.Drawing.Point(8, 118); this.Label9.Name = "Label9"; this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label9.Size = new System.Drawing.Size(69, 15); this.Label9.TabIndex = 17; this.Label9.Text = "Float Value"; // //Label1 // this.Label1.BackColor = System.Drawing.Color.Transparent; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Location = new System.Drawing.Point(6, 50); this.Label1.Name = "Label1"; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.Size = new System.Drawing.Size(95, 15); this.Label1.TabIndex = 13; this.Label1.Text = "1. Float Details"; // //Label2 // this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.ForeColor = System.Drawing.SystemColors.ControlText; this.Label2.Location = new System.Drawing.Point(4, 144); this.Label2.Name = "Label2"; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.Size = new System.Drawing.Size(101, 15); this.Label2.TabIndex = 12; this.Label2.Text = "2. Preset Details"; // //Label3 // this.Label3.BackColor = System.Drawing.Color.Transparent; this.Label3.Cursor = System.Windows.Forms.Cursors.Default; this.Label3.ForeColor = System.Drawing.SystemColors.ControlText; this.Label3.Location = new System.Drawing.Point(8, 72); this.Label3.Name = "Label3"; this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label3.Size = new System.Drawing.Size(77, 15); this.Label3.TabIndex = 11; this.Label3.Text = "Float Name"; // //Label4 // this.Label4.BackColor = System.Drawing.Color.Transparent; this.Label4.Cursor = System.Windows.Forms.Cursors.Default; this.Label4.ForeColor = System.Drawing.SystemColors.ControlText; this.Label4.Location = new System.Drawing.Point(160, 74); this.Label4.Name = "Label4"; this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label4.Size = new System.Drawing.Size(67, 15); this.Label4.TabIndex = 10; this.Label4.Text = "Float Pack"; // //Label5 // this.Label5.BackColor = System.Drawing.Color.Transparent; this.Label5.Cursor = System.Windows.Forms.Cursors.Default; this.Label5.ForeColor = System.Drawing.SystemColors.ControlText; this.Label5.Location = new System.Drawing.Point(8, 96); this.Label5.Name = "Label5"; this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label5.Size = new System.Drawing.Size(69, 15); this.Label5.TabIndex = 9; this.Label5.Text = "Float Type"; // //Label6 // this.Label6.BackColor = System.Drawing.Color.Transparent; this.Label6.Cursor = System.Windows.Forms.Cursors.Default; this.Label6.ForeColor = System.Drawing.SystemColors.ControlText; this.Label6.Location = new System.Drawing.Point(160, 188); this.Label6.Name = "Label6"; this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label6.Size = new System.Drawing.Size(93, 13); this.Label6.TabIndex = 8; this.Label6.Text = "Keyboard Name:"; // //Label7 // this.Label7.BackColor = System.Drawing.Color.Transparent; this.Label7.Cursor = System.Windows.Forms.Cursors.Default; this.Label7.ForeColor = System.Drawing.SystemColors.ControlText; this.Label7.Location = new System.Drawing.Point(160, 206); this.Label7.Name = "Label7"; this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label7.Size = new System.Drawing.Size(89, 15); this.Label7.TabIndex = 7; this.Label7.Text = "Keyboard Key(s)"; // //frmFloatRepre // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(343, 231); this.ControlBox = false; this.Controls.Add(this.cbmChangeType); this.Controls.Add(this._txtFloat_3); this.Controls.Add(this.picButtons); this.Controls.Add(this.chkDisable); this.Controls.Add(this._txtFloat_2); this.Controls.Add(this._txtFloat_0); this.Controls.Add(this._txtFloat_1); this.Controls.Add(this.chkKey); this.Controls.Add(this._txtKey_0); this.Controls.Add(this._txtKey_1); this.Controls.Add(this.Label8); this.Controls.Add(this.Label9); this.Controls.Add(this.Label1); this.Controls.Add(this.Label2); this.Controls.Add(this.Label3); this.Controls.Add(this.Label4); this.Controls.Add(this.Label5); this.Controls.Add(this.Label6); this.Controls.Add(this.Label7); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.Location = new System.Drawing.Point(4, 23); this.Name = "frmFloatRepre"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Denomination Details"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Aemplye_details_form)); this.panel1 = new System.Windows.Forms.Panel(); this.panel6 = new System.Windows.Forms.Panel(); this.cmddelete = new System.Windows.Forms.Label(); this.panel15 = new System.Windows.Forms.Panel(); this.cmdupdate = new System.Windows.Forms.Label(); this.panel14 = new System.Windows.Forms.Panel(); this.cmdview = new System.Windows.Forms.Label(); this.panel5 = new System.Windows.Forms.Panel(); this.panel4 = new System.Windows.Forms.Panel(); this.txtdateTime1 = new System.Windows.Forms.TextBox(); this.label22 = new System.Windows.Forms.Label(); this.txtusername = new System.Windows.Forms.TextBox(); this.txtphone = new System.Windows.Forms.TextBox(); this.txtemail = new System.Windows.Forms.TextBox(); this.txtpassword = new System.Windows.Forms.TextBox(); this.txtcomBox2 = new System.Windows.Forms.TextBox(); this.txtcomBox1 = new System.Windows.Forms.TextBox(); this.txtaddress = new System.Windows.Forms.TextBox(); this.txtdateTime2 = new System.Windows.Forms.TextBox(); this.txtcode = new System.Windows.Forms.TextBox(); this.txtname = new System.Windows.Forms.TextBox(); this.txtcomBox3 = new System.Windows.Forms.TextBox(); this.txtid = new System.Windows.Forms.TextBox(); this.pictureBox4 = new System.Windows.Forms.PictureBox(); this.label20 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.label21 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.label18 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label5 = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.label2 = new System.Windows.Forms.Label(); this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Employee_dataGridView1 = new System.Windows.Forms.DataGridView(); this.panel3 = new System.Windows.Forms.Panel(); this.label17 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.pictureBox3 = new System.Windows.Forms.PictureBox(); this.pictureBox2 = new System.Windows.Forms.PictureBox(); this.icon1 = new System.Windows.Forms.PictureBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.panel2 = new System.Windows.Forms.Panel(); this.label1 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.panel1.SuspendLayout(); this.panel6.SuspendLayout(); this.panel15.SuspendLayout(); this.panel14.SuspendLayout(); this.panel4.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Employee_dataGridView1)).BeginInit(); this.panel3.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.icon1)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.panel2.SuspendLayout(); this.SuspendLayout(); // // panel1 // this.panel1.BackColor = System.Drawing.Color.Black; this.panel1.Controls.Add(this.panel6); this.panel1.Controls.Add(this.panel15); this.panel1.Controls.Add(this.panel14); this.panel1.Controls.Add(this.panel5); this.panel1.Controls.Add(this.panel4); this.panel1.Controls.Add(this.Employee_dataGridView1); this.panel1.Controls.Add(this.panel3); this.panel1.Controls.Add(this.panel2); this.panel1.Controls.Add(this.label9); this.panel1.Dock = System.Windows.Forms.DockStyle.Fill; this.panel1.Location = new System.Drawing.Point(0, 0); this.panel1.Name = "panel1"; this.panel1.Size = new System.Drawing.Size(1314, 693); this.panel1.TabIndex = 0; // // panel6 // this.panel6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.panel6.Controls.Add(this.cmddelete); this.panel6.Location = new System.Drawing.Point(1194, 633); this.panel6.Name = "panel6"; this.panel6.Size = new System.Drawing.Size(108, 33); this.panel6.TabIndex = 30; this.panel6.Paint += new System.Windows.Forms.PaintEventHandler(this.panel6_Paint); // // cmddelete // this.cmddelete.AutoSize = true; this.cmddelete.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cmddelete.ForeColor = System.Drawing.SystemColors.Control; this.cmddelete.Location = new System.Drawing.Point(20, 5); this.cmddelete.Name = "cmddelete"; this.cmddelete.Size = new System.Drawing.Size(65, 25); this.cmddelete.TabIndex = 0; this.cmddelete.Text = "Delete"; this.cmddelete.Click += new System.EventHandler(this.cmddelete_Click); // // panel15 // this.panel15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.panel15.Controls.Add(this.cmdupdate); this.panel15.Location = new System.Drawing.Point(1194, 575); this.panel15.Name = "panel15"; this.panel15.Size = new System.Drawing.Size(108, 33); this.panel15.TabIndex = 31; // // cmdupdate // this.cmdupdate.AutoSize = true; this.cmdupdate.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cmdupdate.ForeColor = System.Drawing.SystemColors.Control; this.cmdupdate.Location = new System.Drawing.Point(20, 5); this.cmdupdate.Name = "cmdupdate"; this.cmdupdate.Size = new System.Drawing.Size(71, 25); this.cmdupdate.TabIndex = 0; this.cmdupdate.Text = "Update"; // // panel14 // this.panel14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.panel14.Controls.Add(this.cmdview); this.panel14.Location = new System.Drawing.Point(1194, 516); this.panel14.Name = "panel14"; this.panel14.Size = new System.Drawing.Size(108, 33); this.panel14.TabIndex = 32; this.panel14.Paint += new System.Windows.Forms.PaintEventHandler(this.panel14_Paint); // // cmdview // this.cmdview.AutoSize = true; this.cmdview.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.cmdview.ForeColor = System.Drawing.SystemColors.Control; this.cmdview.Location = new System.Drawing.Point(28, 5); this.cmdview.Name = "cmdview"; this.cmdview.Size = new System.Drawing.Size(50, 25); this.cmdview.TabIndex = 0; this.cmdview.Text = "View"; this.cmdview.Click += new System.EventHandler(this.cmdview_Click); // // panel5 // this.panel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.panel5.Location = new System.Drawing.Point(258, 149); this.panel5.Name = "panel5"; this.panel5.Size = new System.Drawing.Size(1044, 13); this.panel5.TabIndex = 20; // // panel4 // this.panel4.BackColor = System.Drawing.SystemColors.ButtonFace; this.panel4.Controls.Add(this.txtdateTime1); this.panel4.Controls.Add(this.label22); this.panel4.Controls.Add(this.txtusername); this.panel4.Controls.Add(this.txtphone); this.panel4.Controls.Add(this.txtemail); this.panel4.Controls.Add(this.txtpassword); this.panel4.Controls.Add(this.txtcomBox2); this.panel4.Controls.Add(this.txtcomBox1); this.panel4.Controls.Add(this.txtaddress); this.panel4.Controls.Add(this.txtdateTime2); this.panel4.Controls.Add(this.txtcode); this.panel4.Controls.Add(this.txtname); this.panel4.Controls.Add(this.txtcomBox3); this.panel4.Controls.Add(this.txtid); this.panel4.Controls.Add(this.pictureBox4); this.panel4.Controls.Add(this.label20); this.panel4.Controls.Add(this.label19); this.panel4.Controls.Add(this.label4); this.panel4.Controls.Add(this.label10); this.panel4.Controls.Add(this.label21); this.panel4.Controls.Add(this.label16); this.panel4.Controls.Add(this.label18); this.panel4.Controls.Add(this.label11); this.panel4.Controls.Add(this.label8); this.panel4.Controls.Add(this.label7); this.panel4.Controls.Add(this.label6); this.panel4.Controls.Add(this.label5); this.panel4.Controls.Add(this.label3); this.panel4.Controls.Add(this.label2); this.panel4.Controls.Add(this.shapeContainer1); this.panel4.Location = new System.Drawing.Point(258, 149); this.panel4.Name = "panel4"; this.panel4.Size = new System.Drawing.Size(1044, 357); this.panel4.TabIndex = 16; // // txtdateTime1 // this.txtdateTime1.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtdateTime1.Location = new System.Drawing.Point(463, 125); this.txtdateTime1.Name = "txtdateTime1"; this.txtdateTime1.Size = new System.Drawing.Size(194, 33); this.txtdateTime1.TabIndex = 36; // // label22 // this.label22.AutoSize = true; this.label22.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label22.Location = new System.Drawing.Point(334, 127); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(112, 25); this.label22.TabIndex = 22; this.label22.Text = "Date of Birth"; // // txtusername // this.txtusername.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtusername.Location = new System.Drawing.Point(815, 127); this.txtusername.Name = "txtusername"; this.txtusername.Size = new System.Drawing.Size(194, 33); this.txtusername.TabIndex = 36; // // txtphone // this.txtphone.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtphone.Location = new System.Drawing.Point(815, 260); this.txtphone.Name = "txtphone"; this.txtphone.Size = new System.Drawing.Size(194, 33); this.txtphone.TabIndex = 36; // // txtemail // this.txtemail.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtemail.Location = new System.Drawing.Point(815, 215); this.txtemail.Name = "txtemail"; this.txtemail.Size = new System.Drawing.Size(194, 33); this.txtemail.TabIndex = 36; // // txtpassword // this.txtpassword.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtpassword.Location = new System.Drawing.Point(815, 171); this.txtpassword.Name = "txtpassword"; this.txtpassword.Size = new System.Drawing.Size(194, 33); this.txtpassword.TabIndex = 36; // // txtcomBox2 // this.txtcomBox2.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtcomBox2.Location = new System.Drawing.Point(463, 304); this.txtcomBox2.Name = "txtcomBox2"; this.txtcomBox2.Size = new System.Drawing.Size(194, 33); this.txtcomBox2.TabIndex = 36; // // txtcomBox1 // this.txtcomBox1.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtcomBox1.Location = new System.Drawing.Point(463, 257); this.txtcomBox1.Name = "txtcomBox1"; this.txtcomBox1.Size = new System.Drawing.Size(194, 33); this.txtcomBox1.TabIndex = 36; // // txtaddress // this.txtaddress.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtaddress.Location = new System.Drawing.Point(463, 212); this.txtaddress.Name = "txtaddress"; this.txtaddress.Size = new System.Drawing.Size(194, 33); this.txtaddress.TabIndex = 36; // // txtdateTime2 // this.txtdateTime2.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtdateTime2.Location = new System.Drawing.Point(463, 168); this.txtdateTime2.Name = "txtdateTime2"; this.txtdateTime2.Size = new System.Drawing.Size(194, 33); this.txtdateTime2.TabIndex = 36; // // txtcode // this.txtcode.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtcode.Location = new System.Drawing.Point(815, 80); this.txtcode.Name = "txtcode"; this.txtcode.Size = new System.Drawing.Size(194, 33); this.txtcode.TabIndex = 36; // // txtname // this.txtname.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtname.Location = new System.Drawing.Point(463, 80); this.txtname.Name = "txtname"; this.txtname.Size = new System.Drawing.Size(194, 33); this.txtname.TabIndex = 36; // // txtcomBox3 // this.txtcomBox3.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtcomBox3.Location = new System.Drawing.Point(815, 33); this.txtcomBox3.Name = "txtcomBox3"; this.txtcomBox3.Size = new System.Drawing.Size(194, 33); this.txtcomBox3.TabIndex = 36; // // txtid // this.txtid.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.txtid.Location = new System.Drawing.Point(463, 33); this.txtid.Name = "txtid"; this.txtid.Size = new System.Drawing.Size(194, 33); this.txtid.TabIndex = 36; // // pictureBox4 // this.pictureBox4.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox4.Image"))); this.pictureBox4.Location = new System.Drawing.Point(30, 28); this.pictureBox4.Name = "pictureBox4"; this.pictureBox4.Size = new System.Drawing.Size(261, 207); this.pictureBox4.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.pictureBox4.TabIndex = 35; this.pictureBox4.TabStop = false; // // label20 // this.label20.AutoSize = true; this.label20.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label20.Location = new System.Drawing.Point(696, 130); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(95, 25); this.label20.TabIndex = 32; this.label20.Text = "UserName"; // // label19 // this.label19.AutoSize = true; this.label19.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label19.Location = new System.Drawing.Point(706, 174); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(85, 25); this.label19.TabIndex = 33; this.label19.Text = "Password"; // // label4 // this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.Location = new System.Drawing.Point(699, 263); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(92, 25); this.label4.TabIndex = 34; this.label4.Text = "Phone No"; // // label10 // this.label10.AutoSize = true; this.label10.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label10.Location = new System.Drawing.Point(684, 33); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(107, 25); this.label10.TabIndex = 31; this.label10.Text = "Designation"; // // label21 // this.label21.AutoSize = true; this.label21.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label21.Location = new System.Drawing.Point(735, 83); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(56, 25); this.label21.TabIndex = 29; this.label21.Text = "Code"; // // label16 // this.label16.AutoSize = true; this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label16.Location = new System.Drawing.Point(817, 448); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(79, 20); this.label16.TabIndex = 25; this.label16.Text = "Phone No"; // // label18 // this.label18.AutoSize = true; this.label18.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label18.Location = new System.Drawing.Point(659, 218); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(132, 25); this.label18.TabIndex = 21; this.label18.Text = "E-mail Address"; // // label11 // this.label11.AutoSize = true; this.label11.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label11.Location = new System.Drawing.Point(315, 171); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(131, 25); this.label11.TabIndex = 22; this.label11.Text = "Date of Joining"; // // label8 // this.label8.AutoSize = true; this.label8.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.Location = new System.Drawing.Point(385, 307); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(52, 25); this.label8.TabIndex = 27; this.label8.Text = "State"; // // label7 // this.label7.AutoSize = true; this.label7.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.Location = new System.Drawing.Point(394, 260); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(43, 25); this.label7.TabIndex = 24; this.label7.Text = "City"; // // label6 // this.label6.AutoSize = true; this.label6.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label6.Location = new System.Drawing.Point(370, 215); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(76, 25); this.label6.TabIndex = 20; this.label6.Text = "Address"; // // label5 // this.label5.AutoSize = true; this.label5.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label5.Location = new System.Drawing.Point(244, 448); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(47, 20); this.label5.TabIndex = 19; this.label5.Text = "Code"; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(304, 83); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(146, 25); this.label3.TabIndex = 28; this.label3.Text = "Employee Name"; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Segoe UI Light", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(338, 33); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(112, 25); this.label2.TabIndex = 18; this.label2.Text = "Customer ID"; // // shapeContainer1 // this.shapeContainer1.Location = new System.Drawing.Point(0, 0); this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.shapeContainer1.Name = "shapeContainer1"; this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.rectangleShape1 }); this.shapeContainer1.Size = new System.Drawing.Size(1044, 357); this.shapeContainer1.TabIndex = 37; this.shapeContainer1.TabStop = false; // // rectangleShape1 // this.rectangleShape1.BackColor = System.Drawing.Color.DarkRed; this.rectangleShape1.BorderColor = System.Drawing.Color.Red; this.rectangleShape1.Location = new System.Drawing.Point(25, 24); this.rectangleShape1.Name = "rectangleShape1"; this.rectangleShape1.Size = new System.Drawing.Size(269, 213); // // Employee_dataGridView1 // this.Employee_dataGridView1.BackgroundColor = System.Drawing.Color.White; this.Employee_dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.Employee_dataGridView1.Location = new System.Drawing.Point(258, 516); this.Employee_dataGridView1.Name = "Employee_dataGridView1"; this.Employee_dataGridView1.Size = new System.Drawing.Size(930, 150); this.Employee_dataGridView1.TabIndex = 15; this.Employee_dataGridView1.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.Employee_dataGridView1_CellClick); this.Employee_dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick); // // panel3 // this.panel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.panel3.Controls.Add(this.label17); this.panel3.Controls.Add(this.label15); this.panel3.Controls.Add(this.pictureBox3); this.panel3.Controls.Add(this.pictureBox2); this.panel3.Controls.Add(this.icon1); this.panel3.Controls.Add(this.pictureBox1); this.panel3.Dock = System.Windows.Forms.DockStyle.Left; this.panel3.Location = new System.Drawing.Point(0, 56); this.panel3.Name = "panel3"; this.panel3.Size = new System.Drawing.Size(89, 637); this.panel3.TabIndex = 12; // // label17 // this.label17.AutoSize = true; this.label17.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label17.ForeColor = System.Drawing.Color.White; this.label17.Location = new System.Drawing.Point(99, 377); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(68, 20); this.label17.TabIndex = 4; this.label17.Text = "LogOut"; // // label15 // this.label15.AutoSize = true; this.label15.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label15.ForeColor = System.Drawing.Color.White; this.label15.Location = new System.Drawing.Point(99, 209); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(56, 20); this.label15.TabIndex = 4; this.label15.Text = "Home"; this.label15.Click += new System.EventHandler(this.label15_Click); // // pictureBox3 // this.pictureBox3.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox3.Image"))); this.pictureBox3.Location = new System.Drawing.Point(9, 368); this.pictureBox3.Name = "pictureBox3"; this.pictureBox3.Size = new System.Drawing.Size(69, 52); this.pictureBox3.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom; this.pictureBox3.TabIndex = 2; this.pictureBox3.TabStop = false; this.pictureBox3.Click += new System.EventHandler(this.pictureBox3_Click); // // pictureBox2 // this.pictureBox2.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox2.Image"))); this.pictureBox2.Location = new System.Drawing.Point(3, 179); this.pictureBox2.Name = "pictureBox2"; this.pictureBox2.Size = new System.Drawing.Size(83, 69); this.pictureBox2.TabIndex = 2; this.pictureBox2.TabStop = false; this.pictureBox2.Click += new System.EventHandler(this.pictureBox2_Click); // // icon1 // this.icon1.Image = ((System.Drawing.Image)(resources.GetObject("icon1.Image"))); this.icon1.Location = new System.Drawing.Point(3, 41); this.icon1.Name = "icon1"; this.icon1.Size = new System.Drawing.Size(83, 65); this.icon1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; this.icon1.TabIndex = 1; this.icon1.TabStop = false; this.icon1.Click += new System.EventHandler(this.icon1_Click); // // pictureBox1 // this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(3, 549); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(83, 75); this.pictureBox1.TabIndex = 1; this.pictureBox1.TabStop = false; this.pictureBox1.Click += new System.EventHandler(this.pictureBox1_Click); // // panel2 // this.panel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(0)))), ((int)(((byte)(0))))); this.panel2.Controls.Add(this.label1); this.panel2.Dock = System.Windows.Forms.DockStyle.Top; this.panel2.Location = new System.Drawing.Point(0, 0); this.panel2.Name = "panel2"; this.panel2.Size = new System.Drawing.Size(1314, 56); this.panel2.TabIndex = 11; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Adobe Fan Heiti Std B", 27.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(128))); this.label1.ForeColor = System.Drawing.Color.White; this.label1.Location = new System.Drawing.Point(95, 0); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(446, 46); this.label1.TabIndex = 2; this.label1.Text = "HeartLand Home Finance"; // // label9 // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 36F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label9.ForeColor = System.Drawing.Color.Crimson; this.label9.Location = new System.Drawing.Point(549, 71); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(430, 55); this.label9.TabIndex = 18; this.label9.Text = "Employee Register"; // // Aemplye_details_form // this.ClientSize = new System.Drawing.Size(1314, 693); this.Controls.Add(this.panel1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; this.Name = "Aemplye_details_form"; this.WindowState = System.Windows.Forms.FormWindowState.Maximized; this.panel1.ResumeLayout(false); this.panel1.PerformLayout(); this.panel6.ResumeLayout(false); this.panel6.PerformLayout(); this.panel15.ResumeLayout(false); this.panel15.PerformLayout(); this.panel14.ResumeLayout(false); this.panel14.PerformLayout(); this.panel4.ResumeLayout(false); this.panel4.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox4)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Employee_dataGridView1)).EndInit(); this.panel3.ResumeLayout(false); this.panel3.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox3)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox2)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.icon1)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.panel2.ResumeLayout(false); this.panel2.PerformLayout(); this.ResumeLayout(false); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmVegTestGRV)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.lstSupplier = new System.Windows.Forms.ListBox(); this.Picture1 = new System.Windows.Forms.Panel(); this.lblPath = new System.Windows.Forms.Label(); this.lvItems = new System.Windows.Forms.ListView(); this._lbl_0 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.Picture1.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.ControlBox = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.ClientSize = new System.Drawing.Size(622, 444); this.Location = new System.Drawing.Point(3, 3); this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmVegTestGRV"; this.lstSupplier.Size = new System.Drawing.Size(151, 384); this.lstSupplier.Location = new System.Drawing.Point(12, 48); this.lstSupplier.TabIndex = 1; this.lstSupplier.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lstSupplier.BackColor = System.Drawing.SystemColors.Window; this.lstSupplier.CausesValidation = true; this.lstSupplier.Enabled = true; this.lstSupplier.ForeColor = System.Drawing.SystemColors.WindowText; this.lstSupplier.IntegralHeight = true; this.lstSupplier.Cursor = System.Windows.Forms.Cursors.Default; this.lstSupplier.SelectionMode = System.Windows.Forms.SelectionMode.One; this.lstSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lstSupplier.Sorted = false; this.lstSupplier.TabStop = true; this.lstSupplier.Visible = true; this.lstSupplier.MultiColumn = false; this.lstSupplier.Name = "lstSupplier"; this.Picture1.Dock = System.Windows.Forms.DockStyle.Top; this.Picture1.BackColor = System.Drawing.Color.Blue; this.Picture1.Size = new System.Drawing.Size(622, 25); this.Picture1.Location = new System.Drawing.Point(0, 0); this.Picture1.TabIndex = 4; this.Picture1.TabStop = false; this.Picture1.CausesValidation = true; this.Picture1.Enabled = true; this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText; this.Picture1.Cursor = System.Windows.Forms.Cursors.Default; this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Picture1.Visible = true; this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.Picture1.Name = "Picture1"; this.lblPath.BackColor = System.Drawing.Color.Transparent; this.lblPath.Text = "Select Market/GRV to use QTY"; this.lblPath.ForeColor = System.Drawing.Color.White; this.lblPath.Size = new System.Drawing.Size(251, 20); this.lblPath.Location = new System.Drawing.Point(0, 0); this.lblPath.TabIndex = 5; this.lblPath.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblPath.Enabled = true; this.lblPath.Cursor = System.Windows.Forms.Cursors.Default; this.lblPath.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPath.UseMnemonic = true; this.lblPath.Visible = true; this.lblPath.AutoSize = true; this.lblPath.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblPath.Name = "lblPath"; this.lvItems.Size = new System.Drawing.Size(424, 382); this.lvItems.Location = new System.Drawing.Point(183, 48); this.lvItems.TabIndex = 3; this.lvItems.View = System.Windows.Forms.View.Details; this.lvItems.LabelEdit = false; this.lvItems.LabelWrap = true; this.lvItems.HideSelection = true; this.lvItems.ForeColor = System.Drawing.SystemColors.WindowText; this.lvItems.BackColor = System.Drawing.SystemColors.Window; this.lvItems.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lvItems.Name = "lvItems"; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Text = "&1. Select a Supplier"; this._lbl_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lbl_0.Size = new System.Drawing.Size(113, 13); this._lbl_0.Location = new System.Drawing.Point(9, 27); this._lbl_0.TabIndex = 0; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.Enabled = true; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = true; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Text = "&2. Select an Invoice"; this._lbl_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lbl_1.Size = new System.Drawing.Size(116, 13); this._lbl_1.Location = new System.Drawing.Point(180, 27); this._lbl_1.TabIndex = 2; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_1.Enabled = true; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(436, 394); this._Shape1_1.Location = new System.Drawing.Point(177, 42); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(163, 394); this._Shape1_0.Location = new System.Drawing.Point(6, 42); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this.Controls.Add(lstSupplier); this.Controls.Add(Picture1); this.Controls.Add(lvItems); this.Controls.Add(_lbl_0); this.Controls.Add(_lbl_1); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); this.Picture1.Controls.Add(lblPath); //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.Picture1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(OldfrmReportCopySumCriteria)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cboJoinOperator = new System.Windows.Forms.ComboBox(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdCopy = new System.Windows.Forms.Button(); this.cboSet = new System.Windows.Forms.ComboBox(); this.lblJoinOperator = new System.Windows.Forms.Label(); this.Label12 = new System.Windows.Forms.Label(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Label1 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblCopyFrom = new System.Windows.Forms.Label(); this.SuspendLayout(); this.ToolTip1.Active = true; this.Text = "Copy Summarization Criteria"; this.ClientSize = new System.Drawing.Size(689, 198); this.Location = new System.Drawing.Point(5, 29); this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultLocation; this.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable; this.ControlBox = true; this.Enabled = true; this.KeyPreview = false; this.MaximizeBox = true; this.MinimizeBox = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmReportCopySumCriteria"; this.cboJoinOperator.Size = new System.Drawing.Size(67, 27); this.cboJoinOperator.Location = new System.Drawing.Point(373, 67); this.cboJoinOperator.Items.AddRange(new object[] { "And", "Or" }); this.cboJoinOperator.TabIndex = 3; this.cboJoinOperator.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboJoinOperator.BackColor = System.Drawing.SystemColors.Window; this.cboJoinOperator.CausesValidation = true; this.cboJoinOperator.Enabled = true; this.cboJoinOperator.ForeColor = System.Drawing.SystemColors.WindowText; this.cboJoinOperator.IntegralHeight = true; this.cboJoinOperator.Cursor = System.Windows.Forms.Cursors.Default; this.cboJoinOperator.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboJoinOperator.Sorted = false; this.cboJoinOperator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboJoinOperator.TabStop = true; this.cboJoinOperator.Visible = true; this.cboJoinOperator.Name = "cboJoinOperator"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "Cancel"; this.cmdCancel.Size = new System.Drawing.Size(80, 28); this.cmdCancel.Location = new System.Drawing.Point(349, 152); this.cmdCancel.TabIndex = 2; this.cmdCancel.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.TabStop = true; this.cmdCancel.Name = "cmdCancel"; this.cmdCopy.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCopy.Text = "Copy"; this.cmdCopy.Size = new System.Drawing.Size(80, 28); this.cmdCopy.Location = new System.Drawing.Point(259, 152); this.cmdCopy.TabIndex = 1; this.cmdCopy.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCopy.BackColor = System.Drawing.SystemColors.Control; this.cmdCopy.CausesValidation = true; this.cmdCopy.Enabled = true; this.cmdCopy.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCopy.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCopy.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCopy.TabStop = true; this.cmdCopy.Name = "cmdCopy"; this.cboSet.Size = new System.Drawing.Size(67, 27); this.cboSet.Location = new System.Drawing.Point(139, 67); this.cboSet.Items.AddRange(new object[] { "And", "Or" }); this.cboSet.TabIndex = 0; this.cboSet.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboSet.BackColor = System.Drawing.SystemColors.Window; this.cboSet.CausesValidation = true; this.cboSet.Enabled = true; this.cboSet.ForeColor = System.Drawing.SystemColors.WindowText; this.cboSet.IntegralHeight = true; this.cboSet.Cursor = System.Windows.Forms.Cursors.Default; this.cboSet.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboSet.Sorted = false; this.cboSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboSet.TabStop = true; this.cboSet.Visible = true; this.cboSet.Name = "cboSet"; this.lblJoinOperator.TextAlign = System.Drawing.ContentAlignment.TopRight; this.lblJoinOperator.Text = "Join type in this Set:"; this.lblJoinOperator.ForeColor = System.Drawing.Color.Blue; this.lblJoinOperator.Size = new System.Drawing.Size(157, 18); this.lblJoinOperator.Location = new System.Drawing.Point(212, 69); this.lblJoinOperator.TabIndex = 8; this.lblJoinOperator.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.lblJoinOperator.BackColor = System.Drawing.SystemColors.Control; this.lblJoinOperator.Enabled = true; this.lblJoinOperator.Cursor = System.Windows.Forms.Cursors.Default; this.lblJoinOperator.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblJoinOperator.UseMnemonic = true; this.lblJoinOperator.Visible = true; this.lblJoinOperator.AutoSize = false; this.lblJoinOperator.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblJoinOperator.Name = "lblJoinOperator"; this.Label12.TextAlign = System.Drawing.ContentAlignment.TopRight; this.Label12.Text = "Set #:"; this.Label12.ForeColor = System.Drawing.Color.Blue; this.Label12.Size = new System.Drawing.Size(57, 18); this.Label12.Location = new System.Drawing.Point(73, 70); this.Label12.TabIndex = 7; this.Label12.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label12.BackColor = System.Drawing.SystemColors.Control; this.Label12.Enabled = true; this.Label12.Cursor = System.Windows.Forms.Cursors.Default; this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label12.UseMnemonic = true; this.Label12.Visible = true; this.Label12.AutoSize = false; this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label12.Name = "Label12"; this.Shape1.Size = new System.Drawing.Size(599, 57); this.Shape1.Location = new System.Drawing.Point(62, 55); this.Shape1.BackColor = System.Drawing.SystemColors.Window; this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Transparent; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this.Shape1.BorderWidth = 1; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this.Shape1.Visible = true; this.Shape1.Name = "Shape1"; this.Label1.Text = "To:"; this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label1.ForeColor = System.Drawing.Color.Red; this.Label1.Size = new System.Drawing.Size(37, 24); this.Label1.Location = new System.Drawing.Point(12, 64); this.Label1.TabIndex = 6; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.SystemColors.Control; this.Label1.Enabled = true; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = false; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this.Label2.Text = "Copy:"; this.Label2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label2.ForeColor = System.Drawing.Color.Red; this.Label2.Size = new System.Drawing.Size(49, 24); this.Label2.Location = new System.Drawing.Point(7, 5); this.Label2.TabIndex = 5; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.SystemColors.Control; this.Label2.Enabled = true; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.lblCopyFrom.BackColor = System.Drawing.Color.Transparent; this.lblCopyFrom.Text = "This criteria"; this.lblCopyFrom.ForeColor = System.Drawing.Color.Blue; this.lblCopyFrom.Size = new System.Drawing.Size(602, 30); this.lblCopyFrom.Location = new System.Drawing.Point(62, 7); this.lblCopyFrom.TabIndex = 4; this.lblCopyFrom.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.lblCopyFrom.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblCopyFrom.Enabled = true; this.lblCopyFrom.Cursor = System.Windows.Forms.Cursors.Default; this.lblCopyFrom.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblCopyFrom.UseMnemonic = true; this.lblCopyFrom.Visible = true; this.lblCopyFrom.AutoSize = false; this.lblCopyFrom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lblCopyFrom.Name = "lblCopyFrom"; this.Controls.Add(cboJoinOperator); this.Controls.Add(cmdCancel); this.Controls.Add(cmdCopy); this.Controls.Add(cboSet); this.Controls.Add(lblJoinOperator); this.Controls.Add(Label12); this.ShapeContainer1.Shapes.Add(Shape1); this.Controls.Add(Label1); this.Controls.Add(Label2); this.Controls.Add(lblCopyFrom); this.Controls.Add(ShapeContainer1); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPromotion)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._DTFields_3 = new System.Windows.Forms.DateTimePicker(); this._DTFields_2 = new System.Windows.Forms.DateTimePicker(); this._chkFields_2 = new System.Windows.Forms.CheckBox(); this.cmdDelete = new System.Windows.Forms.Button(); this.cmdAdd = new System.Windows.Forms.Button(); this.lvPromotion = new System.Windows.Forms.ListView(); this._chkFields_1 = new System.Windows.Forms.CheckBox(); this._chkFields_0 = new System.Windows.Forms.CheckBox(); this._DTFields_0 = new System.Windows.Forms.DateTimePicker(); this._txtFields_0 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdPrint = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this._DTFields_1 = new System.Windows.Forms.DateTimePicker(); this.Label2 = new System.Windows.Forms.Label(); this.Label1 = new System.Windows.Forms.Label(); this._lblLabels_1 = new System.Windows.Forms.Label(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lblLabels_38 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.DTFields = New AxDTPickerArray(components) //Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; ((System.ComponentModel.ISupportInitialize)this._DTFields_3).BeginInit(); ((System.ComponentModel.ISupportInitialize)this._DTFields_2).BeginInit(); ((System.ComponentModel.ISupportInitialize)this._DTFields_0).BeginInit(); ((System.ComponentModel.ISupportInitialize)this._DTFields_1).BeginInit(); //CType(Me.DTFields, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Promotion Details"; this.ClientSize = new System.Drawing.Size(455, 460); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmPromotion"; //_DTFields_3.OcxState = CType(resources.GetObject("_DTFields_3.OcxState"), System.Windows.Forms.AxHost.State) this._DTFields_3.Size = new System.Drawing.Size(130, 21); this._DTFields_3.Location = new System.Drawing.Point(291, 112); this._DTFields_3.TabIndex = 20; this._DTFields_3.Name = "_DTFields_3"; //_DTFields_2.OcxState = CType(resources.GetObject("_DTFields_2.OcxState"), System.Windows.Forms.AxHost.State) this._DTFields_2.Size = new System.Drawing.Size(130, 21); this._DTFields_2.Location = new System.Drawing.Point(104, 112); this._DTFields_2.TabIndex = 19; this._DTFields_2.Name = "_DTFields_2"; this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_2.Text = "Only for Specific Time"; this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_2.Size = new System.Drawing.Size(151, 17); this._chkFields_2.Location = new System.Drawing.Point(270, 152); this._chkFields_2.TabIndex = 16; this._chkFields_2.CausesValidation = true; this._chkFields_2.Enabled = true; this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_2.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_2.TabStop = true; this._chkFields_2.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_2.Visible = true; this._chkFields_2.Name = "_chkFields_2"; this.cmdDelete.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdDelete.Text = "&Delete"; this.cmdDelete.Size = new System.Drawing.Size(94, 25); this.cmdDelete.Location = new System.Drawing.Point(352, 176); this.cmdDelete.TabIndex = 14; this.cmdDelete.TabStop = false; this.cmdDelete.BackColor = System.Drawing.SystemColors.Control; this.cmdDelete.CausesValidation = true; this.cmdDelete.Enabled = true; this.cmdDelete.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdDelete.Cursor = System.Windows.Forms.Cursors.Default; this.cmdDelete.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdDelete.Name = "cmdDelete"; this.cmdAdd.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdAdd.Text = "&Add"; this.cmdAdd.Size = new System.Drawing.Size(94, 25); this.cmdAdd.Location = new System.Drawing.Point(2, 176); this.cmdAdd.TabIndex = 13; this.cmdAdd.TabStop = false; this.cmdAdd.BackColor = System.Drawing.SystemColors.Control; this.cmdAdd.CausesValidation = true; this.cmdAdd.Enabled = true; this.cmdAdd.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdAdd.Cursor = System.Windows.Forms.Cursors.Default; this.cmdAdd.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdAdd.Name = "cmdAdd"; this.lvPromotion.Size = new System.Drawing.Size(445, 250); this.lvPromotion.Location = new System.Drawing.Point(2, 206); this.lvPromotion.TabIndex = 11; this.lvPromotion.View = System.Windows.Forms.View.Details; this.lvPromotion.LabelWrap = true; this.lvPromotion.HideSelection = false; this.lvPromotion.FullRowSelect = true; this.lvPromotion.GridLines = true; this.lvPromotion.ForeColor = System.Drawing.SystemColors.WindowText; this.lvPromotion.BackColor = System.Drawing.SystemColors.Window; this.lvPromotion.LabelEdit = true; this.lvPromotion.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lvPromotion.Name = "lvPromotion"; this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_1.Text = "Disabled:"; this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_1.Size = new System.Drawing.Size(64, 13); this._chkFields_1.Location = new System.Drawing.Point(54, 138); this._chkFields_1.TabIndex = 7; this._chkFields_1.CausesValidation = true; this._chkFields_1.Enabled = true; this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_1.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_1.TabStop = true; this._chkFields_1.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_1.Visible = true; this._chkFields_1.Name = "_chkFields_1"; this._chkFields_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_0.Text = "Apply Only to POS Channel"; this._chkFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_0.Size = new System.Drawing.Size(151, 13); this._chkFields_0.Location = new System.Drawing.Point(270, 138); this._chkFields_0.TabIndex = 8; this._chkFields_0.CausesValidation = true; this._chkFields_0.Enabled = true; this._chkFields_0.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_0.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_0.TabStop = true; this._chkFields_0.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_0.Visible = true; this._chkFields_0.Name = "_chkFields_0"; //_DTFields_0.OcxState = CType(resources.GetObject("_DTFields_0.OcxState"), System.Windows.Forms.AxHost.State) this._DTFields_0.Size = new System.Drawing.Size(130, 22); this._DTFields_0.Location = new System.Drawing.Point(105, 87); this._DTFields_0.TabIndex = 4; this._DTFields_0.Name = "_DTFields_0"; this._txtFields_0.AutoSize = false; this._txtFields_0.Size = new System.Drawing.Size(315, 19); this._txtFields_0.Location = new System.Drawing.Point(105, 66); this._txtFields_0.TabIndex = 2; this._txtFields_0.AcceptsReturn = true; this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.CausesValidation = true; this._txtFields_0.Enabled = true; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.HideSelection = true; this._txtFields_0.ReadOnly = false; this._txtFields_0.MaxLength = 0; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.Multiline = false; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_0.TabStop = true; this._txtFields_0.Visible = true; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Name = "_txtFields_0"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(455, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 10; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdPrint.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdPrint.Text = "&Print"; this.cmdPrint.Size = new System.Drawing.Size(73, 29); this.cmdPrint.Location = new System.Drawing.Point(192, 3); this.cmdPrint.TabIndex = 15; this.cmdPrint.TabStop = false; this.cmdPrint.BackColor = System.Drawing.SystemColors.Control; this.cmdPrint.CausesValidation = true; this.cmdPrint.Enabled = true; this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPrint.Name = "cmdPrint"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(369, 3); this.cmdClose.TabIndex = 12; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 9; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; //_DTFields_1.OcxState = CType(resources.GetObject("_DTFields_1.OcxState"), System.Windows.Forms.AxHost.State) this._DTFields_1.Size = new System.Drawing.Size(130, 22); this._DTFields_1.Location = new System.Drawing.Point(291, 87); this._DTFields_1.TabIndex = 6; this._DTFields_1.Name = "_DTFields_1"; this.Label2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.Label2.Text = "To Time:"; this.Label2.Size = new System.Drawing.Size(51, 15); this.Label2.Location = new System.Drawing.Point(238, 116); this.Label2.TabIndex = 18; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.Enabled = true; this.Label2.ForeColor = System.Drawing.SystemColors.ControlText; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.Label1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.Label1.Text = "From Time:"; this.Label1.Size = new System.Drawing.Size(57, 17); this.Label1.Location = new System.Drawing.Point(48, 116); this.Label1.TabIndex = 17; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.Enabled = true; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = false; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_1.Text = "End Date:"; this._lblLabels_1.Size = new System.Drawing.Size(48, 13); this._lblLabels_1.Location = new System.Drawing.Point(240, 90); this._lblLabels_1.TabIndex = 5; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Enabled = true; this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.UseMnemonic = true; this._lblLabels_1.Visible = true; this._lblLabels_1.AutoSize = true; this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_1.Name = "_lblLabels_1"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_0.Text = "Start Date:"; this._lblLabels_0.Size = new System.Drawing.Size(51, 13); this._lblLabels_0.Location = new System.Drawing.Point(52, 90); this._lblLabels_0.TabIndex = 3; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Enabled = true; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.UseMnemonic = true; this._lblLabels_0.Visible = true; this._lblLabels_0.AutoSize = true; this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_38.Text = "Promotion Name:"; this._lblLabels_38.Size = new System.Drawing.Size(81, 13); this._lblLabels_38.Location = new System.Drawing.Point(19, 69); this._lblLabels_38.TabIndex = 1; this._lblLabels_38.BackColor = System.Drawing.Color.Transparent; this._lblLabels_38.Enabled = true; this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_38.UseMnemonic = true; this._lblLabels_38.Visible = true; this._lblLabels_38.AutoSize = true; this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_38.Name = "_lblLabels_38"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(415, 112); this._Shape1_2.Location = new System.Drawing.Point(15, 60); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&1. General"; this._lbl_5.Size = new System.Drawing.Size(60, 13); this._lbl_5.Location = new System.Drawing.Point(15, 45); this._lbl_5.TabIndex = 0; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(_DTFields_3); this.Controls.Add(_DTFields_2); this.Controls.Add(_chkFields_2); this.Controls.Add(cmdDelete); this.Controls.Add(cmdAdd); this.Controls.Add(lvPromotion); this.Controls.Add(_chkFields_1); this.Controls.Add(_chkFields_0); this.Controls.Add(_DTFields_0); this.Controls.Add(_txtFields_0); this.Controls.Add(picButtons); this.Controls.Add(_DTFields_1); this.Controls.Add(Label2); this.Controls.Add(Label1); this.Controls.Add(_lblLabels_1); this.Controls.Add(_lblLabels_0); this.Controls.Add(_lblLabels_38); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdPrint); this.picButtons.Controls.Add(cmdClose); this.picButtons.Controls.Add(cmdCancel); //Me.DTFields.SetIndex(_DTFields_3, CType(3, Short)) //Me.DTFields.SetIndex(_DTFields_2, CType(2, Short)) //Me.DTFields.SetIndex(_DTFields_0, CType(0, Short)) //Me.DTFields.SetIndex(_DTFields_1, CType(1, Short)) //Me.chkFields.SetIndex(_chkFields_2, CType(2, Short)) //Me.chkFields.SetIndex(_chkFields_1, CType(1, Short)) //Me.chkFields.SetIndex(_chkFields_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short)) //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short)) //Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short)) //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.DTFields, System.ComponentModel.ISupportInitialize).EndInit() ((System.ComponentModel.ISupportInitialize)this._DTFields_1).EndInit(); ((System.ComponentModel.ISupportInitialize)this._DTFields_0).EndInit(); ((System.ComponentModel.ISupportInitialize)this._DTFields_2).EndInit(); ((System.ComponentModel.ISupportInitialize)this._DTFields_3).EndInit(); this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Shape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); 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._txtFields_4 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdClose = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); 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.Label10 = new System.Windows.Forms.Label(); this.Label9 = new System.Windows.Forms.Label(); this.Label8 = new System.Windows.Forms.Label(); this.Label7 = new System.Windows.Forms.Label(); this.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.Label6 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Shape1, this.Shape2 }); this.ShapeContainer1.Size = new System.Drawing.Size(298, 282); this.ShapeContainer1.TabIndex = 21; this.ShapeContainer1.TabStop = false; // //Shape1 // this.Shape1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.Location = new System.Drawing.Point(6, 236); this.Shape1.Name = "Shape1"; this.Shape1.Size = new System.Drawing.Size(287, 31); // //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(6, 52); this.Shape2.Name = "Shape2"; this.Shape2.Size = new System.Drawing.Size(287, 165); // //_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(228, 240); this._txtFields_7.MaxLength = 0; this._txtFields_7.Name = "_txtFields_7"; this._txtFields_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_7.Size = new System.Drawing.Size(59, 20); this._txtFields_7.TabIndex = 19; this._txtFields_7.Text = "0"; this._txtFields_7.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //_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(76, 192); this._txtFields_6.MaxLength = 0; this._txtFields_6.Name = "_txtFields_6"; this._txtFields_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_6.Size = new System.Drawing.Size(214, 20); this._txtFields_6.TabIndex = 16; // //_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(76, 170); 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(214, 20); this._txtFields_5.TabIndex = 14; // //_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(76, 148); 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(214, 20); this._txtFields_4.TabIndex = 12; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(298, 33); this.picButtons.TabIndex = 9; // //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(216, 2); this.cmdClose.Name = "cmdClose"; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Size = new System.Drawing.Size(73, 23); this.cmdClose.TabIndex = 11; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.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(4, 2); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Size = new System.Drawing.Size(73, 23); this.cmdCancel.TabIndex = 10; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.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(76, 126); 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(214, 20); this._txtFields_3.TabIndex = 4; // //_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(76, 104); 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(214, 20); this._txtFields_2.TabIndex = 3; // //_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(76, 82); 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(214, 20); this._txtFields_1.TabIndex = 2; // //_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(76, 60); 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(214, 20); this._txtFields_0.TabIndex = 1; // //Label10 // this.Label10.AutoSize = true; this.Label10.BackColor = System.Drawing.Color.Transparent; this.Label10.Cursor = System.Windows.Forms.Cursors.Default; this.Label10.ForeColor = System.Drawing.SystemColors.ControlText; this.Label10.Location = new System.Drawing.Point(138, 242); this.Label10.Name = "Label10"; this.Label10.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label10.Size = new System.Drawing.Size(94, 13); this.Label10.TabIndex = 20; this.Label10.Text = "Company Number:"; this.Label10.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label9 // this.Label9.BackColor = System.Drawing.Color.Transparent; this.Label9.Cursor = System.Windows.Forms.Cursors.Default; this.Label9.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Label9.ForeColor = System.Drawing.SystemColors.ControlText; this.Label9.Location = new System.Drawing.Point(10, 220); this.Label9.Name = "Label9"; this.Label9.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label9.Size = new System.Drawing.Size(121, 15); this.Label9.TabIndex = 18; this.Label9.Text = "2. Company Number"; // //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(10, 194); this.Label8.Name = "Label8"; this.Label8.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label8.Size = new System.Drawing.Size(63, 17); this.Label8.TabIndex = 17; this.Label8.Text = "Email No 7:"; this.Label8.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label7 // this.Label7.BackColor = System.Drawing.Color.Transparent; this.Label7.Cursor = System.Windows.Forms.Cursors.Default; this.Label7.ForeColor = System.Drawing.SystemColors.ControlText; this.Label7.Location = new System.Drawing.Point(10, 172); this.Label7.Name = "Label7"; this.Label7.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label7.Size = new System.Drawing.Size(63, 17); this.Label7.TabIndex = 15; this.Label7.Text = "Email No 6:"; this.Label7.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label5 // this.Label5.BackColor = System.Drawing.Color.Transparent; this.Label5.Cursor = System.Windows.Forms.Cursors.Default; this.Label5.ForeColor = System.Drawing.SystemColors.ControlText; this.Label5.Location = new System.Drawing.Point(10, 150); this.Label5.Name = "Label5"; this.Label5.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label5.Size = new System.Drawing.Size(63, 17); this.Label5.TabIndex = 13; this.Label5.Text = "Email No 5:"; this.Label5.TextAlign = System.Drawing.ContentAlignment.TopRight; // //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(10, 130); this.Label4.Name = "Label4"; this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label4.Size = new System.Drawing.Size(63, 17); this.Label4.TabIndex = 8; this.Label4.Text = "Email No 4:"; 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(10, 108); this.Label3.Name = "Label3"; this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label3.Size = new System.Drawing.Size(63, 17); this.Label3.TabIndex = 7; this.Label3.Text = "Email No 3:"; this.Label3.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label2 // this.Label2.AutoSize = true; 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(19, 84); this.Label2.Name = "Label2"; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.Size = new System.Drawing.Size(61, 13); this.Label2.TabIndex = 6; this.Label2.Text = "Email No 2:"; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label1 // this.Label1.AutoSize = true; 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(19, 64); this.Label1.Name = "Label1"; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.Size = new System.Drawing.Size(61, 13); this.Label1.TabIndex = 5; this.Label1.Text = "Email No 1:"; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label6 // this.Label6.BackColor = System.Drawing.Color.Transparent; this.Label6.Cursor = System.Windows.Forms.Cursors.Default; this.Label6.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Label6.ForeColor = System.Drawing.SystemColors.ControlText; this.Label6.Location = new System.Drawing.Point(8, 36); this.Label6.Name = "Label6"; this.Label6.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label6.Size = new System.Drawing.Size(161, 15); this.Label6.TabIndex = 0; this.Label6.Text = "1. Email For Remote Office"; // //frmCompanyEmails // 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(298, 282); this.ControlBox = false; this.Controls.Add(this._txtFields_7); this.Controls.Add(this._txtFields_6); this.Controls.Add(this._txtFields_5); this.Controls.Add(this._txtFields_4); this.Controls.Add(this.picButtons); 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.Label10); this.Controls.Add(this.Label9); this.Controls.Add(this.Label8); this.Controls.Add(this.Label7); 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.Label6); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.KeyPreview = true; this.Location = new System.Drawing.Point(4, 23); this.Name = "frmCompanyEmails"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Edit Store Emails"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.EnterPatiendId = new System.Windows.Forms.TextBox(); this.EnterPatientFirstName = new System.Windows.Forms.TextBox(); this.EnterpatientLastName = new System.Windows.Forms.TextBox(); this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Wrist = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.rectangleShape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.lineShape2 = new Microsoft.VisualBasic.PowerPacks.LineShape(); this.lineShape1 = new Microsoft.VisualBasic.PowerPacks.LineShape(); this.label1 = new System.Windows.Forms.Label(); this.label28 = new System.Windows.Forms.Label(); this.label29 = new System.Windows.Forms.Label(); this.label30 = new System.Windows.Forms.Label(); this.label31 = new System.Windows.Forms.Label(); this.label32 = new System.Windows.Forms.Label(); this.EnterPatientPhoneNumber = new System.Windows.Forms.TextBox(); this.label41 = new System.Windows.Forms.Label(); this.label42 = new System.Windows.Forms.Label(); this.label43 = new System.Windows.Forms.Label(); this.patient = new System.Windows.Forms.Label(); this.label45 = new System.Windows.Forms.Label(); this.EnterPatientAddress = new System.Windows.Forms.TextBox(); this.label46 = new System.Windows.Forms.Label(); this.EnterCheckId = new System.Windows.Forms.Button(); this.label12 = new System.Windows.Forms.Label(); this.BloodResultType = new System.Windows.Forms.TextBox(); this.BloodTypeType = new System.Windows.Forms.TextBox(); this.label5 = new System.Windows.Forms.Label(); this.PressureResultType = new System.Windows.Forms.TextBox(); this.label13 = new System.Windows.Forms.Label(); this.Fourth = new System.Windows.Forms.TextBox(); this.label15 = new System.Windows.Forms.Label(); this.PulseRateType = new System.Windows.Forms.TextBox(); this.Chest = new System.Windows.Forms.TextBox(); this.label19 = new System.Windows.Forms.Label(); this.Head = new System.Windows.Forms.TextBox(); this.label20 = new System.Windows.Forms.Label(); this.label22 = new System.Windows.Forms.Label(); this.PressureResult = new System.Windows.Forms.Label(); this.label26 = new System.Windows.Forms.Label(); this.XrayResultsType = new System.Windows.Forms.Label(); this.label35 = new System.Windows.Forms.Label(); this.FifthCost = new System.Windows.Forms.TextBox(); this.Fifth = new System.Windows.Forms.TextBox(); this.PulseRate = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.PatientPhoneNumber = new System.Windows.Forms.TextBox(); this.PatientProfileLastName = new System.Windows.Forms.TextBox(); this.PatientProfileFirstName = new System.Windows.Forms.TextBox(); this.PatientProfilePatientId = new System.Windows.Forms.TextBox(); this.label16 = new System.Windows.Forms.Label(); this.Third = new System.Windows.Forms.TextBox(); this.XrayResults = new System.Windows.Forms.Label(); this.label3 = new System.Windows.Forms.Label(); this.Second = new System.Windows.Forms.TextBox(); this.BloodResult = new System.Windows.Forms.Label(); this.label24 = new System.Windows.Forms.Label(); this.First = new System.Windows.Forms.TextBox(); this.BloodType = new System.Windows.Forms.Label(); this.label33 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.Hand = new System.Windows.Forms.Label(); this.label25 = new System.Windows.Forms.Label(); this.Stomach = new System.Windows.Forms.Label(); this.label37 = new System.Windows.Forms.Label(); this.Feet = new System.Windows.Forms.Label(); this.textBox1 = new System.Windows.Forms.TextBox(); this.textBox2 = new System.Windows.Forms.TextBox(); this.textBox3 = new System.Windows.Forms.TextBox(); this.Leg = new System.Windows.Forms.TextBox(); this.label39 = new System.Windows.Forms.Label(); this.textBox5 = new System.Windows.Forms.TextBox(); this.Shoulder = new System.Windows.Forms.Label(); this.Knee = new System.Windows.Forms.Label(); this.textBox6 = new System.Windows.Forms.TextBox(); this.textBox7 = new System.Windows.Forms.TextBox(); this.label47 = new System.Windows.Forms.Label(); this.DoctorNotes = new System.Windows.Forms.TextBox(); this.textBox9 = new System.Windows.Forms.TextBox(); this.DoctorNotesInXrayResultSection = new System.Windows.Forms.Label(); this.CheckXrayfullBody = new System.Windows.Forms.Button(); this.textBox10 = new System.Windows.Forms.TextBox(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.updateToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.generalResultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.xRayResultsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.exitToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // EnterPatiendId // this.EnterPatiendId.Location = new System.Drawing.Point(231, 80); this.EnterPatiendId.Name = "EnterPatiendId"; this.EnterPatiendId.Size = new System.Drawing.Size(135, 22); this.EnterPatiendId.TabIndex = 1; // // EnterPatientFirstName // this.EnterPatientFirstName.Location = new System.Drawing.Point(231, 160); this.EnterPatientFirstName.Name = "EnterPatientFirstName"; this.EnterPatientFirstName.Size = new System.Drawing.Size(135, 22); this.EnterPatientFirstName.TabIndex = 3; // // EnterpatientLastName // this.EnterpatientLastName.Location = new System.Drawing.Point(231, 233); this.EnterpatientLastName.Name = "EnterpatientLastName"; this.EnterpatientLastName.Size = new System.Drawing.Size(135, 22); this.EnterpatientLastName.TabIndex = 4; this.EnterpatientLastName.TextChanged += new System.EventHandler(this.NumberOfBedsInTheRoom_TextChanged); // // shapeContainer1 // this.shapeContainer1.Location = new System.Drawing.Point(0, 0); this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.shapeContainer1.Name = "shapeContainer1"; this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Wrist, this.rectangleShape3, this.rectangleShape2, this.rectangleShape1, this.lineShape2, this.lineShape1}); this.shapeContainer1.Size = new System.Drawing.Size(1008, 682); this.shapeContainer1.TabIndex = 12; this.shapeContainer1.TabStop = false; // // Wrist // this.Wrist.Location = new System.Drawing.Point(434, 340); this.Wrist.Name = "Wrist"; this.Wrist.Size = new System.Drawing.Size(572, 341); this.Wrist.Click += new System.EventHandler(this.rectangleShape4_Click); // // rectangleShape3 // this.rectangleShape3.Location = new System.Drawing.Point(673, 751); this.rectangleShape3.Name = "rectangleShape3"; this.rectangleShape3.Size = new System.Drawing.Size(329, 1); // // rectangleShape2 // this.rectangleShape2.Location = new System.Drawing.Point(414, 748); this.rectangleShape2.Name = "rectangleShape2"; this.rectangleShape2.Size = new System.Drawing.Size(224, 1); // // rectangleShape1 // this.rectangleShape1.Location = new System.Drawing.Point(2, 456); this.rectangleShape1.Name = "rectangleShape1"; this.rectangleShape1.Size = new System.Drawing.Size(429, 298); // // lineShape2 // this.lineShape2.Name = "lineShape2"; this.lineShape2.X1 = 430; this.lineShape2.X2 = 431; this.lineShape2.Y1 = -1; this.lineShape2.Y2 = 455; // // lineShape1 // this.lineShape1.Name = "lineShape1"; this.lineShape1.X1 = 1223; this.lineShape1.X2 = 1207; this.lineShape1.Y1 = 499; this.lineShape1.Y2 = 443; this.lineShape1.Click += new System.EventHandler(this.lineShape1_Click); // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(710, 26); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(135, 23); this.label1.TabIndex = 13; this.label1.Text = "General results"; this.label1.Click += new System.EventHandler(this.label1_Click); // // label28 // this.label28.AutoSize = true; this.label28.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label28.Location = new System.Drawing.Point(10, 80); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(106, 19); this.label28.TabIndex = 79; this.label28.Text = "Enter Patient ID"; this.label28.Click += new System.EventHandler(this.label28_Click); // // label29 // this.label29.AutoSize = true; this.label29.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label29.Location = new System.Drawing.Point(12, 163); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(122, 19); this.label29.TabIndex = 80; this.label29.Text = "Patient First Name"; // // label30 // this.label30.AutoSize = true; this.label30.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label30.Location = new System.Drawing.Point(12, 315); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(141, 19); this.label30.TabIndex = 81; this.label30.Text = "Patient Phone number"; this.label30.Click += new System.EventHandler(this.label30_Click); // // label31 // this.label31.AutoSize = true; this.label31.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label31.Location = new System.Drawing.Point(15, 388); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(101, 19); this.label31.TabIndex = 82; this.label31.Text = "Patient address"; this.label31.Click += new System.EventHandler(this.label31_Click); // // label32 // this.label32.AutoSize = true; this.label32.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label32.Location = new System.Drawing.Point(12, 363); this.label32.Name = "label32"; this.label32.Size = new System.Drawing.Size(0, 19); this.label32.TabIndex = 83; // // EnterPatientPhoneNumber // this.EnterPatientPhoneNumber.Location = new System.Drawing.Point(231, 315); this.EnterPatientPhoneNumber.Name = "EnterPatientPhoneNumber"; this.EnterPatientPhoneNumber.Size = new System.Drawing.Size(135, 22); this.EnterPatientPhoneNumber.TabIndex = 10; // // label41 // this.label41.AutoSize = true; this.label41.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label41.Location = new System.Drawing.Point(36, 123); this.label41.Name = "label41"; this.label41.Size = new System.Drawing.Size(31, 19); this.label41.TabIndex = 115; this.label41.Text = "OR"; this.label41.Click += new System.EventHandler(this.label41_Click); // // label42 // this.label42.AutoSize = true; this.label42.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label42.Location = new System.Drawing.Point(36, 203); this.label42.Name = "label42"; this.label42.Size = new System.Drawing.Size(31, 19); this.label42.TabIndex = 116; this.label42.Text = "OR"; // // label43 // this.label43.AutoSize = true; this.label43.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label43.Location = new System.Drawing.Point(36, 275); this.label43.Name = "label43"; this.label43.Size = new System.Drawing.Size(31, 19); this.label43.TabIndex = 117; this.label43.Text = "OR"; // // patient // this.patient.AutoSize = true; this.patient.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.patient.Location = new System.Drawing.Point(12, 233); this.patient.Name = "patient"; this.patient.Size = new System.Drawing.Size(121, 19); this.patient.TabIndex = 118; this.patient.Text = "Patient Last Name"; // // label45 // this.label45.AutoSize = true; this.label45.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label45.Location = new System.Drawing.Point(36, 358); this.label45.Name = "label45"; this.label45.Size = new System.Drawing.Size(31, 19); this.label45.TabIndex = 119; this.label45.Text = "OR"; // // EnterPatientAddress // this.EnterPatientAddress.Location = new System.Drawing.Point(231, 385); this.EnterPatientAddress.Name = "EnterPatientAddress"; this.EnterPatientAddress.Size = new System.Drawing.Size(135, 22); this.EnterPatientAddress.TabIndex = 120; this.EnterPatientAddress.TextChanged += new System.EventHandler(this.textBox1_TextChanged); // // label46 // this.label46.AutoSize = true; this.label46.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label46.Location = new System.Drawing.Point(112, 38); this.label46.Name = "label46"; this.label46.Size = new System.Drawing.Size(129, 23); this.label46.TabIndex = 121; this.label46.Text = "Check identity"; // // EnterCheckId // this.EnterCheckId.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.EnterCheckId.Location = new System.Drawing.Point(299, 427); this.EnterCheckId.Name = "EnterCheckId"; this.EnterCheckId.Size = new System.Drawing.Size(122, 28); this.EnterCheckId.TabIndex = 134; this.EnterCheckId.Text = "Enter"; this.EnterCheckId.UseVisualStyleBackColor = true; // // label12 // this.label12.AutoSize = true; this.label12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label12.Location = new System.Drawing.Point(751, 124); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(94, 19); this.label12.TabIndex = 146; this.label12.Text = "Type of illness"; this.label12.Click += new System.EventHandler(this.label12_Click); // // BloodResultType // this.BloodResultType.Location = new System.Drawing.Point(900, 127); this.BloodResultType.Name = "BloodResultType"; this.BloodResultType.Size = new System.Drawing.Size(95, 22); this.BloodResultType.TabIndex = 145; // // BloodTypeType // this.BloodTypeType.Location = new System.Drawing.Point(900, 79); this.BloodTypeType.Name = "BloodTypeType"; this.BloodTypeType.Size = new System.Drawing.Size(95, 22); this.BloodTypeType.TabIndex = 139; // // label5 // this.label5.AutoSize = true; this.label5.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label5.Location = new System.Drawing.Point(751, 220); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(94, 19); this.label5.TabIndex = 156; this.label5.Text = "Type of illness"; // // PressureResultType // this.PressureResultType.Location = new System.Drawing.Point(900, 223); this.PressureResultType.Name = "PressureResultType"; this.PressureResultType.Size = new System.Drawing.Size(95, 22); this.PressureResultType.TabIndex = 155; // // label13 // this.label13.AutoSize = true; this.label13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label13.Location = new System.Drawing.Point(595, 223); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(0, 19); this.label13.TabIndex = 154; // // Fourth // this.Fourth.Location = new System.Drawing.Point(595, 220); this.Fourth.Name = "Fourth"; this.Fourth.Size = new System.Drawing.Size(150, 22); this.Fourth.TabIndex = 153; // // label15 // this.label15.AutoSize = true; this.label15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label15.Location = new System.Drawing.Point(751, 172); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(94, 19); this.label15.TabIndex = 151; this.label15.Text = "Type of illness"; // // PulseRateType // this.PulseRateType.Location = new System.Drawing.Point(900, 175); this.PulseRateType.Name = "PulseRateType"; this.PulseRateType.Size = new System.Drawing.Size(95, 22); this.PulseRateType.TabIndex = 149; // // Chest // this.Chest.Location = new System.Drawing.Point(539, 433); this.Chest.Name = "Chest"; this.Chest.Size = new System.Drawing.Size(150, 22); this.Chest.TabIndex = 175; // // label19 // this.label19.AutoSize = true; this.label19.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label19.Location = new System.Drawing.Point(596, 411); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(0, 19); this.label19.TabIndex = 174; // // Head // this.Head.Location = new System.Drawing.Point(539, 385); this.Head.Name = "Head"; this.Head.Size = new System.Drawing.Size(150, 22); this.Head.TabIndex = 173; // // label20 // this.label20.AutoSize = true; this.label20.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label20.Location = new System.Drawing.Point(436, 436); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(99, 19); this.label20.TabIndex = 172; this.label20.Text = "2. X Ray chest"; this.label20.Click += new System.EventHandler(this.label20_Click); // // label22 // this.label22.AutoSize = true; this.label22.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label22.Location = new System.Drawing.Point(596, 363); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(0, 19); this.label22.TabIndex = 170; // // PressureResult // this.PressureResult.AutoSize = true; this.PressureResult.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PressureResult.Location = new System.Drawing.Point(432, 220); this.PressureResult.Name = "PressureResult"; this.PressureResult.Size = new System.Drawing.Size(112, 19); this.PressureResult.TabIndex = 167; this.PressureResult.Text = "4. pressure result"; // // label26 // this.label26.AutoSize = true; this.label26.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label26.Location = new System.Drawing.Point(596, 335); this.label26.Name = "label26"; this.label26.Size = new System.Drawing.Size(0, 19); this.label26.TabIndex = 164; // // XrayResultsType // this.XrayResultsType.AutoSize = true; this.XrayResultsType.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.XrayResultsType.Location = new System.Drawing.Point(751, 271); this.XrayResultsType.Name = "XrayResultsType"; this.XrayResultsType.Size = new System.Drawing.Size(94, 19); this.XrayResultsType.TabIndex = 161; this.XrayResultsType.Text = "Type of illness"; // // label35 // this.label35.AutoSize = true; this.label35.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label35.Location = new System.Drawing.Point(595, 274); this.label35.Name = "label35"; this.label35.Size = new System.Drawing.Size(0, 19); this.label35.TabIndex = 160; // // FifthCost // this.FifthCost.Location = new System.Drawing.Point(900, 274); this.FifthCost.Name = "FifthCost"; this.FifthCost.Size = new System.Drawing.Size(95, 22); this.FifthCost.TabIndex = 159; // // Fifth // this.Fifth.Location = new System.Drawing.Point(595, 265); this.Fifth.Name = "Fifth"; this.Fifth.Size = new System.Drawing.Size(150, 22); this.Fifth.TabIndex = 158; // // PulseRate // this.PulseRate.AutoSize = true; this.PulseRate.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.PulseRate.Location = new System.Drawing.Point(432, 178); this.PulseRate.Name = "PulseRate"; this.PulseRate.Size = new System.Drawing.Size(84, 19); this.PulseRate.TabIndex = 157; this.PulseRate.Text = "3. Pulse rate"; // // label6 // this.label6.AutoSize = true; this.label6.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label6.Location = new System.Drawing.Point(10, 462); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(131, 23); this.label6.TabIndex = 36; this.label6.Text = "Patient Profile"; this.label6.Click += new System.EventHandler(this.label6_Click); // // label9 // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label9.Location = new System.Drawing.Point(15, 496); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(73, 19); this.label9.TabIndex = 111; this.label9.Text = "Patient ID:"; // // label7 // this.label7.AutoSize = true; this.label7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.Location = new System.Drawing.Point(15, 530); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(122, 19); this.label7.TabIndex = 113; this.label7.Text = "Patient First Name"; this.label7.Click += new System.EventHandler(this.label7_Click); // // label10 // this.label10.AutoSize = true; this.label10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label10.Location = new System.Drawing.Point(15, 570); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(121, 19); this.label10.TabIndex = 110; this.label10.Text = "Patient Last Name"; this.label10.Click += new System.EventHandler(this.label10_Click); // // label8 // this.label8.AutoSize = true; this.label8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.Location = new System.Drawing.Point(15, 607); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(141, 19); this.label8.TabIndex = 112; this.label8.Text = "Patient Phone number"; this.label8.Click += new System.EventHandler(this.label8_Click); // // PatientPhoneNumber // this.PatientPhoneNumber.Location = new System.Drawing.Point(231, 607); this.PatientPhoneNumber.Name = "PatientPhoneNumber"; this.PatientPhoneNumber.Size = new System.Drawing.Size(135, 22); this.PatientPhoneNumber.TabIndex = 108; // // PatientProfileLastName // this.PatientProfileLastName.Location = new System.Drawing.Point(231, 570); this.PatientProfileLastName.Name = "PatientProfileLastName"; this.PatientProfileLastName.Size = new System.Drawing.Size(135, 22); this.PatientProfileLastName.TabIndex = 107; // // PatientProfileFirstName // this.PatientProfileFirstName.Location = new System.Drawing.Point(231, 527); this.PatientProfileFirstName.Name = "PatientProfileFirstName"; this.PatientProfileFirstName.Size = new System.Drawing.Size(135, 22); this.PatientProfileFirstName.TabIndex = 106; this.PatientProfileFirstName.TextChanged += new System.EventHandler(this.textBox15_TextChanged); // // PatientProfilePatientId // this.PatientProfilePatientId.Location = new System.Drawing.Point(231, 493); this.PatientProfilePatientId.Name = "PatientProfilePatientId"; this.PatientProfilePatientId.Size = new System.Drawing.Size(135, 22); this.PatientProfilePatientId.TabIndex = 105; this.PatientProfilePatientId.TextChanged += new System.EventHandler(this.vip1RoomIdText_TextChanged); // // label16 // this.label16.AutoSize = true; this.label16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label16.Location = new System.Drawing.Point(595, 178); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(0, 19); this.label16.TabIndex = 192; // // Third // this.Third.Location = new System.Drawing.Point(595, 175); this.Third.Name = "Third"; this.Third.Size = new System.Drawing.Size(150, 22); this.Third.TabIndex = 191; // // XrayResults // this.XrayResults.AutoSize = true; this.XrayResults.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.XrayResults.Location = new System.Drawing.Point(435, 268); this.XrayResults.Name = "XrayResults"; this.XrayResults.Size = new System.Drawing.Size(106, 19); this.XrayResults.TabIndex = 190; this.XrayResults.Text = "5. X Ray results"; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(595, 130); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(0, 19); this.label3.TabIndex = 189; // // Second // this.Second.Location = new System.Drawing.Point(595, 127); this.Second.Name = "Second"; this.Second.Size = new System.Drawing.Size(150, 22); this.Second.TabIndex = 188; // // BloodResult // this.BloodResult.AutoSize = true; this.BloodResult.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.BloodResult.Location = new System.Drawing.Point(432, 130); this.BloodResult.Name = "BloodResult"; this.BloodResult.Size = new System.Drawing.Size(103, 19); this.BloodResult.TabIndex = 187; this.BloodResult.Text = "2. Blood Result"; // // label24 // this.label24.AutoSize = true; this.label24.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label24.Location = new System.Drawing.Point(595, 82); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(0, 19); this.label24.TabIndex = 186; // // First // this.First.Location = new System.Drawing.Point(595, 79); this.First.Name = "First"; this.First.Size = new System.Drawing.Size(150, 22); this.First.TabIndex = 185; // // BloodType // this.BloodType.AutoSize = true; this.BloodType.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.BloodType.Location = new System.Drawing.Point(432, 82); this.BloodType.Name = "BloodType"; this.BloodType.Size = new System.Drawing.Size(96, 19); this.BloodType.TabIndex = 184; this.BloodType.Text = "1. Blood Type"; // // label33 // this.label33.AutoSize = true; this.label33.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label33.Location = new System.Drawing.Point(751, 76); this.label33.Name = "label33"; this.label33.Size = new System.Drawing.Size(94, 19); this.label33.TabIndex = 141; this.label33.Text = "Type of illness"; // // label11 // this.label11.AutoSize = true; this.label11.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label11.Location = new System.Drawing.Point(711, 343); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(114, 23); this.label11.TabIndex = 193; this.label11.Text = "X ray results"; // // Hand // this.Hand.AutoSize = true; this.Hand.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Hand.Location = new System.Drawing.Point(711, 538); this.Hand.Name = "Hand"; this.Hand.Size = new System.Drawing.Size(97, 19); this.Hand.TabIndex = 195; this.Hand.Text = "9. X Ray hand"; // // label25 // this.label25.AutoSize = true; this.label25.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label25.Location = new System.Drawing.Point(436, 388); this.label25.Name = "label25"; this.label25.Size = new System.Drawing.Size(97, 19); this.label25.TabIndex = 196; this.label25.Text = "1. X Ray head"; this.label25.Click += new System.EventHandler(this.label25_Click); // // Stomach // this.Stomach.AutoSize = true; this.Stomach.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Stomach.Location = new System.Drawing.Point(711, 488); this.Stomach.Name = "Stomach"; this.Stomach.Size = new System.Drawing.Size(121, 19); this.Stomach.TabIndex = 197; this.Stomach.Text = "8. X Ray Stomach"; // // label37 // this.label37.AutoSize = true; this.label37.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label37.Location = new System.Drawing.Point(711, 436); this.label37.Name = "label37"; this.label37.Size = new System.Drawing.Size(85, 19); this.label37.TabIndex = 198; this.label37.Text = "7. X Ray leg"; // // Feet // this.Feet.AutoSize = true; this.Feet.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Feet.Location = new System.Drawing.Point(436, 587); this.Feet.Name = "Feet"; this.Feet.Size = new System.Drawing.Size(98, 19); this.Feet.TabIndex = 199; this.Feet.Text = "10. X Ray feet"; // // textBox1 // this.textBox1.Location = new System.Drawing.Point(853, 587); this.textBox1.Name = "textBox1"; this.textBox1.Size = new System.Drawing.Size(150, 22); this.textBox1.TabIndex = 200; // // textBox2 // this.textBox2.Location = new System.Drawing.Point(853, 485); this.textBox2.Name = "textBox2"; this.textBox2.Size = new System.Drawing.Size(150, 22); this.textBox2.TabIndex = 201; // // textBox3 // this.textBox3.Location = new System.Drawing.Point(853, 388); this.textBox3.Name = "textBox3"; this.textBox3.Size = new System.Drawing.Size(150, 22); this.textBox3.TabIndex = 202; // // Leg // this.Leg.Location = new System.Drawing.Point(853, 436); this.Leg.Name = "Leg"; this.Leg.Size = new System.Drawing.Size(150, 22); this.Leg.TabIndex = 203; // // label39 // this.label39.AutoSize = true; this.label39.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label39.Location = new System.Drawing.Point(437, 488); this.label39.Name = "label39"; this.label39.Size = new System.Drawing.Size(100, 19); this.label39.TabIndex = 204; this.label39.Text = "4. X Ray Wrist"; // // textBox5 // this.textBox5.Location = new System.Drawing.Point(539, 535); this.textBox5.Name = "textBox5"; this.textBox5.Size = new System.Drawing.Size(150, 22); this.textBox5.TabIndex = 205; // // Shoulder // this.Shoulder.AutoSize = true; this.Shoulder.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Shoulder.Location = new System.Drawing.Point(711, 388); this.Shoulder.Name = "Shoulder"; this.Shoulder.Size = new System.Drawing.Size(122, 19); this.Shoulder.TabIndex = 206; this.Shoulder.Text = "6. X Ray Shoulder"; // // Knee // this.Knee.AutoSize = true; this.Knee.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Knee.Location = new System.Drawing.Point(436, 537); this.Knee.Name = "Knee"; this.Knee.Size = new System.Drawing.Size(101, 19); this.Knee.TabIndex = 207; this.Knee.Text = "5. X Ray Knee"; // // textBox6 // this.textBox6.Location = new System.Drawing.Point(539, 537); this.textBox6.Name = "textBox6"; this.textBox6.Size = new System.Drawing.Size(150, 22); this.textBox6.TabIndex = 208; // // textBox7 // this.textBox7.Location = new System.Drawing.Point(853, 538); this.textBox7.Name = "textBox7"; this.textBox7.Size = new System.Drawing.Size(150, 22); this.textBox7.TabIndex = 209; // // label47 // this.label47.AutoSize = true; this.label47.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label47.Location = new System.Drawing.Point(435, 310); this.label47.Name = "label47"; this.label47.Size = new System.Drawing.Size(109, 19); this.label47.TabIndex = 152; this.label47.Text = "6. Doctor Notes"; // // DoctorNotes // this.DoctorNotes.Location = new System.Drawing.Point(595, 310); this.DoctorNotes.Name = "DoctorNotes"; this.DoctorNotes.Size = new System.Drawing.Size(400, 22); this.DoctorNotes.TabIndex = 163; // // textBox9 // this.textBox9.Location = new System.Drawing.Point(539, 587); this.textBox9.Name = "textBox9"; this.textBox9.Size = new System.Drawing.Size(150, 22); this.textBox9.TabIndex = 211; // // DoctorNotesInXrayResultSection // this.DoctorNotesInXrayResultSection.AutoSize = true; this.DoctorNotesInXrayResultSection.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.DoctorNotesInXrayResultSection.Location = new System.Drawing.Point(709, 590); this.DoctorNotesInXrayResultSection.Name = "DoctorNotesInXrayResultSection"; this.DoctorNotesInXrayResultSection.Size = new System.Drawing.Size(116, 19); this.DoctorNotesInXrayResultSection.TabIndex = 210; this.DoctorNotesInXrayResultSection.Text = "11. Doctor Notes"; // // CheckXrayfullBody // this.CheckXrayfullBody.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.CheckXrayfullBody.Location = new System.Drawing.Point(646, 634); this.CheckXrayfullBody.Name = "CheckXrayfullBody"; this.CheckXrayfullBody.Size = new System.Drawing.Size(238, 36); this.CheckXrayfullBody.TabIndex = 212; this.CheckXrayfullBody.Text = "Check X ray in full body"; this.CheckXrayfullBody.UseVisualStyleBackColor = true; this.CheckXrayfullBody.Click += new System.EventHandler(this.CheckXrayfullBody_Click); // // textBox10 // this.textBox10.Location = new System.Drawing.Point(539, 485); this.textBox10.Name = "textBox10"; this.textBox10.Size = new System.Drawing.Size(150, 22); this.textBox10.TabIndex = 205; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.updateToolStripMenuItem, this.exitToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(1008, 24); this.menuStrip1.TabIndex = 213; this.menuStrip1.Text = "menuStrip1"; // // updateToolStripMenuItem // this.updateToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.generalResultsToolStripMenuItem, this.xRayResultsToolStripMenuItem}); this.updateToolStripMenuItem.Name = "updateToolStripMenuItem"; this.updateToolStripMenuItem.Size = new System.Drawing.Size(57, 20); this.updateToolStripMenuItem.Text = "Update"; // // generalResultsToolStripMenuItem // this.generalResultsToolStripMenuItem.Name = "generalResultsToolStripMenuItem"; this.generalResultsToolStripMenuItem.Size = new System.Drawing.Size(151, 22); this.generalResultsToolStripMenuItem.Text = "General results"; // // xRayResultsToolStripMenuItem // this.xRayResultsToolStripMenuItem.Name = "xRayResultsToolStripMenuItem"; this.xRayResultsToolStripMenuItem.Size = new System.Drawing.Size(151, 22); this.xRayResultsToolStripMenuItem.Text = "X ray results"; // // exitToolStripMenuItem // this.exitToolStripMenuItem.Name = "exitToolStripMenuItem"; this.exitToolStripMenuItem.Size = new System.Drawing.Size(37, 20); this.exitToolStripMenuItem.Text = "Exit"; this.exitToolStripMenuItem.Click += new System.EventHandler(this.exitToolStripMenuItem_Click); // // MedTech // this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ActiveCaption; this.ClientSize = new System.Drawing.Size(1008, 682); this.Controls.Add(this.textBox10); this.Controls.Add(this.CheckXrayfullBody); this.Controls.Add(this.textBox9); this.Controls.Add(this.DoctorNotesInXrayResultSection); this.Controls.Add(this.DoctorNotes); this.Controls.Add(this.label47); this.Controls.Add(this.textBox7); this.Controls.Add(this.textBox6); this.Controls.Add(this.Knee); this.Controls.Add(this.Shoulder); this.Controls.Add(this.textBox5); this.Controls.Add(this.label39); this.Controls.Add(this.Leg); this.Controls.Add(this.textBox3); this.Controls.Add(this.textBox2); this.Controls.Add(this.textBox1); this.Controls.Add(this.Feet); this.Controls.Add(this.label37); this.Controls.Add(this.Stomach); this.Controls.Add(this.label25); this.Controls.Add(this.Hand); this.Controls.Add(this.label11); this.Controls.Add(this.label16); this.Controls.Add(this.Third); this.Controls.Add(this.XrayResults); this.Controls.Add(this.label3); this.Controls.Add(this.Second); this.Controls.Add(this.BloodResult); this.Controls.Add(this.label24); this.Controls.Add(this.First); this.Controls.Add(this.BloodType); this.Controls.Add(this.Chest); this.Controls.Add(this.label19); this.Controls.Add(this.Head); this.Controls.Add(this.label20); this.Controls.Add(this.label22); this.Controls.Add(this.PressureResult); this.Controls.Add(this.label26); this.Controls.Add(this.XrayResultsType); this.Controls.Add(this.label35); this.Controls.Add(this.FifthCost); this.Controls.Add(this.Fifth); this.Controls.Add(this.PulseRate); this.Controls.Add(this.label5); this.Controls.Add(this.PressureResultType); this.Controls.Add(this.label13); this.Controls.Add(this.Fourth); this.Controls.Add(this.label15); this.Controls.Add(this.PulseRateType); this.Controls.Add(this.label12); this.Controls.Add(this.BloodResultType); this.Controls.Add(this.label33); this.Controls.Add(this.BloodTypeType); this.Controls.Add(this.EnterCheckId); this.Controls.Add(this.label46); this.Controls.Add(this.EnterPatientAddress); this.Controls.Add(this.label45); this.Controls.Add(this.patient); this.Controls.Add(this.label43); this.Controls.Add(this.label42); this.Controls.Add(this.label41); this.Controls.Add(this.label7); this.Controls.Add(this.label8); this.Controls.Add(this.label9); this.Controls.Add(this.label10); this.Controls.Add(this.PatientPhoneNumber); this.Controls.Add(this.PatientProfileLastName); this.Controls.Add(this.PatientProfileFirstName); this.Controls.Add(this.PatientProfilePatientId); this.Controls.Add(this.label32); this.Controls.Add(this.label31); this.Controls.Add(this.label30); this.Controls.Add(this.label29); this.Controls.Add(this.label28); this.Controls.Add(this.label6); this.Controls.Add(this.label1); this.Controls.Add(this.EnterPatientPhoneNumber); this.Controls.Add(this.EnterpatientLastName); this.Controls.Add(this.EnterPatientFirstName); this.Controls.Add(this.EnterPatiendId); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.shapeContainer1); this.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Name = "MedTech"; this.Text = "Medical techintion "; this.Load += new System.EventHandler(this.Form1_Load); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Patient_profile)); this.PreferNurse = new System.Windows.Forms.TextBox(); this.label22 = new System.Windows.Forms.Label(); this.PreferDoctor = new System.Windows.Forms.TextBox(); this.checkMyAppointmentToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.uPDATEToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.updateMyProfileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.label23 = new System.Windows.Forms.Label(); this.loggOutToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.MyRoomNumber = new System.Windows.Forms.TextBox(); this.label18 = new System.Windows.Forms.Label(); this.IDNumber = new System.Windows.Forms.TextBox(); this.label17 = new System.Windows.Forms.Label(); this.EmailAddress = new System.Windows.Forms.TextBox(); this.label15 = new System.Windows.Forms.Label(); this.MobilePhone = new System.Windows.Forms.TextBox(); this.label14 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.HomePhone = new System.Windows.Forms.TextBox(); this.label12 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.textBox7 = new System.Windows.Forms.TextBox(); this.label10 = new System.Windows.Forms.Label(); this.ResidenceAddress = new System.Windows.Forms.TextBox(); this.label9 = new System.Windows.Forms.Label(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.textBox8 = new System.Windows.Forms.TextBox(); this.MaritalStatus = new System.Windows.Forms.TextBox(); this.label8 = new System.Windows.Forms.Label(); this.label7 = new System.Windows.Forms.Label(); this.Age = new System.Windows.Forms.TextBox(); this.label6 = new System.Windows.Forms.Label(); this.DateOfBirth = new System.Windows.Forms.DateTimePicker(); this.label5 = new System.Windows.Forms.Label(); this.label4 = new System.Windows.Forms.Label(); this.Female = new System.Windows.Forms.CheckBox(); this.Male = new System.Windows.Forms.CheckBox(); this.label3 = new System.Windows.Forms.Label(); this.MiddleName = new System.Windows.Forms.TextBox(); this.LastName = new System.Windows.Forms.TextBox(); this.label2 = new System.Windows.Forms.Label(); this.FirstName = new System.Windows.Forms.TextBox(); this.label1 = new System.Windows.Forms.Label(); this.listBox1 = new System.Windows.Forms.ListBox(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.textBox20 = new System.Windows.Forms.TextBox(); this.label24 = new System.Windows.Forms.Label(); this.EnterCheckId = new System.Windows.Forms.Button(); this.label46 = new System.Windows.Forms.Label(); this.EnterPatientAddress = new System.Windows.Forms.TextBox(); this.patient = new System.Windows.Forms.Label(); this.label43 = new System.Windows.Forms.Label(); this.label42 = new System.Windows.Forms.Label(); this.label41 = new System.Windows.Forms.Label(); this.label31 = new System.Windows.Forms.Label(); this.label30 = new System.Windows.Forms.Label(); this.label29 = new System.Windows.Forms.Label(); this.label28 = new System.Windows.Forms.Label(); this.EnterPatientPhoneNumber = new System.Windows.Forms.TextBox(); this.EnterpatientLastName = new System.Windows.Forms.TextBox(); this.EnterPatientFirstName = new System.Windows.Forms.TextBox(); this.EnterPatiendId = new System.Windows.Forms.TextBox(); this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // PreferNurse // this.PreferNurse.Location = new System.Drawing.Point(655, 663); this.PreferNurse.Name = "PreferNurse"; this.PreferNurse.Size = new System.Drawing.Size(121, 20); this.PreferNurse.TabIndex = 135; // // label22 // this.label22.AutoSize = true; this.label22.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label22.Location = new System.Drawing.Point(492, 633); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(119, 15); this.label22.TabIndex = 133; this.label22.Text = "Prefer Doctor (Name)"; // // PreferDoctor // this.PreferDoctor.Location = new System.Drawing.Point(484, 663); this.PreferDoctor.Name = "PreferDoctor"; this.PreferDoctor.Size = new System.Drawing.Size(138, 20); this.PreferDoctor.TabIndex = 132; // // checkMyAppointmentToolStripMenuItem // this.checkMyAppointmentToolStripMenuItem.Name = "checkMyAppointmentToolStripMenuItem"; this.checkMyAppointmentToolStripMenuItem.Size = new System.Drawing.Size(129, 20); this.checkMyAppointmentToolStripMenuItem.Text = "Check appointments"; this.checkMyAppointmentToolStripMenuItem.Click += new System.EventHandler(this.checkMyAppointmentToolStripMenuItem_Click); // // uPDATEToolStripMenuItem // this.uPDATEToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { this.updateMyProfileToolStripMenuItem}); this.uPDATEToolStripMenuItem.Name = "uPDATEToolStripMenuItem"; this.uPDATEToolStripMenuItem.Size = new System.Drawing.Size(63, 20); this.uPDATEToolStripMenuItem.Text = "UPDATE"; // // updateMyProfileToolStripMenuItem // this.updateMyProfileToolStripMenuItem.Name = "updateMyProfileToolStripMenuItem"; this.updateMyProfileToolStripMenuItem.Size = new System.Drawing.Size(169, 22); this.updateMyProfileToolStripMenuItem.Text = "Update my profile"; // // label23 // this.label23.AutoSize = true; this.label23.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label23.Location = new System.Drawing.Point(652, 633); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(114, 15); this.label23.TabIndex = 134; this.label23.Text = "Prefer Nurse (Name)"; // // loggOutToolStripMenuItem // this.loggOutToolStripMenuItem.Name = "loggOutToolStripMenuItem"; this.loggOutToolStripMenuItem.Size = new System.Drawing.Size(60, 20); this.loggOutToolStripMenuItem.Text = "Log out"; this.loggOutToolStripMenuItem.Click += new System.EventHandler(this.loggOutToolStripMenuItem_Click); // // MyRoomNumber // this.MyRoomNumber.Location = new System.Drawing.Point(571, 575); this.MyRoomNumber.Name = "MyRoomNumber"; this.MyRoomNumber.Size = new System.Drawing.Size(138, 20); this.MyRoomNumber.TabIndex = 125; // // label18 // this.label18.AutoSize = true; this.label18.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label18.Location = new System.Drawing.Point(581, 548); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(99, 15); this.label18.TabIndex = 124; this.label18.Text = "My room number"; // // IDNumber // this.IDNumber.Location = new System.Drawing.Point(293, 663); this.IDNumber.Name = "IDNumber"; this.IDNumber.Size = new System.Drawing.Size(138, 20); this.IDNumber.TabIndex = 123; // // label17 // this.label17.AutoSize = true; this.label17.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label17.Location = new System.Drawing.Point(328, 633); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(65, 15); this.label17.TabIndex = 122; this.label17.Text = "ID Number"; // // EmailAddress // this.EmailAddress.Location = new System.Drawing.Point(16, 579); this.EmailAddress.Name = "EmailAddress"; this.EmailAddress.Size = new System.Drawing.Size(156, 20); this.EmailAddress.TabIndex = 119; // // label15 // this.label15.AutoSize = true; this.label15.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label15.Location = new System.Drawing.Point(57, 548); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(83, 15); this.label15.TabIndex = 118; this.label15.Text = "Email Address"; // // MobilePhone // this.MobilePhone.Location = new System.Drawing.Point(638, 493); this.MobilePhone.Name = "MobilePhone"; this.MobilePhone.Size = new System.Drawing.Size(138, 20); this.MobilePhone.TabIndex = 117; // // label14 // this.label14.AutoSize = true; this.label14.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label14.Location = new System.Drawing.Point(659, 465); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(82, 15); this.label14.TabIndex = 116; this.label14.Text = "Mobile Phone"; // // label13 // this.label13.AutoSize = true; this.label13.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label13.Location = new System.Drawing.Point(468, 465); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(75, 15); this.label13.TabIndex = 115; this.label13.Text = "Home phone"; // // HomePhone // this.HomePhone.Location = new System.Drawing.Point(440, 493); this.HomePhone.Name = "HomePhone"; this.HomePhone.Size = new System.Drawing.Size(138, 20); this.HomePhone.TabIndex = 114; // // label12 // this.label12.AutoSize = true; this.label12.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label12.Location = new System.Drawing.Point(25, 465); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(57, 15); this.label12.TabIndex = 113; this.label12.Text = "Postcode"; // // label11 // this.label11.AutoSize = true; this.label11.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label11.Location = new System.Drawing.Point(572, 368); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(46, 15); this.label11.TabIndex = 111; this.label11.Text = "Suburb"; // // textBox7 // this.textBox7.Location = new System.Drawing.Point(556, 396); this.textBox7.Name = "textBox7"; this.textBox7.Size = new System.Drawing.Size(106, 20); this.textBox7.TabIndex = 110; // // label10 // this.label10.AutoSize = true; this.label10.Location = new System.Drawing.Point(540, 396); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(0, 13); this.label10.TabIndex = 109; // // ResidenceAddress // this.ResidenceAddress.Location = new System.Drawing.Point(314, 396); this.ResidenceAddress.Name = "ResidenceAddress"; this.ResidenceAddress.Size = new System.Drawing.Size(178, 20); this.ResidenceAddress.TabIndex = 108; // // label9 // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label9.Location = new System.Drawing.Point(354, 368); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(110, 15); this.label9.TabIndex = 107; this.label9.Text = "Residence Address"; // // pictureBox1 // this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(827, 345); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(169, 168); this.pictureBox1.TabIndex = 106; this.pictureBox1.TabStop = false; // // textBox8 // this.textBox8.Location = new System.Drawing.Point(0, 493); this.textBox8.Name = "textBox8"; this.textBox8.Size = new System.Drawing.Size(106, 20); this.textBox8.TabIndex = 112; // // MaritalStatus // this.MaritalStatus.Location = new System.Drawing.Point(150, 661); this.MaritalStatus.Name = "MaritalStatus"; this.MaritalStatus.Size = new System.Drawing.Size(100, 20); this.MaritalStatus.TabIndex = 104; // // label8 // this.label8.AutoSize = true; this.label8.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.Location = new System.Drawing.Point(162, 631); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(82, 15); this.label8.TabIndex = 103; this.label8.Text = "Marital Status"; // // label7 // this.label7.AutoSize = true; this.label7.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.Location = new System.Drawing.Point(85, 663); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(36, 15); this.label7.TabIndex = 102; this.label7.Text = "Years"; // // Age // this.Age.Location = new System.Drawing.Point(26, 661); this.Age.Name = "Age"; this.Age.Size = new System.Drawing.Size(31, 20); this.Age.TabIndex = 101; // // label6 // this.label6.AutoSize = true; this.label6.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label6.Location = new System.Drawing.Point(27, 631); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(30, 15); this.label6.TabIndex = 100; this.label6.Text = "Age"; // // DateOfBirth // this.DateOfBirth.Location = new System.Drawing.Point(176, 493); this.DateOfBirth.Name = "DateOfBirth"; this.DateOfBirth.Size = new System.Drawing.Size(177, 20); this.DateOfBirth.TabIndex = 99; // // label5 // this.label5.AutoSize = true; this.label5.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label5.Location = new System.Drawing.Point(221, 468); this.label5.Name = "label5"; this.label5.Size = new System.Drawing.Size(77, 15); this.label5.TabIndex = 98; this.label5.Text = "Data Of Birth"; // // label4 // this.label4.AutoSize = true; this.label4.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label4.Location = new System.Drawing.Point(895, 530); this.label4.Name = "label4"; this.label4.Size = new System.Drawing.Size(32, 19); this.label4.TabIndex = 97; this.label4.Text = "Sex"; // // Female // this.Female.AutoSize = true; this.Female.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Female.Location = new System.Drawing.Point(933, 583); this.Female.Name = "Female"; this.Female.Size = new System.Drawing.Size(63, 19); this.Female.TabIndex = 96; this.Female.Text = "Female"; this.Female.UseVisualStyleBackColor = true; // // Male // this.Male.AutoSize = true; this.Male.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.Male.Location = new System.Drawing.Point(827, 583); this.Male.Name = "Male"; this.Male.Size = new System.Drawing.Size(53, 19); this.Male.TabIndex = 95; this.Male.Text = "Male"; this.Male.UseVisualStyleBackColor = true; // // label3 // this.label3.AutoSize = true; this.label3.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label3.Location = new System.Drawing.Point(263, 548); this.label3.Name = "label3"; this.label3.Size = new System.Drawing.Size(78, 15); this.label3.TabIndex = 94; this.label3.Text = "Middle Name"; // // MiddleName // this.MiddleName.Location = new System.Drawing.Point(251, 575); this.MiddleName.Name = "MiddleName"; this.MiddleName.Size = new System.Drawing.Size(100, 20); this.MiddleName.TabIndex = 93; // // LastName // this.LastName.Location = new System.Drawing.Point(416, 575); this.LastName.Name = "LastName"; this.LastName.Size = new System.Drawing.Size(100, 20); this.LastName.TabIndex = 92; // // label2 // this.label2.AutoSize = true; this.label2.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label2.Location = new System.Drawing.Point(428, 548); this.label2.Name = "label2"; this.label2.Size = new System.Drawing.Size(63, 15); this.label2.TabIndex = 91; this.label2.Text = "Last Name"; // // FirstName // this.FirstName.Location = new System.Drawing.Point(88, 396); this.FirstName.Name = "FirstName"; this.FirstName.Size = new System.Drawing.Size(100, 20); this.FirstName.TabIndex = 90; // // label1 // this.label1.AutoSize = true; this.label1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label1.Location = new System.Drawing.Point(105, 369); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(64, 15); this.label1.TabIndex = 89; this.label1.Text = "First Name"; // // listBox1 // this.listBox1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.listBox1.FormattingEnabled = true; this.listBox1.ItemHeight = 15; this.listBox1.Items.AddRange(new object[] { "Mr", "Ms", "Mrs", "Miss"}); this.listBox1.Location = new System.Drawing.Point(11, 372); this.listBox1.Name = "listBox1"; this.listBox1.Size = new System.Drawing.Size(56, 49); this.listBox1.TabIndex = 88; // // menuStrip1 // this.menuStrip1.BackColor = System.Drawing.SystemColors.ButtonHighlight; this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.uPDATEToolStripMenuItem, this.checkMyAppointmentToolStripMenuItem, this.loggOutToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(1008, 24); this.menuStrip1.TabIndex = 105; this.menuStrip1.Text = "menuStrip1"; // // textBox20 // this.textBox20.Location = new System.Drawing.Point(176, 205); this.textBox20.Name = "textBox20"; this.textBox20.Size = new System.Drawing.Size(135, 20); this.textBox20.TabIndex = 179; // // label24 // this.label24.AutoSize = true; this.label24.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label24.Location = new System.Drawing.Point(12, 206); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(136, 19); this.label24.TabIndex = 178; this.label24.Text = "Patient email address"; // // EnterCheckId // this.EnterCheckId.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.EnterCheckId.Location = new System.Drawing.Point(580, 260); this.EnterCheckId.Name = "EnterCheckId"; this.EnterCheckId.Size = new System.Drawing.Size(122, 28); this.EnterCheckId.TabIndex = 177; this.EnterCheckId.Text = "Enter"; this.EnterCheckId.UseVisualStyleBackColor = true; this.EnterCheckId.Click += new System.EventHandler(this.EnterCheckId_Click); // // label46 // this.label46.AutoSize = true; this.label46.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label46.Location = new System.Drawing.Point(288, 47); this.label46.Name = "label46"; this.label46.Size = new System.Drawing.Size(156, 23); this.label46.TabIndex = 176; this.label46.Text = "Search for patient"; // // EnterPatientAddress // this.EnterPatientAddress.Location = new System.Drawing.Point(589, 207); this.EnterPatientAddress.Name = "EnterPatientAddress"; this.EnterPatientAddress.Size = new System.Drawing.Size(135, 20); this.EnterPatientAddress.TabIndex = 175; // // patient // this.patient.AutoSize = true; this.patient.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.patient.Location = new System.Drawing.Point(12, 144); this.patient.Name = "patient"; this.patient.Size = new System.Drawing.Size(121, 19); this.patient.TabIndex = 174; this.patient.Text = "Patient Last Name"; // // label43 // this.label43.AutoSize = true; this.label43.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label43.Location = new System.Drawing.Point(338, 206); this.label43.Name = "label43"; this.label43.Size = new System.Drawing.Size(31, 19); this.label43.TabIndex = 173; this.label43.Text = "OR"; // // label42 // this.label42.AutoSize = true; this.label42.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label42.Location = new System.Drawing.Point(338, 144); this.label42.Name = "label42"; this.label42.Size = new System.Drawing.Size(31, 19); this.label42.TabIndex = 172; this.label42.Text = "OR"; // // label41 // this.label41.AutoSize = true; this.label41.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label41.Location = new System.Drawing.Point(338, 88); this.label41.Name = "label41"; this.label41.Size = new System.Drawing.Size(31, 19); this.label41.TabIndex = 171; this.label41.Text = "OR"; // // label31 // this.label31.AutoSize = true; this.label31.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label31.Location = new System.Drawing.Point(405, 206); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(101, 19); this.label31.TabIndex = 170; this.label31.Text = "Patient address"; // // label30 // this.label30.AutoSize = true; this.label30.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label30.Location = new System.Drawing.Point(405, 143); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(141, 19); this.label30.TabIndex = 169; this.label30.Text = "Patient Phone number"; // // label29 // this.label29.AutoSize = true; this.label29.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label29.Location = new System.Drawing.Point(405, 88); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(122, 19); this.label29.TabIndex = 168; this.label29.Text = "Patient First Name"; // // label28 // this.label28.AutoSize = true; this.label28.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label28.Location = new System.Drawing.Point(12, 87); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(106, 19); this.label28.TabIndex = 167; this.label28.Text = "Enter Patient ID"; // // EnterPatientPhoneNumber // this.EnterPatientPhoneNumber.Location = new System.Drawing.Point(589, 145); this.EnterPatientPhoneNumber.Name = "EnterPatientPhoneNumber"; this.EnterPatientPhoneNumber.Size = new System.Drawing.Size(135, 20); this.EnterPatientPhoneNumber.TabIndex = 166; // // EnterpatientLastName // this.EnterpatientLastName.Location = new System.Drawing.Point(176, 143); this.EnterpatientLastName.Name = "EnterpatientLastName"; this.EnterpatientLastName.Size = new System.Drawing.Size(135, 20); this.EnterpatientLastName.TabIndex = 165; // // EnterPatientFirstName // this.EnterPatientFirstName.Location = new System.Drawing.Point(589, 86); this.EnterPatientFirstName.Name = "EnterPatientFirstName"; this.EnterPatientFirstName.Size = new System.Drawing.Size(135, 20); this.EnterPatientFirstName.TabIndex = 164; // // EnterPatiendId // this.EnterPatiendId.Location = new System.Drawing.Point(176, 87); this.EnterPatiendId.Name = "EnterPatiendId"; this.EnterPatiendId.Size = new System.Drawing.Size(135, 20); this.EnterPatiendId.TabIndex = 163; // // shapeContainer1 // this.shapeContainer1.Location = new System.Drawing.Point(0, 0); this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.shapeContainer1.Name = "shapeContainer1"; this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.rectangleShape1}); this.shapeContainer1.Size = new System.Drawing.Size(1008, 682); this.shapeContainer1.TabIndex = 180; this.shapeContainer1.TabStop = false; // // rectangleShape1 // this.rectangleShape1.Location = new System.Drawing.Point(0, 28); this.rectangleShape1.Name = "rectangleShape1"; this.rectangleShape1.Size = new System.Drawing.Size(775, 301); // // Patient_profile // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ActiveCaption; this.ClientSize = new System.Drawing.Size(1008, 682); this.Controls.Add(this.textBox20); this.Controls.Add(this.label24); this.Controls.Add(this.label46); this.Controls.Add(this.EnterPatientAddress); this.Controls.Add(this.patient); this.Controls.Add(this.label43); this.Controls.Add(this.label42); this.Controls.Add(this.label41); this.Controls.Add(this.label31); this.Controls.Add(this.label30); this.Controls.Add(this.label29); this.Controls.Add(this.label28); this.Controls.Add(this.EnterPatientPhoneNumber); this.Controls.Add(this.EnterpatientLastName); this.Controls.Add(this.EnterPatientFirstName); this.Controls.Add(this.EnterPatiendId); this.Controls.Add(this.PreferNurse); this.Controls.Add(this.label22); this.Controls.Add(this.PreferDoctor); this.Controls.Add(this.label23); this.Controls.Add(this.MyRoomNumber); this.Controls.Add(this.label18); this.Controls.Add(this.IDNumber); this.Controls.Add(this.label17); this.Controls.Add(this.EmailAddress); this.Controls.Add(this.label15); this.Controls.Add(this.MobilePhone); this.Controls.Add(this.label14); this.Controls.Add(this.label13); this.Controls.Add(this.HomePhone); this.Controls.Add(this.label12); this.Controls.Add(this.label11); this.Controls.Add(this.textBox7); this.Controls.Add(this.label10); this.Controls.Add(this.ResidenceAddress); this.Controls.Add(this.label9); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.textBox8); this.Controls.Add(this.MaritalStatus); this.Controls.Add(this.label8); this.Controls.Add(this.label7); this.Controls.Add(this.Age); this.Controls.Add(this.label6); this.Controls.Add(this.DateOfBirth); this.Controls.Add(this.label5); this.Controls.Add(this.label4); this.Controls.Add(this.Female); this.Controls.Add(this.Male); this.Controls.Add(this.label3); this.Controls.Add(this.MiddleName); this.Controls.Add(this.LastName); this.Controls.Add(this.label2); this.Controls.Add(this.FirstName); this.Controls.Add(this.label1); this.Controls.Add(this.listBox1); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.EnterCheckId); this.Controls.Add(this.shapeContainer1); this.Name = "Patient_profile"; this.Text = "Patients profile"; this.Load += new System.EventHandler(this.Patient_profile_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.rectangleShape3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.button1 = new System.Windows.Forms.Button(); this.button2 = new System.Windows.Forms.Button(); this.SuspendLayout(); // // shapeContainer1 // this.shapeContainer1.Location = new System.Drawing.Point(0, 0); this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.shapeContainer1.Name = "shapeContainer1"; this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.rectangleShape3, this.rectangleShape2, this.rectangleShape1}); this.shapeContainer1.Size = new System.Drawing.Size(670, 466); this.shapeContainer1.TabIndex = 0; this.shapeContainer1.TabStop = false; // // rectangleShape1 // this.rectangleShape1.Location = new System.Drawing.Point(45, 43); this.rectangleShape1.Name = "rectangleShape1"; this.rectangleShape1.Size = new System.Drawing.Size(244, 61); // // rectangleShape2 // this.rectangleShape2.Location = new System.Drawing.Point(65, 148); this.rectangleShape2.Name = "rectangleShape2"; this.rectangleShape2.Size = new System.Drawing.Size(246, 54); // // rectangleShape3 // this.rectangleShape3.Location = new System.Drawing.Point(90, 262); this.rectangleShape3.Name = "rectangleShape3"; this.rectangleShape3.Size = new System.Drawing.Size(249, 62); // // button1 // this.button1.Location = new System.Drawing.Point(468, 184); this.button1.Name = "button1"; this.button1.Size = new System.Drawing.Size(97, 18); this.button1.TabIndex = 1; this.button1.Text = "button1"; this.button1.UseVisualStyleBackColor = true; // // button2 // this.button2.Location = new System.Drawing.Point(458, 261); this.button2.Name = "button2"; this.button2.Size = new System.Drawing.Size(133, 21); this.button2.TabIndex = 2; this.button2.Text = "button2"; this.button2.UseVisualStyleBackColor = true; // // VbPowerPacksTabbing // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(670, 466); this.Controls.Add(this.button2); this.Controls.Add(this.button1); this.Controls.Add(this.shapeContainer1); this.Name = "VbPowerPacksTabbing"; this.Text = "Form1"; this.ResumeLayout(false); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdBuildSPLU = new System.Windows.Forms.Button(); this.cmdBuildBarcodes = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this._chkBarcode_0 = new System.Windows.Forms.CheckBox(); this._txtBarcode_0 = new System.Windows.Forms.TextBox(); this.lblHeading = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lblBarcode_0 = new System.Windows.Forms.Label(); this._lbl_12 = new System.Windows.Forms.Label(); this._lbl_13 = new System.Windows.Forms.Label(); this._lbl_14 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Shape1 }); this.ShapeContainer1.Size = new System.Drawing.Size(361, 184); this.ShapeContainer1.TabIndex = 11; this.ShapeContainer1.TabStop = false; // //Shape1 // this.Shape1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.Location = new System.Drawing.Point(9, 75); this.Shape1.Name = "Shape1"; this.Shape1.Size = new System.Drawing.Size(349, 64); // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdBuildSPLU); this.picButtons.Controls.Add(this.cmdBuildBarcodes); this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(361, 38); this.picButtons.TabIndex = 6; // //cmdBuildSPLU // this.cmdBuildSPLU.BackColor = System.Drawing.SystemColors.Control; this.cmdBuildSPLU.Cursor = System.Windows.Forms.Cursors.Default; this.cmdBuildSPLU.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdBuildSPLU.Location = new System.Drawing.Point(184, 3); this.cmdBuildSPLU.Name = "cmdBuildSPLU"; this.cmdBuildSPLU.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdBuildSPLU.Size = new System.Drawing.Size(88, 29); this.cmdBuildSPLU.TabIndex = 12; this.cmdBuildSPLU.TabStop = false; this.cmdBuildSPLU.Text = "&Build Scale PLU"; this.cmdBuildSPLU.UseVisualStyleBackColor = false; // //cmdBuildBarcodes // this.cmdBuildBarcodes.BackColor = System.Drawing.SystemColors.Control; this.cmdBuildBarcodes.Cursor = System.Windows.Forms.Cursors.Default; this.cmdBuildBarcodes.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdBuildBarcodes.Location = new System.Drawing.Point(87, 3); this.cmdBuildBarcodes.Name = "cmdBuildBarcodes"; this.cmdBuildBarcodes.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdBuildBarcodes.Size = new System.Drawing.Size(88, 29); this.cmdBuildBarcodes.TabIndex = 11; this.cmdBuildBarcodes.TabStop = false; this.cmdBuildBarcodes.Text = "&Build Barcode"; this.cmdBuildBarcodes.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(280, 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 = 8; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.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 = 7; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.UseVisualStyleBackColor = false; // //_chkBarcode_0 // this._chkBarcode_0.BackColor = System.Drawing.SystemColors.Window; this._chkBarcode_0.Cursor = System.Windows.Forms.Cursors.Default; this._chkBarcode_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBarcode_0.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBarcode_0.Location = new System.Drawing.Point(243, 102); this._chkBarcode_0.Name = "_chkBarcode_0"; this._chkBarcode_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBarcode_0.Size = new System.Drawing.Size(13, 13); this._chkBarcode_0.TabIndex = 1; this._chkBarcode_0.UseVisualStyleBackColor = false; // //_txtBarcode_0 // this._txtBarcode_0.AcceptsReturn = true; this._txtBarcode_0.BackColor = System.Drawing.SystemColors.Window; this._txtBarcode_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtBarcode_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtBarcode_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtBarcode_0.Location = new System.Drawing.Point(66, 99); this._txtBarcode_0.MaxLength = 0; this._txtBarcode_0.Name = "_txtBarcode_0"; this._txtBarcode_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtBarcode_0.Size = new System.Drawing.Size(154, 19); this._txtBarcode_0.TabIndex = 0; this._txtBarcode_0.Text = "99999999999999"; // //lblHeading // this.lblHeading.BackColor = System.Drawing.SystemColors.Control; this.lblHeading.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblHeading.Cursor = System.Windows.Forms.Cursors.Default; this.lblHeading.ForeColor = System.Drawing.SystemColors.ControlText; this.lblHeading.Location = new System.Drawing.Point(0, 39); this.lblHeading.Name = "lblHeading"; this.lblHeading.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblHeading.Size = new System.Drawing.Size(359, 19); this.lblHeading.TabIndex = 10; this.lblHeading.Text = "Label1"; // //_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(9, 60); this._lbl_2.Name = "_lbl_2"; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.Size = new System.Drawing.Size(64, 13); this._lbl_2.TabIndex = 9; this._lbl_2.Text = "&1. Barcodes"; // //_lblBarcode_0 // this._lblBarcode_0.BackColor = System.Drawing.Color.Transparent; this._lblBarcode_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblBarcode_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lblBarcode_0.Location = new System.Drawing.Point(21, 102); this._lblBarcode_0.Name = "_lblBarcode_0"; this._lblBarcode_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblBarcode_0.Size = new System.Drawing.Size(40, 13); this._lblBarcode_0.TabIndex = 5; this._lblBarcode_0.Text = "Bonne"; this._lblBarcode_0.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_12 // this._lbl_12.AutoSize = true; this._lbl_12.BackColor = System.Drawing.Color.Transparent; this._lbl_12.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_12.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_12.Location = new System.Drawing.Point(102, 84); this._lbl_12.Name = "_lbl_12"; this._lbl_12.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_12.Size = new System.Drawing.Size(51, 13); this._lbl_12.TabIndex = 4; this._lbl_12.Text = "Bar Code"; this._lbl_12.TextAlign = System.Drawing.ContentAlignment.TopCenter; // //_lbl_13 // this._lbl_13.AutoSize = true; this._lbl_13.BackColor = System.Drawing.Color.Transparent; this._lbl_13.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_13.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_13.Location = new System.Drawing.Point(21, 84); this._lbl_13.Name = "_lbl_13"; this._lbl_13.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_13.Size = new System.Drawing.Size(37, 13); this._lbl_13.TabIndex = 3; this._lbl_13.Text = "Shrink"; // //_lbl_14 // this._lbl_14.AutoSize = true; this._lbl_14.BackColor = System.Drawing.Color.Transparent; this._lbl_14.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_14.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_14.Location = new System.Drawing.Point(228, 84); this._lbl_14.Name = "_lbl_14"; this._lbl_14.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_14.Size = new System.Drawing.Size(42, 13); this._lbl_14.TabIndex = 2; this._lbl_14.Text = "Disable"; // //frmStockBarcode // 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(361, 184); this.ControlBox = false; this.Controls.Add(this.picButtons); this.Controls.Add(this._chkBarcode_0); this.Controls.Add(this._txtBarcode_0); this.Controls.Add(this.lblHeading); this.Controls.Add(this._lbl_2); this.Controls.Add(this._lblBarcode_0); this.Controls.Add(this._lbl_12); this.Controls.Add(this._lbl_13); this.Controls.Add(this._lbl_14); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.Location = new System.Drawing.Point(3, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmStockBarcode"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Maintain Stock Item Barcodes"; 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_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.txtholdvalue = new System.Windows.Forms.TextBox(); this.cmdEdit = new System.Windows.Forms.Button(); this.cmdEmulate = new System.Windows.Forms.Button(); this._chkFields_0 = new System.Windows.Forms.CheckBox(); this._txtFields_0 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdPrintAll = new System.Windows.Forms.Button(); this.cmdPrint = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this._Shape1_2 }); this.ShapeContainer1.Size = new System.Drawing.Size(408, 204); this.ShapeContainer1.TabIndex = 13; this.ShapeContainer1.TabStop = false; // //_Shape1_2 // this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.Location = new System.Drawing.Point(9, 60); this._Shape1_2.Name = "_Shape1_2"; this._Shape1_2.Size = new System.Drawing.Size(322, 112); // //txtholdvalue // this.txtholdvalue.AcceptsReturn = true; this.txtholdvalue.BackColor = System.Drawing.SystemColors.Window; this.txtholdvalue.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtholdvalue.ForeColor = System.Drawing.SystemColors.WindowText; this.txtholdvalue.Location = new System.Drawing.Point(90, 236); this.txtholdvalue.MaxLength = 0; this.txtholdvalue.Name = "txtholdvalue"; this.txtholdvalue.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtholdvalue.Size = new System.Drawing.Size(71, 19); this.txtholdvalue.TabIndex = 12; // //cmdEdit // this.cmdEdit.BackColor = System.Drawing.SystemColors.Control; this.cmdEdit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdEdit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdEdit.Location = new System.Drawing.Point(282, 147); this.cmdEdit.Name = "cmdEdit"; this.cmdEdit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdEdit.Size = new System.Drawing.Size(37, 17); this.cmdEdit.TabIndex = 11; this.cmdEdit.Text = "&Edit"; this.cmdEdit.UseVisualStyleBackColor = false; // //cmdEmulate // this.cmdEmulate.BackColor = System.Drawing.SystemColors.Control; this.cmdEmulate.Cursor = System.Windows.Forms.Cursors.Default; this.cmdEmulate.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdEmulate.Location = new System.Drawing.Point(282, 128); this.cmdEmulate.Name = "cmdEmulate"; this.cmdEmulate.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdEmulate.Size = new System.Drawing.Size(37, 17); this.cmdEmulate.TabIndex = 10; this.cmdEmulate.Text = "..."; this.cmdEmulate.UseVisualStyleBackColor = false; // //_chkFields_0 // this._chkFields_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkFields_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_0.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_0.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_0.Location = new System.Drawing.Point(222, 90); this._chkFields_0.Name = "_chkFields_0"; this._chkFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_0.Size = new System.Drawing.Size(97, 19); this._chkFields_0.TabIndex = 6; this._chkFields_0.Text = "Disable this Set:"; this._chkFields_0.UseVisualStyleBackColor = false; // //_txtFields_0 // this._txtFields_0.AcceptsReturn = true; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.Location = new System.Drawing.Point(96, 66); this._txtFields_0.MaxLength = 0; this._txtFields_0.Name = "_txtFields_0"; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.Size = new System.Drawing.Size(226, 19); this._txtFields_0.TabIndex = 5; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdPrintAll); this.picButtons.Controls.Add(this.cmdPrint); this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(408, 39); this.picButtons.TabIndex = 2; // //cmdPrintAll // this.cmdPrintAll.BackColor = System.Drawing.SystemColors.Control; this.cmdPrintAll.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPrintAll.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPrintAll.Location = new System.Drawing.Point(96, 3); this.cmdPrintAll.Name = "cmdPrintAll"; this.cmdPrintAll.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPrintAll.Size = new System.Drawing.Size(73, 29); this.cmdPrintAll.TabIndex = 13; this.cmdPrintAll.Text = "&Print All"; this.cmdPrintAll.UseVisualStyleBackColor = false; // //cmdPrint // this.cmdPrint.BackColor = System.Drawing.SystemColors.Control; this.cmdPrint.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPrint.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPrint.Location = new System.Drawing.Point(183, 3); this.cmdPrint.Name = "cmdPrint"; this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPrint.Size = new System.Drawing.Size(73, 29); this.cmdPrint.TabIndex = 7; this.cmdPrint.TabStop = false; this.cmdPrint.Text = "&Print"; this.cmdPrint.UseVisualStyleBackColor = false; // //cmdCancel // this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.TabIndex = 1; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.UseVisualStyleBackColor = false; // //cmdClose // this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Location = new System.Drawing.Point(261, 3); this.cmdClose.Name = "cmdClose"; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.TabIndex = 0; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.UseVisualStyleBackColor = false; // //_lblLabels_1 // this._lblLabels_1.AutoSize = true; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_1.Location = new System.Drawing.Point(16, 114); this._lblLabels_1.Name = "_lblLabels_1"; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.Size = new System.Drawing.Size(98, 13); this._lblLabels_1.TabIndex = 9; this._lblLabels_1.Text = "Primary Stock Item:"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; // //lblStockItem // this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Location = new System.Drawing.Point(15, 129); this.lblStockItem.Name = "lblStockItem"; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.Size = new System.Drawing.Size(262, 16); this.lblStockItem.TabIndex = 8; this.lblStockItem.Text = "No Stock Item Selected"; // //_lblLabels_0 // this._lblLabels_0.AutoSize = true; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_0.Location = new System.Drawing.Point(14, 69); this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.Size = new System.Drawing.Size(84, 13); this._lblLabels_0.TabIndex = 4; this._lblLabels_0.Text = "Price Set Name:"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_5 // this._lbl_5.AutoSize = true; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Location = new System.Drawing.Point(9, 45); this._lbl_5.Name = "_lbl_5"; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.Size = new System.Drawing.Size(56, 13); this._lbl_5.TabIndex = 3; this._lbl_5.Text = "&1. General"; // //frmPriceSet // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224))); this.ClientSize = new System.Drawing.Size(408, 204); this.ControlBox = false; this.Controls.Add(this.txtholdvalue); this.Controls.Add(this.cmdEdit); this.Controls.Add(this.cmdEmulate); this.Controls.Add(this._chkFields_0); this.Controls.Add(this._txtFields_0); this.Controls.Add(this.picButtons); this.Controls.Add(this._lblLabels_1); this.Controls.Add(this.lblStockItem); this.Controls.Add(this._lblLabels_0); this.Controls.Add(this._lbl_5); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.Location = new System.Drawing.Point(73, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmPriceSet"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Edit Pricing Set Details"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmRegister)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdExit = new System.Windows.Forms.Button(); this._picMode_0 = new System.Windows.Forms.Panel(); this.txtCompany = new System.Windows.Forms.TextBox(); this._lbl_0 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lbl_3 = new System.Windows.Forms.Label(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._picMode_1 = new System.Windows.Forms.Panel(); this.txtKey = new System.Windows.Forms.TextBox(); this.lblCompany = new System.Windows.Forms.Label(); this._Label2_2 = new System.Windows.Forms.Label(); this._Label1_1 = new System.Windows.Forms.Label(); this._Label2_0 = new System.Windows.Forms.Label(); this.lblCode = new System.Windows.Forms.Label(); this._Label2_1 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.cmdNext = new System.Windows.Forms.Button(); this.Label4 = new System.Windows.Forms.Label(); this.Label3 = new System.Windows.Forms.Label(); //Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.Label2 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.picMode = New Microsoft.VisualBasic.Compatibility.VB6.PanelArray(components) this.Shape1 = new OvalShapeArray(components); this._picMode_0.SuspendLayout(); this._picMode_1.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.Label2, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.picMode, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Registration Wizard"; this.ClientSize = new System.Drawing.Size(296, 282); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmRegister"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Size = new System.Drawing.Size(97, 28); this.cmdExit.Location = new System.Drawing.Point(8, 249); this.cmdExit.TabIndex = 8; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.TabStop = true; this.cmdExit.Name = "cmdExit"; this._picMode_0.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._picMode_0.ForeColor = System.Drawing.SystemColors.WindowText; this._picMode_0.Size = new System.Drawing.Size(283, 232); this._picMode_0.Location = new System.Drawing.Point(6, 9); this._picMode_0.TabIndex = 13; this._picMode_0.TabStop = false; this._picMode_0.Dock = System.Windows.Forms.DockStyle.None; this._picMode_0.CausesValidation = true; this._picMode_0.Enabled = true; this._picMode_0.Cursor = System.Windows.Forms.Cursors.Default; this._picMode_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._picMode_0.Visible = true; this._picMode_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._picMode_0.Name = "_picMode_0"; this.txtCompany.AutoSize = false; this.txtCompany.Size = new System.Drawing.Size(271, 19); this.txtCompany.Location = new System.Drawing.Point(6, 201); this.txtCompany.MaxLength = 50; this.txtCompany.TabIndex = 6; this.txtCompany.AcceptsReturn = true; this.txtCompany.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtCompany.BackColor = System.Drawing.SystemColors.Window; this.txtCompany.CausesValidation = true; this.txtCompany.Enabled = true; this.txtCompany.ForeColor = System.Drawing.SystemColors.WindowText; this.txtCompany.HideSelection = true; this.txtCompany.ReadOnly = false; this.txtCompany.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtCompany.Multiline = false; this.txtCompany.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtCompany.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtCompany.TabStop = true; this.txtCompany.Visible = true; this.txtCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtCompany.Name = "txtCompany"; this._lbl_0.Text = "Store Name:"; this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_0.Size = new System.Drawing.Size(178, 16); this._lbl_0.Location = new System.Drawing.Point(6, 186); this._lbl_0.TabIndex = 5; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = false; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopCenter; this._lbl_1.Text = "Welcome to the 4POS Application Suite of products designed for the Retailer."; this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_1.Size = new System.Drawing.Size(280, 43); this._lbl_1.Location = new System.Drawing.Point(0, 0); this._lbl_1.TabIndex = 2; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = false; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._lbl_2.Text = "In the text box below, please capture your store's name. It is imperative that you capture you stores name correctly as this makes up part of your licensing agreement with 4POS."; this._lbl_2.Size = new System.Drawing.Size(274, 64); this._lbl_2.Location = new System.Drawing.Point(6, 36); this._lbl_2.TabIndex = 3; this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Enabled = true; this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.UseMnemonic = true; this._lbl_2.Visible = true; this._lbl_2.AutoSize = false; this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_2.Name = "_lbl_2"; this._lbl_3.Text = "To bypass this registration process, press the \"Exit\" button. This will activate the demo version of this software, which is fully functional except that you may only complete ten \"Day End\" runs."; this._lbl_3.Size = new System.Drawing.Size(274, 64); this._lbl_3.Location = new System.Drawing.Point(6, 99); this._lbl_3.TabIndex = 4; this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_3.BackColor = System.Drawing.Color.Transparent; this._lbl_3.Enabled = true; this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_3.UseMnemonic = true; this._lbl_3.Visible = true; this._lbl_3.AutoSize = false; this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_3.Name = "_lbl_3"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(283, 133); this._Shape1_0.Location = new System.Drawing.Point(0, 30); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(255, 192, 192); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(283, 46); this._Shape1_1.Location = new System.Drawing.Point(0, 183); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this._picMode_1.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._picMode_1.ForeColor = System.Drawing.SystemColors.WindowText; this._picMode_1.Size = new System.Drawing.Size(283, 232); this._picMode_1.Location = new System.Drawing.Point(333, 57); this._picMode_1.TabIndex = 9; this._picMode_1.TabStop = false; this._picMode_1.Visible = false; this._picMode_1.Dock = System.Windows.Forms.DockStyle.None; this._picMode_1.CausesValidation = true; this._picMode_1.Enabled = true; this._picMode_1.Cursor = System.Windows.Forms.Cursors.Default; this._picMode_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._picMode_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._picMode_1.Name = "_picMode_1"; this.txtKey.AutoSize = false; this.txtKey.Size = new System.Drawing.Size(175, 19); this.txtKey.Location = new System.Drawing.Point(99, 186); this.txtKey.TabIndex = 1; this.txtKey.AcceptsReturn = true; this.txtKey.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtKey.BackColor = System.Drawing.SystemColors.Window; this.txtKey.CausesValidation = true; this.txtKey.Enabled = true; this.txtKey.ForeColor = System.Drawing.SystemColors.WindowText; this.txtKey.HideSelection = true; this.txtKey.ReadOnly = false; this.txtKey.MaxLength = 0; this.txtKey.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtKey.Multiline = false; this.txtKey.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtKey.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtKey.TabStop = true; this.txtKey.Visible = true; this.txtKey.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtKey.Name = "txtKey"; this.lblCompany.BackColor = System.Drawing.Color.Transparent; this.lblCompany.Text = "123456789012345"; this.lblCompany.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblCompany.ForeColor = System.Drawing.SystemColors.WindowText; this.lblCompany.Size = new System.Drawing.Size(276, 18); this.lblCompany.Location = new System.Drawing.Point(3, 87); this.lblCompany.TabIndex = 15; this.lblCompany.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblCompany.Enabled = true; this.lblCompany.Cursor = System.Windows.Forms.Cursors.Default; this.lblCompany.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblCompany.UseMnemonic = true; this.lblCompany.Visible = true; this.lblCompany.AutoSize = false; this.lblCompany.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblCompany.Name = "lblCompany"; this._Label2_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._Label2_2.Text = "Company Name:"; this._Label2_2.Size = new System.Drawing.Size(93, 13); this._Label2_2.Location = new System.Drawing.Point(-12, 75); this._Label2_2.TabIndex = 14; this._Label2_2.BackColor = System.Drawing.Color.Transparent; this._Label2_2.Enabled = true; this._Label2_2.ForeColor = System.Drawing.SystemColors.ControlText; this._Label2_2.Cursor = System.Windows.Forms.Cursors.Default; this._Label2_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label2_2.UseMnemonic = true; this._Label2_2.Visible = true; this._Label2_2.AutoSize = false; this._Label2_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label2_2.Name = "_Label2_2"; this._Label1_1.Text = "Please contact a \"4POS\" representative and quote the company name and registration code below to get your new activation key for the product."; this._Label1_1.Size = new System.Drawing.Size(280, 58); this._Label1_1.Location = new System.Drawing.Point(3, 0); this._Label1_1.TabIndex = 12; this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_1.BackColor = System.Drawing.Color.Transparent; this._Label1_1.Enabled = true; this._Label1_1.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_1.UseMnemonic = true; this._Label1_1.Visible = true; this._Label1_1.AutoSize = false; this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_1.Name = "_Label1_1"; this._Label2_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._Label2_0.Text = "Registration code:"; this._Label2_0.Size = new System.Drawing.Size(93, 13); this._Label2_0.Location = new System.Drawing.Point(-3, 102); this._Label2_0.TabIndex = 11; this._Label2_0.BackColor = System.Drawing.Color.Transparent; this._Label2_0.Enabled = true; this._Label2_0.ForeColor = System.Drawing.SystemColors.ControlText; this._Label2_0.Cursor = System.Windows.Forms.Cursors.Default; this._Label2_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label2_0.UseMnemonic = true; this._Label2_0.Visible = true; this._Label2_0.AutoSize = false; this._Label2_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label2_0.Name = "_Label2_0"; this.lblCode.BackColor = System.Drawing.Color.Transparent; this.lblCode.Text = "123456789012345"; this.lblCode.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblCode.ForeColor = System.Drawing.SystemColors.WindowText; this.lblCode.Size = new System.Drawing.Size(123, 18); this.lblCode.Location = new System.Drawing.Point(3, 114); this.lblCode.TabIndex = 10; this.lblCode.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblCode.Enabled = true; this.lblCode.Cursor = System.Windows.Forms.Cursors.Default; this.lblCode.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblCode.UseMnemonic = true; this.lblCode.Visible = true; this.lblCode.AutoSize = false; this.lblCode.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblCode.Name = "lblCode"; this._Label2_1.Text = "Activation key:"; this._Label2_1.Size = new System.Drawing.Size(70, 13); this._Label2_1.Location = new System.Drawing.Point(21, 189); this._Label2_1.TabIndex = 0; this._Label2_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label2_1.BackColor = System.Drawing.Color.Transparent; this._Label2_1.Enabled = true; this._Label2_1.ForeColor = System.Drawing.SystemColors.ControlText; this._Label2_1.Cursor = System.Windows.Forms.Cursors.Default; this._Label2_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label2_1.UseMnemonic = true; this._Label2_1.Visible = true; this._Label2_1.AutoSize = true; this._Label2_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label2_1.Name = "_Label2_1"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(283, 67); this._Shape1_2.Location = new System.Drawing.Point(0, 72); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Shape1_3.BackColor = System.Drawing.Color.FromArgb(255, 192, 192); this._Shape1_3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_3.Size = new System.Drawing.Size(283, 31); this._Shape1_3.Location = new System.Drawing.Point(0, 180); this._Shape1_3.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_3.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_3.BorderWidth = 1; this._Shape1_3.FillColor = System.Drawing.Color.Black; this._Shape1_3.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_3.Visible = true; this._Shape1_3.Name = "_Shape1_3"; this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdNext.Text = "&Next"; this.cmdNext.Size = new System.Drawing.Size(97, 28); this.cmdNext.Location = new System.Drawing.Point(186, 249); this.cmdNext.TabIndex = 7; this.cmdNext.BackColor = System.Drawing.SystemColors.Control; this.cmdNext.CausesValidation = true; this.cmdNext.Enabled = true; this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default; this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdNext.TabStop = true; this.cmdNext.Name = "cmdNext"; this.Label4.Text = "Label4"; this.Label4.Size = new System.Drawing.Size(273, 33); this.Label4.Location = new System.Drawing.Point(16, 320); this.Label4.TabIndex = 17; this.Label4.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label4.BackColor = System.Drawing.SystemColors.Control; this.Label4.Enabled = true; this.Label4.ForeColor = System.Drawing.SystemColors.ControlText; this.Label4.Cursor = System.Windows.Forms.Cursors.Default; this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label4.UseMnemonic = true; this.Label4.Visible = true; this.Label4.AutoSize = false; this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label4.Name = "Label4"; this.Label3.Text = "Label3"; this.Label3.Size = new System.Drawing.Size(265, 25); this.Label3.Location = new System.Drawing.Point(16, 288); this.Label3.TabIndex = 16; this.Label3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label3.BackColor = System.Drawing.SystemColors.Control; this.Label3.Enabled = true; this.Label3.ForeColor = System.Drawing.SystemColors.ControlText; this.Label3.Cursor = System.Windows.Forms.Cursors.Default; this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label3.UseMnemonic = true; this.Label3.Visible = true; this.Label3.AutoSize = false; this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label3.Name = "Label3"; this.Controls.Add(cmdExit); this.Controls.Add(_picMode_0); this.Controls.Add(_picMode_1); this.Controls.Add(cmdNext); this.Controls.Add(Label4); this.Controls.Add(Label3); this._picMode_0.Controls.Add(txtCompany); this._picMode_0.Controls.Add(_lbl_0); this._picMode_0.Controls.Add(_lbl_1); this._picMode_0.Controls.Add(_lbl_2); this._picMode_0.Controls.Add(_lbl_3); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.ShapeContainer1.Shapes.Add(_Shape1_1); this._picMode_0.Controls.Add(ShapeContainer1); this._picMode_1.Controls.Add(txtKey); this._picMode_1.Controls.Add(lblCompany); this._picMode_1.Controls.Add(_Label2_2); this._picMode_1.Controls.Add(_Label1_1); this._picMode_1.Controls.Add(_Label2_0); this._picMode_1.Controls.Add(lblCode); this._picMode_1.Controls.Add(_Label2_1); this.ShapeContainer2.Shapes.Add(_Shape1_2); this.ShapeContainer2.Shapes.Add(_Shape1_3); this._picMode_1.Controls.Add(ShapeContainer2); //Me.Label1.SetIndex(_Label1_1, CType(1, Short)) //Me.Label2.SetIndex(_Label2_2, CType(2, Short)) //Me.Label2.SetIndex(_Label2_0, CType(0, Short)) //Me.Label2.SetIndex(_Label2_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_2, CType(2, Short)) //Me.lbl.SetIndex(_lbl_3, CType(3, Short)) //Me.picMode.SetIndex(_picMode_0, CType(0, Short)) //Me.picMode.SetIndex(_picMode_1, CType(1, Short)) //Me.Shape1.SetIndex(_Shape1_0, CType(0, Short)) //Me.Shape1.SetIndex(_Shape1_1, CType(1, Short)) //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short)) //Me.Shape1.SetIndex(_Shape1_3, CType(3, Short)) ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.picMode, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.Label2, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit() this._picMode_0.ResumeLayout(false); this._picMode_1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrderSummary)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdNext = new System.Windows.Forms.Button(); this._txtFields_1 = new System.Windows.Forms.TextBox(); this._txtFields_0 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdExit = new System.Windows.Forms.Button(); this.cmdBack = new System.Windows.Forms.Button(); this._lbl_8 = new System.Windows.Forms.Label(); this._lbl_7 = new System.Windows.Forms.Label(); this._lbl_6 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this.lblTotal = new System.Windows.Forms.Label(); this.lblContentTotal = new System.Windows.Forms.Label(); this.lblDepositTotal = new System.Windows.Forms.Label(); this._lbl_4 = new System.Windows.Forms.Label(); this._lbl_3 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this._lblData_4 = new System.Windows.Forms.Label(); this._lblData_3 = new System.Windows.Forms.Label(); this._lblData_2 = new System.Windows.Forms.Label(); this._lblData_1 = new System.Windows.Forms.Label(); this._lblData_0 = new System.Windows.Forms.Label(); this._lblLabels_9 = new System.Windows.Forms.Label(); this._lblLabels_8 = new System.Windows.Forms.Label(); this._lblLabels_7 = new System.Windows.Forms.Label(); this._lblLabels_6 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lblLabels_38 = new System.Windows.Forms.Label(); this._lblLabels_37 = new System.Windows.Forms.Label(); this._lblLabels_36 = new System.Windows.Forms.Label(); this._lblData_5 = new System.Windows.Forms.Label(); this._lblData_6 = new System.Windows.Forms.Label(); this._lblData_7 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblData = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblData, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Complete Order"; this.ClientSize = new System.Drawing.Size(612, 336); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.KeyPreview = false; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmOrderSummary"; this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdNext.Text = "P&rocess"; this.cmdNext.Size = new System.Drawing.Size(97, 31); this.cmdNext.Location = new System.Drawing.Point(504, 282); this.cmdNext.TabIndex = 29; this.cmdNext.BackColor = System.Drawing.SystemColors.Control; this.cmdNext.CausesValidation = true; this.cmdNext.Enabled = true; this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default; this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdNext.TabStop = true; this.cmdNext.Name = "cmdNext"; this._txtFields_1.AutoSize = false; this._txtFields_1.Size = new System.Drawing.Size(142, 79); this._txtFields_1.Location = new System.Drawing.Point(459, 192); this._txtFields_1.Multiline = true; this._txtFields_1.TabIndex = 28; this._txtFields_1.AcceptsReturn = true; this._txtFields_1.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_1.BackColor = System.Drawing.SystemColors.Window; this._txtFields_1.CausesValidation = true; this._txtFields_1.Enabled = true; this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_1.HideSelection = true; this._txtFields_1.ReadOnly = false; this._txtFields_1.MaxLength = 0; this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_1.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_1.TabStop = true; this._txtFields_1.Visible = true; this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_1.Name = "_txtFields_1"; this._txtFields_0.AutoSize = false; this._txtFields_0.Size = new System.Drawing.Size(142, 19); this._txtFields_0.Location = new System.Drawing.Point(459, 168); this._txtFields_0.TabIndex = 27; this._txtFields_0.AcceptsReturn = true; this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.CausesValidation = true; this._txtFields_0.Enabled = true; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.HideSelection = true; this._txtFields_0.ReadOnly = false; this._txtFields_0.MaxLength = 0; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.Multiline = false; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_0.TabStop = true; this._txtFields_0.Visible = true; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Name = "_txtFields_0"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(612, 38); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 23; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Size = new System.Drawing.Size(73, 28); this.cmdExit.Location = new System.Drawing.Point(531, 3); this.cmdExit.TabIndex = 25; this.cmdExit.TabStop = false; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.Name = "cmdExit"; this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdBack.Text = "<< &Back"; this.cmdBack.Size = new System.Drawing.Size(73, 28); this.cmdBack.Location = new System.Drawing.Point(453, 3); this.cmdBack.TabIndex = 24; this.cmdBack.TabStop = false; this.cmdBack.BackColor = System.Drawing.SystemColors.Control; this.cmdBack.CausesValidation = true; this.cmdBack.Enabled = true; this.cmdBack.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdBack.Cursor = System.Windows.Forms.Cursors.Default; this.cmdBack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdBack.Name = "cmdBack"; this._lbl_8.BackColor = System.Drawing.Color.Transparent; this._lbl_8.Text = "&4.Process this Order"; this._lbl_8.Size = new System.Drawing.Size(116, 13); this._lbl_8.Location = new System.Drawing.Point(342, 147); this._lbl_8.TabIndex = 32; this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_8.Enabled = true; this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_8.UseMnemonic = true; this._lbl_8.Visible = true; this._lbl_8.AutoSize = true; this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_8.Name = "_lbl_8"; this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_7.Text = "Order Attention Line:"; this._lbl_7.Size = new System.Drawing.Size(133, 13); this._lbl_7.Location = new System.Drawing.Point(318, 192); this._lbl_7.TabIndex = 31; this._lbl_7.BackColor = System.Drawing.Color.Transparent; this._lbl_7.Enabled = true; this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_7.UseMnemonic = true; this._lbl_7.Visible = true; this._lbl_7.AutoSize = false; this._lbl_7.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_7.Name = "_lbl_7"; this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_6.Text = "Order Reference:"; this._lbl_6.Size = new System.Drawing.Size(133, 13); this._lbl_6.Location = new System.Drawing.Point(318, 171); this._lbl_6.TabIndex = 30; this._lbl_6.BackColor = System.Drawing.Color.Transparent; this._lbl_6.Enabled = true; this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_6.UseMnemonic = true; this._lbl_6.Visible = true; this._lbl_6.AutoSize = false; this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_6.Name = "_lbl_6"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&3. Order Totals"; this._lbl_5.Size = new System.Drawing.Size(86, 13); this._lbl_5.Location = new System.Drawing.Point(342, 42); this._lbl_5.TabIndex = 26; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.lblTotal.TextAlign = System.Drawing.ContentAlignment.TopRight; this.lblTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.lblTotal.Text = "lblTotal"; this.lblTotal.ForeColor = System.Drawing.SystemColors.WindowText; this.lblTotal.Size = new System.Drawing.Size(142, 16); this.lblTotal.Location = new System.Drawing.Point(459, 99); this.lblTotal.TabIndex = 22; this.lblTotal.Enabled = true; this.lblTotal.Cursor = System.Windows.Forms.Cursors.Default; this.lblTotal.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblTotal.UseMnemonic = true; this.lblTotal.Visible = true; this.lblTotal.AutoSize = false; this.lblTotal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lblTotal.Name = "lblTotal"; this.lblContentTotal.TextAlign = System.Drawing.ContentAlignment.TopRight; this.lblContentTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.lblContentTotal.Text = "lblContentTotal"; this.lblContentTotal.ForeColor = System.Drawing.SystemColors.WindowText; this.lblContentTotal.Size = new System.Drawing.Size(142, 16); this.lblContentTotal.Location = new System.Drawing.Point(459, 63); this.lblContentTotal.TabIndex = 21; this.lblContentTotal.Enabled = true; this.lblContentTotal.Cursor = System.Windows.Forms.Cursors.Default; this.lblContentTotal.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblContentTotal.UseMnemonic = true; this.lblContentTotal.Visible = true; this.lblContentTotal.AutoSize = false; this.lblContentTotal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lblContentTotal.Name = "lblContentTotal"; this.lblDepositTotal.TextAlign = System.Drawing.ContentAlignment.TopRight; this.lblDepositTotal.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.lblDepositTotal.Text = "lblDepositTotal"; this.lblDepositTotal.ForeColor = System.Drawing.SystemColors.WindowText; this.lblDepositTotal.Size = new System.Drawing.Size(142, 16); this.lblDepositTotal.Location = new System.Drawing.Point(459, 81); this.lblDepositTotal.TabIndex = 20; this.lblDepositTotal.Enabled = true; this.lblDepositTotal.Cursor = System.Windows.Forms.Cursors.Default; this.lblDepositTotal.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblDepositTotal.UseMnemonic = true; this.lblDepositTotal.Visible = true; this.lblDepositTotal.AutoSize = false; this.lblDepositTotal.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lblDepositTotal.Name = "lblDepositTotal"; this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_4.Text = "Deposit Total:"; this._lbl_4.Size = new System.Drawing.Size(133, 13); this._lbl_4.Location = new System.Drawing.Point(318, 81); this._lbl_4.TabIndex = 19; this._lbl_4.BackColor = System.Drawing.Color.Transparent; this._lbl_4.Enabled = true; this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_4.UseMnemonic = true; this._lbl_4.Visible = true; this._lbl_4.AutoSize = false; this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_4.Name = "_lbl_4"; this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_3.Text = "Content Total:"; this._lbl_3.Size = new System.Drawing.Size(133, 13); this._lbl_3.Location = new System.Drawing.Point(318, 63); this._lbl_3.TabIndex = 18; this._lbl_3.BackColor = System.Drawing.Color.Transparent; this._lbl_3.Enabled = true; this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_3.UseMnemonic = true; this._lbl_3.Visible = true; this._lbl_3.AutoSize = false; this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_3.Name = "_lbl_3"; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_0.Text = "Order Exclusive Total:"; this._lbl_0.Size = new System.Drawing.Size(133, 13); this._lbl_0.Location = new System.Drawing.Point(318, 99); this._lbl_0.TabIndex = 17; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = false; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._lblData_4.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_4.Text = "Supplier_PostalAddress"; this._lblData_4.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_4.Size = new System.Drawing.Size(226, 58); this._lblData_4.Location = new System.Drawing.Point(102, 165); this._lblData_4.TabIndex = 16; this._lblData_4.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_4.Enabled = true; this._lblData_4.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_4.UseMnemonic = true; this._lblData_4.Visible = true; this._lblData_4.AutoSize = false; this._lblData_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_4.Name = "_lblData_4"; this._lblData_3.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_3.Text = "Supplier_PhysicalAddress"; this._lblData_3.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_3.Size = new System.Drawing.Size(226, 58); this._lblData_3.Location = new System.Drawing.Point(102, 102); this._lblData_3.TabIndex = 15; this._lblData_3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_3.Enabled = true; this._lblData_3.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_3.UseMnemonic = true; this._lblData_3.Visible = true; this._lblData_3.AutoSize = false; this._lblData_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_3.Name = "_lblData_3"; this._lblData_2.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_2.Text = "Supplier_Facimile"; this._lblData_2.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_2.Size = new System.Drawing.Size(94, 16); this._lblData_2.Location = new System.Drawing.Point(234, 81); this._lblData_2.TabIndex = 14; this._lblData_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_2.Enabled = true; this._lblData_2.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_2.UseMnemonic = true; this._lblData_2.Visible = true; this._lblData_2.AutoSize = false; this._lblData_2.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_2.Name = "_lblData_2"; this._lblData_1.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_1.Text = "Supplier_Telephone"; this._lblData_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_1.Size = new System.Drawing.Size(94, 16); this._lblData_1.Location = new System.Drawing.Point(102, 81); this._lblData_1.TabIndex = 13; this._lblData_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_1.Enabled = true; this._lblData_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_1.UseMnemonic = true; this._lblData_1.Visible = true; this._lblData_1.AutoSize = false; this._lblData_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_1.Name = "_lblData_1"; this._lblData_0.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_0.Text = "Supplier_Name"; this._lblData_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_0.Size = new System.Drawing.Size(226, 16); this._lblData_0.Location = new System.Drawing.Point(102, 63); this._lblData_0.TabIndex = 12; this._lblData_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_0.Enabled = true; this._lblData_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_0.UseMnemonic = true; this._lblData_0.Visible = true; this._lblData_0.AutoSize = false; this._lblData_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_0.Name = "_lblData_0"; this._lblLabels_9.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_9.Text = "Fax:"; this._lblLabels_9.Size = new System.Drawing.Size(22, 13); this._lblLabels_9.Location = new System.Drawing.Point(207, 81); this._lblLabels_9.TabIndex = 11; this._lblLabels_9.BackColor = System.Drawing.Color.Transparent; this._lblLabels_9.Enabled = true; this._lblLabels_9.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_9.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_9.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_9.UseMnemonic = true; this._lblLabels_9.Visible = true; this._lblLabels_9.AutoSize = true; this._lblLabels_9.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_9.Name = "_lblLabels_9"; this._lblLabels_8.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_8.Text = "Telephone:"; this._lblLabels_8.Size = new System.Drawing.Size(55, 13); this._lblLabels_8.Location = new System.Drawing.Point(39, 81); this._lblLabels_8.TabIndex = 10; this._lblLabels_8.BackColor = System.Drawing.Color.Transparent; this._lblLabels_8.Enabled = true; this._lblLabels_8.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_8.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_8.UseMnemonic = true; this._lblLabels_8.Visible = true; this._lblLabels_8.AutoSize = true; this._lblLabels_8.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_8.Name = "_lblLabels_8"; this._lblLabels_7.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_7.Text = "Postal Address:"; this._lblLabels_7.Size = new System.Drawing.Size(76, 13); this._lblLabels_7.Location = new System.Drawing.Point(21, 162); this._lblLabels_7.TabIndex = 9; this._lblLabels_7.BackColor = System.Drawing.Color.Transparent; this._lblLabels_7.Enabled = true; this._lblLabels_7.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_7.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_7.UseMnemonic = true; this._lblLabels_7.Visible = true; this._lblLabels_7.AutoSize = true; this._lblLabels_7.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_7.Name = "_lblLabels_7"; this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_6.Text = "Physical Address:"; this._lblLabels_6.Size = new System.Drawing.Size(94, 13); this._lblLabels_6.Location = new System.Drawing.Point(3, 102); this._lblLabels_6.TabIndex = 8; this._lblLabels_6.BackColor = System.Drawing.Color.Transparent; this._lblLabels_6.Enabled = true; this._lblLabels_6.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_6.UseMnemonic = true; this._lblLabels_6.Visible = true; this._lblLabels_6.AutoSize = true; this._lblLabels_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_6.Name = "_lblLabels_6"; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Text = "&1. General"; this._lbl_1.Size = new System.Drawing.Size(61, 13); this._lbl_1.Location = new System.Drawing.Point(6, 42); this._lbl_1.TabIndex = 7; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Text = "&2. Ordering Details"; this._lbl_2.Size = new System.Drawing.Size(107, 13); this._lbl_2.Location = new System.Drawing.Point(6, 234); this._lbl_2.TabIndex = 6; this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_2.Enabled = true; this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.UseMnemonic = true; this._lbl_2.Visible = true; this._lbl_2.AutoSize = true; this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_2.Name = "_lbl_2"; this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_38.Text = "Representative Name:"; this._lblLabels_38.Size = new System.Drawing.Size(106, 13); this._lblLabels_38.Location = new System.Drawing.Point(24, 257); this._lblLabels_38.TabIndex = 5; this._lblLabels_38.BackColor = System.Drawing.Color.Transparent; this._lblLabels_38.Enabled = true; this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_38.UseMnemonic = true; this._lblLabels_38.Visible = true; this._lblLabels_38.AutoSize = true; this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_38.Name = "_lblLabels_38"; this._lblLabels_37.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_37.Text = "Representative Number:"; this._lblLabels_37.Size = new System.Drawing.Size(115, 13); this._lblLabels_37.Location = new System.Drawing.Point(15, 275); this._lblLabels_37.TabIndex = 4; this._lblLabels_37.BackColor = System.Drawing.Color.Transparent; this._lblLabels_37.Enabled = true; this._lblLabels_37.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_37.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_37.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_37.UseMnemonic = true; this._lblLabels_37.Visible = true; this._lblLabels_37.AutoSize = true; this._lblLabels_37.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_37.Name = "_lblLabels_37"; this._lblLabels_36.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_36.Text = "Account Number:"; this._lblLabels_36.Size = new System.Drawing.Size(83, 13); this._lblLabels_36.Location = new System.Drawing.Point(47, 294); this._lblLabels_36.TabIndex = 3; this._lblLabels_36.BackColor = System.Drawing.Color.Transparent; this._lblLabels_36.Enabled = true; this._lblLabels_36.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_36.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_36.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_36.UseMnemonic = true; this._lblLabels_36.Visible = true; this._lblLabels_36.AutoSize = true; this._lblLabels_36.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_36.Name = "_lblLabels_36"; this._lblData_5.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_5.Text = "Supplier_RepresentativeName"; this._lblData_5.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_5.Size = new System.Drawing.Size(190, 16); this._lblData_5.Location = new System.Drawing.Point(138, 258); this._lblData_5.TabIndex = 2; this._lblData_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_5.Enabled = true; this._lblData_5.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_5.UseMnemonic = true; this._lblData_5.Visible = true; this._lblData_5.AutoSize = false; this._lblData_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_5.Name = "_lblData_5"; this._lblData_6.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_6.Text = "Supplier_RepresentativeNumber"; this._lblData_6.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_6.Size = new System.Drawing.Size(190, 16); this._lblData_6.Location = new System.Drawing.Point(138, 276); this._lblData_6.TabIndex = 1; this._lblData_6.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_6.Enabled = true; this._lblData_6.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_6.UseMnemonic = true; this._lblData_6.Visible = true; this._lblData_6.AutoSize = false; this._lblData_6.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_6.Name = "_lblData_6"; this._lblData_7.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._lblData_7.Text = "Supplier_ShippingCode"; this._lblData_7.ForeColor = System.Drawing.SystemColors.WindowText; this._lblData_7.Size = new System.Drawing.Size(190, 16); this._lblData_7.Location = new System.Drawing.Point(138, 294); this._lblData_7.TabIndex = 0; this._lblData_7.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblData_7.Enabled = true; this._lblData_7.Cursor = System.Windows.Forms.Cursors.Default; this._lblData_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblData_7.UseMnemonic = true; this._lblData_7.Visible = true; this._lblData_7.AutoSize = false; this._lblData_7.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._lblData_7.Name = "_lblData_7"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(328, 70); this._Shape1_2.Location = new System.Drawing.Point(6, 249); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(328, 172); this._Shape1_1.Location = new System.Drawing.Point(6, 57); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(265, 64); this._Shape1_0.Location = new System.Drawing.Point(342, 57); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this._Shape1_3.BackColor = System.Drawing.Color.FromArgb(255, 192, 192); this._Shape1_3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_3.Size = new System.Drawing.Size(265, 157); this._Shape1_3.Location = new System.Drawing.Point(342, 162); this._Shape1_3.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_3.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_3.BorderWidth = 1; this._Shape1_3.FillColor = System.Drawing.Color.Black; this._Shape1_3.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_3.Visible = true; this._Shape1_3.Name = "_Shape1_3"; this.Controls.Add(cmdNext); this.Controls.Add(_txtFields_1); this.Controls.Add(_txtFields_0); this.Controls.Add(picButtons); this.Controls.Add(_lbl_8); this.Controls.Add(_lbl_7); this.Controls.Add(_lbl_6); this.Controls.Add(_lbl_5); this.Controls.Add(lblTotal); this.Controls.Add(lblContentTotal); this.Controls.Add(lblDepositTotal); this.Controls.Add(_lbl_4); this.Controls.Add(_lbl_3); this.Controls.Add(_lbl_0); this.Controls.Add(_lblData_4); this.Controls.Add(_lblData_3); this.Controls.Add(_lblData_2); this.Controls.Add(_lblData_1); this.Controls.Add(_lblData_0); this.Controls.Add(_lblLabels_9); this.Controls.Add(_lblLabels_8); this.Controls.Add(_lblLabels_7); this.Controls.Add(_lblLabels_6); this.Controls.Add(_lbl_1); this.Controls.Add(_lbl_2); this.Controls.Add(_lblLabels_38); this.Controls.Add(_lblLabels_37); this.Controls.Add(_lblLabels_36); this.Controls.Add(_lblData_5); this.Controls.Add(_lblData_6); this.Controls.Add(_lblData_7); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.ShapeContainer1.Shapes.Add(_Shape1_3); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdExit); this.picButtons.Controls.Add(cmdBack); //Me.lbl.SetIndex(_lbl_8, CType(8, Short)) //Me.lbl.SetIndex(_lbl_7, CType(7, Short)) //Me.lbl.SetIndex(_lbl_6, CType(6, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lbl.SetIndex(_lbl_4, CType(4, Short)) //Me.lbl.SetIndex(_lbl_3, CType(3, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_2, CType(2, Short)) //Me.lblData.SetIndex(_lblData_4, CType(4, Short)) //Me.lblData.SetIndex(_lblData_3, CType(3, Short)) //Me.lblData.SetIndex(_lblData_2, CType(2, Short)) //Me.lblData.SetIndex(_lblData_1, CType(1, Short)) //Me.lblData.SetIndex(_lblData_0, CType(0, Short)) //Me.lblData.SetIndex(_lblData_5, CType(5, Short)) //Me.lblData.SetIndex(_lblData_6, CType(6, Short)) //M() ''e.lblData.SetIndex(_lblData_7, CType(7, Short)) //M() 'e.lblLabels.SetIndex(_lblLabels_9, CType(9, Short)) //Me.lblLabels.SetIndex(_lblLabels_8, CType(8, Short)) //Me.lblLabels.SetIndex(_lblLabels_7, CType(7, Short)) //Me.lblLabels.SetIndex(_lblLabels_6, CType(6, Short)) //Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short)) //Me.lblLabels.SetIndex(_lblLabels_37, CType(37, Short)) //Me.lblLabels.SetIndex(_lblLabels_36, CType(36, Short)) //Me.txtFields.SetIndex(_txtFields_1, CType(1, Short)) //'Me.txtFields.SetIndex(_txtFields_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); this.Shape1.SetIndex(_Shape1_3, Convert.ToInt16(3)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblData, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmRegister)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdExit = new System.Windows.Forms.Button(); this._picMode_0 = new System.Windows.Forms.Panel(); this.txtCompany = new System.Windows.Forms.TextBox(); this._lbl_0 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lbl_3 = new System.Windows.Forms.Label(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._picMode_1 = new System.Windows.Forms.Panel(); this.txtKey = new System.Windows.Forms.TextBox(); this.lblCompany = new System.Windows.Forms.Label(); this._Label2_2 = new System.Windows.Forms.Label(); this._Label1_1 = new System.Windows.Forms.Label(); this._Label2_0 = new System.Windows.Forms.Label(); this.lblCode = new System.Windows.Forms.Label(); this._Label2_1 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.cmdNext = new System.Windows.Forms.Button(); this.Label4 = new System.Windows.Forms.Label(); this.Label3 = new System.Windows.Forms.Label(); //Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.Label2 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.picMode = New Microsoft.VisualBasic.Compatibility.VB6.PanelArray(components) this.Shape1 = new OvalShapeArray(components); this._picMode_0.SuspendLayout(); this._picMode_1.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.Label2, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.picMode, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Registration Wizard"; this.ClientSize = new System.Drawing.Size(296, 282); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmRegister"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Size = new System.Drawing.Size(97, 28); this.cmdExit.Location = new System.Drawing.Point(8, 249); this.cmdExit.TabIndex = 8; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.TabStop = true; this.cmdExit.Name = "cmdExit"; this._picMode_0.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._picMode_0.ForeColor = System.Drawing.SystemColors.WindowText; this._picMode_0.Size = new System.Drawing.Size(283, 232); this._picMode_0.Location = new System.Drawing.Point(6, 9); this._picMode_0.TabIndex = 13; this._picMode_0.TabStop = false; this._picMode_0.Dock = System.Windows.Forms.DockStyle.None; this._picMode_0.CausesValidation = true; this._picMode_0.Enabled = true; this._picMode_0.Cursor = System.Windows.Forms.Cursors.Default; this._picMode_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._picMode_0.Visible = true; this._picMode_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._picMode_0.Name = "_picMode_0"; this.txtCompany.AutoSize = false; this.txtCompany.Size = new System.Drawing.Size(271, 19); this.txtCompany.Location = new System.Drawing.Point(6, 201); this.txtCompany.MaxLength = 50; this.txtCompany.TabIndex = 6; this.txtCompany.AcceptsReturn = true; this.txtCompany.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtCompany.BackColor = System.Drawing.SystemColors.Window; this.txtCompany.CausesValidation = true; this.txtCompany.Enabled = true; this.txtCompany.ForeColor = System.Drawing.SystemColors.WindowText; this.txtCompany.HideSelection = true; this.txtCompany.ReadOnly = false; this.txtCompany.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtCompany.Multiline = false; this.txtCompany.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtCompany.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtCompany.TabStop = true; this.txtCompany.Visible = true; this.txtCompany.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtCompany.Name = "txtCompany"; this._lbl_0.Text = "Store Name:"; this._lbl_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_0.Size = new System.Drawing.Size(178, 16); this._lbl_0.Location = new System.Drawing.Point(6, 186); this._lbl_0.TabIndex = 5; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = false; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopCenter; this._lbl_1.Text = "Welcome to the 4POS Application Suite of products designed for the Retailer."; this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_1.Size = new System.Drawing.Size(280, 43); this._lbl_1.Location = new System.Drawing.Point(0, 0); this._lbl_1.TabIndex = 2; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = false; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._lbl_2.Text = "In the text box below, please capture your store's name. It is imperative that you capture you stores name correctly as this makes up part of your licensing agreement with 4POS."; this._lbl_2.Size = new System.Drawing.Size(274, 64); this._lbl_2.Location = new System.Drawing.Point(6, 36); this._lbl_2.TabIndex = 3; this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Enabled = true; this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.UseMnemonic = true; this._lbl_2.Visible = true; this._lbl_2.AutoSize = false; this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_2.Name = "_lbl_2"; this._lbl_3.Text = "To bypass this registration process, press the \"Exit\" button. This will activate the demo version of this software, which is fully functional except that you may only complete ten \"Day End\" runs."; this._lbl_3.Size = new System.Drawing.Size(274, 64); this._lbl_3.Location = new System.Drawing.Point(6, 99); this._lbl_3.TabIndex = 4; this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_3.BackColor = System.Drawing.Color.Transparent; this._lbl_3.Enabled = true; this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_3.UseMnemonic = true; this._lbl_3.Visible = true; this._lbl_3.AutoSize = false; this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_3.Name = "_lbl_3"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(283, 133); this._Shape1_0.Location = new System.Drawing.Point(0, 30); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(255, 192, 192); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(283, 46); this._Shape1_1.Location = new System.Drawing.Point(0, 183); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this._picMode_1.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this._picMode_1.ForeColor = System.Drawing.SystemColors.WindowText; this._picMode_1.Size = new System.Drawing.Size(283, 232); this._picMode_1.Location = new System.Drawing.Point(333, 57); this._picMode_1.TabIndex = 9; this._picMode_1.TabStop = false; this._picMode_1.Visible = false; this._picMode_1.Dock = System.Windows.Forms.DockStyle.None; this._picMode_1.CausesValidation = true; this._picMode_1.Enabled = true; this._picMode_1.Cursor = System.Windows.Forms.Cursors.Default; this._picMode_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._picMode_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._picMode_1.Name = "_picMode_1"; this.txtKey.AutoSize = false; this.txtKey.Size = new System.Drawing.Size(175, 19); this.txtKey.Location = new System.Drawing.Point(99, 186); this.txtKey.TabIndex = 1; this.txtKey.AcceptsReturn = true; this.txtKey.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtKey.BackColor = System.Drawing.SystemColors.Window; this.txtKey.CausesValidation = true; this.txtKey.Enabled = true; this.txtKey.ForeColor = System.Drawing.SystemColors.WindowText; this.txtKey.HideSelection = true; this.txtKey.ReadOnly = false; this.txtKey.MaxLength = 0; this.txtKey.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtKey.Multiline = false; this.txtKey.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtKey.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtKey.TabStop = true; this.txtKey.Visible = true; this.txtKey.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtKey.Name = "txtKey"; this.lblCompany.BackColor = System.Drawing.Color.Transparent; this.lblCompany.Text = "123456789012345"; this.lblCompany.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblCompany.ForeColor = System.Drawing.SystemColors.WindowText; this.lblCompany.Size = new System.Drawing.Size(276, 18); this.lblCompany.Location = new System.Drawing.Point(3, 87); this.lblCompany.TabIndex = 15; this.lblCompany.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblCompany.Enabled = true; this.lblCompany.Cursor = System.Windows.Forms.Cursors.Default; this.lblCompany.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblCompany.UseMnemonic = true; this.lblCompany.Visible = true; this.lblCompany.AutoSize = false; this.lblCompany.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblCompany.Name = "lblCompany"; this._Label2_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._Label2_2.Text = "Company Name:"; this._Label2_2.Size = new System.Drawing.Size(93, 13); this._Label2_2.Location = new System.Drawing.Point(-12, 75); this._Label2_2.TabIndex = 14; this._Label2_2.BackColor = System.Drawing.Color.Transparent; this._Label2_2.Enabled = true; this._Label2_2.ForeColor = System.Drawing.SystemColors.ControlText; this._Label2_2.Cursor = System.Windows.Forms.Cursors.Default; this._Label2_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label2_2.UseMnemonic = true; this._Label2_2.Visible = true; this._Label2_2.AutoSize = false; this._Label2_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label2_2.Name = "_Label2_2"; this._Label1_1.Text = "Please contact a \"4POS\" representative and quote the company name and registration code below to get your new activation key for the product."; this._Label1_1.Size = new System.Drawing.Size(280, 58); this._Label1_1.Location = new System.Drawing.Point(3, 0); this._Label1_1.TabIndex = 12; this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_1.BackColor = System.Drawing.Color.Transparent; this._Label1_1.Enabled = true; this._Label1_1.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_1.UseMnemonic = true; this._Label1_1.Visible = true; this._Label1_1.AutoSize = false; this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_1.Name = "_Label1_1"; this._Label2_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._Label2_0.Text = "Registration code:"; this._Label2_0.Size = new System.Drawing.Size(93, 13); this._Label2_0.Location = new System.Drawing.Point(-3, 102); this._Label2_0.TabIndex = 11; this._Label2_0.BackColor = System.Drawing.Color.Transparent; this._Label2_0.Enabled = true; this._Label2_0.ForeColor = System.Drawing.SystemColors.ControlText; this._Label2_0.Cursor = System.Windows.Forms.Cursors.Default; this._Label2_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label2_0.UseMnemonic = true; this._Label2_0.Visible = true; this._Label2_0.AutoSize = false; this._Label2_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label2_0.Name = "_Label2_0"; this.lblCode.BackColor = System.Drawing.Color.Transparent; this.lblCode.Text = "123456789012345"; this.lblCode.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblCode.ForeColor = System.Drawing.SystemColors.WindowText; this.lblCode.Size = new System.Drawing.Size(123, 18); this.lblCode.Location = new System.Drawing.Point(3, 114); this.lblCode.TabIndex = 10; this.lblCode.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblCode.Enabled = true; this.lblCode.Cursor = System.Windows.Forms.Cursors.Default; this.lblCode.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblCode.UseMnemonic = true; this.lblCode.Visible = true; this.lblCode.AutoSize = false; this.lblCode.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblCode.Name = "lblCode"; this._Label2_1.Text = "Activation key:"; this._Label2_1.Size = new System.Drawing.Size(70, 13); this._Label2_1.Location = new System.Drawing.Point(21, 189); this._Label2_1.TabIndex = 0; this._Label2_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label2_1.BackColor = System.Drawing.Color.Transparent; this._Label2_1.Enabled = true; this._Label2_1.ForeColor = System.Drawing.SystemColors.ControlText; this._Label2_1.Cursor = System.Windows.Forms.Cursors.Default; this._Label2_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label2_1.UseMnemonic = true; this._Label2_1.Visible = true; this._Label2_1.AutoSize = true; this._Label2_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label2_1.Name = "_Label2_1"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(283, 67); this._Shape1_2.Location = new System.Drawing.Point(0, 72); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Shape1_3.BackColor = System.Drawing.Color.FromArgb(255, 192, 192); this._Shape1_3.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_3.Size = new System.Drawing.Size(283, 31); this._Shape1_3.Location = new System.Drawing.Point(0, 180); this._Shape1_3.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_3.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_3.BorderWidth = 1; this._Shape1_3.FillColor = System.Drawing.Color.Black; this._Shape1_3.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_3.Visible = true; this._Shape1_3.Name = "_Shape1_3"; this.cmdNext.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdNext.Text = "&Next"; this.cmdNext.Size = new System.Drawing.Size(97, 28); this.cmdNext.Location = new System.Drawing.Point(186, 249); this.cmdNext.TabIndex = 7; this.cmdNext.BackColor = System.Drawing.SystemColors.Control; this.cmdNext.CausesValidation = true; this.cmdNext.Enabled = true; this.cmdNext.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdNext.Cursor = System.Windows.Forms.Cursors.Default; this.cmdNext.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdNext.TabStop = true; this.cmdNext.Name = "cmdNext"; this.Label4.Text = "Label4"; this.Label4.Size = new System.Drawing.Size(273, 33); this.Label4.Location = new System.Drawing.Point(16, 320); this.Label4.TabIndex = 17; this.Label4.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label4.BackColor = System.Drawing.SystemColors.Control; this.Label4.Enabled = true; this.Label4.ForeColor = System.Drawing.SystemColors.ControlText; this.Label4.Cursor = System.Windows.Forms.Cursors.Default; this.Label4.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label4.UseMnemonic = true; this.Label4.Visible = true; this.Label4.AutoSize = false; this.Label4.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label4.Name = "Label4"; this.Label3.Text = "Label3"; this.Label3.Size = new System.Drawing.Size(265, 25); this.Label3.Location = new System.Drawing.Point(16, 288); this.Label3.TabIndex = 16; this.Label3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label3.BackColor = System.Drawing.SystemColors.Control; this.Label3.Enabled = true; this.Label3.ForeColor = System.Drawing.SystemColors.ControlText; this.Label3.Cursor = System.Windows.Forms.Cursors.Default; this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label3.UseMnemonic = true; this.Label3.Visible = true; this.Label3.AutoSize = false; this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label3.Name = "Label3"; this.Controls.Add(cmdExit); this.Controls.Add(_picMode_0); this.Controls.Add(_picMode_1); this.Controls.Add(cmdNext); this.Controls.Add(Label4); this.Controls.Add(Label3); this._picMode_0.Controls.Add(txtCompany); this._picMode_0.Controls.Add(_lbl_0); this._picMode_0.Controls.Add(_lbl_1); this._picMode_0.Controls.Add(_lbl_2); this._picMode_0.Controls.Add(_lbl_3); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.ShapeContainer1.Shapes.Add(_Shape1_1); this._picMode_0.Controls.Add(ShapeContainer1); this._picMode_1.Controls.Add(txtKey); this._picMode_1.Controls.Add(lblCompany); this._picMode_1.Controls.Add(_Label2_2); this._picMode_1.Controls.Add(_Label1_1); this._picMode_1.Controls.Add(_Label2_0); this._picMode_1.Controls.Add(lblCode); this._picMode_1.Controls.Add(_Label2_1); this.ShapeContainer2.Shapes.Add(_Shape1_2); this.ShapeContainer2.Shapes.Add(_Shape1_3); this._picMode_1.Controls.Add(ShapeContainer2); //Me.Label1.SetIndex(_Label1_1, CType(1, Short)) //Me.Label2.SetIndex(_Label2_2, CType(2, Short)) //Me.Label2.SetIndex(_Label2_0, CType(0, Short)) //Me.Label2.SetIndex(_Label2_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_2, CType(2, Short)) //Me.lbl.SetIndex(_lbl_3, CType(3, Short)) //Me.picMode.SetIndex(_picMode_0, CType(0, Short)) //Me.picMode.SetIndex(_picMode_1, CType(1, Short)) //Me.Shape1.SetIndex(_Shape1_0, CType(0, Short)) //Me.Shape1.SetIndex(_Shape1_1, CType(1, Short)) //Me.Shape1.SetIndex(_Shape1_2, CType(2, Short)) //Me.Shape1.SetIndex(_Shape1_3, CType(3, Short)) ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.picMode, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.Label2, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit() this._picMode_0.ResumeLayout(false); this._picMode_1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStock)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdLoad = new System.Windows.Forms.Button(); this.cmdExit = new System.Windows.Forms.Button(); this.cmdGroup = new System.Windows.Forms.Button(); this.picOuter = new System.Windows.Forms.Panel(); this.picInner = new System.Windows.Forms.PictureBox(); this._lbl_1 = new System.Windows.Forms.Label(); this.lblGroup = new System.Windows.Forms.Label(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picOuter.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.Text = "All StockItems GRV, Sales & Shrink Analysis"; this.ClientSize = new System.Drawing.Size(276, 208); this.Location = new System.Drawing.Point(4, 23); this.ControlBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable; this.Enabled = true; this.KeyPreview = false; this.MaximizeBox = true; this.MinimizeBox = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmStock"; this.cmdLoad.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdLoad.Text = "&Load Report"; this.cmdLoad.Size = new System.Drawing.Size(79, 31); this.cmdLoad.Location = new System.Drawing.Point(184, 168); this.cmdLoad.TabIndex = 3; this.cmdLoad.BackColor = System.Drawing.SystemColors.Control; this.cmdLoad.CausesValidation = true; this.cmdLoad.Enabled = true; this.cmdLoad.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdLoad.Cursor = System.Windows.Forms.Cursors.Default; this.cmdLoad.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdLoad.TabStop = true; this.cmdLoad.Name = "cmdLoad"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "&Exit"; this.cmdExit.Size = new System.Drawing.Size(85, 31); this.cmdExit.Location = new System.Drawing.Point(8, 168); this.cmdExit.TabIndex = 1; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.TabStop = true; this.cmdExit.Name = "cmdExit"; this.cmdGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdGroup.Text = "Filter"; this.cmdGroup.Size = new System.Drawing.Size(65, 27); this.cmdGroup.Location = new System.Drawing.Point(192, 112); this.cmdGroup.TabIndex = 0; this.cmdGroup.BackColor = System.Drawing.SystemColors.Control; this.cmdGroup.CausesValidation = true; this.cmdGroup.Enabled = true; this.cmdGroup.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdGroup.Cursor = System.Windows.Forms.Cursors.Default; this.cmdGroup.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdGroup.TabStop = true; this.cmdGroup.Name = "cmdGroup"; this.picOuter.BackColor = System.Drawing.Color.White; this.picOuter.Size = new System.Drawing.Size(257, 33); this.picOuter.Location = new System.Drawing.Point(8, 168); this.picOuter.TabIndex = 5; this.picOuter.Visible = false; this.picOuter.Dock = System.Windows.Forms.DockStyle.None; this.picOuter.CausesValidation = true; this.picOuter.Enabled = true; this.picOuter.ForeColor = System.Drawing.SystemColors.ControlText; this.picOuter.Cursor = System.Windows.Forms.Cursors.Default; this.picOuter.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picOuter.TabStop = true; this.picOuter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picOuter.Name = "picOuter"; this.picInner.BackColor = System.Drawing.Color.FromArgb(0, 0, 192); this.picInner.ForeColor = System.Drawing.SystemColors.WindowText; this.picInner.Size = new System.Drawing.Size(58, 34); this.picInner.Location = new System.Drawing.Point(0, 0); this.picInner.TabIndex = 6; this.picInner.Dock = System.Windows.Forms.DockStyle.None; this.picInner.CausesValidation = true; this.picInner.Enabled = true; this.picInner.Cursor = System.Windows.Forms.Cursors.Default; this.picInner.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picInner.TabStop = true; this.picInner.Visible = true; this.picInner.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Normal; this.picInner.BorderStyle = System.Windows.Forms.BorderStyle.None; this.picInner.Name = "picInner"; this._lbl_1.Text = "Filter"; this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_1.Size = new System.Drawing.Size(29, 13); this._lbl_1.Location = new System.Drawing.Point(8, 16); this._lbl_1.TabIndex = 4; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this.lblGroup.Text = "lblGroup"; this.lblGroup.Size = new System.Drawing.Size(232, 58); this.lblGroup.Location = new System.Drawing.Point(32, 44); this.lblGroup.TabIndex = 2; this.lblGroup.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblGroup.BackColor = System.Drawing.SystemColors.Control; this.lblGroup.Enabled = true; this.lblGroup.ForeColor = System.Drawing.SystemColors.ControlText; this.lblGroup.Cursor = System.Windows.Forms.Cursors.Default; this.lblGroup.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblGroup.UseMnemonic = true; this.lblGroup.Visible = true; this.lblGroup.AutoSize = false; this.lblGroup.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblGroup.Name = "lblGroup"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(259, 124); this._Shape1_1.Location = new System.Drawing.Point(8, 32); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this.Controls.Add(cmdLoad); this.Controls.Add(cmdExit); this.Controls.Add(cmdGroup); this.Controls.Add(picOuter); this.Controls.Add(_lbl_1); this.Controls.Add(lblGroup); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.Controls.Add(ShapeContainer1); this.picOuter.Controls.Add(picInner); //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.picOuter.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
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(frmOrderWizardFilter)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdFilter = new System.Windows.Forms.Button(); this.chkDynamic = new System.Windows.Forms.CheckBox(); this.txtDays = new System.Windows.Forms.TextBox(); this.txtMinimum = new System.Windows.Forms.TextBox(); this._MonthView1_1 = new System.Windows.Forms.MonthCalendar(); this._MonthView1_0 = new System.Windows.Forms.MonthCalendar(); this._lbl_6 = new System.Windows.Forms.Label(); this.lblFilter = new System.Windows.Forms.Label(); this._Label1_2 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Label1_1 = new System.Windows.Forms.Label(); this._Label1_0 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblDayEnd = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this._lbl_3 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this._lbl_4 = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.Label1 = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.MonthView1 = New AxMonthViewArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; ((System.ComponentModel.ISupportInitialize)this._MonthView1_1).BeginInit(); ((System.ComponentModel.ISupportInitialize)this._MonthView1_0).BeginInit(); //CType(Me.Label1, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.MonthView1, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.ControlBox = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.ClientSize = new System.Drawing.Size(436, 590); this.Location = new System.Drawing.Point(3, 3); this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmOrderWizardFilter"; this.cmdFilter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdFilter.Text = "&Filter ..."; this.cmdFilter.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.cmdFilter.Size = new System.Drawing.Size(79, 37); this.cmdFilter.Location = new System.Drawing.Point(336, 528); this.cmdFilter.TabIndex = 16; this.cmdFilter.TabStop = false; this.cmdFilter.BackColor = System.Drawing.SystemColors.Control; this.cmdFilter.CausesValidation = true; this.cmdFilter.Enabled = true; this.cmdFilter.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdFilter.Cursor = System.Windows.Forms.Cursors.Default; this.cmdFilter.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdFilter.Name = "cmdFilter"; this.chkDynamic.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkDynamic.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.chkDynamic.Text = "Automatically re-calculate start and end dates based on current \"Day End\" date."; this.chkDynamic.ForeColor = System.Drawing.SystemColors.WindowText; this.chkDynamic.Size = new System.Drawing.Size(400, 13); this.chkDynamic.Location = new System.Drawing.Point(21, 393); this.chkDynamic.TabIndex = 13; this.chkDynamic.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this.chkDynamic.CausesValidation = true; this.chkDynamic.Enabled = true; this.chkDynamic.Cursor = System.Windows.Forms.Cursors.Default; this.chkDynamic.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkDynamic.Appearance = System.Windows.Forms.Appearance.Normal; this.chkDynamic.TabStop = true; this.chkDynamic.CheckState = System.Windows.Forms.CheckState.Unchecked; this.chkDynamic.Visible = true; this.chkDynamic.Name = "chkDynamic"; this.txtDays.AutoSize = false; this.txtDays.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtDays.Size = new System.Drawing.Size(40, 19); this.txtDays.Location = new System.Drawing.Point(156, 348); this.txtDays.TabIndex = 8; this.txtDays.Text = "9"; this.txtDays.AcceptsReturn = true; this.txtDays.BackColor = System.Drawing.SystemColors.Window; this.txtDays.CausesValidation = true; this.txtDays.Enabled = true; this.txtDays.ForeColor = System.Drawing.SystemColors.WindowText; this.txtDays.HideSelection = true; this.txtDays.ReadOnly = false; this.txtDays.MaxLength = 0; this.txtDays.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtDays.Multiline = false; this.txtDays.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtDays.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtDays.TabStop = true; this.txtDays.Visible = true; this.txtDays.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtDays.Name = "txtDays"; this.txtMinimum.AutoSize = false; this.txtMinimum.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtMinimum.Size = new System.Drawing.Size(40, 19); this.txtMinimum.Location = new System.Drawing.Point(105, 366); this.txtMinimum.TabIndex = 11; this.txtMinimum.Text = "2"; this.txtMinimum.AcceptsReturn = true; this.txtMinimum.BackColor = System.Drawing.SystemColors.Window; this.txtMinimum.CausesValidation = true; this.txtMinimum.Enabled = true; this.txtMinimum.ForeColor = System.Drawing.SystemColors.WindowText; this.txtMinimum.HideSelection = true; this.txtMinimum.ReadOnly = false; this.txtMinimum.MaxLength = 0; this.txtMinimum.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtMinimum.Multiline = false; this.txtMinimum.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtMinimum.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtMinimum.TabStop = true; this.txtMinimum.Visible = true; this.txtMinimum.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtMinimum.Name = "txtMinimum"; //_MonthView1_1.OcxState = CType(resources.GetObject("_MonthView1_1.OcxState"), System.Windows.Forms.AxHost.State) this._MonthView1_1.Size = new System.Drawing.Size(180, 158); this._MonthView1_1.Location = new System.Drawing.Point(237, 96); this._MonthView1_1.TabIndex = 4; this._MonthView1_1.Name = "_MonthView1_1"; //_MonthView1_0.OcxState = CType(resources.GetObject("_MonthView1_0.OcxState"), System.Windows.Forms.AxHost.State) this._MonthView1_0.Size = new System.Drawing.Size(180, 158); this._MonthView1_0.Location = new System.Drawing.Point(21, 96); this._MonthView1_0.TabIndex = 2; this._MonthView1_0.Name = "_MonthView1_0"; this._lbl_6.Text = "units."; this._lbl_6.Size = new System.Drawing.Size(25, 13); this._lbl_6.Location = new System.Drawing.Point(150, 369); this._lbl_6.TabIndex = 12; this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_6.BackColor = System.Drawing.Color.Transparent; this._lbl_6.Enabled = true; this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_6.UseMnemonic = true; this._lbl_6.Visible = true; this._lbl_6.AutoSize = true; this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_6.Name = "_lbl_6"; this.lblFilter.Text = "Label1"; this.lblFilter.Size = new System.Drawing.Size(391, 76); this.lblFilter.Location = new System.Drawing.Point(24, 447); this.lblFilter.TabIndex = 15; this.lblFilter.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblFilter.BackColor = System.Drawing.SystemColors.Control; this.lblFilter.Enabled = true; this.lblFilter.ForeColor = System.Drawing.SystemColors.ControlText; this.lblFilter.Cursor = System.Windows.Forms.Cursors.Default; this.lblFilter.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblFilter.UseMnemonic = true; this.lblFilter.Visible = true; this.lblFilter.AutoSize = false; this.lblFilter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblFilter.Name = "lblFilter"; this._Label1_2.Text = "&3. Filter"; this._Label1_2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._Label1_2.Size = new System.Drawing.Size(44, 13); this._Label1_2.Location = new System.Drawing.Point(15, 423); this._Label1_2.TabIndex = 14; this._Label1_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_2.BackColor = System.Drawing.Color.Transparent; this._Label1_2.Enabled = true; this._Label1_2.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_2.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_2.UseMnemonic = true; this._Label1_2.Visible = true; this._Label1_2.AutoSize = true; this._Label1_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_2.Name = "_Label1_2"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(415, 136); this._Shape1_2.Location = new System.Drawing.Point(12, 438); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Label1_1.Text = "&2. Wizard Rules"; this._Label1_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._Label1_1.Size = new System.Drawing.Size(91, 13); this._Label1_1.Location = new System.Drawing.Point(15, 327); this._Label1_1.TabIndex = 6; this._Label1_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_1.BackColor = System.Drawing.Color.Transparent; this._Label1_1.Enabled = true; this._Label1_1.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_1.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_1.UseMnemonic = true; this._Label1_1.Visible = true; this._Label1_1.AutoSize = true; this._Label1_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_1.Name = "_Label1_1"; this._Label1_0.Text = "&1. Day End Criteria"; this._Label1_0.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._Label1_0.Size = new System.Drawing.Size(108, 13); this._Label1_0.Location = new System.Drawing.Point(15, 63); this._Label1_0.TabIndex = 0; this._Label1_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._Label1_0.BackColor = System.Drawing.Color.Transparent; this._Label1_0.Enabled = true; this._Label1_0.ForeColor = System.Drawing.SystemColors.ControlText; this._Label1_0.Cursor = System.Windows.Forms.Cursors.Default; this._Label1_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._Label1_0.UseMnemonic = true; this._Label1_0.Visible = true; this._Label1_0.AutoSize = true; this._Label1_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._Label1_0.Name = "_Label1_0"; this.Label2.Text = "When calculating your ordering levels, you must select the mean number of \"day Ends\" to cover to get an average number of units sold. This average is then projected for a set number of days to give you your expected sales. This expectation is then your minimum order level for the \"Stock Item\"."; this.Label2.Size = new System.Drawing.Size(397, 55); this.Label2.Location = new System.Drawing.Point(15, 3); this.Label2.TabIndex = 17; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Enabled = true; this.Label2.ForeColor = System.Drawing.SystemColors.ControlText; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.lblDayEnd.Text = "Label1"; this.lblDayEnd.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblDayEnd.Size = new System.Drawing.Size(397, 34); this.lblDayEnd.Location = new System.Drawing.Point(21, 276); this.lblDayEnd.TabIndex = 5; this.lblDayEnd.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblDayEnd.BackColor = System.Drawing.SystemColors.Control; this.lblDayEnd.Enabled = true; this.lblDayEnd.ForeColor = System.Drawing.SystemColors.ControlText; this.lblDayEnd.Cursor = System.Windows.Forms.Cursors.Default; this.lblDayEnd.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblDayEnd.UseMnemonic = true; this.lblDayEnd.Visible = true; this.lblDayEnd.AutoSize = false; this.lblDayEnd.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblDayEnd.Name = "lblDayEnd"; this._lbl_5.Text = "From Date"; this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_5.Size = new System.Drawing.Size(59, 13); this._lbl_5.Location = new System.Drawing.Point(24, 81); this._lbl_5.TabIndex = 1; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this._lbl_3.Text = "To Date"; this._lbl_3.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_3.Size = new System.Drawing.Size(47, 13); this._lbl_3.Location = new System.Drawing.Point(240, 81); this._lbl_3.TabIndex = 3; this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_3.BackColor = System.Drawing.Color.Transparent; this._lbl_3.Enabled = true; this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_3.UseMnemonic = true; this._lbl_3.Visible = true; this._lbl_3.AutoSize = true; this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_3.Name = "_lbl_3"; this._lbl_1.Text = "Calculated Day End Criteria"; this._lbl_1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_1.Size = new System.Drawing.Size(157, 13); this._lbl_1.Location = new System.Drawing.Point(21, 261); this._lbl_1.TabIndex = 18; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._lbl_4.Text = "level will be below"; this._lbl_4.Size = new System.Drawing.Size(85, 13); this._lbl_4.Location = new System.Drawing.Point(15, 369); this._lbl_4.TabIndex = 10; this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_4.BackColor = System.Drawing.Color.Transparent; this._lbl_4.Enabled = true; this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_4.UseMnemonic = true; this._lbl_4.Visible = true; this._lbl_4.AutoSize = true; this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_4.Name = "_lbl_4"; this._lbl_2.Text = "\"Day Ends\" and then guarantee no re-order"; this._lbl_2.Size = new System.Drawing.Size(206, 13); this._lbl_2.Location = new System.Drawing.Point(201, 351); this._lbl_2.TabIndex = 9; this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Enabled = true; this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.UseMnemonic = true; this._lbl_2.Visible = true; this._lbl_2.AutoSize = true; this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_2.Name = "_lbl_2"; this._lbl_0.Text = "Forecast my stock holding for "; this._lbl_0.Size = new System.Drawing.Size(141, 13); this._lbl_0.Location = new System.Drawing.Point(15, 351); this._lbl_0.TabIndex = 7; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = true; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(415, 241); this._Shape1_0.Location = new System.Drawing.Point(12, 78); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(415, 73); this._Shape1_1.Location = new System.Drawing.Point(12, 342); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this.Controls.Add(cmdFilter); this.Controls.Add(chkDynamic); this.Controls.Add(txtDays); this.Controls.Add(txtMinimum); this.Controls.Add(_MonthView1_1); this.Controls.Add(_MonthView1_0); this.Controls.Add(_lbl_6); this.Controls.Add(lblFilter); this.Controls.Add(_Label1_2); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_Label1_1); this.Controls.Add(_Label1_0); this.Controls.Add(Label2); this.Controls.Add(lblDayEnd); this.Controls.Add(_lbl_5); this.Controls.Add(_lbl_3); this.Controls.Add(_lbl_1); this.Controls.Add(_lbl_4); this.Controls.Add(_lbl_2); this.Controls.Add(_lbl_0); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.Controls.Add(ShapeContainer1); //Me.Label1.SetIndex(_Label1_2, CType(2, Short)) //Me.Label1.SetIndex(_Label1_1, CType(1, Short)) //Me.Label1.SetIndex(_Label1_0, CType(0, Short)) //Me.MonthView1.SetIndex(_MonthView1_1, CType(1, Short)) //Me.MonthView1.SetIndex(_MonthView1_0, CType(0, Short)) //Me.lbl.SetIndex(_lbl_6, CType(6, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lbl.SetIndex(_lbl_3, CType(3, Short)) //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_4, CType(4, Short)) //Me.lbl.SetIndex(_lbl_2, CType(2, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.MonthView1, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.Label1, System.ComponentModel.ISupportInitialize).EndInit() ((System.ComponentModel.ISupportInitialize)this._MonthView1_0).EndInit(); ((System.ComponentModel.ISupportInitialize)this._MonthView1_1).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
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(frmStockTransferItem)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.txtQtyT = new System.Windows.Forms.TextBox(); this.txtPSize = new System.Windows.Forms.TextBox(); this.txtPack = new System.Windows.Forms.TextBox(); this.txtPriceS = new System.Windows.Forms.TextBox(); this.txtQty = new System.Windows.Forms.TextBox(); this.txtPrice = new System.Windows.Forms.TextBox(); this.cmbQuantity = new System.Windows.Forms.ComboBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdPack = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._LBL_6 = new System.Windows.Forms.Label(); this._LBL_4 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblPComp = new System.Windows.Forms.Label(); this.lblSComp = new System.Windows.Forms.Label(); this.lblStockItemS = new System.Windows.Forms.Label(); this._LBL_5 = new System.Windows.Forms.Label(); this._LBL_0 = new System.Windows.Forms.Label(); this._LBL_3 = new System.Windows.Forms.Label(); this._LBL_2 = new System.Windows.Forms.Label(); this._LBL_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.LBL, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Stock Transfer Item"; this.ClientSize = new System.Drawing.Size(400, 249); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmStockTransferItem"; this.txtQtyT.AutoSize = false; this.txtQtyT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQtyT.Size = new System.Drawing.Size(67, 19); this.txtQtyT.Location = new System.Drawing.Point(96, 97); this.txtQtyT.TabIndex = 20; this.txtQtyT.Text = "0"; this.txtQtyT.AcceptsReturn = true; this.txtQtyT.BackColor = System.Drawing.SystemColors.Window; this.txtQtyT.CausesValidation = true; this.txtQtyT.Enabled = true; this.txtQtyT.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQtyT.HideSelection = true; this.txtQtyT.ReadOnly = false; this.txtQtyT.MaxLength = 0; this.txtQtyT.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQtyT.Multiline = false; this.txtQtyT.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQtyT.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQtyT.TabStop = true; this.txtQtyT.Visible = true; this.txtQtyT.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQtyT.Name = "txtQtyT"; this.txtPSize.AutoSize = false; this.txtPSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtPSize.Enabled = false; this.txtPSize.Size = new System.Drawing.Size(27, 19); this.txtPSize.Location = new System.Drawing.Point(184, 97); this.txtPSize.TabIndex = 19; this.txtPSize.Text = "1"; this.txtPSize.AcceptsReturn = true; this.txtPSize.BackColor = System.Drawing.SystemColors.Window; this.txtPSize.CausesValidation = true; this.txtPSize.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPSize.HideSelection = true; this.txtPSize.ReadOnly = false; this.txtPSize.MaxLength = 0; this.txtPSize.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPSize.Multiline = false; this.txtPSize.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPSize.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPSize.TabStop = true; this.txtPSize.Visible = true; this.txtPSize.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPSize.Name = "txtPSize"; this.txtPack.AutoSize = false; this.txtPack.Size = new System.Drawing.Size(41, 19); this.txtPack.Location = new System.Drawing.Point(352, 160); this.txtPack.TabIndex = 17; this.txtPack.Text = "0"; this.txtPack.AcceptsReturn = true; this.txtPack.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtPack.BackColor = System.Drawing.SystemColors.Window; this.txtPack.CausesValidation = true; this.txtPack.Enabled = true; this.txtPack.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPack.HideSelection = true; this.txtPack.ReadOnly = false; this.txtPack.MaxLength = 0; this.txtPack.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPack.Multiline = false; this.txtPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPack.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPack.TabStop = true; this.txtPack.Visible = true; this.txtPack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPack.Name = "txtPack"; this.txtPriceS.AutoSize = false; this.txtPriceS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPriceS.Enabled = false; this.txtPriceS.Size = new System.Drawing.Size(91, 19); this.txtPriceS.Location = new System.Drawing.Point(291, 234); this.txtPriceS.TabIndex = 9; this.txtPriceS.Text = "0.00"; this.txtPriceS.Visible = false; this.txtPriceS.AcceptsReturn = true; this.txtPriceS.BackColor = System.Drawing.SystemColors.Window; this.txtPriceS.CausesValidation = true; this.txtPriceS.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPriceS.HideSelection = true; this.txtPriceS.ReadOnly = false; this.txtPriceS.MaxLength = 0; this.txtPriceS.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPriceS.Multiline = false; this.txtPriceS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPriceS.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPriceS.TabStop = true; this.txtPriceS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPriceS.Name = "txtPriceS"; this.txtQty.AutoSize = false; this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQty.Size = new System.Drawing.Size(67, 19); this.txtQty.Location = new System.Drawing.Point(316, 97); this.txtQty.ReadOnly = true; this.txtQty.TabIndex = 8; this.txtQty.Text = "0"; this.txtQty.AcceptsReturn = true; this.txtQty.BackColor = System.Drawing.SystemColors.Window; this.txtQty.CausesValidation = true; this.txtQty.Enabled = true; this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQty.HideSelection = true; this.txtQty.MaxLength = 0; this.txtQty.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQty.Multiline = false; this.txtQty.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQty.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQty.TabStop = true; this.txtQty.Visible = true; this.txtQty.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQty.Name = "txtQty"; this.txtPrice.AutoSize = false; this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPrice.Enabled = false; this.txtPrice.Size = new System.Drawing.Size(91, 19); this.txtPrice.Location = new System.Drawing.Point(293, 121); this.txtPrice.TabIndex = 4; this.txtPrice.Text = "0.00"; this.txtPrice.AcceptsReturn = true; this.txtPrice.BackColor = System.Drawing.SystemColors.Window; this.txtPrice.CausesValidation = true; this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPrice.HideSelection = true; this.txtPrice.ReadOnly = false; this.txtPrice.MaxLength = 0; this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPrice.Multiline = false; this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPrice.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPrice.TabStop = true; this.txtPrice.Visible = true; this.txtPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPrice.Name = "txtPrice"; this.cmbQuantity.Size = new System.Drawing.Size(79, 21); this.cmbQuantity.Location = new System.Drawing.Point(184, 96); this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbQuantity.TabIndex = 3; this.cmbQuantity.Visible = false; this.cmbQuantity.BackColor = System.Drawing.SystemColors.Window; this.cmbQuantity.CausesValidation = true; this.cmbQuantity.Enabled = true; this.cmbQuantity.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbQuantity.IntegralHeight = true; this.cmbQuantity.Cursor = System.Windows.Forms.Cursors.Default; this.cmbQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbQuantity.Sorted = false; this.cmbQuantity.TabStop = true; this.cmbQuantity.Name = "cmbQuantity"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(400, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 0; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdPack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdPack.Text = "Break / Build P&ack"; this.cmdPack.Size = new System.Drawing.Size(105, 29); this.cmdPack.Location = new System.Drawing.Point(88, 3); this.cmdPack.TabIndex = 18; this.cmdPack.TabStop = false; this.cmdPack.BackColor = System.Drawing.SystemColors.Control; this.cmdPack.CausesValidation = true; this.cmdPack.Enabled = true; this.cmdPack.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPack.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPack.Name = "cmdPack"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(8, 3); this.cmdCancel.TabIndex = 16; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(312, 3); this.cmdClose.TabIndex = 1; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._LBL_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_6.Text = "Item Qty:"; this._LBL_6.Size = new System.Drawing.Size(42, 13); this._LBL_6.Location = new System.Drawing.Point(52, 99); this._LBL_6.TabIndex = 22; this._LBL_6.BackColor = System.Drawing.Color.Transparent; this._LBL_6.Enabled = true; this._LBL_6.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_6.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_6.UseMnemonic = true; this._LBL_6.Visible = true; this._LBL_6.AutoSize = true; this._LBL_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_6.Name = "_LBL_6"; this._LBL_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_4.Text = "x"; this._LBL_4.Size = new System.Drawing.Size(8, 16); this._LBL_4.Location = new System.Drawing.Point(170, 98); this._LBL_4.TabIndex = 21; this._LBL_4.BackColor = System.Drawing.Color.Transparent; this._LBL_4.Enabled = true; this._LBL_4.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_4.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_4.UseMnemonic = true; this._LBL_4.Visible = true; this._LBL_4.AutoSize = true; this._LBL_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_4.Name = "_LBL_4"; this.Label2.Text = "Please verify products from both locations"; this.Label2.ForeColor = System.Drawing.Color.FromArgb(192, 0, 0); this.Label2.Size = new System.Drawing.Size(296, 23); this.Label2.Location = new System.Drawing.Point(56, 160); this.Label2.TabIndex = 15; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Enabled = true; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.lblPComp.Text = "Promotion Name:"; this.lblPComp.Size = new System.Drawing.Size(352, 24); this.lblPComp.Location = new System.Drawing.Point(16, 52); this.lblPComp.TabIndex = 14; this.lblPComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblPComp.BackColor = System.Drawing.Color.Transparent; this.lblPComp.Enabled = true; this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPComp.UseMnemonic = true; this.lblPComp.Visible = true; this.lblPComp.AutoSize = false; this.lblPComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblPComp.Name = "lblPComp"; this.lblSComp.Text = "Promotion Name:"; this.lblSComp.Size = new System.Drawing.Size(360, 24); this.lblSComp.Location = new System.Drawing.Point(16, 192); this.lblSComp.TabIndex = 13; this.lblSComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblSComp.BackColor = System.Drawing.Color.Transparent; this.lblSComp.Enabled = true; this.lblSComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblSComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblSComp.UseMnemonic = true; this.lblSComp.Visible = true; this.lblSComp.AutoSize = false; this.lblSComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblSComp.Name = "lblSComp"; this.lblStockItemS.Text = "Label1"; this.lblStockItemS.Size = new System.Drawing.Size(286, 17); this.lblStockItemS.Location = new System.Drawing.Point(98, 216); this.lblStockItemS.TabIndex = 12; this.lblStockItemS.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItemS.BackColor = System.Drawing.SystemColors.Control; this.lblStockItemS.Enabled = true; this.lblStockItemS.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItemS.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItemS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItemS.UseMnemonic = true; this.lblStockItemS.Visible = true; this.lblStockItemS.AutoSize = false; this.lblStockItemS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItemS.Name = "lblStockItemS"; this._LBL_5.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_5.Text = "Stock Item Name:"; this._LBL_5.Size = new System.Drawing.Size(85, 13); this._LBL_5.Location = new System.Drawing.Point(10, 184); this._LBL_5.TabIndex = 11; this._LBL_5.BackColor = System.Drawing.Color.Transparent; this._LBL_5.Enabled = true; this._LBL_5.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_5.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_5.UseMnemonic = true; this._LBL_5.Visible = true; this._LBL_5.AutoSize = true; this._LBL_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_5.Name = "_LBL_5"; this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_0.Text = "Price:"; this._LBL_0.Size = new System.Drawing.Size(27, 13); this._LBL_0.Location = new System.Drawing.Point(260, 237); this._LBL_0.TabIndex = 10; this._LBL_0.Visible = false; this._LBL_0.BackColor = System.Drawing.Color.Transparent; this._LBL_0.Enabled = true; this._LBL_0.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_0.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_0.UseMnemonic = true; this._LBL_0.AutoSize = true; this._LBL_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_0.Name = "_LBL_0"; this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_3.Text = "Cost Price (singles) :"; this._LBL_3.Size = new System.Drawing.Size(95, 13); this._LBL_3.Location = new System.Drawing.Point(194, 124); this._LBL_3.TabIndex = 7; this._LBL_3.BackColor = System.Drawing.Color.Transparent; this._LBL_3.Enabled = true; this._LBL_3.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_3.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_3.UseMnemonic = true; this._LBL_3.Visible = true; this._LBL_3.AutoSize = true; this._LBL_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_3.Name = "_LBL_3"; this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_2.Text = "Total Qty:"; this._LBL_2.Size = new System.Drawing.Size(46, 13); this._LBL_2.Location = new System.Drawing.Point(268, 99); this._LBL_2.TabIndex = 6; this._LBL_2.BackColor = System.Drawing.Color.Transparent; this._LBL_2.Enabled = true; this._LBL_2.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_2.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_2.UseMnemonic = true; this._LBL_2.Visible = true; this._LBL_2.AutoSize = true; this._LBL_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_2.Name = "_LBL_2"; this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_1.Text = "Stock Item Name:"; this._LBL_1.Size = new System.Drawing.Size(85, 13); this._LBL_1.Location = new System.Drawing.Point(10, 79); this._LBL_1.TabIndex = 5; this._LBL_1.BackColor = System.Drawing.Color.Transparent; this._LBL_1.Enabled = true; this._LBL_1.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_1.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_1.UseMnemonic = true; this._LBL_1.Visible = true; this._LBL_1.AutoSize = true; this._LBL_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_1.Name = "_LBL_1"; this.lblStockItem.Text = "Label1"; this.lblStockItem.Size = new System.Drawing.Size(286, 17); this.lblStockItem.Location = new System.Drawing.Point(98, 79); this.lblStockItem.TabIndex = 2; this.lblStockItem.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.Enabled = true; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.UseMnemonic = true; this.lblStockItem.Visible = true; this.lblStockItem.AutoSize = false; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Name = "lblStockItem"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(383, 104); this._Shape1_2.Location = new System.Drawing.Point(7, 48); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(383, 56); this._Shape1_0.Location = new System.Drawing.Point(7, 184); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this.Controls.Add(txtQtyT); this.Controls.Add(txtPSize); this.Controls.Add(txtPack); this.Controls.Add(txtPriceS); this.Controls.Add(txtQty); this.Controls.Add(txtPrice); this.Controls.Add(cmbQuantity); this.Controls.Add(picButtons); this.Controls.Add(_LBL_6); this.Controls.Add(_LBL_4); this.Controls.Add(Label2); this.Controls.Add(lblPComp); this.Controls.Add(lblSComp); this.Controls.Add(lblStockItemS); this.Controls.Add(_LBL_5); this.Controls.Add(_LBL_0); this.Controls.Add(_LBL_3); this.Controls.Add(_LBL_2); this.Controls.Add(_LBL_1); this.Controls.Add(lblStockItem); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdPack); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.LBL.SetIndex(_LBL_6, CType(6, Short)) //Me.LBL.SetIndex(_LBL_4, CType(4, Short)) //Me.LBL.SetIndex(_LBL_5, CType(5, Short)) //Me.LBL.SetIndex(_LBL_0, CType(0, Short)) //Me.LBL.SetIndex(_LBL_3, CType(3, Short)) //Me.LBL.SetIndex(_LBL_2, CType(2, Short)) //Me.LBL.SetIndex(_LBL_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.LBL, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMainHOParam)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._chkBit_6 = new System.Windows.Forms.CheckBox(); this._chkBit_5 = new System.Windows.Forms.CheckBox(); this._chkBit_1 = new System.Windows.Forms.CheckBox(); this._chkBit_2 = new System.Windows.Forms.CheckBox(); this._chkBit_3 = new System.Windows.Forms.CheckBox(); this._chkBit_4 = new System.Windows.Forms.CheckBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClearLock = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lbl_2 = new System.Windows.Forms.Label(); this._Shape1_3 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.chkBit = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.chkBit, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "4POS HeadOffice Sync - Parameters"; this.ClientSize = new System.Drawing.Size(271, 189); 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 = "frmMainHOParam"; this._chkBit_6.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkBit_6.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBit_6.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkBit_6.Text = "Ignore Bill of Material / Recipe"; this._chkBit_6.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBit_6.Size = new System.Drawing.Size(242, 15); this._chkBit_6.Location = new System.Drawing.Point(16, 160); this._chkBit_6.TabIndex = 10; this._chkBit_6.CausesValidation = true; this._chkBit_6.Enabled = true; this._chkBit_6.Cursor = System.Windows.Forms.Cursors.Default; this._chkBit_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBit_6.Appearance = System.Windows.Forms.Appearance.Normal; this._chkBit_6.TabStop = true; this._chkBit_6.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkBit_6.Visible = true; this._chkBit_6.Name = "_chkBit_6"; this._chkBit_5.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkBit_5.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBit_5.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkBit_5.Text = "Overwrite Promotion"; this._chkBit_5.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBit_5.Size = new System.Drawing.Size(242, 15); this._chkBit_5.Location = new System.Drawing.Point(16, 142); this._chkBit_5.TabIndex = 9; this._chkBit_5.CausesValidation = true; this._chkBit_5.Enabled = true; this._chkBit_5.Cursor = System.Windows.Forms.Cursors.Default; this._chkBit_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBit_5.Appearance = System.Windows.Forms.Appearance.Normal; this._chkBit_5.TabStop = true; this._chkBit_5.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkBit_5.Visible = true; this._chkBit_5.Name = "_chkBit_5"; this._chkBit_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkBit_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBit_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkBit_1.Text = "Update Re-order level"; this._chkBit_1.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBit_1.Size = new System.Drawing.Size(242, 15); this._chkBit_1.Location = new System.Drawing.Point(16, 59); this._chkBit_1.TabIndex = 6; this._chkBit_1.CausesValidation = true; this._chkBit_1.Enabled = true; this._chkBit_1.Cursor = System.Windows.Forms.Cursors.Default; this._chkBit_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBit_1.Appearance = System.Windows.Forms.Appearance.Normal; this._chkBit_1.TabStop = true; this._chkBit_1.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkBit_1.Visible = true; this._chkBit_1.Name = "_chkBit_1"; this._chkBit_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkBit_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBit_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkBit_2.Text = "Overwrite Employee information"; this._chkBit_2.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBit_2.Size = new System.Drawing.Size(242, 15); this._chkBit_2.Location = new System.Drawing.Point(16, 79); this._chkBit_2.TabIndex = 5; this._chkBit_2.CausesValidation = true; this._chkBit_2.Enabled = true; this._chkBit_2.Cursor = System.Windows.Forms.Cursors.Default; this._chkBit_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBit_2.Appearance = System.Windows.Forms.Appearance.Normal; this._chkBit_2.TabStop = true; this._chkBit_2.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkBit_2.Visible = true; this._chkBit_2.Name = "_chkBit_2"; this._chkBit_3.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkBit_3.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBit_3.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkBit_3.Text = "Update Item Counter for Waitron"; this._chkBit_3.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBit_3.Size = new System.Drawing.Size(242, 15); this._chkBit_3.Location = new System.Drawing.Point(16, 99); this._chkBit_3.TabIndex = 4; this._chkBit_3.CausesValidation = true; this._chkBit_3.Enabled = true; this._chkBit_3.Cursor = System.Windows.Forms.Cursors.Default; this._chkBit_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBit_3.Appearance = System.Windows.Forms.Appearance.Normal; this._chkBit_3.TabStop = true; this._chkBit_3.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkBit_3.Visible = true; this._chkBit_3.Name = "_chkBit_3"; this._chkBit_4.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkBit_4.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkBit_4.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkBit_4.Text = "Update Actual Cost"; this._chkBit_4.ForeColor = System.Drawing.SystemColors.WindowText; this._chkBit_4.Size = new System.Drawing.Size(242, 15); this._chkBit_4.Location = new System.Drawing.Point(16, 120); this._chkBit_4.TabIndex = 3; this._chkBit_4.CausesValidation = true; this._chkBit_4.Enabled = true; this._chkBit_4.Cursor = System.Windows.Forms.Cursors.Default; this._chkBit_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkBit_4.Appearance = System.Windows.Forms.Appearance.Normal; this._chkBit_4.TabStop = true; this._chkBit_4.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkBit_4.Visible = true; this._chkBit_4.Name = "_chkBit_4"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(271, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 0; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(8, 4); this.cmdCancel.TabIndex = 8; 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.cmdClearLock.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClearLock.Text = "Clear Log"; this.cmdClearLock.Size = new System.Drawing.Size(73, 29); this.cmdClearLock.Location = new System.Drawing.Point(552, 4); this.cmdClearLock.TabIndex = 2; this.cmdClearLock.TabStop = false; this.cmdClearLock.BackColor = System.Drawing.SystemColors.Control; this.cmdClearLock.CausesValidation = true; this.cmdClearLock.Enabled = true; this.cmdClearLock.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClearLock.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClearLock.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClearLock.Name = "cmdClearLock"; 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(184, 4); this.cmdClose.TabIndex = 1; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Text = "1. 4POS HeadOffice Sync - Parameters"; 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(206, 14); this._lbl_2.Location = new System.Drawing.Point(8, 40); this._lbl_2.TabIndex = 7; 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._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(254, 125); this._Shape1_3.Location = new System.Drawing.Point(8, 55); 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(_chkBit_6); this.Controls.Add(_chkBit_5); this.Controls.Add(_chkBit_1); this.Controls.Add(_chkBit_2); this.Controls.Add(_chkBit_3); this.Controls.Add(_chkBit_4); this.Controls.Add(picButtons); this.Controls.Add(_lbl_2); this.ShapeContainer1.Shapes.Add(_Shape1_3); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClearLock); this.picButtons.Controls.Add(cmdClose); //Me.chkBit.SetIndex(_chkBit_6, CType(6, Short)) //Me.chkBit.SetIndex(_chkBit_5, CType(5, Short)) //Me.chkBit.SetIndex(_chkBit_1, CType(1, Short)) //Me.chkBit.SetIndex(_chkBit_2, CType(2, Short)) //Me.chkBit.SetIndex(_chkBit_3, CType(3, Short)) //Me.chkBit.SetIndex(_chkBit_4, CType(4, Short)) //Me.lbl.SetIndex(_lbl_2, CType(2, Short)) this.Shape1.SetIndex(_Shape1_3, Convert.ToInt16(3)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.chkBit, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockGroup)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._chkFields_1 = new System.Windows.Forms.CheckBox(); this._txtFields_0 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_38 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.chkFields = New Microsoft.VisualBasic.Compatibility.VB6.CheckBoxArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Stock Group Details"; this.ClientSize = new System.Drawing.Size(527, 117); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmStockGroup"; this._chkFields_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_1.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._chkFields_1.Text = "Disable this Stock Group"; this._chkFields_1.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_1.Size = new System.Drawing.Size(139, 13); this._chkFields_1.Location = new System.Drawing.Point(360, 90); this._chkFields_1.TabIndex = 6; this._chkFields_1.CausesValidation = true; this._chkFields_1.Enabled = true; this._chkFields_1.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_1.Appearance = System.Windows.Forms.Appearance.Normal; this._chkFields_1.TabStop = true; this._chkFields_1.CheckState = System.Windows.Forms.CheckState.Unchecked; this._chkFields_1.Visible = true; this._chkFields_1.Name = "_chkFields_1"; this._txtFields_0.AutoSize = false; this._txtFields_0.Size = new System.Drawing.Size(375, 19); this._txtFields_0.Location = new System.Drawing.Point(126, 66); this._txtFields_0.TabIndex = 5; this._txtFields_0.AcceptsReturn = true; this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.CausesValidation = true; this._txtFields_0.Enabled = true; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.HideSelection = true; this._txtFields_0.ReadOnly = false; this._txtFields_0.MaxLength = 0; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.Multiline = false; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_0.TabStop = true; this._txtFields_0.Visible = true; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Name = "_txtFields_0"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(527, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 2; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 1; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(441, 4); this.cmdClose.TabIndex = 0; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_38.Text = "Stock Group Name:"; this._lblLabels_38.Size = new System.Drawing.Size(94, 13); this._lblLabels_38.Location = new System.Drawing.Point(27, 69); this._lblLabels_38.TabIndex = 4; this._lblLabels_38.BackColor = System.Drawing.Color.Transparent; this._lblLabels_38.Enabled = true; this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_38.UseMnemonic = true; this._lblLabels_38.Visible = true; this._lblLabels_38.AutoSize = true; this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_38.Name = "_lblLabels_38"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(502, 49); this._Shape1_2.Location = new System.Drawing.Point(15, 60); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&1. General"; this._lbl_5.Size = new System.Drawing.Size(60, 13); this._lbl_5.Location = new System.Drawing.Point(15, 45); this._lbl_5.TabIndex = 3; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(_chkFields_1); this.Controls.Add(_txtFields_0); this.Controls.Add(picButtons); this.Controls.Add(_lblLabels_38); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.chkFields.SetIndex(_chkFields_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short)) //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.chkFields, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
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.chkChannel = new System.Windows.Forms.CheckBox(); this.cmbDelivery = new System.Windows.Forms.ComboBox(); this.cmbCOD = new System.Windows.Forms.ComboBox(); this._chkFields_12 = new System.Windows.Forms.CheckBox(); 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.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lblLabels_38 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this._Shape1_2 }); this.ShapeContainer1.Size = new System.Drawing.Size(406, 158); this.ShapeContainer1.TabIndex = 11; this.ShapeContainer1.TabStop = false; // //_Shape1_2 // this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.Location = new System.Drawing.Point(15, 60); this._Shape1_2.Name = "_Shape1_2"; this._Shape1_2.Size = new System.Drawing.Size(379, 88); // //chkChannel // this.chkChannel.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.chkChannel.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkChannel.Cursor = System.Windows.Forms.Cursors.Default; this.chkChannel.ForeColor = System.Drawing.SystemColors.ControlText; this.chkChannel.Location = new System.Drawing.Point(210, 87); this.chkChannel.Name = "chkChannel"; this.chkChannel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkChannel.Size = new System.Drawing.Size(136, 13); this.chkChannel.TabIndex = 5; this.chkChannel.Text = "Delivery Channel Name:"; this.chkChannel.UseVisualStyleBackColor = false; // //cmbDelivery // this.cmbDelivery.BackColor = System.Drawing.SystemColors.Window; this.cmbDelivery.Cursor = System.Windows.Forms.Cursors.Default; this.cmbDelivery.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbDelivery.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbDelivery.Location = new System.Drawing.Point(210, 102); this.cmbDelivery.Name = "cmbDelivery"; this.cmbDelivery.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbDelivery.Size = new System.Drawing.Size(178, 21); this.cmbDelivery.TabIndex = 6; // //cmbCOD // this.cmbCOD.BackColor = System.Drawing.SystemColors.Window; this.cmbCOD.Cursor = System.Windows.Forms.Cursors.Default; this.cmbCOD.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbCOD.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbCOD.Location = new System.Drawing.Point(21, 102); this.cmbCOD.Name = "cmbCOD"; this.cmbCOD.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbCOD.Size = new System.Drawing.Size(178, 21); this.cmbCOD.TabIndex = 4; // //_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(324, 126); this._chkFields_12.Name = "_chkFields_12"; this._chkFields_12.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_12.Size = new System.Drawing.Size(64, 19); this._chkFields_12.TabIndex = 7; this._chkFields_12.Text = "Disabled:"; this._chkFields_12.UseVisualStyleBackColor = false; // //_txtFields_0 // this._txtFields_0.AcceptsReturn = true; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.Location = new System.Drawing.Point(102, 66); this._txtFields_0.MaxLength = 0; this._txtFields_0.Name = "_txtFields_0"; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.Size = new System.Drawing.Size(285, 19); this._txtFields_0.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.cmdAllocate); 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(406, 39); this.picButtons.TabIndex = 10; // //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(243, 3); this.cmdPrint.Name = "cmdPrint"; this.cmdPrint.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPrint.Size = new System.Drawing.Size(76, 28); this.cmdPrint.TabIndex = 12; this.cmdPrint.Text = "&Print"; this.cmdPrint.UseVisualStyleBackColor = false; // //cmdAllocate // this.cmdAllocate.BackColor = System.Drawing.SystemColors.Control; this.cmdAllocate.Cursor = System.Windows.Forms.Cursors.Default; this.cmdAllocate.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdAllocate.Location = new System.Drawing.Point(150, 3); this.cmdAllocate.Name = "cmdAllocate"; this.cmdAllocate.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdAllocate.Size = new System.Drawing.Size(79, 28); this.cmdAllocate.TabIndex = 11; this.cmdAllocate.Text = "&Allocate"; this.cmdAllocate.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 = 9; 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(324, 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 = 8; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.UseVisualStyleBackColor = false; // //_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(20, 87); this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.Size = new System.Drawing.Size(106, 13); this._lblLabels_0.TabIndex = 3; this._lblLabels_0.Text = "COD Channel Name:"; this._lblLabels_0.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(20, 69); this._lblLabels_38.Name = "_lblLabels_38"; this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_38.Size = new System.Drawing.Size(84, 13); this._lblLabels_38.TabIndex = 1; this._lblLabels_38.Text = "Price List 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.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(56, 13); this._lbl_5.TabIndex = 0; this._lbl_5.Text = "&1. General"; // //frmPriceList // 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(406, 158); this.ControlBox = false; this.Controls.Add(this.chkChannel); this.Controls.Add(this.cmbDelivery); this.Controls.Add(this.cmbCOD); this.Controls.Add(this._chkFields_12); this.Controls.Add(this._txtFields_0); this.Controls.Add(this.picButtons); this.Controls.Add(this._lblLabels_0); 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 = "frmPriceList"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Edit Price List"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmVegTestStockBack)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.txtQtyB = new System.Windows.Forms.TextBox(); this.txtPriceB = new System.Windows.Forms.TextBox(); this.cmdSelectChild = new System.Windows.Forms.Button(); this.txtPack = new System.Windows.Forms.TextBox(); this.txtPriceS = new System.Windows.Forms.TextBox(); this.txtQty = new System.Windows.Forms.TextBox(); this.txtPrice = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._LBL_6 = new System.Windows.Forms.Label(); this._LBL_4 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblPComp = new System.Windows.Forms.Label(); this.lblSComp = new System.Windows.Forms.Label(); this.lblStockItemB = new System.Windows.Forms.Label(); this._LBL_5 = new System.Windows.Forms.Label(); this._LBL_0 = new System.Windows.Forms.Label(); this._LBL_3 = new System.Windows.Forms.Label(); this._LBL_2 = new System.Windows.Forms.Label(); this._LBL_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.LBL, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Stock Receiving"; this.ClientSize = new System.Drawing.Size(397, 287); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmVegTestStockBack"; this.txtQtyB.AutoSize = false; this.txtQtyB.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQtyB.Enabled = false; this.txtQtyB.Size = new System.Drawing.Size(91, 19); this.txtQtyB.Location = new System.Drawing.Point(293, 227); this.txtQtyB.TabIndex = 19; this.txtQtyB.Text = "0.00"; this.txtQtyB.AcceptsReturn = true; this.txtQtyB.BackColor = System.Drawing.SystemColors.Window; this.txtQtyB.CausesValidation = true; this.txtQtyB.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQtyB.HideSelection = true; this.txtQtyB.ReadOnly = false; this.txtQtyB.MaxLength = 0; this.txtQtyB.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQtyB.Multiline = false; this.txtQtyB.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQtyB.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQtyB.TabStop = true; this.txtQtyB.Visible = true; this.txtQtyB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQtyB.Name = "txtQtyB"; this.txtPriceB.AutoSize = false; this.txtPriceB.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPriceB.Enabled = false; this.txtPriceB.Size = new System.Drawing.Size(91, 19); this.txtPriceB.Location = new System.Drawing.Point(293, 251); this.txtPriceB.TabIndex = 18; this.txtPriceB.Text = "0"; this.txtPriceB.AcceptsReturn = true; this.txtPriceB.BackColor = System.Drawing.SystemColors.Window; this.txtPriceB.CausesValidation = true; this.txtPriceB.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPriceB.HideSelection = true; this.txtPriceB.ReadOnly = false; this.txtPriceB.MaxLength = 0; this.txtPriceB.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPriceB.Multiline = false; this.txtPriceB.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPriceB.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPriceB.TabStop = true; this.txtPriceB.Visible = true; this.txtPriceB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPriceB.Name = "txtPriceB"; this.cmdSelectChild.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdSelectChild.Text = "Select Item you wish above QTY to add on"; this.cmdSelectChild.Size = new System.Drawing.Size(217, 29); this.cmdSelectChild.Location = new System.Drawing.Point(173, 136); this.cmdSelectChild.TabIndex = 17; this.cmdSelectChild.TabStop = false; this.cmdSelectChild.BackColor = System.Drawing.SystemColors.Control; this.cmdSelectChild.CausesValidation = true; this.cmdSelectChild.Enabled = true; this.cmdSelectChild.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdSelectChild.Cursor = System.Windows.Forms.Cursors.Default; this.cmdSelectChild.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdSelectChild.Name = "cmdSelectChild"; this.txtPack.AutoSize = false; this.txtPack.Size = new System.Drawing.Size(41, 19); this.txtPack.Location = new System.Drawing.Point(336, 320); this.txtPack.TabIndex = 16; this.txtPack.Text = "0"; this.txtPack.Visible = false; this.txtPack.AcceptsReturn = true; this.txtPack.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtPack.BackColor = System.Drawing.SystemColors.Window; this.txtPack.CausesValidation = true; this.txtPack.Enabled = true; this.txtPack.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPack.HideSelection = true; this.txtPack.ReadOnly = false; this.txtPack.MaxLength = 0; this.txtPack.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPack.Multiline = false; this.txtPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPack.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPack.TabStop = true; this.txtPack.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPack.Name = "txtPack"; this.txtPriceS.AutoSize = false; this.txtPriceS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPriceS.Enabled = false; this.txtPriceS.Size = new System.Drawing.Size(91, 19); this.txtPriceS.Location = new System.Drawing.Point(291, 354); this.txtPriceS.TabIndex = 8; this.txtPriceS.Text = "0.00"; this.txtPriceS.Visible = false; this.txtPriceS.AcceptsReturn = true; this.txtPriceS.BackColor = System.Drawing.SystemColors.Window; this.txtPriceS.CausesValidation = true; this.txtPriceS.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPriceS.HideSelection = true; this.txtPriceS.ReadOnly = false; this.txtPriceS.MaxLength = 0; this.txtPriceS.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPriceS.Multiline = false; this.txtPriceS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPriceS.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPriceS.TabStop = true; this.txtPriceS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPriceS.Name = "txtPriceS"; this.txtQty.AutoSize = false; this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQty.Enabled = false; this.txtQty.Size = new System.Drawing.Size(67, 19); this.txtQty.Location = new System.Drawing.Point(96, 97); this.txtQty.TabIndex = 7; this.txtQty.Text = "0"; this.txtQty.AcceptsReturn = true; this.txtQty.BackColor = System.Drawing.SystemColors.Window; this.txtQty.CausesValidation = true; this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQty.HideSelection = true; this.txtQty.ReadOnly = false; this.txtQty.MaxLength = 0; this.txtQty.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQty.Multiline = false; this.txtQty.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQty.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQty.TabStop = true; this.txtQty.Visible = true; this.txtQty.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQty.Name = "txtQty"; this.txtPrice.AutoSize = false; this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPrice.Enabled = false; this.txtPrice.Size = new System.Drawing.Size(91, 19); this.txtPrice.Location = new System.Drawing.Point(293, 97); this.txtPrice.TabIndex = 3; this.txtPrice.Text = "0.00"; this.txtPrice.AcceptsReturn = true; this.txtPrice.BackColor = System.Drawing.SystemColors.Window; this.txtPrice.CausesValidation = true; this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPrice.HideSelection = true; this.txtPrice.ReadOnly = false; this.txtPrice.MaxLength = 0; this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPrice.Multiline = false; this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPrice.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPrice.TabStop = true; this.txtPrice.Visible = true; this.txtPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPrice.Name = "txtPrice"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(397, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 0; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(8, 3); this.cmdCancel.TabIndex = 15; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "Process && E&xit"; this.cmdClose.Size = new System.Drawing.Size(97, 29); this.cmdClose.Location = new System.Drawing.Point(288, 3); this.cmdClose.TabIndex = 1; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._LBL_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_6.Text = "Total Receiving QTY in KG:"; this._LBL_6.Size = new System.Drawing.Size(132, 13); this._LBL_6.Location = new System.Drawing.Point(157, 254); this._LBL_6.TabIndex = 21; this._LBL_6.BackColor = System.Drawing.Color.Transparent; this._LBL_6.Enabled = true; this._LBL_6.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_6.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_6.UseMnemonic = true; this._LBL_6.Visible = true; this._LBL_6.AutoSize = true; this._LBL_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_6.Name = "_LBL_6"; this._LBL_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_4.Text = "Total Receiving QTY:"; this._LBL_4.Size = new System.Drawing.Size(103, 13); this._LBL_4.Location = new System.Drawing.Point(186, 230); this._LBL_4.TabIndex = 20; this._LBL_4.BackColor = System.Drawing.Color.Transparent; this._LBL_4.Enabled = true; this._LBL_4.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_4.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_4.UseMnemonic = true; this._LBL_4.Visible = true; this._LBL_4.AutoSize = true; this._LBL_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_4.Name = "_LBL_4"; this.Label2.Text = "Please verify products from both locations"; this.Label2.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Label2.ForeColor = System.Drawing.Color.FromArgb(192, 0, 0); this.Label2.Size = new System.Drawing.Size(296, 23); this.Label2.Location = new System.Drawing.Point(40, 320); this.Label2.TabIndex = 14; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Enabled = true; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.lblPComp.Text = "From"; this.lblPComp.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblPComp.Size = new System.Drawing.Size(352, 24); this.lblPComp.Location = new System.Drawing.Point(16, 52); this.lblPComp.TabIndex = 13; this.lblPComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblPComp.BackColor = System.Drawing.Color.Transparent; this.lblPComp.Enabled = true; this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPComp.UseMnemonic = true; this.lblPComp.Visible = true; this.lblPComp.AutoSize = false; this.lblPComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblPComp.Name = "lblPComp"; this.lblSComp.Text = "To"; this.lblSComp.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblSComp.Size = new System.Drawing.Size(360, 24); this.lblSComp.Location = new System.Drawing.Point(16, 184); this.lblSComp.TabIndex = 12; this.lblSComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblSComp.BackColor = System.Drawing.Color.Transparent; this.lblSComp.Enabled = true; this.lblSComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblSComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblSComp.UseMnemonic = true; this.lblSComp.Visible = true; this.lblSComp.AutoSize = false; this.lblSComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblSComp.Name = "lblSComp"; this.lblStockItemB.Text = " <Receiving Stock Item>"; this.lblStockItemB.Size = new System.Drawing.Size(286, 17); this.lblStockItemB.Location = new System.Drawing.Point(98, 208); this.lblStockItemB.TabIndex = 11; this.lblStockItemB.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItemB.BackColor = System.Drawing.SystemColors.Control; this.lblStockItemB.Enabled = true; this.lblStockItemB.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItemB.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItemB.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItemB.UseMnemonic = true; this.lblStockItemB.Visible = true; this.lblStockItemB.AutoSize = false; this.lblStockItemB.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItemB.Name = "lblStockItemB"; this._LBL_5.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_5.Text = "Stock Item Name:"; this._LBL_5.Size = new System.Drawing.Size(85, 13); this._LBL_5.Location = new System.Drawing.Point(10, 208); this._LBL_5.TabIndex = 10; this._LBL_5.BackColor = System.Drawing.Color.Transparent; this._LBL_5.Enabled = true; this._LBL_5.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_5.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_5.UseMnemonic = true; this._LBL_5.Visible = true; this._LBL_5.AutoSize = true; this._LBL_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_5.Name = "_LBL_5"; this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_0.Text = "Price:"; this._LBL_0.Size = new System.Drawing.Size(27, 13); this._LBL_0.Location = new System.Drawing.Point(260, 357); this._LBL_0.TabIndex = 9; this._LBL_0.Visible = false; this._LBL_0.BackColor = System.Drawing.Color.Transparent; this._LBL_0.Enabled = true; this._LBL_0.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_0.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_0.UseMnemonic = true; this._LBL_0.AutoSize = true; this._LBL_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_0.Name = "_LBL_0"; this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_3.Text = "Available QTY in KG:"; this._LBL_3.Size = new System.Drawing.Size(100, 13); this._LBL_3.Location = new System.Drawing.Point(189, 100); this._LBL_3.TabIndex = 6; this._LBL_3.BackColor = System.Drawing.Color.Transparent; this._LBL_3.Enabled = true; this._LBL_3.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_3.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_3.UseMnemonic = true; this._LBL_3.Visible = true; this._LBL_3.AutoSize = true; this._LBL_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_3.Name = "_LBL_3"; this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_2.Text = "Available QTY:"; this._LBL_2.Size = new System.Drawing.Size(71, 13); this._LBL_2.Location = new System.Drawing.Point(24, 100); this._LBL_2.TabIndex = 5; this._LBL_2.BackColor = System.Drawing.Color.Transparent; this._LBL_2.Enabled = true; this._LBL_2.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_2.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_2.UseMnemonic = true; this._LBL_2.Visible = true; this._LBL_2.AutoSize = true; this._LBL_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_2.Name = "_LBL_2"; this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_1.Text = "Stock Item Name:"; this._LBL_1.Size = new System.Drawing.Size(85, 13); this._LBL_1.Location = new System.Drawing.Point(10, 79); this._LBL_1.TabIndex = 4; this._LBL_1.BackColor = System.Drawing.Color.Transparent; this._LBL_1.Enabled = true; this._LBL_1.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_1.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_1.UseMnemonic = true; this._LBL_1.Visible = true; this._LBL_1.AutoSize = true; this._LBL_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_1.Name = "_LBL_1"; this.lblStockItem.Text = "Label1"; this.lblStockItem.Size = new System.Drawing.Size(286, 17); this.lblStockItem.Location = new System.Drawing.Point(98, 79); this.lblStockItem.TabIndex = 2; this.lblStockItem.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.Enabled = true; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.UseMnemonic = true; this.lblStockItem.Visible = true; this.lblStockItem.AutoSize = false; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Name = "lblStockItem"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(383, 80); this._Shape1_2.Location = new System.Drawing.Point(7, 48); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(383, 104); this._Shape1_0.Location = new System.Drawing.Point(7, 176); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this.Controls.Add(txtQtyB); this.Controls.Add(txtPriceB); this.Controls.Add(cmdSelectChild); this.Controls.Add(txtPack); this.Controls.Add(txtPriceS); this.Controls.Add(txtQty); this.Controls.Add(txtPrice); this.Controls.Add(picButtons); this.Controls.Add(_LBL_6); this.Controls.Add(_LBL_4); this.Controls.Add(Label2); this.Controls.Add(lblPComp); this.Controls.Add(lblSComp); this.Controls.Add(lblStockItemB); this.Controls.Add(_LBL_5); this.Controls.Add(_LBL_0); this.Controls.Add(_LBL_3); this.Controls.Add(_LBL_2); this.Controls.Add(_LBL_1); this.Controls.Add(lblStockItem); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.LBL.SetIndex(_LBL_6, CType(6, Short)) //Me.LBL.SetIndex(_LBL_4, CType(4, Short)) //Me.LBL.SetIndex(_LBL_5, CType(5, Short)) //Me.LBL.SetIndex(_LBL_0, CType(0, Short)) //Me.LBL.SetIndex(_LBL_3, CType(3, Short)) //Me.LBL.SetIndex(_LBL_2, CType(2, Short)) //Me.LBL.SetIndex(_LBL_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.LBL, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMakeRepairItem)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.txtQtyTaken = new System.Windows.Forms.TextBox(); this.txtQty = new System.Windows.Forms.TextBox(); this.txtPrice = new System.Windows.Forms.TextBox(); this.cmbQuantity = new System.Windows.Forms.ComboBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._LBL_0 = new System.Windows.Forms.Label(); this.lblPComp = new System.Windows.Forms.Label(); this._LBL_3 = new System.Windows.Forms.Label(); this._LBL_2 = new System.Windows.Forms.Label(); this._LBL_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.LBL = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.LBL, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Repair product - 4VEG"; this.ClientSize = new System.Drawing.Size(468, 143); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmMakeRepairItem"; this.txtQtyTaken.AutoSize = false; this.txtQtyTaken.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQtyTaken.Size = new System.Drawing.Size(67, 19); this.txtQtyTaken.Location = new System.Drawing.Point(98, 103); this.txtQtyTaken.TabIndex = 0; this.txtQtyTaken.Text = "0"; this.txtQtyTaken.AcceptsReturn = true; this.txtQtyTaken.BackColor = System.Drawing.SystemColors.Window; this.txtQtyTaken.CausesValidation = true; this.txtQtyTaken.Enabled = true; this.txtQtyTaken.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQtyTaken.HideSelection = true; this.txtQtyTaken.ReadOnly = false; this.txtQtyTaken.MaxLength = 0; this.txtQtyTaken.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQtyTaken.Multiline = false; this.txtQtyTaken.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQtyTaken.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQtyTaken.TabStop = true; this.txtQtyTaken.Visible = true; this.txtQtyTaken.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQtyTaken.Name = "txtQtyTaken"; this.txtQty.AutoSize = false; this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQty.Size = new System.Drawing.Size(67, 19); this.txtQty.Location = new System.Drawing.Point(248, 103); this.txtQty.TabIndex = 1; this.txtQty.Text = "0"; this.txtQty.AcceptsReturn = true; this.txtQty.BackColor = System.Drawing.SystemColors.Window; this.txtQty.CausesValidation = true; this.txtQty.Enabled = true; this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQty.HideSelection = true; this.txtQty.ReadOnly = false; this.txtQty.MaxLength = 0; this.txtQty.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQty.Multiline = false; this.txtQty.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQty.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtQty.TabStop = true; this.txtQty.Visible = true; this.txtQty.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtQty.Name = "txtQty"; this.txtPrice.AutoSize = false; this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPrice.Enabled = false; this.txtPrice.Size = new System.Drawing.Size(91, 19); this.txtPrice.Location = new System.Drawing.Point(357, 103); this.txtPrice.TabIndex = 7; this.txtPrice.Text = "0.00"; this.txtPrice.AcceptsReturn = true; this.txtPrice.BackColor = System.Drawing.SystemColors.Window; this.txtPrice.CausesValidation = true; this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPrice.HideSelection = true; this.txtPrice.ReadOnly = false; this.txtPrice.MaxLength = 0; this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPrice.Multiline = false; this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPrice.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtPrice.TabStop = true; this.txtPrice.Visible = true; this.txtPrice.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtPrice.Name = "txtPrice"; this.cmbQuantity.Size = new System.Drawing.Size(79, 21); this.cmbQuantity.Location = new System.Drawing.Point(184, 176); this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbQuantity.TabIndex = 6; this.cmbQuantity.Visible = false; this.cmbQuantity.BackColor = System.Drawing.SystemColors.Window; this.cmbQuantity.CausesValidation = true; this.cmbQuantity.Enabled = true; this.cmbQuantity.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbQuantity.IntegralHeight = true; this.cmbQuantity.Cursor = System.Windows.Forms.Cursors.Default; this.cmbQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbQuantity.Sorted = false; this.cmbQuantity.TabStop = true; this.cmbQuantity.Name = "cmbQuantity"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(468, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 4; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(8, 3); this.cmdCancel.TabIndex = 3; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "Process && E&xit"; this.cmdClose.Size = new System.Drawing.Size(97, 29); this.cmdClose.Location = new System.Drawing.Point(360, 3); this.cmdClose.TabIndex = 2; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_0.Text = "Shelf Qty Taken:"; this._LBL_0.Size = new System.Drawing.Size(80, 13); this._LBL_0.Location = new System.Drawing.Point(18, 106); this._LBL_0.TabIndex = 12; this._LBL_0.BackColor = System.Drawing.Color.Transparent; this._LBL_0.Enabled = true; this._LBL_0.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_0.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_0.UseMnemonic = true; this._LBL_0.Visible = true; this._LBL_0.AutoSize = true; this._LBL_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_0.Name = "_LBL_0"; this.lblPComp.Text = "Please enter the Qty you wish to make:"; this.lblPComp.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblPComp.Size = new System.Drawing.Size(352, 20); this.lblPComp.Location = new System.Drawing.Point(10, 56); this.lblPComp.TabIndex = 11; this.lblPComp.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblPComp.BackColor = System.Drawing.Color.Transparent; this.lblPComp.Enabled = true; this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPComp.UseMnemonic = true; this.lblPComp.Visible = true; this.lblPComp.AutoSize = false; this.lblPComp.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblPComp.Name = "lblPComp"; this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_3.Text = "Price:"; this._LBL_3.Size = new System.Drawing.Size(35, 13); this._LBL_3.Location = new System.Drawing.Point(320, 106); this._LBL_3.TabIndex = 10; this._LBL_3.BackColor = System.Drawing.Color.Transparent; this._LBL_3.Enabled = true; this._LBL_3.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_3.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_3.UseMnemonic = true; this._LBL_3.Visible = true; this._LBL_3.AutoSize = true; this._LBL_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_3.Name = "_LBL_3"; this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_2.Text = "New Qty Made:"; this._LBL_2.Size = new System.Drawing.Size(74, 13); this._LBL_2.Location = new System.Drawing.Point(173, 106); this._LBL_2.TabIndex = 9; this._LBL_2.BackColor = System.Drawing.Color.Transparent; this._LBL_2.Enabled = true; this._LBL_2.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_2.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_2.UseMnemonic = true; this._LBL_2.Visible = true; this._LBL_2.AutoSize = true; this._LBL_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_2.Name = "_LBL_2"; this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_1.Text = "Stock Item Name:"; this._LBL_1.Size = new System.Drawing.Size(85, 13); this._LBL_1.Location = new System.Drawing.Point(10, 79); this._LBL_1.TabIndex = 8; this._LBL_1.BackColor = System.Drawing.Color.Transparent; this._LBL_1.Enabled = true; this._LBL_1.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_1.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_1.UseMnemonic = true; this._LBL_1.Visible = true; this._LBL_1.AutoSize = true; this._LBL_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._LBL_1.Name = "_LBL_1"; this.lblStockItem.Text = "Label1"; this.lblStockItem.Size = new System.Drawing.Size(350, 17); this.lblStockItem.Location = new System.Drawing.Point(98, 80); this.lblStockItem.TabIndex = 5; this.lblStockItem.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.Enabled = true; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.UseMnemonic = true; this.lblStockItem.Visible = true; this.lblStockItem.AutoSize = false; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Name = "lblStockItem"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(452, 87); this._Shape1_2.Location = new System.Drawing.Point(7, 48); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this.Controls.Add(txtQtyTaken); this.Controls.Add(txtQty); this.Controls.Add(txtPrice); this.Controls.Add(cmbQuantity); this.Controls.Add(picButtons); this.Controls.Add(_LBL_0); this.Controls.Add(lblPComp); this.Controls.Add(_LBL_3); this.Controls.Add(_LBL_2); this.Controls.Add(_LBL_1); this.Controls.Add(lblStockItem); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.LBL.SetIndex(_LBL_0, CType(0, Short)) //Me.LBL.SetIndex(_LBL_3, CType(3, Short)) //Me.LBL.SetIndex(_LBL_2, CType(2, Short)) //Me.LBL.SetIndex(_LBL_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.LBL, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockSalesShrink)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdLoad = new System.Windows.Forms.Button(); this.cmdExit = new System.Windows.Forms.Button(); this.cmdGroup = new System.Windows.Forms.Button(); this._lbl_1 = new System.Windows.Forms.Label(); this.lblGroup = new System.Windows.Forms.Label(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Stock Item Sales Shrink Analysis"; this.ClientSize = new System.Drawing.Size(264, 192); 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 = "frmStockSalesShrink"; this.cmdLoad.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdLoad.Text = "&Load Report"; this.cmdLoad.Size = new System.Drawing.Size(79, 31); this.cmdLoad.Location = new System.Drawing.Point(177, 147); this.cmdLoad.TabIndex = 4; this.cmdLoad.BackColor = System.Drawing.SystemColors.Control; this.cmdLoad.CausesValidation = true; this.cmdLoad.Enabled = true; this.cmdLoad.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdLoad.Cursor = System.Windows.Forms.Cursors.Default; this.cmdLoad.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdLoad.TabStop = true; this.cmdLoad.Name = "cmdLoad"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Size = new System.Drawing.Size(79, 31); this.cmdExit.Location = new System.Drawing.Point(9, 147); this.cmdExit.TabIndex = 3; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.TabStop = true; this.cmdExit.Name = "cmdExit"; this.cmdGroup.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdGroup.Text = "&Filter"; this.cmdGroup.Size = new System.Drawing.Size(97, 31); this.cmdGroup.Location = new System.Drawing.Point(153, 93); this.cmdGroup.TabIndex = 2; this.cmdGroup.TabStop = false; 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.Name = "cmdGroup"; this._lbl_1.Text = "Filter"; this._lbl_1.Size = new System.Drawing.Size(29, 13); this._lbl_1.Location = new System.Drawing.Point(9, 6); this._lbl_1.TabIndex = 0; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this.lblGroup.Text = "lblGroup"; this.lblGroup.Size = new System.Drawing.Size(232, 58); this.lblGroup.Location = new System.Drawing.Point(15, 27); this.lblGroup.TabIndex = 1; this.lblGroup.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblGroup.BackColor = System.Drawing.SystemColors.Control; this.lblGroup.Enabled = true; this.lblGroup.ForeColor = System.Drawing.SystemColors.ControlText; this.lblGroup.Cursor = System.Windows.Forms.Cursors.Default; this.lblGroup.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblGroup.UseMnemonic = true; this.lblGroup.Visible = true; this.lblGroup.AutoSize = false; this.lblGroup.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblGroup.Name = "lblGroup"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(247, 112); this._Shape1_1.Location = new System.Drawing.Point(9, 21); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this.Controls.Add(cmdLoad); this.Controls.Add(cmdExit); this.Controls.Add(cmdGroup); this.Controls.Add(_lbl_1); this.Controls.Add(lblGroup); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.Controls.Add(ShapeContainer1); //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.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 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.cmdExit = new System.Windows.Forms.Button(); this.Label2 = new System.Windows.Forms.Label(); this.Label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Shape1 }); this.ShapeContainer1.Size = new System.Drawing.Size(240, 296); this.ShapeContainer1.TabIndex = 4; this.ShapeContainer1.TabStop = false; // //Shape1 // this.Shape1.BackColor = System.Drawing.SystemColors.Window; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.Location = new System.Drawing.Point(6, 186); this.Shape1.Name = "Shape1"; this.Shape1.Size = new System.Drawing.Size(231, 73); // //cmdExit // this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Location = new System.Drawing.Point(152, 264); this.cmdExit.Name = "cmdExit"; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.Size = new System.Drawing.Size(85, 28); this.cmdExit.TabIndex = 1; this.cmdExit.TabStop = false; this.cmdExit.Text = "E&xit"; this.cmdExit.UseVisualStyleBackColor = false; // //Label2 // this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.ForeColor = System.Drawing.SystemColors.ControlText; this.Label2.Location = new System.Drawing.Point(10, 208); this.Label2.Name = "Label2"; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.Size = new System.Drawing.Size(219, 45); this.Label2.TabIndex = 3; // //Label1 // this.Label1.BackColor = System.Drawing.Color.Transparent; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Location = new System.Drawing.Point(10, 190); this.Label1.Name = "Label1"; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.Size = new System.Drawing.Size(137, 15); this.Label1.TabIndex = 2; this.Label1.Text = "Available Presets"; // //frmPresetList // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.ClientSize = new System.Drawing.Size(240, 296); this.ControlBox = false; this.Controls.Add(this.cmdExit); this.Controls.Add(this.Label2); this.Controls.Add(this.Label1); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.Location = new System.Drawing.Point(4, 23); this.Name = "frmPresetList"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "Denomination List"; this.ResumeLayout(false); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(OldfrmMeasureCopyCriteria)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdCopySetp = new System.Windows.Forms.Button(); this.cboStep = new System.Windows.Forms.ComboBox(); this.cboMeasures = new System.Windows.Forms.ComboBox(); this._rboCopyTo_0 = new System.Windows.Forms.RadioButton(); this._rboCopyTo_1 = new System.Windows.Forms.RadioButton(); this.cboJoinOperator = new System.Windows.Forms.ComboBox(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdCopy = new System.Windows.Forms.Button(); this.cboSet = new System.Windows.Forms.ComboBox(); this.cboColumns = new System.Windows.Forms.ComboBox(); this.Label3 = new System.Windows.Forms.Label(); this.lblJoinOperator = new System.Windows.Forms.Label(); this.Label12 = new System.Windows.Forms.Label(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Label1 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblCopyFrom = new System.Windows.Forms.Label(); this.rboCopyTo = new Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; ((System.ComponentModel.ISupportInitialize) this.rboCopyTo).BeginInit(); this.Text = "Copy Measure Criteria"; this.ClientSize = new System.Drawing.Size(764, 225); this.Location = new System.Drawing.Point(5, 29); this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultLocation; this.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable; this.ControlBox = true; this.Enabled = true; this.KeyPreview = false; this.MaximizeBox = true; this.MinimizeBox = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmMeasureCopyCriteria"; this.cmdCopySetp.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCopySetp.Text = "Copy Entire Step"; this.cmdCopySetp.Size = new System.Drawing.Size(128, 28); this.cmdCopySetp.Location = new System.Drawing.Point(347, 190); this.cmdCopySetp.TabIndex = 15; this.cmdCopySetp.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCopySetp.BackColor = System.Drawing.SystemColors.Control; this.cmdCopySetp.CausesValidation = true; this.cmdCopySetp.Enabled = true; this.cmdCopySetp.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCopySetp.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCopySetp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCopySetp.TabStop = true; this.cmdCopySetp.Name = "cmdCopySetp"; this.cboStep.Enabled = false; this.cboStep.Size = new System.Drawing.Size(92, 27); this.cboStep.Location = new System.Drawing.Point(210, 142); this.cboStep.TabIndex = 4; this.cboStep.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboStep.BackColor = System.Drawing.SystemColors.Window; this.cboStep.CausesValidation = true; this.cboStep.ForeColor = System.Drawing.SystemColors.WindowText; this.cboStep.IntegralHeight = true; this.cboStep.Cursor = System.Windows.Forms.Cursors.Default; this.cboStep.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboStep.Sorted = false; this.cboStep.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboStep.TabStop = true; this.cboStep.Visible = true; this.cboStep.Name = "cboStep"; this.cboMeasures.Enabled = false; this.cboMeasures.Size = new System.Drawing.Size(532, 27); this.cboMeasures.Location = new System.Drawing.Point(210, 100); this.cboMeasures.TabIndex = 3; this.cboMeasures.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboMeasures.BackColor = System.Drawing.SystemColors.Window; this.cboMeasures.CausesValidation = true; this.cboMeasures.ForeColor = System.Drawing.SystemColors.WindowText; this.cboMeasures.IntegralHeight = true; this.cboMeasures.Cursor = System.Windows.Forms.Cursors.Default; this.cboMeasures.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboMeasures.Sorted = false; this.cboMeasures.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboMeasures.TabStop = true; this.cboMeasures.Visible = true; this.cboMeasures.Name = "cboMeasures"; this._rboCopyTo_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this._rboCopyTo_0.Text = "Submission"; this._rboCopyTo_0.ForeColor = System.Drawing.Color.Blue; this._rboCopyTo_0.Size = new System.Drawing.Size(112, 32); this._rboCopyTo_0.Location = new System.Drawing.Point(90, 60); this._rboCopyTo_0.TabIndex = 13; this._rboCopyTo_0.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this._rboCopyTo_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this._rboCopyTo_0.BackColor = System.Drawing.SystemColors.Control; this._rboCopyTo_0.CausesValidation = true; this._rboCopyTo_0.Enabled = true; this._rboCopyTo_0.Cursor = System.Windows.Forms.Cursors.Default; this._rboCopyTo_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._rboCopyTo_0.Appearance = System.Windows.Forms.Appearance.Normal; this._rboCopyTo_0.TabStop = true; this._rboCopyTo_0.Checked = false; this._rboCopyTo_0.Visible = true; this._rboCopyTo_0.Name = "_rboCopyTo_0"; this._rboCopyTo_1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this._rboCopyTo_1.Text = "Measure Verify"; this._rboCopyTo_1.ForeColor = System.Drawing.Color.Blue; this._rboCopyTo_1.Size = new System.Drawing.Size(122, 32); this._rboCopyTo_1.Location = new System.Drawing.Point(90, 100); this._rboCopyTo_1.TabIndex = 2; this._rboCopyTo_1.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this._rboCopyTo_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this._rboCopyTo_1.BackColor = System.Drawing.SystemColors.Control; this._rboCopyTo_1.CausesValidation = true; this._rboCopyTo_1.Enabled = true; this._rboCopyTo_1.Cursor = System.Windows.Forms.Cursors.Default; this._rboCopyTo_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._rboCopyTo_1.Appearance = System.Windows.Forms.Appearance.Normal; this._rboCopyTo_1.TabStop = true; this._rboCopyTo_1.Checked = false; this._rboCopyTo_1.Visible = true; this._rboCopyTo_1.Name = "_rboCopyTo_1"; this.cboJoinOperator.Size = new System.Drawing.Size(67, 27); this.cboJoinOperator.Location = new System.Drawing.Point(630, 140); this.cboJoinOperator.Items.AddRange(new object[] { "AND", "OR" }); this.cboJoinOperator.TabIndex = 6; this.cboJoinOperator.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboJoinOperator.BackColor = System.Drawing.SystemColors.Window; this.cboJoinOperator.CausesValidation = true; this.cboJoinOperator.Enabled = true; this.cboJoinOperator.ForeColor = System.Drawing.SystemColors.WindowText; this.cboJoinOperator.IntegralHeight = true; this.cboJoinOperator.Cursor = System.Windows.Forms.Cursors.Default; this.cboJoinOperator.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboJoinOperator.Sorted = false; this.cboJoinOperator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboJoinOperator.TabStop = true; this.cboJoinOperator.Visible = true; this.cboJoinOperator.Name = "cboJoinOperator"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "Cancel"; this.cmdCancel.Size = new System.Drawing.Size(80, 28); this.cmdCancel.Location = new System.Drawing.Point(479, 190); this.cmdCancel.TabIndex = 8; this.cmdCancel.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.TabStop = true; this.cmdCancel.Name = "cmdCancel"; this.cmdCopy.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCopy.Text = "Copy"; this.cmdCopy.Size = new System.Drawing.Size(80, 28); this.cmdCopy.Location = new System.Drawing.Point(260, 190); this.cmdCopy.TabIndex = 7; this.cmdCopy.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCopy.BackColor = System.Drawing.SystemColors.Control; this.cmdCopy.CausesValidation = true; this.cmdCopy.Enabled = true; this.cmdCopy.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCopy.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCopy.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCopy.TabStop = true; this.cmdCopy.Name = "cmdCopy"; this.cboSet.Size = new System.Drawing.Size(67, 27); this.cboSet.Location = new System.Drawing.Point(410, 142); this.cboSet.TabIndex = 5; this.cboSet.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboSet.BackColor = System.Drawing.SystemColors.Window; this.cboSet.CausesValidation = true; this.cboSet.Enabled = true; this.cboSet.ForeColor = System.Drawing.SystemColors.WindowText; this.cboSet.IntegralHeight = true; this.cboSet.Cursor = System.Windows.Forms.Cursors.Default; this.cboSet.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboSet.Sorted = false; this.cboSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboSet.TabStop = true; this.cboSet.Visible = true; this.cboSet.Name = "cboSet"; this.cboColumns.Enabled = false; this.cboColumns.Size = new System.Drawing.Size(534, 27); this.cboColumns.Location = new System.Drawing.Point(210, 60); this.cboColumns.TabIndex = 1; this.cboColumns.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboColumns.BackColor = System.Drawing.SystemColors.Window; this.cboColumns.CausesValidation = true; this.cboColumns.ForeColor = System.Drawing.SystemColors.WindowText; this.cboColumns.IntegralHeight = true; this.cboColumns.Cursor = System.Windows.Forms.Cursors.Default; this.cboColumns.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboColumns.Sorted = false; this.cboColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboColumns.TabStop = true; this.cboColumns.Visible = true; this.cboColumns.Name = "cboColumns"; this.Label3.TextAlign = System.Drawing.ContentAlignment.TopRight; this.Label3.Text = "Step #:"; this.Label3.ForeColor = System.Drawing.Color.Blue; this.Label3.Size = new System.Drawing.Size(47, 18); this.Label3.Location = new System.Drawing.Point(150, 150); this.Label3.TabIndex = 14; this.Label3.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label3.BackColor = System.Drawing.SystemColors.Control; this.Label3.Enabled = true; this.Label3.Cursor = System.Windows.Forms.Cursors.Default; this.Label3.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label3.UseMnemonic = true; this.Label3.Visible = true; this.Label3.AutoSize = false; this.Label3.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label3.Name = "Label3"; this.lblJoinOperator.TextAlign = System.Drawing.ContentAlignment.TopRight; this.lblJoinOperator.Text = "Join type in this Set:"; this.lblJoinOperator.ForeColor = System.Drawing.Color.Blue; this.lblJoinOperator.Size = new System.Drawing.Size(157, 18); this.lblJoinOperator.Location = new System.Drawing.Point(470, 150); this.lblJoinOperator.TabIndex = 12; this.lblJoinOperator.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.lblJoinOperator.BackColor = System.Drawing.SystemColors.Control; this.lblJoinOperator.Enabled = true; this.lblJoinOperator.Cursor = System.Windows.Forms.Cursors.Default; this.lblJoinOperator.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblJoinOperator.UseMnemonic = true; this.lblJoinOperator.Visible = true; this.lblJoinOperator.AutoSize = false; this.lblJoinOperator.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblJoinOperator.Name = "lblJoinOperator"; this.Label12.TextAlign = System.Drawing.ContentAlignment.TopRight; this.Label12.Text = "Set #:"; this.Label12.ForeColor = System.Drawing.Color.Blue; this.Label12.Size = new System.Drawing.Size(47, 18); this.Label12.Location = new System.Drawing.Point(350, 150); this.Label12.TabIndex = 11; this.Label12.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label12.BackColor = System.Drawing.SystemColors.Control; this.Label12.Enabled = true; this.Label12.Cursor = System.Windows.Forms.Cursors.Default; this.Label12.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label12.UseMnemonic = true; this.Label12.Visible = true; this.Label12.AutoSize = false; this.Label12.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label12.Name = "Label12"; this.Shape1.Size = new System.Drawing.Size(689, 127); this.Shape1.Location = new System.Drawing.Point(60, 50); this.Shape1.BackColor = System.Drawing.SystemColors.Window; this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Transparent; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this.Shape1.BorderWidth = 1; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this.Shape1.Visible = true; this.Shape1.Name = "Shape1"; this.Label1.Text = "To:"; this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label1.ForeColor = System.Drawing.Color.Red; this.Label1.Size = new System.Drawing.Size(37, 24); this.Label1.Location = new System.Drawing.Point(9, 64); this.Label1.TabIndex = 10; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.SystemColors.Control; this.Label1.Enabled = true; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = false; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this.Label2.Text = "Copy:"; this.Label2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label2.ForeColor = System.Drawing.Color.Red; this.Label2.Size = new System.Drawing.Size(53, 24); this.Label2.Location = new System.Drawing.Point(4, 5); this.Label2.TabIndex = 9; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.SystemColors.Control; this.Label2.Enabled = true; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.lblCopyFrom.BackColor = System.Drawing.Color.Transparent; this.lblCopyFrom.Text = "This criteria"; this.lblCopyFrom.ForeColor = System.Drawing.Color.Blue; this.lblCopyFrom.Size = new System.Drawing.Size(687, 30); this.lblCopyFrom.Location = new System.Drawing.Point(59, 7); this.lblCopyFrom.TabIndex = 0; this.lblCopyFrom.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.lblCopyFrom.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblCopyFrom.Enabled = true; this.lblCopyFrom.Cursor = System.Windows.Forms.Cursors.Default; this.lblCopyFrom.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblCopyFrom.UseMnemonic = true; this.lblCopyFrom.Visible = true; this.lblCopyFrom.AutoSize = false; this.lblCopyFrom.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lblCopyFrom.Name = "lblCopyFrom"; this.Controls.Add(cmdCopySetp); this.Controls.Add(cboStep); this.Controls.Add(cboMeasures); this.Controls.Add(_rboCopyTo_0); this.Controls.Add(_rboCopyTo_1); this.Controls.Add(cboJoinOperator); this.Controls.Add(cmdCancel); this.Controls.Add(cmdCopy); this.Controls.Add(cboSet); this.Controls.Add(cboColumns); this.Controls.Add(Label3); this.Controls.Add(lblJoinOperator); this.Controls.Add(Label12); this.ShapeContainer1.Shapes.Add(Shape1); this.Controls.Add(Label1); this.Controls.Add(Label2); this.Controls.Add(lblCopyFrom); this.Controls.Add(ShapeContainer1); this.rboCopyTo.SetIndex(_rboCopyTo_0, Convert.ToInt16(0)); this.rboCopyTo.SetIndex(_rboCopyTo_1, Convert.ToInt16(1)); ((System.ComponentModel.ISupportInitialize) this.rboCopyTo).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(Form1)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cboColumns = new System.Windows.Forms.ComboBox(); this.cboSet = new System.Windows.Forms.ComboBox(); this.cmdCopy = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cboJoinOperator = new System.Windows.Forms.ComboBox(); this.lstSummaryDef = new System.Windows.Forms.ListBox(); this.Label2 = new System.Windows.Forms.Label(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Label1 = new System.Windows.Forms.Label(); this.SuspendLayout(); this.ToolTip1.Active = true; this.Text = "Form1"; this.ClientSize = new System.Drawing.Size(705, 348); this.Location = new System.Drawing.Point(5, 29); this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultLocation; this.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable; this.ControlBox = true; this.Enabled = true; this.KeyPreview = false; this.MaximizeBox = true; this.MinimizeBox = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "Form1"; this.cboColumns.Size = new System.Drawing.Size(514, 27); this.cboColumns.Location = new System.Drawing.Point(139, 154); this.cboColumns.TabIndex = 6; this.cboColumns.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboColumns.BackColor = System.Drawing.SystemColors.Window; this.cboColumns.CausesValidation = true; this.cboColumns.Enabled = true; this.cboColumns.ForeColor = System.Drawing.SystemColors.WindowText; this.cboColumns.IntegralHeight = true; this.cboColumns.Cursor = System.Windows.Forms.Cursors.Default; this.cboColumns.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboColumns.Sorted = false; this.cboColumns.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboColumns.TabStop = true; this.cboColumns.Visible = true; this.cboColumns.Name = "cboColumns"; this.cboSet.Size = new System.Drawing.Size(67, 27); this.cboSet.Location = new System.Drawing.Point(139, 185); this.cboSet.Items.AddRange(new object[] { "And", "Or" }); this.cboSet.TabIndex = 5; this.cboSet.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboSet.BackColor = System.Drawing.SystemColors.Window; this.cboSet.CausesValidation = true; this.cboSet.Enabled = true; this.cboSet.ForeColor = System.Drawing.SystemColors.WindowText; this.cboSet.IntegralHeight = true; this.cboSet.Cursor = System.Windows.Forms.Cursors.Default; this.cboSet.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboSet.Sorted = false; this.cboSet.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboSet.TabStop = true; this.cboSet.Visible = true; this.cboSet.Name = "cboSet"; this.cmdCopy.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCopy.Text = "Copy"; this.cmdCopy.Size = new System.Drawing.Size(80, 28); this.cmdCopy.Location = new System.Drawing.Point(268, 237); this.cmdCopy.TabIndex = 4; this.cmdCopy.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCopy.BackColor = System.Drawing.SystemColors.Control; this.cmdCopy.CausesValidation = true; this.cmdCopy.Enabled = true; this.cmdCopy.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCopy.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCopy.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCopy.TabStop = true; this.cmdCopy.Name = "cmdCopy"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "Cancel"; this.cmdCancel.Size = new System.Drawing.Size(80, 28); this.cmdCancel.Location = new System.Drawing.Point(358, 237); this.cmdCancel.TabIndex = 3; this.cmdCancel.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.TabStop = true; this.cmdCancel.Name = "cmdCancel"; this.cboJoinOperator.Size = new System.Drawing.Size(67, 27); this.cboJoinOperator.Location = new System.Drawing.Point(373, 185); this.cboJoinOperator.Items.AddRange(new object[] { "And", "Or" }); this.cboJoinOperator.TabIndex = 2; this.cboJoinOperator.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.cboJoinOperator.BackColor = System.Drawing.SystemColors.Window; this.cboJoinOperator.CausesValidation = true; this.cboJoinOperator.Enabled = true; this.cboJoinOperator.ForeColor = System.Drawing.SystemColors.WindowText; this.cboJoinOperator.IntegralHeight = true; this.cboJoinOperator.Cursor = System.Windows.Forms.Cursors.Default; this.cboJoinOperator.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cboJoinOperator.Sorted = false; this.cboJoinOperator.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDown; this.cboJoinOperator.TabStop = true; this.cboJoinOperator.Visible = true; this.cboJoinOperator.Name = "cboJoinOperator"; this.lstSummaryDef.Size = new System.Drawing.Size(688, 90); this.lstSummaryDef.Location = new System.Drawing.Point(10, 30); this.lstSummaryDef.TabIndex = 0; this.lstSummaryDef.Font = new System.Drawing.Font("Arial", 8f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.lstSummaryDef.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lstSummaryDef.BackColor = System.Drawing.SystemColors.Window; this.lstSummaryDef.CausesValidation = true; this.lstSummaryDef.Enabled = true; this.lstSummaryDef.ForeColor = System.Drawing.SystemColors.WindowText; this.lstSummaryDef.IntegralHeight = true; this.lstSummaryDef.Cursor = System.Windows.Forms.Cursors.Default; this.lstSummaryDef.SelectionMode = System.Windows.Forms.SelectionMode.One; this.lstSummaryDef.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lstSummaryDef.Sorted = false; this.lstSummaryDef.TabStop = true; this.lstSummaryDef.Visible = true; this.lstSummaryDef.MultiColumn = false; this.lstSummaryDef.Name = "lstSummaryDef"; this.Label2.Text = "To:"; this.Label2.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label2.ForeColor = System.Drawing.Color.Red; this.Label2.Size = new System.Drawing.Size(37, 24); this.Label2.Location = new System.Drawing.Point(20, 149); this.Label2.TabIndex = 7; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.SystemColors.Control; this.Label2.Enabled = true; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.Shape1.Size = new System.Drawing.Size(599, 88); this.Shape1.Location = new System.Drawing.Point(70, 140); this.Shape1.BackColor = System.Drawing.SystemColors.Window; this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Transparent; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this.Shape1.BorderWidth = 1; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this.Shape1.Visible = true; this.Shape1.Name = "Shape1"; this.Label1.Text = "Selected Criteria Sets to Copy:"; this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(0)); this.Label1.ForeColor = System.Drawing.Color.Red; this.Label1.Size = new System.Drawing.Size(262, 22); this.Label1.Location = new System.Drawing.Point(10, 10); this.Label1.TabIndex = 1; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.SystemColors.Control; this.Label1.Enabled = true; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = false; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this.Controls.Add(cboColumns); this.Controls.Add(cboSet); this.Controls.Add(cmdCopy); this.Controls.Add(cmdCancel); this.Controls.Add(cboJoinOperator); this.Controls.Add(lstSummaryDef); this.Controls.Add(Label2); this.ShapeContainer1.Shapes.Add(Shape1); this.Controls.Add(Label1); this.Controls.Add(ShapeContainer1); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmPrintGroup)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._txtInteger_0 = new System.Windows.Forms.TextBox(); this._txtFields_0 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lblLabels_38 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.txtFields = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) //Me.txtInteger = New Microsoft.VisualBasic.Compatibility.VB6.TextBoxArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Edit Print Group Item"; this.ClientSize = new System.Drawing.Size(455, 109); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmPrintGroup"; this._txtInteger_0.AutoSize = false; this._txtInteger_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this._txtInteger_0.Size = new System.Drawing.Size(64, 19); this._txtInteger_0.Location = new System.Drawing.Point(375, 66); this._txtInteger_0.TabIndex = 3; this._txtInteger_0.Text = "9,999.99"; this._txtInteger_0.AcceptsReturn = true; this._txtInteger_0.BackColor = System.Drawing.SystemColors.Window; this._txtInteger_0.CausesValidation = true; this._txtInteger_0.Enabled = true; this._txtInteger_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtInteger_0.HideSelection = true; this._txtInteger_0.ReadOnly = false; this._txtInteger_0.MaxLength = 0; this._txtInteger_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtInteger_0.Multiline = false; this._txtInteger_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtInteger_0.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtInteger_0.TabStop = true; this._txtInteger_0.Visible = true; this._txtInteger_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtInteger_0.Name = "_txtInteger_0"; this._txtFields_0.AutoSize = false; this._txtFields_0.Size = new System.Drawing.Size(195, 19); this._txtFields_0.Location = new System.Drawing.Point(114, 66); this._txtFields_0.TabIndex = 1; this._txtFields_0.AcceptsReturn = true; this._txtFields_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this._txtFields_0.BackColor = System.Drawing.SystemColors.Window; this._txtFields_0.CausesValidation = true; this._txtFields_0.Enabled = true; this._txtFields_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_0.HideSelection = true; this._txtFields_0.ReadOnly = false; this._txtFields_0.MaxLength = 0; this._txtFields_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_0.Multiline = false; this._txtFields_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_0.ScrollBars = System.Windows.Forms.ScrollBars.None; this._txtFields_0.TabStop = true; this._txtFields_0.Visible = true; this._txtFields_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_0.Name = "_txtFields_0"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(455, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 6; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 5; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.Location = new System.Drawing.Point(372, 3); this.cmdClose.TabIndex = 4; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_0.Text = "Order:"; this._lblLabels_0.Size = new System.Drawing.Size(29, 13); this._lblLabels_0.Location = new System.Drawing.Point(341, 69); this._lblLabels_0.TabIndex = 2; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Enabled = true; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.UseMnemonic = true; this._lblLabels_0.Visible = true; this._lblLabels_0.AutoSize = true; this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_38.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_38.Text = "Print Group Name:"; this._lblLabels_38.Size = new System.Drawing.Size(87, 13); this._lblLabels_38.Location = new System.Drawing.Point(22, 69); this._lblLabels_38.TabIndex = 0; this._lblLabels_38.BackColor = System.Drawing.Color.Transparent; this._lblLabels_38.Enabled = true; this._lblLabels_38.ForeColor = System.Drawing.SystemColors.ControlText; this._lblLabels_38.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_38.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_38.UseMnemonic = true; this._lblLabels_38.Visible = true; this._lblLabels_38.AutoSize = true; this._lblLabels_38.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_38.Name = "_lblLabels_38"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(430, 31); this._Shape1_2.Location = new System.Drawing.Point(15, 60); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&1. General"; this._lbl_5.Size = new System.Drawing.Size(60, 13); this._lbl_5.Location = new System.Drawing.Point(15, 45); this._lbl_5.TabIndex = 7; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(_txtInteger_0); this.Controls.Add(_txtFields_0); this.Controls.Add(picButtons); this.Controls.Add(_lblLabels_0); this.Controls.Add(_lblLabels_38); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short)) //Me.lblLabels.SetIndex(_lblLabels_38, CType(38, Short)) //Me.txtFields.SetIndex(_txtFields_0, CType(0, Short)) //Me.txtInteger.SetIndex(_txtInteger_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.txtInteger, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.txtFields, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.chkSelectAll = new System.Windows.Forms.CheckBox(); this.lstSecurity = new System.Windows.Forms.CheckedListBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdExit = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.lbl = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Shape1 }); this.ShapeContainer1.Size = new System.Drawing.Size(359, 415); this.ShapeContainer1.TabIndex = 6; this.ShapeContainer1.TabStop = false; // //Shape1 // this.Shape1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.Location = new System.Drawing.Point(4, 62); this.Shape1.Name = "Shape1"; this.Shape1.Size = new System.Drawing.Size(340, 328); // //chkSelectAll // this.chkSelectAll.BackColor = System.Drawing.SystemColors.Control; this.chkSelectAll.Cursor = System.Windows.Forms.Cursors.Default; this.chkSelectAll.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.chkSelectAll.ForeColor = System.Drawing.SystemColors.ControlText; this.chkSelectAll.Location = new System.Drawing.Point(8, 396); this.chkSelectAll.Name = "chkSelectAll"; this.chkSelectAll.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkSelectAll.Size = new System.Drawing.Size(211, 17); this.chkSelectAll.TabIndex = 5; this.chkSelectAll.Text = "Select All"; this.chkSelectAll.UseVisualStyleBackColor = false; // //lstSecurity // this.lstSecurity.BackColor = System.Drawing.SystemColors.Window; this.lstSecurity.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.lstSecurity.Cursor = System.Windows.Forms.Cursors.Default; this.lstSecurity.ForeColor = System.Drawing.SystemColors.WindowText; this.lstSecurity.Location = new System.Drawing.Point(16, 72); this.lstSecurity.Name = "lstSecurity"; this.lstSecurity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lstSecurity.Size = new System.Drawing.Size(316, 302); this.lstSecurity.TabIndex = 3; this.lstSecurity.Tag = "0"; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdExit); this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(359, 39); this.picButtons.TabIndex = 0; // //cmdExit // this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Location = new System.Drawing.Point(276, 3); this.cmdExit.Name = "cmdExit"; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.Size = new System.Drawing.Size(73, 29); this.cmdExit.TabIndex = 2; this.cmdExit.TabStop = false; this.cmdExit.Text = "E&xit"; this.cmdExit.UseVisualStyleBackColor = false; // //cmdCancel // this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.TabIndex = 1; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.UseVisualStyleBackColor = false; // //lbl // this.lbl.AutoSize = true; this.lbl.BackColor = System.Drawing.Color.Transparent; this.lbl.Cursor = System.Windows.Forms.Cursors.Default; this.lbl.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lbl.ForeColor = System.Drawing.SystemColors.ControlText; this.lbl.Location = new System.Drawing.Point(12, 48); this.lbl.Name = "lbl"; this.lbl.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lbl.Size = new System.Drawing.Size(62, 14); this.lbl.TabIndex = 4; this.lbl.Text = "&1. General"; // //frmBOSecurity // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224))); this.ClientSize = new System.Drawing.Size(359, 415); this.ControlBox = false; this.Controls.Add(this.chkSelectAll); this.Controls.Add(this.lstSecurity); this.Controls.Add(this.picButtons); this.Controls.Add(this.lbl); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; this.KeyPreview = true; this.Location = new System.Drawing.Point(3, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmBOSecurity"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Employee Back Office Permissions"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._chkChannel_1 = new System.Windows.Forms.CheckBox(); this._chkChannel_2 = new System.Windows.Forms.CheckBox(); this._chkChannel_3 = new System.Windows.Forms.CheckBox(); this._chkChannel_4 = new System.Windows.Forms.CheckBox(); this._chkChannel_5 = new System.Windows.Forms.CheckBox(); this._chkChannel_6 = new System.Windows.Forms.CheckBox(); this._chkChannel_7 = new System.Windows.Forms.CheckBox(); this._chkChannel_8 = new System.Windows.Forms.CheckBox(); this._chkChannel_9 = new System.Windows.Forms.CheckBox(); this._chkType_2 = new System.Windows.Forms.CheckBox(); this._chkType_1 = new System.Windows.Forms.CheckBox(); this._chkType_0 = new System.Windows.Forms.CheckBox(); this.txtPrice = new System.Windows.Forms.TextBox(); this.cmbQuantity = new System.Windows.Forms.ComboBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdClose = new System.Windows.Forms.Button(); this._lbl_4 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this._lbl_3 = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components); this.picButtons.SuspendLayout(); ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this._Shape1_0, this._Shape1_1 }); this.ShapeContainer1.Size = new System.Drawing.Size(465, 311); this.ShapeContainer1.TabIndex = 21; this.ShapeContainer1.TabStop = false; // //_Shape1_0 // this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.FillColor = System.Drawing.Color.Black; this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0)); this._Shape1_0.Location = new System.Drawing.Point(3, 190); this._Shape1_0.Name = "_Shape1_0"; this._Shape1_0.Size = new System.Drawing.Size(196, 81); // //_Shape1_1 // this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.FillColor = System.Drawing.Color.Black; this.Shape1.SetIndex(this._Shape1_1, Convert.ToInt16(1)); this._Shape1_1.Location = new System.Drawing.Point(204, 111); this._Shape1_1.Name = "_Shape1_1"; this._Shape1_1.Size = new System.Drawing.Size(181, 186); // //_chkChannel_1 // this._chkChannel_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_1.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_1.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_1.Location = new System.Drawing.Point(216, 115); this._chkChannel_1.Name = "_chkChannel_1"; this._chkChannel_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_1.Size = new System.Drawing.Size(166, 23); this._chkChannel_1.TabIndex = 11; this._chkChannel_1.Text = "1. POS"; this._chkChannel_1.UseVisualStyleBackColor = false; // //_chkChannel_2 // this._chkChannel_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_2.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_2.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_2.Location = new System.Drawing.Point(216, 135); this._chkChannel_2.Name = "_chkChannel_2"; this._chkChannel_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_2.Size = new System.Drawing.Size(166, 19); this._chkChannel_2.TabIndex = 12; this._chkChannel_2.Text = "1. POS"; this._chkChannel_2.UseVisualStyleBackColor = false; // //_chkChannel_3 // this._chkChannel_3.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_3.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_3.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_3.Location = new System.Drawing.Point(216, 155); this._chkChannel_3.Name = "_chkChannel_3"; this._chkChannel_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_3.Size = new System.Drawing.Size(166, 16); this._chkChannel_3.TabIndex = 13; this._chkChannel_3.Text = "1. POS"; this._chkChannel_3.UseVisualStyleBackColor = false; // //_chkChannel_4 // this._chkChannel_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_4.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_4.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_4.Location = new System.Drawing.Point(216, 176); this._chkChannel_4.Name = "_chkChannel_4"; this._chkChannel_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_4.Size = new System.Drawing.Size(166, 16); this._chkChannel_4.TabIndex = 14; this._chkChannel_4.Text = "1. POS"; this._chkChannel_4.UseVisualStyleBackColor = false; // //_chkChannel_5 // this._chkChannel_5.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_5.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_5.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_5.Location = new System.Drawing.Point(216, 198); this._chkChannel_5.Name = "_chkChannel_5"; this._chkChannel_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_5.Size = new System.Drawing.Size(166, 16); this._chkChannel_5.TabIndex = 15; this._chkChannel_5.Text = "1. POS"; this._chkChannel_5.UseVisualStyleBackColor = false; // //_chkChannel_6 // this._chkChannel_6.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_6.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_6.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_6.Location = new System.Drawing.Point(216, 218); this._chkChannel_6.Name = "_chkChannel_6"; this._chkChannel_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_6.Size = new System.Drawing.Size(166, 17); this._chkChannel_6.TabIndex = 16; this._chkChannel_6.Text = "1. POS"; this._chkChannel_6.UseVisualStyleBackColor = false; // //_chkChannel_7 // this._chkChannel_7.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_7.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_7.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_7.Location = new System.Drawing.Point(216, 240); this._chkChannel_7.Name = "_chkChannel_7"; this._chkChannel_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_7.Size = new System.Drawing.Size(166, 16); this._chkChannel_7.TabIndex = 17; this._chkChannel_7.Text = "1. POS"; this._chkChannel_7.UseVisualStyleBackColor = false; // //_chkChannel_8 // this._chkChannel_8.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_8.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_8.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_8.Location = new System.Drawing.Point(216, 260); this._chkChannel_8.Name = "_chkChannel_8"; this._chkChannel_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_8.Size = new System.Drawing.Size(166, 16); this._chkChannel_8.TabIndex = 18; this._chkChannel_8.Text = "1. POS"; this._chkChannel_8.UseVisualStyleBackColor = false; // //_chkChannel_9 // this._chkChannel_9.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkChannel_9.Cursor = System.Windows.Forms.Cursors.Default; this._chkChannel_9.ForeColor = System.Drawing.SystemColors.ControlText; this._chkChannel_9.Location = new System.Drawing.Point(216, 278); this._chkChannel_9.Name = "_chkChannel_9"; this._chkChannel_9.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkChannel_9.Size = new System.Drawing.Size(166, 20); this._chkChannel_9.TabIndex = 19; this._chkChannel_9.Text = "1. POS"; this._chkChannel_9.UseVisualStyleBackColor = false; // //_chkType_2 // this._chkType_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkType_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkType_2.Checked = true; this._chkType_2.CheckState = System.Windows.Forms.CheckState.Checked; this._chkType_2.Cursor = System.Windows.Forms.Cursors.Default; this._chkType_2.ForeColor = System.Drawing.SystemColors.ControlText; this._chkType_2.Location = new System.Drawing.Point(6, 246); this._chkType_2.Name = "_chkType_2"; this._chkType_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkType_2.Size = new System.Drawing.Size(187, 19); this._chkType_2.TabIndex = 9; this._chkType_2.Text = "Not Valid for Cheque Payments"; this._chkType_2.UseVisualStyleBackColor = false; // //_chkType_1 // this._chkType_1.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkType_1.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkType_1.Checked = true; this._chkType_1.CheckState = System.Windows.Forms.CheckState.Checked; this._chkType_1.Cursor = System.Windows.Forms.Cursors.Default; this._chkType_1.ForeColor = System.Drawing.SystemColors.ControlText; this._chkType_1.Location = new System.Drawing.Point(6, 223); this._chkType_1.Name = "_chkType_1"; this._chkType_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkType_1.Size = new System.Drawing.Size(187, 17); this._chkType_1.TabIndex = 8; this._chkType_1.Text = "Not Valid for Debit Cards Payments"; this._chkType_1.UseVisualStyleBackColor = false; // //_chkType_0 // this._chkType_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkType_0.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkType_0.Checked = true; this._chkType_0.CheckState = System.Windows.Forms.CheckState.Checked; this._chkType_0.Cursor = System.Windows.Forms.Cursors.Default; this._chkType_0.ForeColor = System.Drawing.SystemColors.ControlText; this._chkType_0.Location = new System.Drawing.Point(6, 201); this._chkType_0.Name = "_chkType_0"; this._chkType_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkType_0.Size = new System.Drawing.Size(187, 21); this._chkType_0.TabIndex = 7; this._chkType_0.Text = "Not Valid for Credit Card Payments"; this._chkType_0.UseVisualStyleBackColor = false; // //txtPrice // this.txtPrice.AcceptsReturn = true; this.txtPrice.BackColor = System.Drawing.SystemColors.Window; this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPrice.Location = new System.Drawing.Point(111, 87); this.txtPrice.MaxLength = 0; this.txtPrice.Name = "txtPrice"; this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPrice.Size = new System.Drawing.Size(79, 19); this.txtPrice.TabIndex = 5; this.txtPrice.Text = "0.00"; this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //cmbQuantity // this.cmbQuantity.BackColor = System.Drawing.SystemColors.Window; this.cmbQuantity.Cursor = System.Windows.Forms.Cursors.Default; this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbQuantity.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbQuantity.Location = new System.Drawing.Point(111, 63); this.cmbQuantity.Name = "cmbQuantity"; this.cmbQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbQuantity.Size = new System.Drawing.Size(79, 21); this.cmbQuantity.TabIndex = 3; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(465, 39); this.picButtons.TabIndex = 20; // //cmdClose // this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Location = new System.Drawing.Point(303, 3); this.cmdClose.Name = "cmdClose"; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.TabIndex = 21; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.UseVisualStyleBackColor = false; // //_lbl_4 // this._lbl_4.BackColor = System.Drawing.Color.Transparent; this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_4.Location = new System.Drawing.Point(6, 155); this._lbl_4.Name = "_lbl_4"; this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_4.Size = new System.Drawing.Size(189, 34); this._lbl_4.TabIndex = 6; this._lbl_4.Text = "This Cash Transaction does not apply to the following payment methods."; // //_lbl_0 // this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Location = new System.Drawing.Point(207, 63); this._lbl_0.Name = "_lbl_0"; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.Size = new System.Drawing.Size(177, 43); this._lbl_0.TabIndex = 10; this._lbl_0.Text = "Disabled this Cash Transaction for the following checked Sale Channels."; // //_lbl_3 // this._lbl_3.AutoSize = true; this._lbl_3.BackColor = System.Drawing.Color.Transparent; this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_3.Location = new System.Drawing.Point(73, 90); this._lbl_3.Name = "_lbl_3"; this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_3.Size = new System.Drawing.Size(34, 13); this._lbl_3.TabIndex = 4; this._lbl_3.Text = "Price:"; this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_2 // this._lbl_2.AutoSize = true; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_2.Location = new System.Drawing.Point(39, 66); this._lbl_2.Name = "_lbl_2"; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.Size = new System.Drawing.Size(63, 13); this._lbl_2.TabIndex = 2; this._lbl_2.Text = "Shrink Size:"; this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_1 // this._lbl_1.AutoSize = true; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Location = new System.Drawing.Point(6, 45); this._lbl_1.Name = "_lbl_1"; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.Size = new System.Drawing.Size(92, 13); this._lbl_1.TabIndex = 0; this._lbl_1.Text = "Stock Item Name:"; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight; // //lblStockItem // this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Location = new System.Drawing.Point(111, 45); this.lblStockItem.Name = "lblStockItem"; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.Size = new System.Drawing.Size(274, 17); this.lblStockItem.TabIndex = 1; this.lblStockItem.Text = "Label1"; // //frmCashTransactionItem // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224))); this.ClientSize = new System.Drawing.Size(465, 311); this.ControlBox = false; this.Controls.Add(this._chkChannel_1); this.Controls.Add(this._chkChannel_2); this.Controls.Add(this._chkChannel_3); this.Controls.Add(this._chkChannel_4); this.Controls.Add(this._chkChannel_5); this.Controls.Add(this._chkChannel_6); this.Controls.Add(this._chkChannel_7); this.Controls.Add(this._chkChannel_8); this.Controls.Add(this._chkChannel_9); this.Controls.Add(this._chkType_2); this.Controls.Add(this._chkType_1); this.Controls.Add(this._chkType_0); this.Controls.Add(this.txtPrice); this.Controls.Add(this.cmbQuantity); this.Controls.Add(this.picButtons); this.Controls.Add(this._lbl_4); this.Controls.Add(this._lbl_0); this.Controls.Add(this._lbl_3); this.Controls.Add(this._lbl_2); this.Controls.Add(this._lbl_1); this.Controls.Add(this.lblStockItem); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.Location = new System.Drawing.Point(3, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmCashTransactionItem"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Edit a Cash Transaction Item"; this.picButtons.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmItemItem)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._cmdClear_10 = new System.Windows.Forms.Button(); this._cmdStockItem_10 = new System.Windows.Forms.Button(); this._cmdClear_9 = new System.Windows.Forms.Button(); this._cmdStockItem_9 = new System.Windows.Forms.Button(); this._cmdClear_8 = new System.Windows.Forms.Button(); this._cmdStockItem_8 = new System.Windows.Forms.Button(); this._cmdClear_7 = new System.Windows.Forms.Button(); this._cmdStockItem_7 = new System.Windows.Forms.Button(); this._cmdClear_6 = new System.Windows.Forms.Button(); this._cmdStockItem_6 = new System.Windows.Forms.Button(); this._cmdClear_5 = new System.Windows.Forms.Button(); this._cmdStockItem_5 = new System.Windows.Forms.Button(); this._cmdClear_4 = new System.Windows.Forms.Button(); this._cmdStockItem_4 = new System.Windows.Forms.Button(); this._cmdClear_3 = new System.Windows.Forms.Button(); this._cmdStockItem_3 = new System.Windows.Forms.Button(); this._cmdClear_2 = new System.Windows.Forms.Button(); this._cmdStockItem_2 = new System.Windows.Forms.Button(); this._cmdClear_1 = new System.Windows.Forms.Button(); this._cmdStockItem_1 = new System.Windows.Forms.Button(); this.cmdExit = new System.Windows.Forms.Button(); this.cmdLoad = new System.Windows.Forms.Button(); this._optDataType_1 = new System.Windows.Forms.RadioButton(); this._optDataType_0 = new System.Windows.Forms.RadioButton(); this._lbl_11 = new System.Windows.Forms.Label(); this._lbl_10 = new System.Windows.Forms.Label(); this._lbl_9 = new System.Windows.Forms.Label(); this._lbl_8 = new System.Windows.Forms.Label(); this._lbl_7 = new System.Windows.Forms.Label(); this._lbl_6 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this._lbl_4 = new System.Windows.Forms.Label(); this._lbl_3 = new System.Windows.Forms.Label(); this._lbl_2 = new System.Windows.Forms.Label(); this._lblItem_10 = new System.Windows.Forms.Label(); this._lblItem_9 = new System.Windows.Forms.Label(); this._lblItem_8 = new System.Windows.Forms.Label(); this._lblItem_7 = new System.Windows.Forms.Label(); this._lblItem_6 = new System.Windows.Forms.Label(); this._lblItem_5 = new System.Windows.Forms.Label(); this._lblItem_4 = new System.Windows.Forms.Label(); this._lblItem_3 = new System.Windows.Forms.Label(); this._lblItem_2 = new System.Windows.Forms.Label(); this._lblItem_1 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.cmdClear = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components) //Me.cmdStockItem = New Microsoft.VisualBasic.Compatibility.VB6.ButtonArray(components) //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblItem = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.optDataType = New Microsoft.VisualBasic.Compatibility.VB6.RadioButtonArray(components) this.Shape1 = new RectangleShapeArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.cmdClear, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.cmdStockItem, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblItem, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.optDataType, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Compare Stock Item to Stock Item"; this.ClientSize = new System.Drawing.Size(506, 369); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmItemItem"; this._cmdClear_10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_10.Text = "&Clear"; this._cmdClear_10.Size = new System.Drawing.Size(34, 19); this._cmdClear_10.Location = new System.Drawing.Point(453, 282); this._cmdClear_10.TabIndex = 34; this._cmdClear_10.TabStop = false; this._cmdClear_10.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_10.CausesValidation = true; this._cmdClear_10.Enabled = true; this._cmdClear_10.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_10.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_10.Name = "_cmdClear_10"; this._cmdStockItem_10.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_10.Text = "..."; this._cmdStockItem_10.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_10.Location = new System.Drawing.Point(414, 282); this._cmdStockItem_10.TabIndex = 32; this._cmdStockItem_10.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_10.CausesValidation = true; this._cmdStockItem_10.Enabled = true; this._cmdStockItem_10.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_10.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_10.TabStop = true; this._cmdStockItem_10.Name = "_cmdStockItem_10"; this._cmdClear_9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_9.Text = "&Clear"; this._cmdClear_9.Size = new System.Drawing.Size(34, 19); this._cmdClear_9.Location = new System.Drawing.Point(453, 255); this._cmdClear_9.TabIndex = 31; this._cmdClear_9.TabStop = false; this._cmdClear_9.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_9.CausesValidation = true; this._cmdClear_9.Enabled = true; this._cmdClear_9.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_9.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_9.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_9.Name = "_cmdClear_9"; this._cmdStockItem_9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_9.Text = "..."; this._cmdStockItem_9.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_9.Location = new System.Drawing.Point(414, 255); this._cmdStockItem_9.TabIndex = 29; this._cmdStockItem_9.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_9.CausesValidation = true; this._cmdStockItem_9.Enabled = true; this._cmdStockItem_9.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_9.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_9.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_9.TabStop = true; this._cmdStockItem_9.Name = "_cmdStockItem_9"; this._cmdClear_8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_8.Text = "&Clear"; this._cmdClear_8.Size = new System.Drawing.Size(34, 19); this._cmdClear_8.Location = new System.Drawing.Point(453, 228); this._cmdClear_8.TabIndex = 28; this._cmdClear_8.TabStop = false; this._cmdClear_8.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_8.CausesValidation = true; this._cmdClear_8.Enabled = true; this._cmdClear_8.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_8.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_8.Name = "_cmdClear_8"; this._cmdStockItem_8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_8.Text = "..."; this._cmdStockItem_8.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_8.Location = new System.Drawing.Point(414, 228); this._cmdStockItem_8.TabIndex = 26; this._cmdStockItem_8.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_8.CausesValidation = true; this._cmdStockItem_8.Enabled = true; this._cmdStockItem_8.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_8.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_8.TabStop = true; this._cmdStockItem_8.Name = "_cmdStockItem_8"; this._cmdClear_7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_7.Text = "&Clear"; this._cmdClear_7.Size = new System.Drawing.Size(34, 19); this._cmdClear_7.Location = new System.Drawing.Point(453, 201); this._cmdClear_7.TabIndex = 25; this._cmdClear_7.TabStop = false; this._cmdClear_7.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_7.CausesValidation = true; this._cmdClear_7.Enabled = true; this._cmdClear_7.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_7.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_7.Name = "_cmdClear_7"; this._cmdStockItem_7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_7.Text = "..."; this._cmdStockItem_7.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_7.Location = new System.Drawing.Point(414, 201); this._cmdStockItem_7.TabIndex = 23; this._cmdStockItem_7.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_7.CausesValidation = true; this._cmdStockItem_7.Enabled = true; this._cmdStockItem_7.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_7.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_7.TabStop = true; this._cmdStockItem_7.Name = "_cmdStockItem_7"; this._cmdClear_6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_6.Text = "&Clear"; this._cmdClear_6.Size = new System.Drawing.Size(34, 19); this._cmdClear_6.Location = new System.Drawing.Point(453, 174); this._cmdClear_6.TabIndex = 22; this._cmdClear_6.TabStop = false; this._cmdClear_6.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_6.CausesValidation = true; this._cmdClear_6.Enabled = true; this._cmdClear_6.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_6.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_6.Name = "_cmdClear_6"; this._cmdStockItem_6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_6.Text = "..."; this._cmdStockItem_6.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_6.Location = new System.Drawing.Point(414, 174); this._cmdStockItem_6.TabIndex = 20; this._cmdStockItem_6.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_6.CausesValidation = true; this._cmdStockItem_6.Enabled = true; this._cmdStockItem_6.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_6.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_6.TabStop = true; this._cmdStockItem_6.Name = "_cmdStockItem_6"; this._cmdClear_5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_5.Text = "&Clear"; this._cmdClear_5.Size = new System.Drawing.Size(34, 19); this._cmdClear_5.Location = new System.Drawing.Point(453, 147); this._cmdClear_5.TabIndex = 19; this._cmdClear_5.TabStop = false; this._cmdClear_5.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_5.CausesValidation = true; this._cmdClear_5.Enabled = true; this._cmdClear_5.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_5.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_5.Name = "_cmdClear_5"; this._cmdStockItem_5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_5.Text = "..."; this._cmdStockItem_5.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_5.Location = new System.Drawing.Point(414, 147); this._cmdStockItem_5.TabIndex = 17; this._cmdStockItem_5.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_5.CausesValidation = true; this._cmdStockItem_5.Enabled = true; this._cmdStockItem_5.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_5.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_5.TabStop = true; this._cmdStockItem_5.Name = "_cmdStockItem_5"; this._cmdClear_4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_4.Text = "&Clear"; this._cmdClear_4.Size = new System.Drawing.Size(34, 19); this._cmdClear_4.Location = new System.Drawing.Point(453, 120); this._cmdClear_4.TabIndex = 16; this._cmdClear_4.TabStop = false; this._cmdClear_4.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_4.CausesValidation = true; this._cmdClear_4.Enabled = true; this._cmdClear_4.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_4.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_4.Name = "_cmdClear_4"; this._cmdStockItem_4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_4.Text = "..."; this._cmdStockItem_4.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_4.Location = new System.Drawing.Point(414, 120); this._cmdStockItem_4.TabIndex = 14; this._cmdStockItem_4.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_4.CausesValidation = true; this._cmdStockItem_4.Enabled = true; this._cmdStockItem_4.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_4.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_4.TabStop = true; this._cmdStockItem_4.Name = "_cmdStockItem_4"; this._cmdClear_3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_3.Text = "&Clear"; this._cmdClear_3.Size = new System.Drawing.Size(34, 19); this._cmdClear_3.Location = new System.Drawing.Point(453, 93); this._cmdClear_3.TabIndex = 13; this._cmdClear_3.TabStop = false; this._cmdClear_3.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_3.CausesValidation = true; this._cmdClear_3.Enabled = true; this._cmdClear_3.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_3.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_3.Name = "_cmdClear_3"; this._cmdStockItem_3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_3.Text = "..."; this._cmdStockItem_3.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_3.Location = new System.Drawing.Point(414, 93); this._cmdStockItem_3.TabIndex = 11; this._cmdStockItem_3.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_3.CausesValidation = true; this._cmdStockItem_3.Enabled = true; this._cmdStockItem_3.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_3.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_3.TabStop = true; this._cmdStockItem_3.Name = "_cmdStockItem_3"; this._cmdClear_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_2.Text = "&Clear"; this._cmdClear_2.Size = new System.Drawing.Size(34, 19); this._cmdClear_2.Location = new System.Drawing.Point(453, 66); this._cmdClear_2.TabIndex = 10; this._cmdClear_2.TabStop = false; this._cmdClear_2.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_2.CausesValidation = true; this._cmdClear_2.Enabled = true; this._cmdClear_2.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_2.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_2.Name = "_cmdClear_2"; this._cmdStockItem_2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_2.Text = "..."; this._cmdStockItem_2.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_2.Location = new System.Drawing.Point(414, 66); this._cmdStockItem_2.TabIndex = 8; this._cmdStockItem_2.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_2.CausesValidation = true; this._cmdStockItem_2.Enabled = true; this._cmdStockItem_2.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_2.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_2.TabStop = true; this._cmdStockItem_2.Name = "_cmdStockItem_2"; this._cmdClear_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdClear_1.Text = "&Clear"; this._cmdClear_1.Size = new System.Drawing.Size(34, 19); this._cmdClear_1.Location = new System.Drawing.Point(453, 39); this._cmdClear_1.TabIndex = 7; this._cmdClear_1.TabStop = false; this._cmdClear_1.BackColor = System.Drawing.SystemColors.Control; this._cmdClear_1.CausesValidation = true; this._cmdClear_1.Enabled = true; this._cmdClear_1.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdClear_1.Cursor = System.Windows.Forms.Cursors.Default; this._cmdClear_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdClear_1.Name = "_cmdClear_1"; this._cmdStockItem_1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this._cmdStockItem_1.Text = "..."; this._cmdStockItem_1.Size = new System.Drawing.Size(34, 19); this._cmdStockItem_1.Location = new System.Drawing.Point(414, 39); this._cmdStockItem_1.TabIndex = 5; this._cmdStockItem_1.BackColor = System.Drawing.SystemColors.Control; this._cmdStockItem_1.CausesValidation = true; this._cmdStockItem_1.Enabled = true; this._cmdStockItem_1.ForeColor = System.Drawing.SystemColors.ControlText; this._cmdStockItem_1.Cursor = System.Windows.Forms.Cursors.Default; this._cmdStockItem_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._cmdStockItem_1.TabStop = true; this._cmdStockItem_1.Name = "_cmdStockItem_1"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Size = new System.Drawing.Size(79, 31); this.cmdExit.Location = new System.Drawing.Point(12, 321); this.cmdExit.TabIndex = 4; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.TabStop = true; this.cmdExit.Name = "cmdExit"; this.cmdLoad.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdLoad.Text = "&Load report >>"; this.cmdLoad.Size = new System.Drawing.Size(79, 31); this.cmdLoad.Location = new System.Drawing.Point(417, 321); this.cmdLoad.TabIndex = 3; this.cmdLoad.BackColor = System.Drawing.SystemColors.Control; this.cmdLoad.CausesValidation = true; this.cmdLoad.Enabled = true; this.cmdLoad.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdLoad.Cursor = System.Windows.Forms.Cursors.Default; this.cmdLoad.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdLoad.TabStop = true; this.cmdLoad.Name = "cmdLoad"; this._optDataType_1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optDataType_1.Text = "Sales &Value"; this._optDataType_1.Size = new System.Drawing.Size(145, 13); this._optDataType_1.Location = new System.Drawing.Point(267, 339); this._optDataType_1.TabIndex = 2; this._optDataType_1.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optDataType_1.BackColor = System.Drawing.SystemColors.Control; this._optDataType_1.CausesValidation = true; this._optDataType_1.Enabled = true; this._optDataType_1.ForeColor = System.Drawing.SystemColors.ControlText; this._optDataType_1.Cursor = System.Windows.Forms.Cursors.Default; this._optDataType_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._optDataType_1.Appearance = System.Windows.Forms.Appearance.Normal; this._optDataType_1.TabStop = true; this._optDataType_1.Checked = false; this._optDataType_1.Visible = true; this._optDataType_1.Name = "_optDataType_1"; this._optDataType_0.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optDataType_0.Text = "Sales &Quantity"; this._optDataType_0.Size = new System.Drawing.Size(145, 13); this._optDataType_0.Location = new System.Drawing.Point(267, 321); this._optDataType_0.TabIndex = 1; this._optDataType_0.Checked = true; this._optDataType_0.CheckAlign = System.Drawing.ContentAlignment.MiddleLeft; this._optDataType_0.BackColor = System.Drawing.SystemColors.Control; this._optDataType_0.CausesValidation = true; this._optDataType_0.Enabled = true; this._optDataType_0.ForeColor = System.Drawing.SystemColors.ControlText; this._optDataType_0.Cursor = System.Windows.Forms.Cursors.Default; this._optDataType_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._optDataType_0.Appearance = System.Windows.Forms.Appearance.Normal; this._optDataType_0.TabStop = true; this._optDataType_0.Visible = true; this._optDataType_0.Name = "_optDataType_0"; this._lbl_11.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_11.Text = "1&0"; this._lbl_11.Size = new System.Drawing.Size(17, 13); this._lbl_11.Location = new System.Drawing.Point(9, 285); this._lbl_11.TabIndex = 44; this._lbl_11.BackColor = System.Drawing.Color.Transparent; this._lbl_11.Enabled = true; this._lbl_11.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_11.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_11.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_11.UseMnemonic = true; this._lbl_11.Visible = true; this._lbl_11.AutoSize = false; this._lbl_11.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_11.Name = "_lbl_11"; this._lbl_10.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_10.Text = "&9"; this._lbl_10.Size = new System.Drawing.Size(17, 13); this._lbl_10.Location = new System.Drawing.Point(9, 258); this._lbl_10.TabIndex = 43; this._lbl_10.BackColor = System.Drawing.Color.Transparent; this._lbl_10.Enabled = true; this._lbl_10.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_10.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_10.UseMnemonic = true; this._lbl_10.Visible = true; this._lbl_10.AutoSize = false; this._lbl_10.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_10.Name = "_lbl_10"; this._lbl_9.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_9.Text = "&8"; this._lbl_9.Size = new System.Drawing.Size(17, 13); this._lbl_9.Location = new System.Drawing.Point(9, 231); this._lbl_9.TabIndex = 42; this._lbl_9.BackColor = System.Drawing.Color.Transparent; this._lbl_9.Enabled = true; this._lbl_9.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_9.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_9.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_9.UseMnemonic = true; this._lbl_9.Visible = true; this._lbl_9.AutoSize = false; this._lbl_9.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_9.Name = "_lbl_9"; this._lbl_8.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_8.Text = "&7"; this._lbl_8.Size = new System.Drawing.Size(17, 13); this._lbl_8.Location = new System.Drawing.Point(9, 204); this._lbl_8.TabIndex = 41; this._lbl_8.BackColor = System.Drawing.Color.Transparent; this._lbl_8.Enabled = true; this._lbl_8.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_8.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_8.UseMnemonic = true; this._lbl_8.Visible = true; this._lbl_8.AutoSize = false; this._lbl_8.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_8.Name = "_lbl_8"; this._lbl_7.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_7.Text = "&6"; this._lbl_7.Size = new System.Drawing.Size(17, 13); this._lbl_7.Location = new System.Drawing.Point(9, 177); this._lbl_7.TabIndex = 40; this._lbl_7.BackColor = System.Drawing.Color.Transparent; this._lbl_7.Enabled = true; this._lbl_7.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_7.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_7.UseMnemonic = true; this._lbl_7.Visible = true; this._lbl_7.AutoSize = false; this._lbl_7.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_7.Name = "_lbl_7"; this._lbl_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_6.Text = "&5"; this._lbl_6.Size = new System.Drawing.Size(17, 13); this._lbl_6.Location = new System.Drawing.Point(9, 150); this._lbl_6.TabIndex = 39; this._lbl_6.BackColor = System.Drawing.Color.Transparent; this._lbl_6.Enabled = true; this._lbl_6.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_6.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_6.UseMnemonic = true; this._lbl_6.Visible = true; this._lbl_6.AutoSize = false; this._lbl_6.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_6.Name = "_lbl_6"; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_5.Text = "&4"; this._lbl_5.Size = new System.Drawing.Size(17, 13); this._lbl_5.Location = new System.Drawing.Point(9, 123); this._lbl_5.TabIndex = 38; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = false; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this._lbl_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_4.Text = "&3"; this._lbl_4.Size = new System.Drawing.Size(17, 13); this._lbl_4.Location = new System.Drawing.Point(9, 96); this._lbl_4.TabIndex = 37; this._lbl_4.BackColor = System.Drawing.Color.Transparent; this._lbl_4.Enabled = true; this._lbl_4.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_4.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_4.UseMnemonic = true; this._lbl_4.Visible = true; this._lbl_4.AutoSize = false; this._lbl_4.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_4.Name = "_lbl_4"; this._lbl_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_3.Text = "&2"; this._lbl_3.Size = new System.Drawing.Size(17, 13); this._lbl_3.Location = new System.Drawing.Point(9, 69); this._lbl_3.TabIndex = 36; this._lbl_3.BackColor = System.Drawing.Color.Transparent; this._lbl_3.Enabled = true; this._lbl_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_3.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_3.UseMnemonic = true; this._lbl_3.Visible = true; this._lbl_3.AutoSize = false; this._lbl_3.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_3.Name = "_lbl_3"; this._lbl_2.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_2.Text = "&1"; this._lbl_2.Size = new System.Drawing.Size(17, 13); this._lbl_2.Location = new System.Drawing.Point(9, 42); this._lbl_2.TabIndex = 35; this._lbl_2.BackColor = System.Drawing.Color.Transparent; this._lbl_2.Enabled = true; this._lbl_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_2.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_2.UseMnemonic = true; this._lbl_2.Visible = true; this._lbl_2.AutoSize = false; this._lbl_2.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_2.Name = "_lbl_2"; this._lblItem_10.Size = new System.Drawing.Size(382, 19); this._lblItem_10.Location = new System.Drawing.Point(30, 282); this._lblItem_10.TabIndex = 33; this._lblItem_10.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_10.BackColor = System.Drawing.SystemColors.Control; this._lblItem_10.Enabled = true; this._lblItem_10.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_10.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_10.UseMnemonic = true; this._lblItem_10.Visible = true; this._lblItem_10.AutoSize = false; this._lblItem_10.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_10.Name = "_lblItem_10"; this._lblItem_9.Size = new System.Drawing.Size(382, 19); this._lblItem_9.Location = new System.Drawing.Point(30, 255); this._lblItem_9.TabIndex = 30; this._lblItem_9.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_9.BackColor = System.Drawing.SystemColors.Control; this._lblItem_9.Enabled = true; this._lblItem_9.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_9.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_9.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_9.UseMnemonic = true; this._lblItem_9.Visible = true; this._lblItem_9.AutoSize = false; this._lblItem_9.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_9.Name = "_lblItem_9"; this._lblItem_8.Size = new System.Drawing.Size(382, 19); this._lblItem_8.Location = new System.Drawing.Point(30, 228); this._lblItem_8.TabIndex = 27; this._lblItem_8.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_8.BackColor = System.Drawing.SystemColors.Control; this._lblItem_8.Enabled = true; this._lblItem_8.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_8.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_8.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_8.UseMnemonic = true; this._lblItem_8.Visible = true; this._lblItem_8.AutoSize = false; this._lblItem_8.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_8.Name = "_lblItem_8"; this._lblItem_7.Size = new System.Drawing.Size(382, 19); this._lblItem_7.Location = new System.Drawing.Point(30, 201); this._lblItem_7.TabIndex = 24; this._lblItem_7.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_7.BackColor = System.Drawing.SystemColors.Control; this._lblItem_7.Enabled = true; this._lblItem_7.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_7.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_7.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_7.UseMnemonic = true; this._lblItem_7.Visible = true; this._lblItem_7.AutoSize = false; this._lblItem_7.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_7.Name = "_lblItem_7"; this._lblItem_6.Size = new System.Drawing.Size(382, 19); this._lblItem_6.Location = new System.Drawing.Point(30, 174); this._lblItem_6.TabIndex = 21; this._lblItem_6.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_6.BackColor = System.Drawing.SystemColors.Control; this._lblItem_6.Enabled = true; this._lblItem_6.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_6.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_6.UseMnemonic = true; this._lblItem_6.Visible = true; this._lblItem_6.AutoSize = false; this._lblItem_6.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_6.Name = "_lblItem_6"; this._lblItem_5.Size = new System.Drawing.Size(382, 19); this._lblItem_5.Location = new System.Drawing.Point(30, 147); this._lblItem_5.TabIndex = 18; this._lblItem_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_5.BackColor = System.Drawing.SystemColors.Control; this._lblItem_5.Enabled = true; this._lblItem_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_5.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_5.UseMnemonic = true; this._lblItem_5.Visible = true; this._lblItem_5.AutoSize = false; this._lblItem_5.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_5.Name = "_lblItem_5"; this._lblItem_4.Size = new System.Drawing.Size(382, 19); this._lblItem_4.Location = new System.Drawing.Point(30, 120); this._lblItem_4.TabIndex = 15; this._lblItem_4.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_4.BackColor = System.Drawing.SystemColors.Control; this._lblItem_4.Enabled = true; this._lblItem_4.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_4.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_4.UseMnemonic = true; this._lblItem_4.Visible = true; this._lblItem_4.AutoSize = false; this._lblItem_4.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_4.Name = "_lblItem_4"; this._lblItem_3.Size = new System.Drawing.Size(382, 19); this._lblItem_3.Location = new System.Drawing.Point(30, 93); this._lblItem_3.TabIndex = 12; this._lblItem_3.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_3.BackColor = System.Drawing.SystemColors.Control; this._lblItem_3.Enabled = true; this._lblItem_3.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_3.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_3.UseMnemonic = true; this._lblItem_3.Visible = true; this._lblItem_3.AutoSize = false; this._lblItem_3.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_3.Name = "_lblItem_3"; this._lblItem_2.Size = new System.Drawing.Size(382, 19); this._lblItem_2.Location = new System.Drawing.Point(30, 66); this._lblItem_2.TabIndex = 9; this._lblItem_2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_2.BackColor = System.Drawing.SystemColors.Control; this._lblItem_2.Enabled = true; this._lblItem_2.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_2.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_2.UseMnemonic = true; this._lblItem_2.Visible = true; this._lblItem_2.AutoSize = false; this._lblItem_2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_2.Name = "_lblItem_2"; this._lblItem_1.Size = new System.Drawing.Size(382, 19); this._lblItem_1.Location = new System.Drawing.Point(30, 39); this._lblItem_1.TabIndex = 6; this._lblItem_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lblItem_1.BackColor = System.Drawing.SystemColors.Control; this._lblItem_1.Enabled = true; this._lblItem_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lblItem_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblItem_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblItem_1.UseMnemonic = true; this._lblItem_1.Visible = true; this._lblItem_1.AutoSize = false; this._lblItem_1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this._lblItem_1.Name = "_lblItem_1"; this._lbl_0.Text = "&1. Select Stock Items"; this._lbl_0.Size = new System.Drawing.Size(123, 13); this._lbl_0.Location = new System.Drawing.Point(9, 9); this._lbl_0.TabIndex = 0; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = true; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(487, 283); this._Shape1_1.Location = new System.Drawing.Point(9, 30); this._Shape1_1.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_1.BorderWidth = 1; this._Shape1_1.FillColor = System.Drawing.Color.Black; this._Shape1_1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_1.Visible = true; this._Shape1_1.Name = "_Shape1_1"; this.Controls.Add(_cmdClear_10); this.Controls.Add(_cmdStockItem_10); this.Controls.Add(_cmdClear_9); this.Controls.Add(_cmdStockItem_9); this.Controls.Add(_cmdClear_8); this.Controls.Add(_cmdStockItem_8); this.Controls.Add(_cmdClear_7); this.Controls.Add(_cmdStockItem_7); this.Controls.Add(_cmdClear_6); this.Controls.Add(_cmdStockItem_6); this.Controls.Add(_cmdClear_5); this.Controls.Add(_cmdStockItem_5); this.Controls.Add(_cmdClear_4); this.Controls.Add(_cmdStockItem_4); this.Controls.Add(_cmdClear_3); this.Controls.Add(_cmdStockItem_3); this.Controls.Add(_cmdClear_2); this.Controls.Add(_cmdStockItem_2); this.Controls.Add(_cmdClear_1); this.Controls.Add(_cmdStockItem_1); this.Controls.Add(cmdExit); this.Controls.Add(cmdLoad); this.Controls.Add(_optDataType_1); this.Controls.Add(_optDataType_0); this.Controls.Add(_lbl_11); this.Controls.Add(_lbl_10); this.Controls.Add(_lbl_9); this.Controls.Add(_lbl_8); this.Controls.Add(_lbl_7); this.Controls.Add(_lbl_6); this.Controls.Add(_lbl_5); this.Controls.Add(_lbl_4); this.Controls.Add(_lbl_3); this.Controls.Add(_lbl_2); this.Controls.Add(_lblItem_10); this.Controls.Add(_lblItem_9); this.Controls.Add(_lblItem_8); this.Controls.Add(_lblItem_7); this.Controls.Add(_lblItem_6); this.Controls.Add(_lblItem_5); this.Controls.Add(_lblItem_4); this.Controls.Add(_lblItem_3); this.Controls.Add(_lblItem_2); this.Controls.Add(_lblItem_1); this.Controls.Add(_lbl_0); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.Controls.Add(ShapeContainer1); //Me.cmdClear.SetIndex(_cmdClear_10, CType(10, Short)) //Me.cmdClear.SetIndex(_cmdClear_9, CType(9, Short)) //Me.cmdClear.SetIndex(_cmdClear_8, CType(8, Short)) //Me.cmdClear.SetIndex(_cmdClear_7, CType(7, Short)) //Me.cmdClear.SetIndex(_cmdClear_6, CType(6, Short)) //Me.cmdClear.SetIndex(_cmdClear_5, CType(5, Short)) //Me.cmdClear.SetIndex(_cmdClear_4, CType(4, Short)) //Me.cmdClear.SetIndex(_cmdClear_3, CType(3, Short)) //Me.cmdClear.SetIndex(_cmdClear_2, CType(2, Short)) //Me.cmdClear.SetIndex(_cmdClear_1, CType(1, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_10, CType(10, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_9, CType(9, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_8, CType(8, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_7, CType(7, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_6, CType(6, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_5, CType(5, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_4, CType(4, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_3, CType(3, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_2, CType(2, Short)) //Me.cmdStockItem.SetIndex(_cmdStockItem_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_11, CType(11, Short)) //Me.lbl.SetIndex(_lbl_10, CType(10, Short)) //Me.lbl.SetIndex(_lbl_9, CType(9, Short)) //Me.lbl.SetIndex(_lbl_8, CType(8, Short)) //Me.lbl.SetIndex(_lbl_7, CType(7, Short)) //Me.lbl.SetIndex(_lbl_6, CType(6, Short)) //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lbl.SetIndex(_lbl_4, CType(4, Short)) //Me.lbl.SetIndex(_lbl_3, CType(3, Short)) //Me.lbl.SetIndex(_lbl_2, CType(2, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) //Me.lblItem.SetIndex(_lblItem_10, CType(10, Short)) //Me.lblItem.SetIndex(_lblItem_9, CType(9, Short)) //Me.lblItem.SetIndex(_lblItem_8, CType(8, Short)) //Me.lblItem.SetIndex(_lblItem_7, CType(7, Short)) //Me.lblItem.SetIndex(_lblItem_6, CType(6, Short)) //Me.lblItem.SetIndex(_lblItem_5, CType(5, Short)) //Me.lblItem.SetIndex(_lblItem_4, CType(4, Short)) //Me.lblItem.SetIndex(_lblItem_3, CType(3, Short)) //Me.lblItem.SetIndex(_lblItem_2, CType(2, Short)) //Me.lblItem.SetIndex(_lblItem_1, CType(1, Short)) //Me.optDataType.SetIndex(_optDataType_1, CType(1, Short)) //Me.optDataType.SetIndex(_optDataType_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.optDataType, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lblItem, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.cmdStockItem, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.cmdClear, System.ComponentModel.ISupportInitialize).EndInit() this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmMWSelect)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmbMWNo = new System.Windows.Forms.ComboBox(); this.cmdExit = new System.Windows.Forms.Button(); this.txtWNO = new System.Windows.Forms.TextBox(); this._lbl_5 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Warehouse selection"; this.ClientSize = new System.Drawing.Size(418, 99); 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 = "frmMWSelect"; this.cmbMWNo.Size = new System.Drawing.Size(276, 21); this.cmbMWNo.Location = new System.Drawing.Point(16, 32); this.cmbMWNo.Items.AddRange(new object[] { "No relationship", "Always the same or cheaper", "Always the same or more expensive" }); this.cmbMWNo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbMWNo.TabIndex = 2; this.cmbMWNo.BackColor = System.Drawing.SystemColors.Window; this.cmbMWNo.CausesValidation = true; this.cmbMWNo.Enabled = true; this.cmbMWNo.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbMWNo.IntegralHeight = true; this.cmbMWNo.Cursor = System.Windows.Forms.Cursors.Default; this.cmbMWNo.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbMWNo.Sorted = false; this.cmbMWNo.TabStop = true; this.cmbMWNo.Visible = true; this.cmbMWNo.Name = "cmbMWNo"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "Next"; this.cmdExit.Size = new System.Drawing.Size(97, 52); this.cmdExit.Location = new System.Drawing.Point(304, 32); this.cmdExit.TabIndex = 1; 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.txtWNO.AutoSize = false; this.txtWNO.Size = new System.Drawing.Size(89, 25); this.txtWNO.Location = new System.Drawing.Point(104, 56); this.txtWNO.TabIndex = 0; this.txtWNO.Text = "2"; this.txtWNO.Visible = false; this.txtWNO.AcceptsReturn = true; this.txtWNO.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtWNO.BackColor = System.Drawing.SystemColors.Window; this.txtWNO.CausesValidation = true; this.txtWNO.Enabled = true; this.txtWNO.ForeColor = System.Drawing.SystemColors.WindowText; this.txtWNO.HideSelection = true; this.txtWNO.ReadOnly = false; this.txtWNO.MaxLength = 0; this.txtWNO.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtWNO.Multiline = false; this.txtWNO.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtWNO.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtWNO.TabStop = true; this.txtWNO.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.txtWNO.Name = "txtWNO"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "&Select Warehouse you wish to see/edit information for."; this._lbl_5.Size = new System.Drawing.Size(313, 13); this._lbl_5.Location = new System.Drawing.Point(8, 8); this._lbl_5.TabIndex = 3; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = true; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(403, 68); this._Shape1_2.Location = new System.Drawing.Point(8, 23); 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(cmbMWNo); this.Controls.Add(cmdExit); this.Controls.Add(txtWNO); this.Controls.Add(_lbl_5); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(ShapeContainer1); //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle(); this.LblInvoice = new System.Windows.Forms.Label(); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.RectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Panel1 = new System.Windows.Forms.Panel(); this.ChkTaxInclusive = new System.Windows.Forms.CheckBox(); this.BsServiceInvoice = new System.Windows.Forms.BindingSource(this.components); this.TextTotalAmount = new System.Windows.Forms.TextBox(); this.LabelTotal = new System.Windows.Forms.Label(); this.TextTax = new System.Windows.Forms.TextBox(); this.LabelTax = new System.Windows.Forms.Label(); this.TextSubtotal = new System.Windows.Forms.TextBox(); this.LabelSubtotal = new System.Windows.Forms.Label(); this.GrdServiceLines = new System.Windows.Forms.DataGridView(); this.RowId = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColDescription = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColAccount = new System.Windows.Forms.DataGridViewComboBoxColumn(); this.ColAmount = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.ColJob = new System.Windows.Forms.DataGridViewComboBoxColumn(); this.ColTax = new System.Windows.Forms.DataGridViewComboBoxColumn(); this.RowVersion = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.DtDate = new System.Windows.Forms.DateTimePicker(); this.Label1 = new System.Windows.Forms.Label(); this.TxtInvoiceNo = new System.Windows.Forms.TextBox(); this.V = new System.Windows.Forms.Label(); this.LblAddress = new System.Windows.Forms.Label(); this.TxtAddress = new System.Windows.Forms.TextBox(); this.CmboCustomer = new System.Windows.Forms.ComboBox(); this.LblCustomer = new System.Windows.Forms.Label(); this.ShapeContainer2 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.RectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.BtnRecord = new System.Windows.Forms.Button(); this.DataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.DataGridViewTextBoxColumn2 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.DataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.DataGridViewTextBoxColumn4 = new System.Windows.Forms.DataGridViewTextBoxColumn(); this.Panel1.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.BsServiceInvoice)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.GrdServiceLines)).BeginInit(); this.SuspendLayout(); // // LblInvoice // this.LblInvoice.AutoSize = true; this.LblInvoice.BackColor = System.Drawing.Color.Transparent; this.LblInvoice.Font = new System.Drawing.Font("Calibri", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.LblInvoice.Location = new System.Drawing.Point(15, 3); this.LblInvoice.Name = "LblInvoice"; this.LblInvoice.Size = new System.Drawing.Size(153, 18); this.LblInvoice.TabIndex = 4; this.LblInvoice.Text = "Invoice - Service Layout"; // // ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.RectangleShape1}); this.ShapeContainer1.Size = new System.Drawing.Size(784, 562); this.ShapeContainer1.TabIndex = 5; this.ShapeContainer1.TabStop = false; // // RectangleShape1 // this.RectangleShape1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.RectangleShape1.BackColor = System.Drawing.Color.White; this.RectangleShape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this.RectangleShape1.Location = new System.Drawing.Point(10, 25); this.RectangleShape1.Name = "RectangleShape1"; this.RectangleShape1.Size = new System.Drawing.Size(760, 490); // // Panel1 // this.Panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.Panel1.BackColor = System.Drawing.Color.PowderBlue; this.Panel1.Controls.Add(this.ChkTaxInclusive); this.Panel1.Controls.Add(this.TextTotalAmount); this.Panel1.Controls.Add(this.LabelTotal); this.Panel1.Controls.Add(this.TextTax); this.Panel1.Controls.Add(this.LabelTax); this.Panel1.Controls.Add(this.TextSubtotal); this.Panel1.Controls.Add(this.LabelSubtotal); this.Panel1.Controls.Add(this.GrdServiceLines); this.Panel1.Controls.Add(this.DtDate); this.Panel1.Controls.Add(this.Label1); this.Panel1.Controls.Add(this.TxtInvoiceNo); this.Panel1.Controls.Add(this.V); this.Panel1.Controls.Add(this.LblAddress); this.Panel1.Controls.Add(this.TxtAddress); this.Panel1.Controls.Add(this.CmboCustomer); this.Panel1.Controls.Add(this.LblCustomer); this.Panel1.Controls.Add(this.ShapeContainer2); this.Panel1.Location = new System.Drawing.Point(14, 30); this.Panel1.Name = "Panel1"; this.Panel1.Size = new System.Drawing.Size(752, 480); this.Panel1.TabIndex = 6; // // ChkTaxInclusive // this.ChkTaxInclusive.AutoSize = true; this.ChkTaxInclusive.Checked = true; this.ChkTaxInclusive.CheckState = System.Windows.Forms.CheckState.Checked; this.ChkTaxInclusive.DataBindings.Add(new System.Windows.Forms.Binding("Checked", this.BsServiceInvoice, "IsTaxInclusive", true)); this.ChkTaxInclusive.Location = new System.Drawing.Point(550, 9); this.ChkTaxInclusive.Name = "ChkTaxInclusive"; this.ChkTaxInclusive.Size = new System.Drawing.Size(89, 17); this.ChkTaxInclusive.TabIndex = 16; this.ChkTaxInclusive.Text = "Tax Inclusive"; this.ChkTaxInclusive.UseVisualStyleBackColor = true; // // BsServiceInvoice // this.BsServiceInvoice.DataSource = typeof(MYOB.AccountRight.SDK.Contracts.Version2.Sale.ServiceInvoice); // // TextTotalAmount // this.TextTotalAmount.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "TotalAmount", true)); this.TextTotalAmount.Enabled = false; this.TextTotalAmount.Location = new System.Drawing.Point(550, 432); this.TextTotalAmount.Name = "TextTotalAmount"; this.TextTotalAmount.Size = new System.Drawing.Size(130, 20); this.TextTotalAmount.TabIndex = 15; // // LabelTotal // this.LabelTotal.AutoSize = true; this.LabelTotal.BackColor = System.Drawing.Color.Transparent; this.LabelTotal.Location = new System.Drawing.Point(471, 435); this.LabelTotal.Name = "LabelTotal"; this.LabelTotal.Size = new System.Drawing.Size(73, 13); this.LabelTotal.TabIndex = 14; this.LabelTotal.Text = "Total Amount:"; this.LabelTotal.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // TextTax // this.TextTax.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "TotalTax", true)); this.TextTax.Enabled = false; this.TextTax.Location = new System.Drawing.Point(550, 406); this.TextTax.Name = "TextTax"; this.TextTax.Size = new System.Drawing.Size(130, 20); this.TextTax.TabIndex = 13; // // LabelTax // this.LabelTax.AutoSize = true; this.LabelTax.BackColor = System.Drawing.Color.Transparent; this.LabelTax.Location = new System.Drawing.Point(516, 409); this.LabelTax.Name = "LabelTax"; this.LabelTax.Size = new System.Drawing.Size(28, 13); this.LabelTax.TabIndex = 12; this.LabelTax.Text = "Tax:"; this.LabelTax.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // TextSubtotal // this.TextSubtotal.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "Subtotal", true)); this.TextSubtotal.Enabled = false; this.TextSubtotal.Location = new System.Drawing.Point(550, 380); this.TextSubtotal.Name = "TextSubtotal"; this.TextSubtotal.Size = new System.Drawing.Size(130, 20); this.TextSubtotal.TabIndex = 11; // // LabelSubtotal // this.LabelSubtotal.AutoSize = true; this.LabelSubtotal.BackColor = System.Drawing.Color.Transparent; this.LabelSubtotal.Location = new System.Drawing.Point(495, 383); this.LabelSubtotal.Name = "LabelSubtotal"; this.LabelSubtotal.Size = new System.Drawing.Size(49, 13); this.LabelSubtotal.TabIndex = 10; this.LabelSubtotal.Text = "Subtotal:"; this.LabelSubtotal.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // GrdServiceLines // this.GrdServiceLines.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.GrdServiceLines.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; this.GrdServiceLines.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { this.RowId, this.ColDescription, this.ColAccount, this.ColAmount, this.ColJob, this.ColTax, this.RowVersion}); this.GrdServiceLines.Location = new System.Drawing.Point(19, 149); this.GrdServiceLines.Name = "GrdServiceLines"; this.GrdServiceLines.Size = new System.Drawing.Size(713, 208); this.GrdServiceLines.TabIndex = 9; this.GrdServiceLines.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.GrdServiceLinesDataError); // // RowId // this.RowId.DataPropertyName = "RowId"; this.RowId.HeaderText = "RowId"; this.RowId.Name = "RowId"; this.RowId.Visible = false; // // ColDescription // this.ColDescription.DataPropertyName = "Description"; this.ColDescription.FillWeight = 200F; this.ColDescription.HeaderText = "Description"; this.ColDescription.Name = "ColDescription"; this.ColDescription.Width = 200; // // ColAccount // this.ColAccount.DataPropertyName = "AccountUID"; this.ColAccount.HeaderText = "Account"; this.ColAccount.Name = "ColAccount"; this.ColAccount.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.ColAccount.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; this.ColAccount.Width = 150; // // ColAmount // this.ColAmount.DataPropertyName = "Total"; dataGridViewCellStyle7.Format = "C2"; dataGridViewCellStyle7.NullValue = "0.00"; this.ColAmount.DefaultCellStyle = dataGridViewCellStyle7; this.ColAmount.HeaderText = "Amount"; this.ColAmount.Name = "ColAmount"; // // ColJob // this.ColJob.DataPropertyName = "JobUID"; this.ColJob.HeaderText = "Job"; this.ColJob.Name = "ColJob"; this.ColJob.Resizable = System.Windows.Forms.DataGridViewTriState.True; this.ColJob.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; // // ColTax // this.ColTax.DataPropertyName = "TaxUID"; this.ColTax.HeaderText = "Tax"; this.ColTax.Name = "ColTax"; this.ColTax.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic; // // RowVersion // this.RowVersion.DataPropertyName = "RowVersion"; this.RowVersion.HeaderText = "RowVersion"; this.RowVersion.Name = "RowVersion"; this.RowVersion.Visible = false; // // DtDate // this.DtDate.DataBindings.Add(new System.Windows.Forms.Binding("Value", this.BsServiceInvoice, "Date", true)); this.DtDate.Format = System.Windows.Forms.DateTimePickerFormat.Short; this.DtDate.Location = new System.Drawing.Point(550, 84); this.DtDate.Name = "DtDate"; this.DtDate.Size = new System.Drawing.Size(130, 20); this.DtDate.TabIndex = 8; this.DtDate.Value = new System.DateTime(2013, 8, 9, 23, 56, 56, 0); // // Label1 // this.Label1.AutoSize = true; this.Label1.BackColor = System.Drawing.Color.White; this.Label1.Location = new System.Drawing.Point(511, 84); this.Label1.Name = "Label1"; this.Label1.Size = new System.Drawing.Size(33, 13); this.Label1.TabIndex = 7; this.Label1.Text = "Date:"; this.Label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // TxtInvoiceNo // this.TxtInvoiceNo.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "Number", true)); this.TxtInvoiceNo.Location = new System.Drawing.Point(550, 54); this.TxtInvoiceNo.Name = "TxtInvoiceNo"; this.TxtInvoiceNo.Size = new System.Drawing.Size(130, 20); this.TxtInvoiceNo.TabIndex = 6; // // V // this.V.AutoSize = true; this.V.BackColor = System.Drawing.Color.White; this.V.Location = new System.Drawing.Point(482, 57); this.V.Name = "V"; this.V.Size = new System.Drawing.Size(62, 13); this.V.TabIndex = 5; this.V.Text = "Invoice No:"; this.V.TextAlign = System.Drawing.ContentAlignment.MiddleRight; // // LblAddress // this.LblAddress.AutoSize = true; this.LblAddress.BackColor = System.Drawing.Color.White; this.LblAddress.Location = new System.Drawing.Point(133, 57); this.LblAddress.Name = "LblAddress"; this.LblAddress.Size = new System.Drawing.Size(45, 13); this.LblAddress.TabIndex = 4; this.LblAddress.Text = "Address"; // // TxtAddress // this.TxtAddress.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.BsServiceInvoice, "ShipToAddress", true)); this.TxtAddress.Location = new System.Drawing.Point(188, 54); this.TxtAddress.Multiline = true; this.TxtAddress.Name = "TxtAddress"; this.TxtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.TxtAddress.Size = new System.Drawing.Size(249, 89); this.TxtAddress.TabIndex = 3; // // CmboCustomer // this.CmboCustomer.DisplayMember = "UID"; this.CmboCustomer.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.CmboCustomer.FormattingEnabled = true; this.CmboCustomer.Location = new System.Drawing.Point(184, 6); this.CmboCustomer.Name = "CmboCustomer"; this.CmboCustomer.Size = new System.Drawing.Size(254, 21); this.CmboCustomer.TabIndex = 1; this.CmboCustomer.ValueMember = "UID"; this.CmboCustomer.SelectedIndexChanged += new System.EventHandler(this.CmboCustomerSelectedIndexChanged); this.CmboCustomer.Format += new System.Windows.Forms.ListControlConvertEventHandler(this.CmboCustomerFormat); // // LblCustomer // this.LblCustomer.AutoSize = true; this.LblCustomer.Location = new System.Drawing.Point(127, 9); this.LblCustomer.Name = "LblCustomer"; this.LblCustomer.Size = new System.Drawing.Size(51, 13); this.LblCustomer.TabIndex = 0; this.LblCustomer.Text = "Customer"; // // ShapeContainer2 // this.ShapeContainer2.Location = new System.Drawing.Point(0, 0); this.ShapeContainer2.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer2.Name = "ShapeContainer2"; this.ShapeContainer2.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.RectangleShape2}); this.ShapeContainer2.Size = new System.Drawing.Size(752, 480); this.ShapeContainer2.TabIndex = 2; this.ShapeContainer2.TabStop = false; // // RectangleShape2 // this.RectangleShape2.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.RectangleShape2.BackColor = System.Drawing.Color.White; this.RectangleShape2.FillColor = System.Drawing.Color.White; this.RectangleShape2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Solid; this.RectangleShape2.Location = new System.Drawing.Point(8, 40); this.RectangleShape2.Name = "RectangleShape2"; this.RectangleShape2.Size = new System.Drawing.Size(735, 326); // // BtnRecord // this.BtnRecord.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.BtnRecord.Location = new System.Drawing.Point(616, 527); this.BtnRecord.Name = "BtnRecord"; this.BtnRecord.Size = new System.Drawing.Size(75, 23); this.BtnRecord.TabIndex = 7; this.BtnRecord.Text = "Record"; this.BtnRecord.UseVisualStyleBackColor = true; this.BtnRecord.Click += new System.EventHandler(this.BtnRecordClick); // // DataGridViewTextBoxColumn1 // this.DataGridViewTextBoxColumn1.DataPropertyName = "Description"; this.DataGridViewTextBoxColumn1.FillWeight = 200F; this.DataGridViewTextBoxColumn1.HeaderText = "Description"; this.DataGridViewTextBoxColumn1.Name = "DataGridViewTextBoxColumn1"; this.DataGridViewTextBoxColumn1.Width = 200; // // DataGridViewTextBoxColumn2 // this.DataGridViewTextBoxColumn2.DataPropertyName = "Total"; dataGridViewCellStyle8.Format = "C2"; dataGridViewCellStyle8.NullValue = "0.00"; this.DataGridViewTextBoxColumn2.DefaultCellStyle = dataGridViewCellStyle8; this.DataGridViewTextBoxColumn2.FillWeight = 200F; this.DataGridViewTextBoxColumn2.HeaderText = "Amount"; this.DataGridViewTextBoxColumn2.Name = "DataGridViewTextBoxColumn2"; this.DataGridViewTextBoxColumn2.Width = 200; // // DataGridViewTextBoxColumn3 // this.DataGridViewTextBoxColumn3.DataPropertyName = "RowVersion"; dataGridViewCellStyle9.Format = "C2"; dataGridViewCellStyle9.NullValue = "0.00"; this.DataGridViewTextBoxColumn3.DefaultCellStyle = dataGridViewCellStyle9; this.DataGridViewTextBoxColumn3.HeaderText = "RowVersion"; this.DataGridViewTextBoxColumn3.Name = "DataGridViewTextBoxColumn3"; this.DataGridViewTextBoxColumn3.Visible = false; // // DataGridViewTextBoxColumn4 // this.DataGridViewTextBoxColumn4.DataPropertyName = "RowVersion"; this.DataGridViewTextBoxColumn4.HeaderText = "RowVersion"; this.DataGridViewTextBoxColumn4.Name = "DataGridViewTextBoxColumn4"; // // InvoiceForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.ClientSize = new System.Drawing.Size(784, 562); this.Controls.Add(this.BtnRecord); this.Controls.Add(this.Panel1); this.Controls.Add(this.LblInvoice); this.Controls.Add(this.ShapeContainer1); this.Name = "InvoiceForm"; this.Load += new System.EventHandler(this.InvoiceFormLoad); this.Controls.SetChildIndex(this.ShapeContainer1, 0); this.Controls.SetChildIndex(this.LblInvoice, 0); this.Controls.SetChildIndex(this.Panel1, 0); this.Controls.SetChildIndex(this.BtnRecord, 0); this.Panel1.ResumeLayout(false); this.Panel1.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.BsServiceInvoice)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.GrdServiceLines)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.txtQty = new System.Windows.Forms.TextBox(); this.txtPSize = new System.Windows.Forms.TextBox(); this.txtPack = new System.Windows.Forms.TextBox(); this.txtPriceS = new System.Windows.Forms.TextBox(); this.txtQtyT = new System.Windows.Forms.TextBox(); this.txtPrice = new System.Windows.Forms.TextBox(); this.cmbQuantity = new System.Windows.Forms.ComboBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdPack = new System.Windows.Forms.Button(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._LBL_6 = new System.Windows.Forms.Label(); this._LBL_4 = new System.Windows.Forms.Label(); this._LBL_2 = new System.Windows.Forms.Label(); this.Label2 = new System.Windows.Forms.Label(); this.lblPComp = new System.Windows.Forms.Label(); this.lblSComp = new System.Windows.Forms.Label(); this.lblStockItemS = new System.Windows.Forms.Label(); this._LBL_5 = new System.Windows.Forms.Label(); this._LBL_0 = new System.Windows.Forms.Label(); this._LBL_3 = new System.Windows.Forms.Label(); this._LBL_1 = new System.Windows.Forms.Label(); this.lblStockItem = new System.Windows.Forms.Label(); this.Shape1 = new _4PosBackOffice.NET.RectangleShapeArray(this.components); this.picButtons.SuspendLayout(); ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this._Shape1_0, this._Shape1_2 }); this.ShapeContainer1.Size = new System.Drawing.Size(400, 145); this.ShapeContainer1.TabIndex = 22; this.ShapeContainer1.TabStop = false; // //_Shape1_0 // this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.FillColor = System.Drawing.Color.Black; this.Shape1.SetIndex(this._Shape1_0, Convert.ToInt16(0)); this._Shape1_0.Location = new System.Drawing.Point(7, 296); this._Shape1_0.Name = "_Shape1_0"; this._Shape1_0.Size = new System.Drawing.Size(383, 56); // //_Shape1_2 // this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.FillColor = System.Drawing.Color.Black; this.Shape1.SetIndex(this._Shape1_2, Convert.ToInt16(2)); this._Shape1_2.Location = new System.Drawing.Point(7, 48); this._Shape1_2.Name = "_Shape1_2"; this._Shape1_2.Size = new System.Drawing.Size(383, 88); // //txtQty // this.txtQty.AcceptsReturn = true; this.txtQty.BackColor = System.Drawing.SystemColors.Window; this.txtQty.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQty.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQty.Location = new System.Drawing.Point(314, 102); this.txtQty.MaxLength = 0; this.txtQty.Name = "txtQty"; this.txtQty.ReadOnly = true; this.txtQty.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQty.Size = new System.Drawing.Size(67, 19); this.txtQty.TabIndex = 20; this.txtQty.Text = "0"; this.txtQty.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtQty.Visible = false; // //txtPSize // this.txtPSize.AcceptsReturn = true; this.txtPSize.BackColor = System.Drawing.SystemColors.Window; this.txtPSize.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPSize.Enabled = false; this.txtPSize.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPSize.Location = new System.Drawing.Point(184, 101); this.txtPSize.MaxLength = 0; this.txtPSize.Name = "txtPSize"; this.txtPSize.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPSize.Size = new System.Drawing.Size(27, 19); this.txtPSize.TabIndex = 19; this.txtPSize.Text = "1"; this.txtPSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; this.txtPSize.Visible = false; // //txtPack // this.txtPack.AcceptsReturn = true; this.txtPack.BackColor = System.Drawing.SystemColors.Window; this.txtPack.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPack.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPack.Location = new System.Drawing.Point(352, 272); this.txtPack.MaxLength = 0; this.txtPack.Name = "txtPack"; this.txtPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPack.Size = new System.Drawing.Size(41, 19); this.txtPack.TabIndex = 16; this.txtPack.Text = "0"; this.txtPack.Visible = false; // //txtPriceS // this.txtPriceS.AcceptsReturn = true; this.txtPriceS.BackColor = System.Drawing.SystemColors.Window; this.txtPriceS.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPriceS.Enabled = false; this.txtPriceS.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPriceS.Location = new System.Drawing.Point(291, 346); this.txtPriceS.MaxLength = 0; this.txtPriceS.Name = "txtPriceS"; this.txtPriceS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPriceS.Size = new System.Drawing.Size(91, 19); this.txtPriceS.TabIndex = 8; this.txtPriceS.Text = "0.00"; this.txtPriceS.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPriceS.Visible = false; // //txtQtyT // this.txtQtyT.AcceptsReturn = true; this.txtQtyT.BackColor = System.Drawing.SystemColors.Window; this.txtQtyT.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtQtyT.ForeColor = System.Drawing.SystemColors.WindowText; this.txtQtyT.Location = new System.Drawing.Point(79, 101); this.txtQtyT.MaxLength = 0; this.txtQtyT.Name = "txtQtyT"; this.txtQtyT.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtQtyT.Size = new System.Drawing.Size(75, 19); this.txtQtyT.TabIndex = 0; this.txtQtyT.Text = "0"; this.txtQtyT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //txtPrice // this.txtPrice.AcceptsReturn = true; this.txtPrice.BackColor = System.Drawing.SystemColors.Window; this.txtPrice.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtPrice.Enabled = false; this.txtPrice.ForeColor = System.Drawing.SystemColors.WindowText; this.txtPrice.Location = new System.Drawing.Point(301, 249); this.txtPrice.MaxLength = 0; this.txtPrice.Name = "txtPrice"; this.txtPrice.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtPrice.Size = new System.Drawing.Size(91, 19); this.txtPrice.TabIndex = 5; this.txtPrice.Text = "0.00"; this.txtPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; this.txtPrice.Visible = false; // //cmbQuantity // this.cmbQuantity.BackColor = System.Drawing.SystemColors.Window; this.cmbQuantity.Cursor = System.Windows.Forms.Cursors.Default; this.cmbQuantity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.cmbQuantity.ForeColor = System.Drawing.SystemColors.WindowText; this.cmbQuantity.Location = new System.Drawing.Point(192, 248); this.cmbQuantity.Name = "cmbQuantity"; this.cmbQuantity.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmbQuantity.Size = new System.Drawing.Size(79, 21); this.cmbQuantity.TabIndex = 4; this.cmbQuantity.Visible = false; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdPack); this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(400, 39); this.picButtons.TabIndex = 1; // //cmdPack // this.cmdPack.BackColor = System.Drawing.SystemColors.Control; this.cmdPack.Cursor = System.Windows.Forms.Cursors.Default; this.cmdPack.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdPack.Location = new System.Drawing.Point(88, 3); this.cmdPack.Name = "cmdPack"; this.cmdPack.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdPack.Size = new System.Drawing.Size(105, 29); this.cmdPack.TabIndex = 22; this.cmdPack.TabStop = false; this.cmdPack.Text = "Break / Build P&ack"; this.cmdPack.UseVisualStyleBackColor = false; this.cmdPack.Visible = false; // //cmdCancel // this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Location = new System.Drawing.Point(8, 3); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.TabIndex = 15; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.UseVisualStyleBackColor = false; // //cmdClose // this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Location = new System.Drawing.Point(312, 3); this.cmdClose.Name = "cmdClose"; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.TabIndex = 2; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.UseVisualStyleBackColor = false; // //_LBL_6 // this._LBL_6.AutoSize = true; this._LBL_6.BackColor = System.Drawing.Color.Transparent; this._LBL_6.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_6.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_6.Location = new System.Drawing.Point(257, 105); this._LBL_6.Name = "_LBL_6"; this._LBL_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_6.Size = new System.Drawing.Size(53, 13); this._LBL_6.TabIndex = 21; this._LBL_6.Text = "Total Qty:"; this._LBL_6.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_6.Visible = false; // //_LBL_4 // this._LBL_4.AutoSize = true; this._LBL_4.BackColor = System.Drawing.Color.Transparent; this._LBL_4.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_4.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._LBL_4.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_4.Location = new System.Drawing.Point(162, 102); this._LBL_4.Name = "_LBL_4"; this._LBL_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_4.Size = new System.Drawing.Size(16, 16); this._LBL_4.TabIndex = 18; this._LBL_4.Text = "x"; this._LBL_4.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_4.Visible = false; // //_LBL_2 // this._LBL_2.AutoSize = true; this._LBL_2.BackColor = System.Drawing.Color.Transparent; this._LBL_2.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_2.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_2.Location = new System.Drawing.Point(24, 104); this._LBL_2.Name = "_LBL_2"; this._LBL_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_2.Size = new System.Drawing.Size(49, 13); this._LBL_2.TabIndex = 17; this._LBL_2.Text = "Item Qty:"; this._LBL_2.TextAlign = System.Drawing.ContentAlignment.TopRight; // //Label2 // this.Label2.BackColor = System.Drawing.Color.Transparent; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Label2.ForeColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(0)), Convert.ToInt32(Convert.ToByte(0))); this.Label2.Location = new System.Drawing.Point(56, 272); this.Label2.Name = "Label2"; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.Size = new System.Drawing.Size(296, 23); this.Label2.TabIndex = 14; this.Label2.Text = "Please verify products from both locations"; // //lblPComp // this.lblPComp.BackColor = System.Drawing.Color.Transparent; this.lblPComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblPComp.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblPComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblPComp.Location = new System.Drawing.Point(16, 152); this.lblPComp.Name = "lblPComp"; this.lblPComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPComp.Size = new System.Drawing.Size(352, 24); this.lblPComp.TabIndex = 13; this.lblPComp.Text = "Promotion Name:"; this.lblPComp.Visible = false; // //lblSComp // this.lblSComp.BackColor = System.Drawing.Color.Transparent; this.lblSComp.Cursor = System.Windows.Forms.Cursors.Default; this.lblSComp.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.lblSComp.ForeColor = System.Drawing.SystemColors.ControlText; this.lblSComp.Location = new System.Drawing.Point(16, 304); this.lblSComp.Name = "lblSComp"; this.lblSComp.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblSComp.Size = new System.Drawing.Size(360, 24); this.lblSComp.TabIndex = 12; this.lblSComp.Text = "Promotion Name:"; // //lblStockItemS // this.lblStockItemS.BackColor = System.Drawing.SystemColors.Control; this.lblStockItemS.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItemS.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItemS.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItemS.Location = new System.Drawing.Point(98, 328); this.lblStockItemS.Name = "lblStockItemS"; this.lblStockItemS.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItemS.Size = new System.Drawing.Size(286, 17); this.lblStockItemS.TabIndex = 11; this.lblStockItemS.Text = "Label1"; // //_LBL_5 // this._LBL_5.AutoSize = true; this._LBL_5.BackColor = System.Drawing.Color.Transparent; this._LBL_5.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_5.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_5.Location = new System.Drawing.Point(10, 328); this._LBL_5.Name = "_LBL_5"; this._LBL_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_5.Size = new System.Drawing.Size(92, 13); this._LBL_5.TabIndex = 10; this._LBL_5.Text = "Stock Item Name:"; this._LBL_5.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_LBL_0 // this._LBL_0.AutoSize = true; this._LBL_0.BackColor = System.Drawing.Color.Transparent; this._LBL_0.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_0.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_0.Location = new System.Drawing.Point(260, 349); this._LBL_0.Name = "_LBL_0"; this._LBL_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_0.Size = new System.Drawing.Size(34, 13); this._LBL_0.TabIndex = 9; this._LBL_0.Text = "Price:"; this._LBL_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_0.Visible = false; // //_LBL_3 // this._LBL_3.AutoSize = true; this._LBL_3.BackColor = System.Drawing.Color.Transparent; this._LBL_3.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_3.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_3.Location = new System.Drawing.Point(270, 252); this._LBL_3.Name = "_LBL_3"; this._LBL_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_3.Size = new System.Drawing.Size(34, 13); this._LBL_3.TabIndex = 7; this._LBL_3.Text = "Price:"; this._LBL_3.TextAlign = System.Drawing.ContentAlignment.TopRight; this._LBL_3.Visible = false; // //_LBL_1 // this._LBL_1.AutoSize = true; this._LBL_1.BackColor = System.Drawing.Color.Transparent; this._LBL_1.Cursor = System.Windows.Forms.Cursors.Default; this._LBL_1.ForeColor = System.Drawing.SystemColors.ControlText; this._LBL_1.Location = new System.Drawing.Point(24, 56); this._LBL_1.Name = "_LBL_1"; this._LBL_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._LBL_1.Size = new System.Drawing.Size(92, 13); this._LBL_1.TabIndex = 6; this._LBL_1.Text = "Stock Item Name:"; this._LBL_1.TextAlign = System.Drawing.ContentAlignment.TopRight; // //lblStockItem // this.lblStockItem.BackColor = System.Drawing.SystemColors.Control; this.lblStockItem.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblStockItem.Cursor = System.Windows.Forms.Cursors.Default; this.lblStockItem.ForeColor = System.Drawing.SystemColors.ControlText; this.lblStockItem.Location = new System.Drawing.Point(24, 72); this.lblStockItem.Name = "lblStockItem"; this.lblStockItem.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblStockItem.Size = new System.Drawing.Size(358, 25); this.lblStockItem.TabIndex = 3; this.lblStockItem.Text = "Label1"; // //frmBarcodeScaleItem // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224))); this.ClientSize = new System.Drawing.Size(400, 145); this.ControlBox = false; this.Controls.Add(this.txtQty); this.Controls.Add(this.txtPSize); this.Controls.Add(this.txtPack); this.Controls.Add(this.txtPriceS); this.Controls.Add(this.txtQtyT); this.Controls.Add(this.txtPrice); this.Controls.Add(this.cmbQuantity); this.Controls.Add(this.picButtons); this.Controls.Add(this._LBL_6); this.Controls.Add(this._LBL_4); this.Controls.Add(this._LBL_2); this.Controls.Add(this.Label2); this.Controls.Add(this.lblPComp); this.Controls.Add(this.lblSComp); this.Controls.Add(this.lblStockItemS); this.Controls.Add(this._LBL_5); this.Controls.Add(this._LBL_0); this.Controls.Add(this._LBL_3); this.Controls.Add(this._LBL_1); this.Controls.Add(this.lblStockItem); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.Location = new System.Drawing.Point(3, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmBarcodeScaleItem"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Scale Item - Barcode printing"; this.picButtons.ResumeLayout(false); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrderWizard)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdExit = new System.Windows.Forms.Button(); this.cmdUpdate = new System.Windows.Forms.Button(); this.lvData = new System.Windows.Forms.ListView(); this.cmdBuild = new System.Windows.Forms.Button(); this.cmdFilter = new System.Windows.Forms.Button(); this.Label1 = new System.Windows.Forms.Label(); this._lbl_1 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this.lblFilter = new System.Windows.Forms.Label(); this.lblDayEnd = new System.Windows.Forms.Label(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Stock Re-order Wizard"; this.ClientSize = new System.Drawing.Size(695, 468); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmOrderWizard"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.cmdExit.Size = new System.Drawing.Size(79, 34); this.cmdExit.Location = new System.Drawing.Point(609, 3); this.cmdExit.TabIndex = 9; this.cmdExit.TabStop = false; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.Name = "cmdExit"; this.cmdUpdate.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdUpdate.Text = "&Update"; this.cmdUpdate.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.cmdUpdate.Size = new System.Drawing.Size(79, 34); this.cmdUpdate.Location = new System.Drawing.Point(609, 45); this.cmdUpdate.TabIndex = 5; this.cmdUpdate.TabStop = false; this.cmdUpdate.BackColor = System.Drawing.SystemColors.Control; this.cmdUpdate.CausesValidation = true; this.cmdUpdate.Enabled = true; this.cmdUpdate.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdUpdate.Cursor = System.Windows.Forms.Cursors.Default; this.cmdUpdate.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdUpdate.Name = "cmdUpdate"; this.lvData.Size = new System.Drawing.Size(664, 337); this.lvData.Location = new System.Drawing.Point(15, 114); this.lvData.TabIndex = 7; this.lvData.View = System.Windows.Forms.View.Details; this.lvData.LabelEdit = false; this.lvData.LabelWrap = true; this.lvData.HideSelection = true; this.lvData.CheckBoxes = true; this.lvData.FullRowSelect = true; this.lvData.ForeColor = System.Drawing.SystemColors.WindowText; this.lvData.BackColor = System.Drawing.SystemColors.Window; this.lvData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lvData.Name = "lvData"; this.cmdBuild.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdBuild.Text = "&Build"; this.cmdBuild.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.cmdBuild.Size = new System.Drawing.Size(79, 34); this.cmdBuild.Location = new System.Drawing.Point(522, 3); this.cmdBuild.TabIndex = 4; this.cmdBuild.TabStop = false; this.cmdBuild.BackColor = System.Drawing.SystemColors.Control; this.cmdBuild.CausesValidation = true; this.cmdBuild.Enabled = true; this.cmdBuild.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdBuild.Cursor = System.Windows.Forms.Cursors.Default; this.cmdBuild.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdBuild.Name = "cmdBuild"; this.cmdFilter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdFilter.Text = "&Filter"; this.cmdFilter.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.cmdFilter.Size = new System.Drawing.Size(79, 34); this.cmdFilter.Location = new System.Drawing.Point(522, 45); this.cmdFilter.TabIndex = 8; this.cmdFilter.TabStop = false; this.cmdFilter.BackColor = System.Drawing.SystemColors.Control; this.cmdFilter.CausesValidation = true; this.cmdFilter.Enabled = true; this.cmdFilter.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdFilter.Cursor = System.Windows.Forms.Cursors.Default; this.cmdFilter.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdFilter.Name = "cmdFilter"; this.Label1.Text = "&1. Affected Stock Items"; this.Label1.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.Label1.Size = new System.Drawing.Size(135, 13); this.Label1.Location = new System.Drawing.Point(18, 90); this.Label1.TabIndex = 6; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.Color.Transparent; this.Label1.Enabled = true; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = true; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_1.Text = "Applied Filter "; this._lbl_1.Size = new System.Drawing.Size(45, 31); this._lbl_1.Location = new System.Drawing.Point(6, 54); this._lbl_1.TabIndex = 2; this._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Enabled = true; this._lbl_1.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = false; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_0.Text = "Day End Selection Criteria "; this._lbl_0.Size = new System.Drawing.Size(51, 40); this._lbl_0.Location = new System.Drawing.Point(0, 0); this._lbl_0.TabIndex = 0; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Enabled = true; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = false; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this.lblFilter.BackColor = System.Drawing.Color.White; this.lblFilter.Text = "Label1"; this.lblFilter.Size = new System.Drawing.Size(460, 37); this.lblFilter.Location = new System.Drawing.Point(54, 42); this.lblFilter.TabIndex = 3; this.lblFilter.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblFilter.Enabled = true; this.lblFilter.ForeColor = System.Drawing.SystemColors.ControlText; this.lblFilter.Cursor = System.Windows.Forms.Cursors.Default; this.lblFilter.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblFilter.UseMnemonic = true; this.lblFilter.Visible = true; this.lblFilter.AutoSize = false; this.lblFilter.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblFilter.Name = "lblFilter"; this.lblDayEnd.BackColor = System.Drawing.Color.White; this.lblDayEnd.Text = "Label1"; this.lblDayEnd.Size = new System.Drawing.Size(460, 37); this.lblDayEnd.Location = new System.Drawing.Point(54, 0); this.lblDayEnd.TabIndex = 1; this.lblDayEnd.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblDayEnd.Enabled = true; this.lblDayEnd.ForeColor = System.Drawing.SystemColors.ControlText; this.lblDayEnd.Cursor = System.Windows.Forms.Cursors.Default; this.lblDayEnd.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblDayEnd.UseMnemonic = true; this.lblDayEnd.Visible = true; this.lblDayEnd.AutoSize = false; this.lblDayEnd.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lblDayEnd.Name = "lblDayEnd"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(682, 355); this._Shape1_0.Location = new System.Drawing.Point(6, 105); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this.Controls.Add(cmdExit); this.Controls.Add(cmdUpdate); this.Controls.Add(lvData); this.Controls.Add(cmdBuild); this.Controls.Add(cmdFilter); this.Controls.Add(Label1); this.Controls.Add(_lbl_1); this.Controls.Add(_lbl_0); this.Controls.Add(lblFilter); this.Controls.Add(lblDayEnd); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmOrderPrint)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Picture1 = new System.Windows.Forms.Panel(); this.cmdBack = new System.Windows.Forms.Button(); this.lblPath = new System.Windows.Forms.Label(); this.lvItems = new System.Windows.Forms.ListView(); this.lstSupplier = new System.Windows.Forms.ListBox(); this._Shape1_1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_1 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.Picture1.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize)this.Shape1).BeginInit(); this.ControlBox = false; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.ClientSize = new System.Drawing.Size(615, 459); this.Location = new System.Drawing.Point(3, 3); this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmOrderPrint"; this.Picture1.Dock = System.Windows.Forms.DockStyle.Top; this.Picture1.BackColor = System.Drawing.Color.Blue; this.Picture1.Size = new System.Drawing.Size(615, 35); this.Picture1.Location = new System.Drawing.Point(0, 0); this.Picture1.TabIndex = 4; this.Picture1.TabStop = false; this.Picture1.CausesValidation = true; this.Picture1.Enabled = true; this.Picture1.ForeColor = System.Drawing.SystemColors.ControlText; this.Picture1.Cursor = System.Windows.Forms.Cursors.Default; this.Picture1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Picture1.Visible = true; this.Picture1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.Picture1.Name = "Picture1"; this.cmdBack.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdBack.Text = "E&xit"; this.cmdBack.Size = new System.Drawing.Size(97, 25); this.cmdBack.Location = new System.Drawing.Point(507, 3); this.cmdBack.TabIndex = 6; 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.lblPath.BackColor = System.Drawing.Color.Transparent; this.lblPath.Text = "Purchase Order Print"; this.lblPath.ForeColor = System.Drawing.Color.White; this.lblPath.Size = new System.Drawing.Size(168, 20); this.lblPath.Location = new System.Drawing.Point(0, 4); this.lblPath.TabIndex = 5; this.lblPath.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.lblPath.Enabled = true; this.lblPath.Cursor = System.Windows.Forms.Cursors.Default; this.lblPath.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lblPath.UseMnemonic = true; this.lblPath.Visible = true; this.lblPath.AutoSize = true; this.lblPath.BorderStyle = System.Windows.Forms.BorderStyle.None; this.lblPath.Name = "lblPath"; this.lvItems.Size = new System.Drawing.Size(424, 382); this.lvItems.Location = new System.Drawing.Point(177, 64); this.lvItems.TabIndex = 3; this.lvItems.View = System.Windows.Forms.View.Details; this.lvItems.LabelEdit = false; this.lvItems.LabelWrap = true; this.lvItems.HideSelection = true; this.lvItems.ForeColor = System.Drawing.SystemColors.WindowText; this.lvItems.BackColor = System.Drawing.SystemColors.Window; this.lvItems.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lvItems.Name = "lvItems"; this.lstSupplier.Size = new System.Drawing.Size(151, 384); this.lstSupplier.Location = new System.Drawing.Point(6, 64); this.lstSupplier.TabIndex = 1; this.lstSupplier.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lstSupplier.BackColor = System.Drawing.SystemColors.Window; this.lstSupplier.CausesValidation = true; this.lstSupplier.Enabled = true; this.lstSupplier.ForeColor = System.Drawing.SystemColors.WindowText; this.lstSupplier.IntegralHeight = true; this.lstSupplier.Cursor = System.Windows.Forms.Cursors.Default; this.lstSupplier.SelectionMode = System.Windows.Forms.SelectionMode.One; this.lstSupplier.RightToLeft = System.Windows.Forms.RightToLeft.No; this.lstSupplier.Sorted = false; this.lstSupplier.TabStop = true; this.lstSupplier.Visible = true; this.lstSupplier.MultiColumn = false; this.lstSupplier.Name = "lstSupplier"; this._Shape1_1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_1.Size = new System.Drawing.Size(436, 394); this._Shape1_1.Location = new System.Drawing.Point(171, 58); 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._lbl_1.BackColor = System.Drawing.Color.Transparent; this._lbl_1.Text = "&2. Select a Purchase Order"; this._lbl_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lbl_1.Size = new System.Drawing.Size(155, 13); this._lbl_1.Location = new System.Drawing.Point(174, 43); this._lbl_1.TabIndex = 2; this._lbl_1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_1.Enabled = true; this._lbl_1.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_1.UseMnemonic = true; this._lbl_1.Visible = true; this._lbl_1.AutoSize = true; this._lbl_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_1.Name = "_lbl_1"; this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Text = "&1. Select a Supplier"; this._lbl_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lbl_0.Size = new System.Drawing.Size(113, 13); this._lbl_0.Location = new System.Drawing.Point(3, 43); this._lbl_0.TabIndex = 0; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_0.Enabled = true; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.UseMnemonic = true; this._lbl_0.Visible = true; this._lbl_0.AutoSize = true; this._lbl_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_0.Name = "_lbl_0"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(163, 394); this._Shape1_0.Location = new System.Drawing.Point(0, 58); 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(Picture1); this.Controls.Add(lvItems); this.Controls.Add(lstSupplier); this.ShapeContainer1.Shapes.Add(_Shape1_1); this.Controls.Add(_lbl_1); this.Controls.Add(_lbl_0); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); this.Picture1.Controls.Add(cmdBack); this.Picture1.Controls.Add(lblPath); //Me.lbl.SetIndex(_lbl_1, CType(1, Short)) //Me.lbl.SetIndex(_lbl_0, CType(0, Short)) this.Shape1.SetIndex(_Shape1_1, Convert.ToInt16(1)); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize)this.Shape1).EndInit(); //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.Picture1.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Vip_room)); this.textBox20 = new System.Windows.Forms.TextBox(); this.label24 = new System.Windows.Forms.Label(); this.label46 = new System.Windows.Forms.Label(); this.EnterPatientAddress = new System.Windows.Forms.TextBox(); this.patient = new System.Windows.Forms.Label(); this.label43 = new System.Windows.Forms.Label(); this.label42 = new System.Windows.Forms.Label(); this.label41 = new System.Windows.Forms.Label(); this.label31 = new System.Windows.Forms.Label(); this.label30 = new System.Windows.Forms.Label(); this.label29 = new System.Windows.Forms.Label(); this.label28 = new System.Windows.Forms.Label(); this.EnterPatientPhoneNumber = new System.Windows.Forms.TextBox(); this.EnterpatientLastName = new System.Windows.Forms.TextBox(); this.EnterPatientFirstName = new System.Windows.Forms.TextBox(); this.EnterPatiendId = new System.Windows.Forms.TextBox(); this.EnterCheckId = new System.Windows.Forms.Button(); this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.rectangleShape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Vip2Photo = new System.Windows.Forms.PictureBox(); this.label7 = new System.Windows.Forms.Label(); this.label8 = new System.Windows.Forms.Label(); this.label9 = new System.Windows.Forms.Label(); this.label10 = new System.Windows.Forms.Label(); this.label11 = new System.Windows.Forms.Label(); this.Vip1PatientName = new System.Windows.Forms.TextBox(); this.Vip1PatientID = new System.Windows.Forms.TextBox(); this.Vip1RoomNumber = new System.Windows.Forms.TextBox(); this.vip1RoomIdText = new System.Windows.Forms.TextBox(); this.label12 = new System.Windows.Forms.Label(); this.label13 = new System.Windows.Forms.Label(); this.label14 = new System.Windows.Forms.Label(); this.label15 = new System.Windows.Forms.Label(); this.label16 = new System.Windows.Forms.Label(); this.Vip2PatientName = new System.Windows.Forms.TextBox(); this.Vip2PatientID = new System.Windows.Forms.TextBox(); this.Vip2RoomNumber = new System.Windows.Forms.TextBox(); this.Vip2RoomId = new System.Windows.Forms.TextBox(); this.Vip1photo = new System.Windows.Forms.PictureBox(); this.Vip3Photo = new System.Windows.Forms.PictureBox(); this.label18 = new System.Windows.Forms.Label(); this.label19 = new System.Windows.Forms.Label(); this.label20 = new System.Windows.Forms.Label(); this.label21 = new System.Windows.Forms.Label(); this.label22 = new System.Windows.Forms.Label(); this.Vip3PatientName = new System.Windows.Forms.TextBox(); this.Vip3PatientID = new System.Windows.Forms.TextBox(); this.Vip3RoomNumber = new System.Windows.Forms.TextBox(); this.Vip3RoomID = new System.Windows.Forms.TextBox(); this.label23 = new System.Windows.Forms.Label(); this.label17 = new System.Windows.Forms.Label(); this.label6 = new System.Windows.Forms.Label(); this.menuStrip1 = new System.Windows.Forms.MenuStrip(); this.searchInNormalRoomsToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); this.goBackToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); ((System.ComponentModel.ISupportInitialize)(this.Vip2Photo)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).BeginInit(); ((System.ComponentModel.ISupportInitialize)(this.Vip3Photo)).BeginInit(); this.menuStrip1.SuspendLayout(); this.SuspendLayout(); // // textBox20 // this.textBox20.Location = new System.Drawing.Point(191, 215); this.textBox20.Name = "textBox20"; this.textBox20.Size = new System.Drawing.Size(135, 20); this.textBox20.TabIndex = 196; // // label24 // this.label24.AutoSize = true; this.label24.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label24.Location = new System.Drawing.Point(27, 216); this.label24.Name = "label24"; this.label24.Size = new System.Drawing.Size(136, 19); this.label24.TabIndex = 195; this.label24.Text = "Patient email address"; // // label46 // this.label46.AutoSize = true; this.label46.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label46.Location = new System.Drawing.Point(405, 55); this.label46.Name = "label46"; this.label46.Size = new System.Drawing.Size(280, 23); this.label46.TabIndex = 193; this.label46.Text = "Search for patients In VIP rooms"; // // EnterPatientAddress // this.EnterPatientAddress.Location = new System.Drawing.Point(604, 217); this.EnterPatientAddress.Name = "EnterPatientAddress"; this.EnterPatientAddress.Size = new System.Drawing.Size(135, 20); this.EnterPatientAddress.TabIndex = 192; // // patient // this.patient.AutoSize = true; this.patient.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.patient.Location = new System.Drawing.Point(27, 154); this.patient.Name = "patient"; this.patient.Size = new System.Drawing.Size(121, 19); this.patient.TabIndex = 191; this.patient.Text = "Patient Last Name"; // // label43 // this.label43.AutoSize = true; this.label43.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label43.Location = new System.Drawing.Point(353, 216); this.label43.Name = "label43"; this.label43.Size = new System.Drawing.Size(31, 19); this.label43.TabIndex = 190; this.label43.Text = "OR"; // // label42 // this.label42.AutoSize = true; this.label42.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label42.Location = new System.Drawing.Point(353, 154); this.label42.Name = "label42"; this.label42.Size = new System.Drawing.Size(31, 19); this.label42.TabIndex = 189; this.label42.Text = "OR"; // // label41 // this.label41.AutoSize = true; this.label41.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label41.Location = new System.Drawing.Point(353, 98); this.label41.Name = "label41"; this.label41.Size = new System.Drawing.Size(31, 19); this.label41.TabIndex = 188; this.label41.Text = "OR"; // // label31 // this.label31.AutoSize = true; this.label31.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label31.Location = new System.Drawing.Point(420, 216); this.label31.Name = "label31"; this.label31.Size = new System.Drawing.Size(101, 19); this.label31.TabIndex = 187; this.label31.Text = "Patient address"; // // label30 // this.label30.AutoSize = true; this.label30.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label30.Location = new System.Drawing.Point(420, 153); this.label30.Name = "label30"; this.label30.Size = new System.Drawing.Size(141, 19); this.label30.TabIndex = 186; this.label30.Text = "Patient Phone number"; // // label29 // this.label29.AutoSize = true; this.label29.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label29.Location = new System.Drawing.Point(420, 98); this.label29.Name = "label29"; this.label29.Size = new System.Drawing.Size(122, 19); this.label29.TabIndex = 185; this.label29.Text = "Patient First Name"; // // label28 // this.label28.AutoSize = true; this.label28.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label28.Location = new System.Drawing.Point(27, 97); this.label28.Name = "label28"; this.label28.Size = new System.Drawing.Size(106, 19); this.label28.TabIndex = 184; this.label28.Text = "Enter Patient ID"; // // EnterPatientPhoneNumber // this.EnterPatientPhoneNumber.Location = new System.Drawing.Point(604, 155); this.EnterPatientPhoneNumber.Name = "EnterPatientPhoneNumber"; this.EnterPatientPhoneNumber.Size = new System.Drawing.Size(135, 20); this.EnterPatientPhoneNumber.TabIndex = 183; // // EnterpatientLastName // this.EnterpatientLastName.Location = new System.Drawing.Point(191, 153); this.EnterpatientLastName.Name = "EnterpatientLastName"; this.EnterpatientLastName.Size = new System.Drawing.Size(135, 20); this.EnterpatientLastName.TabIndex = 182; // // EnterPatientFirstName // this.EnterPatientFirstName.Location = new System.Drawing.Point(604, 96); this.EnterPatientFirstName.Name = "EnterPatientFirstName"; this.EnterPatientFirstName.Size = new System.Drawing.Size(135, 20); this.EnterPatientFirstName.TabIndex = 181; // // EnterPatiendId // this.EnterPatiendId.Location = new System.Drawing.Point(191, 97); this.EnterPatiendId.Name = "EnterPatiendId"; this.EnterPatiendId.Size = new System.Drawing.Size(135, 20); this.EnterPatiendId.TabIndex = 180; // // EnterCheckId // this.EnterCheckId.Font = new System.Drawing.Font("Times New Roman", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.EnterCheckId.Location = new System.Drawing.Point(835, 149); this.EnterCheckId.Name = "EnterCheckId"; this.EnterCheckId.Size = new System.Drawing.Size(122, 28); this.EnterCheckId.TabIndex = 194; this.EnterCheckId.Text = "Enter"; this.EnterCheckId.UseVisualStyleBackColor = true; this.EnterCheckId.Click += new System.EventHandler(this.EnterCheckId_Click); // // shapeContainer1 // this.shapeContainer1.Location = new System.Drawing.Point(0, 0); this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.shapeContainer1.Name = "shapeContainer1"; this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.rectangleShape1}); this.shapeContainer1.Size = new System.Drawing.Size(1008, 682); this.shapeContainer1.TabIndex = 197; this.shapeContainer1.TabStop = false; // // rectangleShape1 // this.rectangleShape1.Location = new System.Drawing.Point(0, 45); this.rectangleShape1.Name = "rectangleShape1"; this.rectangleShape1.Size = new System.Drawing.Size(979, 202); // // Vip2Photo // this.Vip2Photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip2Photo.Image"))); this.Vip2Photo.Location = new System.Drawing.Point(533, 493); this.Vip2Photo.Name = "Vip2Photo"; this.Vip2Photo.Size = new System.Drawing.Size(85, 88); this.Vip2Photo.TabIndex = 230; this.Vip2Photo.TabStop = false; // // label7 // this.label7.AutoSize = true; this.label7.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label7.Location = new System.Drawing.Point(8, 388); this.label7.Name = "label7"; this.label7.Size = new System.Drawing.Size(103, 19); this.label7.TabIndex = 229; this.label7.Text = "Room Number:"; // // label8 // this.label8.AutoSize = true; this.label8.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label8.Location = new System.Drawing.Point(8, 465); this.label8.Name = "label8"; this.label8.Size = new System.Drawing.Size(94, 19); this.label8.TabIndex = 228; this.label8.Text = "Patient Name:"; // // label9 // this.label9.AutoSize = true; this.label9.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label9.Location = new System.Drawing.Point(8, 354); this.label9.Name = "label9"; this.label9.Size = new System.Drawing.Size(69, 19); this.label9.TabIndex = 227; this.label9.Text = "Room ID:"; // // label10 // this.label10.AutoSize = true; this.label10.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label10.Location = new System.Drawing.Point(8, 428); this.label10.Name = "label10"; this.label10.Size = new System.Drawing.Size(73, 19); this.label10.TabIndex = 226; this.label10.Text = "Patient ID:"; // // label11 // this.label11.AutoSize = true; this.label11.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label11.Location = new System.Drawing.Point(8, 533); this.label11.Name = "label11"; this.label11.Size = new System.Drawing.Size(147, 19); this.label11.TabIndex = 225; this.label11.Text = "Patient personal photo:"; // // Vip1PatientName // this.Vip1PatientName.Location = new System.Drawing.Point(173, 465); this.Vip1PatientName.Name = "Vip1PatientName"; this.Vip1PatientName.Size = new System.Drawing.Size(135, 20); this.Vip1PatientName.TabIndex = 224; // // Vip1PatientID // this.Vip1PatientID.Location = new System.Drawing.Point(173, 425); this.Vip1PatientID.Name = "Vip1PatientID"; this.Vip1PatientID.Size = new System.Drawing.Size(135, 20); this.Vip1PatientID.TabIndex = 223; // // Vip1RoomNumber // this.Vip1RoomNumber.Location = new System.Drawing.Point(173, 385); this.Vip1RoomNumber.Name = "Vip1RoomNumber"; this.Vip1RoomNumber.Size = new System.Drawing.Size(135, 20); this.Vip1RoomNumber.TabIndex = 222; // // vip1RoomIdText // this.vip1RoomIdText.Location = new System.Drawing.Point(173, 351); this.vip1RoomIdText.Name = "vip1RoomIdText"; this.vip1RoomIdText.Size = new System.Drawing.Size(135, 20); this.vip1RoomIdText.TabIndex = 221; // // label12 // this.label12.AutoSize = true; this.label12.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label12.Location = new System.Drawing.Point(340, 388); this.label12.Name = "label12"; this.label12.Size = new System.Drawing.Size(103, 19); this.label12.TabIndex = 220; this.label12.Text = "Room Number:"; // // label13 // this.label13.AutoSize = true; this.label13.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label13.Location = new System.Drawing.Point(340, 465); this.label13.Name = "label13"; this.label13.Size = new System.Drawing.Size(94, 19); this.label13.TabIndex = 219; this.label13.Text = "Patient Name:"; // // label14 // this.label14.AutoSize = true; this.label14.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label14.Location = new System.Drawing.Point(340, 354); this.label14.Name = "label14"; this.label14.Size = new System.Drawing.Size(69, 19); this.label14.TabIndex = 218; this.label14.Text = "Room ID:"; // // label15 // this.label15.AutoSize = true; this.label15.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label15.Location = new System.Drawing.Point(340, 428); this.label15.Name = "label15"; this.label15.Size = new System.Drawing.Size(73, 19); this.label15.TabIndex = 217; this.label15.Text = "Patient ID:"; // // label16 // this.label16.AutoSize = true; this.label16.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label16.Location = new System.Drawing.Point(340, 533); this.label16.Name = "label16"; this.label16.Size = new System.Drawing.Size(147, 19); this.label16.TabIndex = 216; this.label16.Text = "Patient personal photo:"; // // Vip2PatientName // this.Vip2PatientName.Location = new System.Drawing.Point(519, 465); this.Vip2PatientName.Name = "Vip2PatientName"; this.Vip2PatientName.Size = new System.Drawing.Size(135, 20); this.Vip2PatientName.TabIndex = 215; // // Vip2PatientID // this.Vip2PatientID.Location = new System.Drawing.Point(519, 428); this.Vip2PatientID.Name = "Vip2PatientID"; this.Vip2PatientID.Size = new System.Drawing.Size(135, 20); this.Vip2PatientID.TabIndex = 214; // // Vip2RoomNumber // this.Vip2RoomNumber.Location = new System.Drawing.Point(519, 385); this.Vip2RoomNumber.Name = "Vip2RoomNumber"; this.Vip2RoomNumber.Size = new System.Drawing.Size(135, 20); this.Vip2RoomNumber.TabIndex = 213; // // Vip2RoomId // this.Vip2RoomId.Location = new System.Drawing.Point(519, 351); this.Vip2RoomId.Name = "Vip2RoomId"; this.Vip2RoomId.Size = new System.Drawing.Size(135, 20); this.Vip2RoomId.TabIndex = 212; // // Vip1photo // this.Vip1photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip1photo.Image"))); this.Vip1photo.Location = new System.Drawing.Point(227, 502); this.Vip1photo.Name = "Vip1photo"; this.Vip1photo.Size = new System.Drawing.Size(81, 88); this.Vip1photo.TabIndex = 211; this.Vip1photo.TabStop = false; // // Vip3Photo // this.Vip3Photo.Image = ((System.Drawing.Image)(resources.GetObject("Vip3Photo.Image"))); this.Vip3Photo.Location = new System.Drawing.Point(893, 491); this.Vip3Photo.Name = "Vip3Photo"; this.Vip3Photo.Size = new System.Drawing.Size(87, 97); this.Vip3Photo.TabIndex = 210; this.Vip3Photo.TabStop = false; // // label18 // this.label18.AutoSize = true; this.label18.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label18.Location = new System.Drawing.Point(683, 388); this.label18.Name = "label18"; this.label18.Size = new System.Drawing.Size(103, 19); this.label18.TabIndex = 209; this.label18.Text = "Room Number:"; // // label19 // this.label19.AutoSize = true; this.label19.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label19.Location = new System.Drawing.Point(683, 465); this.label19.Name = "label19"; this.label19.Size = new System.Drawing.Size(94, 19); this.label19.TabIndex = 208; this.label19.Text = "Patient Name:"; // // label20 // this.label20.AutoSize = true; this.label20.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label20.Location = new System.Drawing.Point(683, 354); this.label20.Name = "label20"; this.label20.Size = new System.Drawing.Size(69, 19); this.label20.TabIndex = 207; this.label20.Text = "Room ID:"; // // label21 // this.label21.AutoSize = true; this.label21.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label21.Location = new System.Drawing.Point(683, 428); this.label21.Name = "label21"; this.label21.Size = new System.Drawing.Size(73, 19); this.label21.TabIndex = 206; this.label21.Text = "Patient ID:"; // // label22 // this.label22.AutoSize = true; this.label22.Font = new System.Drawing.Font("Times New Roman", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label22.Location = new System.Drawing.Point(683, 533); this.label22.Name = "label22"; this.label22.Size = new System.Drawing.Size(147, 19); this.label22.TabIndex = 205; this.label22.Text = "Patient personal photo:"; // // Vip3PatientName // this.Vip3PatientName.Location = new System.Drawing.Point(845, 465); this.Vip3PatientName.Name = "Vip3PatientName"; this.Vip3PatientName.Size = new System.Drawing.Size(135, 20); this.Vip3PatientName.TabIndex = 204; // // Vip3PatientID // this.Vip3PatientID.Location = new System.Drawing.Point(845, 428); this.Vip3PatientID.Name = "Vip3PatientID"; this.Vip3PatientID.Size = new System.Drawing.Size(135, 20); this.Vip3PatientID.TabIndex = 203; // // Vip3RoomNumber // this.Vip3RoomNumber.Location = new System.Drawing.Point(845, 388); this.Vip3RoomNumber.Name = "Vip3RoomNumber"; this.Vip3RoomNumber.Size = new System.Drawing.Size(135, 20); this.Vip3RoomNumber.TabIndex = 202; // // Vip3RoomID // this.Vip3RoomID.Location = new System.Drawing.Point(845, 351); this.Vip3RoomID.Name = "Vip3RoomID"; this.Vip3RoomID.Size = new System.Drawing.Size(135, 20); this.Vip3RoomID.TabIndex = 201; // // label23 // this.label23.AutoSize = true; this.label23.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label23.Location = new System.Drawing.Point(673, 313); this.label23.Name = "label23"; this.label23.Size = new System.Drawing.Size(322, 23); this.label23.TabIndex = 200; this.label23.Text = "VIP Patient Rooms Room number : 3"; // // label17 // this.label17.AutoSize = true; this.label17.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label17.Location = new System.Drawing.Point(340, 313); this.label17.Name = "label17"; this.label17.Size = new System.Drawing.Size(322, 23); this.label17.TabIndex = 199; this.label17.Text = "VIP Patient Rooms Room number : 2"; // // label6 // this.label6.AutoSize = true; this.label6.Font = new System.Drawing.Font("Times New Roman", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.label6.Location = new System.Drawing.Point(-1, 313); this.label6.Name = "label6"; this.label6.Size = new System.Drawing.Size(322, 23); this.label6.TabIndex = 198; this.label6.Text = "VIP Patient Rooms Room number : 1"; // // menuStrip1 // this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { this.searchInNormalRoomsToolStripMenuItem, this.goBackToolStripMenuItem}); this.menuStrip1.Location = new System.Drawing.Point(0, 0); this.menuStrip1.Name = "menuStrip1"; this.menuStrip1.Size = new System.Drawing.Size(1008, 24); this.menuStrip1.TabIndex = 231; this.menuStrip1.Text = "menuStrip1"; // // searchInNormalRoomsToolStripMenuItem // this.searchInNormalRoomsToolStripMenuItem.Name = "searchInNormalRoomsToolStripMenuItem"; this.searchInNormalRoomsToolStripMenuItem.Size = new System.Drawing.Size(145, 20); this.searchInNormalRoomsToolStripMenuItem.Text = "Search in normal rooms"; this.searchInNormalRoomsToolStripMenuItem.Click += new System.EventHandler(this.searchInNormalRoomsToolStripMenuItem_Click); // // goBackToolStripMenuItem // this.goBackToolStripMenuItem.Name = "goBackToolStripMenuItem"; this.goBackToolStripMenuItem.Size = new System.Drawing.Size(62, 20); this.goBackToolStripMenuItem.Text = "Go back"; this.goBackToolStripMenuItem.Click += new System.EventHandler(this.goBackToolStripMenuItem_Click); // // Vip_room // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.ActiveCaption; this.ClientSize = new System.Drawing.Size(1008, 682); this.Controls.Add(this.Vip2Photo); this.Controls.Add(this.label7); this.Controls.Add(this.label8); this.Controls.Add(this.label9); this.Controls.Add(this.label10); this.Controls.Add(this.label11); this.Controls.Add(this.Vip1PatientName); this.Controls.Add(this.Vip1PatientID); this.Controls.Add(this.Vip1RoomNumber); this.Controls.Add(this.vip1RoomIdText); this.Controls.Add(this.label12); this.Controls.Add(this.label13); this.Controls.Add(this.label14); this.Controls.Add(this.label15); this.Controls.Add(this.label16); this.Controls.Add(this.Vip2PatientName); this.Controls.Add(this.Vip2PatientID); this.Controls.Add(this.Vip2RoomNumber); this.Controls.Add(this.Vip2RoomId); this.Controls.Add(this.Vip1photo); this.Controls.Add(this.Vip3Photo); this.Controls.Add(this.label18); this.Controls.Add(this.label19); this.Controls.Add(this.label20); this.Controls.Add(this.label21); this.Controls.Add(this.label22); this.Controls.Add(this.Vip3PatientName); this.Controls.Add(this.Vip3PatientID); this.Controls.Add(this.Vip3RoomNumber); this.Controls.Add(this.Vip3RoomID); this.Controls.Add(this.label23); this.Controls.Add(this.label17); this.Controls.Add(this.label6); this.Controls.Add(this.textBox20); this.Controls.Add(this.label24); this.Controls.Add(this.label46); this.Controls.Add(this.EnterPatientAddress); this.Controls.Add(this.patient); this.Controls.Add(this.label43); this.Controls.Add(this.label42); this.Controls.Add(this.label41); this.Controls.Add(this.label31); this.Controls.Add(this.label30); this.Controls.Add(this.label29); this.Controls.Add(this.label28); this.Controls.Add(this.EnterPatientPhoneNumber); this.Controls.Add(this.EnterpatientLastName); this.Controls.Add(this.EnterPatientFirstName); this.Controls.Add(this.EnterPatiendId); this.Controls.Add(this.EnterCheckId); this.Controls.Add(this.menuStrip1); this.Controls.Add(this.shapeContainer1); this.MainMenuStrip = this.menuStrip1; this.Name = "Vip_room"; this.Text = "Vip_room"; ((System.ComponentModel.ISupportInitialize)(this.Vip2Photo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Vip1photo)).EndInit(); ((System.ComponentModel.ISupportInitialize)(this.Vip3Photo)).EndInit(); this.menuStrip1.ResumeLayout(false); this.menuStrip1.PerformLayout(); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(this.components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Shape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._txtInteger_1 = new System.Windows.Forms.TextBox(); this.cmdLocate = new System.Windows.Forms.Button(); this._txtFields_10 = new System.Windows.Forms.TextBox(); this.chkKitchenMonitors = new System.Windows.Forms.CheckBox(); this._txtInteger_0 = new System.Windows.Forms.TextBox(); this._txtFloat_5 = new System.Windows.Forms.TextBox(); this._txtInteger_4 = new System.Windows.Forms.TextBox(); this._txtFields_3 = new System.Windows.Forms.TextBox(); this._chkFields_2 = new System.Windows.Forms.CheckBox(); this._txtFields_1 = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLic_0 = new System.Windows.Forms.Label(); this._lblLic_1 = new System.Windows.Forms.Label(); this.CommonDialog1Open = new System.Windows.Forms.OpenFileDialog(); this._lblLabels_6 = new System.Windows.Forms.Label(); this._lbl_0 = new System.Windows.Forms.Label(); this.Label1 = new System.Windows.Forms.Label(); this._lblLabels_2 = new System.Windows.Forms.Label(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lblLabels_5 = new System.Windows.Forms.Label(); this._lblLabels_4 = new System.Windows.Forms.Label(); this._lblLabels_3 = new System.Windows.Forms.Label(); this._lblLabels_1 = new System.Windows.Forms.Label(); this._lbl_5 = new System.Windows.Forms.Label(); this.picButtons.SuspendLayout(); this.SuspendLayout(); // //ShapeContainer1 // this.ShapeContainer1.Location = new System.Drawing.Point(0, 0); this.ShapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.ShapeContainer1.Name = "ShapeContainer1"; this.ShapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.Shape2, this._Shape1_2 }); this.ShapeContainer1.Size = new System.Drawing.Size(452, 214); this.ShapeContainer1.TabIndex = 25; this.ShapeContainer1.TabStop = false; // //Shape2 // this.Shape2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.Shape2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this.Shape2.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape2.FillColor = System.Drawing.Color.Black; this.Shape2.Location = new System.Drawing.Point(4, 180); this.Shape2.Name = "Shape2"; this.Shape2.Size = new System.Drawing.Size(441, 29); // //_Shape1_2 // this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.Location = new System.Drawing.Point(4, 56); this._Shape1_2.Name = "_Shape1_2"; this._Shape1_2.Size = new System.Drawing.Size(442, 103); // //_txtInteger_1 // this._txtInteger_1.AcceptsReturn = true; this._txtInteger_1.BackColor = System.Drawing.Color.White; this._txtInteger_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtInteger_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtInteger_1.Enabled = false; this._txtInteger_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtInteger_1.Location = new System.Drawing.Point(110, 248); this._txtInteger_1.MaxLength = 0; this._txtInteger_1.Name = "_txtInteger_1"; this._txtInteger_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtInteger_1.Size = new System.Drawing.Size(246, 19); this._txtInteger_1.TabIndex = 22; this._txtInteger_1.Visible = false; // //cmdLocate // this.cmdLocate.BackColor = System.Drawing.SystemColors.Control; this.cmdLocate.Cursor = System.Windows.Forms.Cursors.Default; this.cmdLocate.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdLocate.Location = new System.Drawing.Point(360, 248); this.cmdLocate.Name = "cmdLocate"; this.cmdLocate.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdLocate.Size = new System.Drawing.Size(76, 19); this.cmdLocate.TabIndex = 20; this.cmdLocate.Text = "Locate ..."; this.cmdLocate.UseVisualStyleBackColor = false; this.cmdLocate.Visible = false; // //_txtFields_10 // this._txtFields_10.AcceptsReturn = true; this._txtFields_10.BackColor = System.Drawing.Color.White; this._txtFields_10.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_10.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_10.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_10.Location = new System.Drawing.Point(272, 280); this._txtFields_10.MaxLength = 0; this._txtFields_10.Name = "_txtFields_10"; this._txtFields_10.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_10.Size = new System.Drawing.Size(78, 19); this._txtFields_10.TabIndex = 19; // //chkKitchenMonitors // this.chkKitchenMonitors.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this.chkKitchenMonitors.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkKitchenMonitors.Cursor = System.Windows.Forms.Cursors.Default; this.chkKitchenMonitors.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkKitchenMonitors.ForeColor = System.Drawing.SystemColors.WindowText; this.chkKitchenMonitors.Location = new System.Drawing.Point(122, 186); this.chkKitchenMonitors.Name = "chkKitchenMonitors"; this.chkKitchenMonitors.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkKitchenMonitors.Size = new System.Drawing.Size(317, 17); this.chkKitchenMonitors.TabIndex = 18; this.chkKitchenMonitors.Text = "Setup this Terminal as a Kitchen Monitor ( for Drive Thru only )"; this.chkKitchenMonitors.UseVisualStyleBackColor = false; // //_txtInteger_0 // this._txtInteger_0.AcceptsReturn = true; this._txtInteger_0.BackColor = System.Drawing.Color.White; this._txtInteger_0.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtInteger_0.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtInteger_0.ForeColor = System.Drawing.SystemColors.WindowText; this._txtInteger_0.Location = new System.Drawing.Point(300, 60); this._txtInteger_0.MaxLength = 0; this._txtInteger_0.Name = "_txtInteger_0"; this._txtInteger_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtInteger_0.Size = new System.Drawing.Size(27, 19); this._txtInteger_0.TabIndex = 3; this._txtInteger_0.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //_txtFloat_5 // this._txtFloat_5.AcceptsReturn = true; this._txtFloat_5.BackColor = System.Drawing.SystemColors.Window; this._txtFloat_5.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFloat_5.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFloat_5.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFloat_5.Location = new System.Drawing.Point(110, 104); this._txtFloat_5.MaxLength = 0; this._txtFloat_5.Name = "_txtFloat_5"; this._txtFloat_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFloat_5.Size = new System.Drawing.Size(78, 19); this._txtFloat_5.TabIndex = 10; this._txtFloat_5.TextAlign = System.Windows.Forms.HorizontalAlignment.Right; // //_txtInteger_4 // this._txtInteger_4.AcceptsReturn = true; this._txtInteger_4.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._txtInteger_4.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtInteger_4.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtInteger_4.Enabled = false; this._txtInteger_4.ForeColor = System.Drawing.SystemColors.WindowText; this._txtInteger_4.Location = new System.Drawing.Point(362, 80); this._txtInteger_4.MaxLength = 0; this._txtInteger_4.Name = "_txtInteger_4"; this._txtInteger_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtInteger_4.Size = new System.Drawing.Size(78, 19); this._txtInteger_4.TabIndex = 7; // //_txtFields_3 // this._txtFields_3.AcceptsReturn = true; this._txtFields_3.BackColor = System.Drawing.Color.White; this._txtFields_3.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_3.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_3.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_3.Location = new System.Drawing.Point(110, 82); this._txtFields_3.MaxLength = 0; this._txtFields_3.Name = "_txtFields_3"; this._txtFields_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_3.Size = new System.Drawing.Size(78, 19); this._txtFields_3.TabIndex = 5; // //_chkFields_2 // this._chkFields_2.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(192)), Convert.ToInt32(Convert.ToByte(255))); this._chkFields_2.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this._chkFields_2.Cursor = System.Windows.Forms.Cursors.Default; this._chkFields_2.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this._chkFields_2.ForeColor = System.Drawing.SystemColors.WindowText; this._chkFields_2.Location = new System.Drawing.Point(10, 106); this._chkFields_2.Name = "_chkFields_2"; this._chkFields_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._chkFields_2.Size = new System.Drawing.Size(60, 17); this._chkFields_2.TabIndex = 8; this._chkFields_2.Text = "Disable:"; this._chkFields_2.UseVisualStyleBackColor = false; // //_txtFields_1 // this._txtFields_1.AcceptsReturn = true; this._txtFields_1.BackColor = System.Drawing.Color.White; this._txtFields_1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this._txtFields_1.Cursor = System.Windows.Forms.Cursors.IBeam; this._txtFields_1.ForeColor = System.Drawing.SystemColors.WindowText; this._txtFields_1.Location = new System.Drawing.Point(110, 60); this._txtFields_1.MaxLength = 0; this._txtFields_1.Name = "_txtFields_1"; this._txtFields_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._txtFields_1.Size = new System.Drawing.Size(78, 19); this._txtFields_1.TabIndex = 1; // //picButtons // this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Controls.Add(this.cmdCancel); this.picButtons.Controls.Add(this.cmdClose); this.picButtons.Controls.Add(this._lblLic_0); this.picButtons.Controls.Add(this._lblLic_1); this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.Name = "picButtons"; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Size = new System.Drawing.Size(452, 39); this.picButtons.TabIndex = 16; // //cmdCancel // this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.Name = "cmdCancel"; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.TabIndex = 15; this.cmdCancel.TabStop = false; this.cmdCancel.Text = "&Undo"; this.cmdCancel.UseVisualStyleBackColor = false; // //cmdClose // this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Location = new System.Drawing.Point(372, 2); this.cmdClose.Name = "cmdClose"; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Size = new System.Drawing.Size(73, 29); this.cmdClose.TabIndex = 14; this.cmdClose.TabStop = false; this.cmdClose.Text = "E&xit"; this.cmdClose.UseVisualStyleBackColor = false; // //_lblLic_0 // this._lblLic_0.BackColor = System.Drawing.Color.Red; this._lblLic_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLic_0.ForeColor = System.Drawing.Color.White; this._lblLic_0.Location = new System.Drawing.Point(176, 8); this._lblLic_0.Name = "_lblLic_0"; this._lblLic_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLic_0.Size = new System.Drawing.Size(113, 19); this._lblLic_0.TabIndex = 25; this._lblLic_0.Text = "Not Licensed"; this._lblLic_0.TextAlign = System.Drawing.ContentAlignment.TopCenter; this._lblLic_0.Visible = false; // //_lblLic_1 // this._lblLic_1.BackColor = System.Drawing.Color.Red; this._lblLic_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLic_1.ForeColor = System.Drawing.Color.White; this._lblLic_1.Location = new System.Drawing.Point(120, 3); this._lblLic_1.Name = "_lblLic_1"; this._lblLic_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLic_1.Size = new System.Drawing.Size(217, 27); this._lblLic_1.TabIndex = 26; this._lblLic_1.TextAlign = System.Drawing.ContentAlignment.TopCenter; this._lblLic_1.Visible = false; // //CommonDialog1Open // this.CommonDialog1Open.FileName = "waitron.mdb"; this.CommonDialog1Open.Title = "Path to Waitron dabatase"; // //_lblLabels_6 // this._lblLabels_6.AutoSize = true; this._lblLabels_6.BackColor = System.Drawing.Color.Transparent; this._lblLabels_6.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_6.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_6.Location = new System.Drawing.Point(10, 131); this._lblLabels_6.Name = "_lblLabels_6"; this._lblLabels_6.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_6.Size = new System.Drawing.Size(65, 13); this._lblLabels_6.TabIndex = 24; this._lblLabels_6.Text = "Warehouse:"; this._lblLabels_6.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_0 // this._lbl_0.BackColor = System.Drawing.Color.Transparent; this._lbl_0.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_0.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_0.Location = new System.Drawing.Point(10, 250); this._lbl_0.Name = "_lbl_0"; this._lbl_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_0.Size = new System.Drawing.Size(94, 13); this._lbl_0.TabIndex = 21; this._lbl_0.Text = "Server Path:"; this._lbl_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lbl_0.Visible = false; // //Label1 // this.Label1.BackColor = System.Drawing.Color.Transparent; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Location = new System.Drawing.Point(6, 166); this.Label1.Name = "Label1"; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.Size = new System.Drawing.Size(117, 15); this.Label1.TabIndex = 17; this.Label1.Text = "&2. Kitchen Monitors"; // //_lblLabels_2 // this._lblLabels_2.AutoSize = true; this._lblLabels_2.BackColor = System.Drawing.Color.Transparent; this._lblLabels_2.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_2.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_2.Location = new System.Drawing.Point(230, 63); this._lblLabels_2.Name = "_lblLabels_2"; this._lblLabels_2.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_2.Size = new System.Drawing.Size(72, 13); this._lblLabels_2.TabIndex = 2; this._lblLabels_2.Text = "POS Number:"; this._lblLabels_2.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lblLabels_0 // this._lblLabels_0.AutoSize = true; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_0.Location = new System.Drawing.Point(204, 108); this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.Size = new System.Drawing.Size(92, 13); this._lblLabels_0.TabIndex = 11; this._lblLabels_0.Text = "Default Keyboard:"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lblLabels_5 // this._lblLabels_5.AutoSize = true; this._lblLabels_5.BackColor = System.Drawing.Color.Transparent; this._lblLabels_5.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_5.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_5.Location = new System.Drawing.Point(80, 108); this._lblLabels_5.Name = "_lblLabels_5"; this._lblLabels_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_5.Size = new System.Drawing.Size(33, 13); this._lblLabels_5.TabIndex = 9; this._lblLabels_5.Text = "Float:"; this._lblLabels_5.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lblLabels_4 // this._lblLabels_4.AutoSize = true; this._lblLabels_4.BackColor = System.Drawing.Color.Transparent; this._lblLabels_4.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_4.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_4.Location = new System.Drawing.Point(271, 84); this._lblLabels_4.Name = "_lblLabels_4"; this._lblLabels_4.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_4.Size = new System.Drawing.Size(87, 13); this._lblLabels_4.TabIndex = 6; this._lblLabels_4.Text = "Last Declaration:"; this._lblLabels_4.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lblLabels_3 // this._lblLabels_3.AutoSize = true; this._lblLabels_3.BackColor = System.Drawing.Color.Transparent; this._lblLabels_3.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_3.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_3.Location = new System.Drawing.Point(26, 84); this._lblLabels_3.Name = "_lblLabels_3"; this._lblLabels_3.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_3.Size = new System.Drawing.Size(86, 13); this._lblLabels_3.TabIndex = 4; this._lblLabels_3.Text = "POS IP Address:"; this._lblLabels_3.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lblLabels_1 // this._lblLabels_1.AutoSize = true; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_1.Location = new System.Drawing.Point(48, 63); this._lblLabels_1.Name = "_lblLabels_1"; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.Size = new System.Drawing.Size(63, 13); this._lblLabels_1.TabIndex = 0; this._lblLabels_1.Text = "POS Name:"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; // //_lbl_5 // this._lbl_5.AutoSize = true; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Location = new System.Drawing.Point(6, 42); this._lbl_5.Name = "_lbl_5"; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.Size = new System.Drawing.Size(56, 13); this._lbl_5.TabIndex = 13; this._lbl_5.Text = "&1. General"; // //frmPOS // this.AutoScaleDimensions = new System.Drawing.SizeF(6f, 13f); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.Color.FromArgb(Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224)), Convert.ToInt32(Convert.ToByte(224))); this.ClientSize = new System.Drawing.Size(452, 214); this.ControlBox = false; this.Controls.Add(this._txtInteger_1); this.Controls.Add(this.cmdLocate); this.Controls.Add(this._txtFields_10); this.Controls.Add(this.chkKitchenMonitors); this.Controls.Add(this._txtInteger_0); this.Controls.Add(this._txtFloat_5); this.Controls.Add(this._txtInteger_4); this.Controls.Add(this._txtFields_3); this.Controls.Add(this._chkFields_2); this.Controls.Add(this._txtFields_1); this.Controls.Add(this.picButtons); this.Controls.Add(this._lblLabels_6); this.Controls.Add(this._lbl_0); this.Controls.Add(this.Label1); this.Controls.Add(this._lblLabels_2); this.Controls.Add(this._lblLabels_0); this.Controls.Add(this._lblLabels_5); this.Controls.Add(this._lblLabels_4); this.Controls.Add(this._lblLabels_3); this.Controls.Add(this._lblLabels_1); this.Controls.Add(this._lbl_5); this.Controls.Add(this.ShapeContainer1); this.Cursor = System.Windows.Forms.Cursors.Default; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.KeyPreview = true; this.Location = new System.Drawing.Point(73, 22); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmPOS"; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Edit Point Of Sale Details"; this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmStockTakeLIQCode)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.Timer1 = new System.Windows.Forms.Timer(components); this.Command2 = new System.Windows.Forms.Button(); this.Command1 = new System.Windows.Forms.Button(); //Me.Drive1 = New Microsoft.VisualBasic.Compatibility.VB6.DriveListBox this.chkFields = new System.Windows.Forms.CheckBox(); this.txtFields = new System.Windows.Forms.TextBox(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this._lblLabels_0 = new System.Windows.Forms.Label(); this._lblLabels_1 = new System.Windows.Forms.Label(); this._Shape1_2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this._lbl_5 = new System.Windows.Forms.Label(); //Me.lbl = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) //Me.lblLabels = New Microsoft.VisualBasic.Compatibility.VB6.LabelArray(components) this.Shape1 = new RectangleShapeArray(components); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; //CType(Me.lbl, System.ComponentModel.ISupportInitialize).BeginInit() //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).BeginInit() ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.BackColor = System.Drawing.Color.FromArgb(224, 224, 224); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "4LIQUOR Registration"; this.ClientSize = new System.Drawing.Size(345, 120); this.Location = new System.Drawing.Point(73, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmStockTakeLIQCode"; this.Timer1.Interval = 1; this.Timer1.Enabled = true; this.Command2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.Command2.Text = "Close CD Tray and Register"; this.Command2.Size = new System.Drawing.Size(151, 19); this.Command2.Location = new System.Drawing.Point(184, 256); this.Command2.TabIndex = 10; this.Command2.BackColor = System.Drawing.SystemColors.Control; this.Command2.CausesValidation = true; this.Command2.Enabled = true; this.Command2.ForeColor = System.Drawing.SystemColors.ControlText; this.Command2.Cursor = System.Windows.Forms.Cursors.Default; this.Command2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command2.TabStop = true; this.Command2.Name = "Command2"; this.Command1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.Command1.Text = "Open"; this.Command1.Size = new System.Drawing.Size(59, 19); this.Command1.Location = new System.Drawing.Point(216, 280); this.Command1.TabIndex = 8; this.Command1.BackColor = System.Drawing.SystemColors.Control; this.Command1.CausesValidation = true; this.Command1.Enabled = true; this.Command1.ForeColor = System.Drawing.SystemColors.ControlText; this.Command1.Cursor = System.Windows.Forms.Cursors.Default; this.Command1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Command1.TabStop = true; this.Command1.Name = "Command1"; //Me.Drive1.Enabled = False //Me.Drive1.Size = New System.Drawing.Size(111, 21) //Me.Drive1.Location = New System.Drawing.Point(64, 256) //Me.Drive1.TabIndex = 7 //Me.Drive1.BackColor = System.Drawing.SystemColors.Window //Me.Drive1.CausesValidation = True //Me.Drive1.ForeColor = System.Drawing.SystemColors.WindowText //Me.Drive1.Cursor = System.Windows.Forms.Cursors.Default //Me.Drive1.TabStop = True //Me.Drive1.Visible = True //Me.Drive1.Name = "Drive1" this.chkFields.CheckAlign = System.Drawing.ContentAlignment.MiddleRight; this.chkFields.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.chkFields.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.chkFields.Text = "Manual :"; this.chkFields.ForeColor = System.Drawing.SystemColors.WindowText; this.chkFields.Size = new System.Drawing.Size(68, 17); this.chkFields.Location = new System.Drawing.Point(264, 231); this.chkFields.TabIndex = 2; this.chkFields.CausesValidation = true; this.chkFields.Enabled = true; this.chkFields.Cursor = System.Windows.Forms.Cursors.Default; this.chkFields.RightToLeft = System.Windows.Forms.RightToLeft.No; this.chkFields.Appearance = System.Windows.Forms.Appearance.Normal; this.chkFields.TabStop = true; this.chkFields.CheckState = System.Windows.Forms.CheckState.Unchecked; this.chkFields.Visible = true; this.chkFields.Name = "chkFields"; this.txtFields.AutoSize = false; this.txtFields.BackColor = System.Drawing.Color.White; this.txtFields.Font = new System.Drawing.Font("Arial", 12f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this.txtFields.Size = new System.Drawing.Size(270, 27); this.txtFields.ImeMode = System.Windows.Forms.ImeMode.Disable; this.txtFields.Location = new System.Drawing.Point(64, 76); this.txtFields.TabIndex = 1; this.txtFields.AcceptsReturn = true; this.txtFields.TextAlign = System.Windows.Forms.HorizontalAlignment.Left; this.txtFields.CausesValidation = true; this.txtFields.Enabled = true; this.txtFields.ForeColor = System.Drawing.SystemColors.WindowText; this.txtFields.HideSelection = true; this.txtFields.ReadOnly = false; this.txtFields.MaxLength = 0; this.txtFields.Cursor = System.Windows.Forms.Cursors.IBeam; this.txtFields.Multiline = false; this.txtFields.RightToLeft = System.Windows.Forms.RightToLeft.No; this.txtFields.ScrollBars = System.Windows.Forms.ScrollBars.None; this.txtFields.TabStop = true; this.txtFields.Visible = true; this.txtFields.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; this.txtFields.Name = "txtFields"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(345, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 6; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "&Undo"; this.cmdCancel.Size = new System.Drawing.Size(73, 29); this.cmdCancel.Location = new System.Drawing.Point(5, 3); this.cmdCancel.TabIndex = 5; this.cmdCancel.TabStop = false; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "N&ext"; this.cmdClose.Size = new System.Drawing.Size(81, 29); this.cmdClose.Location = new System.Drawing.Point(256, 2); this.cmdClose.TabIndex = 4; this.cmdClose.TabStop = false; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.Name = "cmdClose"; this._lblLabels_0.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_0.BackColor = System.Drawing.Color.Transparent; this._lblLabels_0.Text = "CD Drive :"; this._lblLabels_0.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_0.Size = new System.Drawing.Size(49, 13); this._lblLabels_0.Location = new System.Drawing.Point(8, 258); this._lblLabels_0.TabIndex = 9; this._lblLabels_0.Enabled = true; this._lblLabels_0.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_0.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_0.UseMnemonic = true; this._lblLabels_0.Visible = true; this._lblLabels_0.AutoSize = true; this._lblLabels_0.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_0.Name = "_lblLabels_0"; this._lblLabels_1.TextAlign = System.Drawing.ContentAlignment.TopRight; this._lblLabels_1.BackColor = System.Drawing.Color.Transparent; this._lblLabels_1.Text = "CD Key :"; this._lblLabels_1.Font = new System.Drawing.Font("Arial", 9.75f, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lblLabels_1.ForeColor = System.Drawing.SystemColors.WindowText; this._lblLabels_1.Size = new System.Drawing.Size(51, 16); this._lblLabels_1.Location = new System.Drawing.Point(8, 79); this._lblLabels_1.TabIndex = 0; this._lblLabels_1.Enabled = true; this._lblLabels_1.Cursor = System.Windows.Forms.Cursors.Default; this._lblLabels_1.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lblLabels_1.UseMnemonic = true; this._lblLabels_1.Visible = true; this._lblLabels_1.AutoSize = true; this._lblLabels_1.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lblLabels_1.Name = "_lblLabels_1"; this._Shape1_2.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_2.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_2.Size = new System.Drawing.Size(338, 49); this._Shape1_2.Location = new System.Drawing.Point(4, 64); this._Shape1_2.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_2.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_2.BorderWidth = 1; this._Shape1_2.FillColor = System.Drawing.Color.Black; this._Shape1_2.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_2.Visible = true; this._Shape1_2.Name = "_Shape1_2"; this._lbl_5.BackColor = System.Drawing.Color.Transparent; this._lbl_5.Text = "Please type in your 4LIQUOR CD Key. [ without dashes ]"; this._lbl_5.Font = new System.Drawing.Font("Arial", 8.25f, System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, Convert.ToByte(178)); this._lbl_5.Size = new System.Drawing.Size(333, 21); this._lbl_5.Location = new System.Drawing.Point(6, 48); this._lbl_5.TabIndex = 3; this._lbl_5.TextAlign = System.Drawing.ContentAlignment.TopLeft; this._lbl_5.Enabled = true; this._lbl_5.ForeColor = System.Drawing.SystemColors.ControlText; this._lbl_5.Cursor = System.Windows.Forms.Cursors.Default; this._lbl_5.RightToLeft = System.Windows.Forms.RightToLeft.No; this._lbl_5.UseMnemonic = true; this._lbl_5.Visible = true; this._lbl_5.AutoSize = false; this._lbl_5.BorderStyle = System.Windows.Forms.BorderStyle.None; this._lbl_5.Name = "_lbl_5"; this.Controls.Add(Command2); this.Controls.Add(Command1); //Me.Controls.Add(Drive1) this.Controls.Add(chkFields); this.Controls.Add(txtFields); this.Controls.Add(picButtons); this.Controls.Add(_lblLabels_0); this.Controls.Add(_lblLabels_1); this.ShapeContainer1.Shapes.Add(_Shape1_2); this.Controls.Add(_lbl_5); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); //Me.lbl.SetIndex(_lbl_5, CType(5, Short)) //Me.lblLabels.SetIndex(_lblLabels_0, CType(0, Short)) //Me.lblLabels.SetIndex(_lblLabels_1, CType(1, Short)) this.Shape1.SetIndex(_Shape1_2, Convert.ToInt16(2)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); //CType(Me.lblLabels, System.ComponentModel.ISupportInitialize).EndInit() //CType(Me.lbl, System.ComponentModel.ISupportInitialize).EndInit() this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
/// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmCustomer)); this.lblIntroducerID = new System.Windows.Forms.Label(); this.txtIntroducerID = new System.Windows.Forms.TextBox(); this.lblReferenceID = new System.Windows.Forms.Label(); this.txtReferenceID = new System.Windows.Forms.TextBox(); this.lblCustomerName = new System.Windows.Forms.Label(); this.txtCustomerName = new System.Windows.Forms.TextBox(); this.lblBenificiaryName = new System.Windows.Forms.Label(); this.txtBenificiaryName = new System.Windows.Forms.TextBox(); this.lblGender = new System.Windows.Forms.Label(); this.lblDOB = new System.Windows.Forms.Label(); this.lblMaritialStatus = new System.Windows.Forms.Label(); this.lblNationality = new System.Windows.Forms.Label(); this.ddlNationality = new System.Windows.Forms.ComboBox(); this.lblCitizenshipID = new System.Windows.Forms.Label(); this.txtCitizenshipID = new System.Windows.Forms.TextBox(); this.lblLicenseID = new System.Windows.Forms.Label(); this.txtLicenseID = new System.Windows.Forms.TextBox(); this.lblPassportID = new System.Windows.Forms.Label(); this.txtPassportID = new System.Windows.Forms.TextBox(); this.lblCountry = new System.Windows.Forms.Label(); this.ddlCountry = new System.Windows.Forms.ComboBox(); this.lblCity = new System.Windows.Forms.Label(); this.ddlCity = new System.Windows.Forms.ComboBox(); this.lblMunicipality = new System.Windows.Forms.Label(); this.lblDistrict = new System.Windows.Forms.Label(); this.lblStreet = new System.Windows.Forms.Label(); this.txtStreet = new System.Windows.Forms.TextBox(); this.lblHouseNo = new System.Windows.Forms.Label(); this.txtHouseNo = new System.Windows.Forms.TextBox(); this.lblAreaCode = new System.Windows.Forms.Label(); this.txtAreaCode = new System.Windows.Forms.TextBox(); this.lblAddress = new System.Windows.Forms.Label(); this.lblHomeTelephone = new System.Windows.Forms.Label(); this.txtHomeTelephone = new System.Windows.Forms.TextBox(); this.lblMobileNo = new System.Windows.Forms.Label(); this.txtMobileNo = new System.Windows.Forms.TextBox(); this.lblEmailAddress = new System.Windows.Forms.Label(); this.txtEmailAddress = new System.Windows.Forms.TextBox(); this.lblPhoto = new System.Windows.Forms.Label(); this.lblPersonalDetails = new System.Windows.Forms.Label(); this.lblCreatedDate = new System.Windows.Forms.Label(); this.lblAddressContact = new System.Windows.Forms.Label(); this.btnCancel = new System.Windows.Forms.Button(); this.btnOk = new System.Windows.Forms.Button(); this.ddlMaritialStatus = new System.Windows.Forms.ComboBox(); this.btnDelete = new System.Windows.Forms.Button(); this.btnEdit = new System.Windows.Forms.Button(); this.btnAdd = new System.Windows.Forms.Button(); this.ddlGender = new System.Windows.Forms.ComboBox(); this.btnLast = new System.Windows.Forms.Button(); this.btnNext = new System.Windows.Forms.Button(); this.btnPrevious = new System.Windows.Forms.Button(); this.btnFirst = new System.Windows.Forms.Button(); this.lblAreaHeading = new System.Windows.Forms.Label(); this.rectangleShape2 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.shapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.S = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog(); this.txtPhotoPath = new System.Windows.Forms.TextBox(); this.btnBrowsePhoto = new System.Windows.Forms.Button(); this.ddlMunicipality = new System.Windows.Forms.ComboBox(); this.ddlDistrict = new System.Windows.Forms.ComboBox(); this.btnIntroducerID = new System.Windows.Forms.Button(); this.btnReferenceID = new System.Windows.Forms.Button(); this.lblMembershipID = new System.Windows.Forms.Label(); this.btnMembershipID = new System.Windows.Forms.Button(); this.txtMembershipID = new System.Windows.Forms.TextBox(); this.btnAreaCode = new System.Windows.Forms.Button(); this.txtAddress = new System.Windows.Forms.TextBox(); this.mtxtCreatedDate = new System.Windows.Forms.MaskedTextBox(); this.mtxtDOB = new System.Windows.Forms.MaskedTextBox(); this.lblCustomerType = new System.Windows.Forms.Label(); this.ddlCustomerType = new System.Windows.Forms.ComboBox(); this.lblMROrientationDate = new System.Windows.Forms.Label(); this.mtxtMRDate = new System.Windows.Forms.MaskedTextBox(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); this.lblNoPhoto = new System.Windows.Forms.Label(); this.lblMarketingDate = new System.Windows.Forms.Label(); this.lblDateOfBirth = new System.Windows.Forms.Label(); this.lblFullName = new System.Windows.Forms.Label(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // lblIntroducerID // this.lblIntroducerID.AutoSize = true; this.lblIntroducerID.Location = new System.Drawing.Point(31, 81); this.lblIntroducerID.Name = "lblIntroducerID"; this.lblIntroducerID.Size = new System.Drawing.Size(69, 13); this.lblIntroducerID.TabIndex = 7; this.lblIntroducerID.Text = "Introducer ID"; // // txtIntroducerID // this.txtIntroducerID.Location = new System.Drawing.Point(217, 74); this.txtIntroducerID.MaxLength = 100; this.txtIntroducerID.Name = "txtIntroducerID"; this.txtIntroducerID.Size = new System.Drawing.Size(198, 20); this.txtIntroducerID.TabIndex = 8; this.txtIntroducerID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtIntroducerID_KeyDown); // // lblReferenceID // this.lblReferenceID.AutoSize = true; this.lblReferenceID.Location = new System.Drawing.Point(31, 106); this.lblReferenceID.Name = "lblReferenceID"; this.lblReferenceID.Size = new System.Drawing.Size(71, 13); this.lblReferenceID.TabIndex = 10; this.lblReferenceID.Text = "Reference ID"; // // txtReferenceID // this.txtReferenceID.Location = new System.Drawing.Point(218, 98); this.txtReferenceID.MaxLength = 100; this.txtReferenceID.Name = "txtReferenceID"; this.txtReferenceID.Size = new System.Drawing.Size(197, 20); this.txtReferenceID.TabIndex = 11; this.txtReferenceID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtReferenceID_KeyDown); // // lblCustomerName // this.lblCustomerName.AutoSize = true; this.lblCustomerName.Location = new System.Drawing.Point(31, 221); this.lblCustomerName.Name = "lblCustomerName"; this.lblCustomerName.Size = new System.Drawing.Size(82, 13); this.lblCustomerName.TabIndex = 20; this.lblCustomerName.Text = "Customer Name"; // // txtCustomerName // this.txtCustomerName.Location = new System.Drawing.Point(217, 221); this.txtCustomerName.MaxLength = 250; this.txtCustomerName.Name = "txtCustomerName"; this.txtCustomerName.Size = new System.Drawing.Size(199, 20); this.txtCustomerName.TabIndex = 21; this.txtCustomerName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCustomerName_KeyDown); // // lblBenificiaryName // this.lblBenificiaryName.AutoSize = true; this.lblBenificiaryName.Location = new System.Drawing.Point(31, 247); this.lblBenificiaryName.Name = "lblBenificiaryName"; this.lblBenificiaryName.Size = new System.Drawing.Size(86, 13); this.lblBenificiaryName.TabIndex = 22; this.lblBenificiaryName.Text = "Benificiary Name"; // // txtBenificiaryName // this.txtBenificiaryName.Location = new System.Drawing.Point(217, 247); this.txtBenificiaryName.MaxLength = 250; this.txtBenificiaryName.Name = "txtBenificiaryName"; this.txtBenificiaryName.Size = new System.Drawing.Size(199, 20); this.txtBenificiaryName.TabIndex = 23; this.txtBenificiaryName.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtBenificiaryName_KeyDown); // // lblGender // this.lblGender.AutoSize = true; this.lblGender.Location = new System.Drawing.Point(31, 276); this.lblGender.Name = "lblGender"; this.lblGender.Size = new System.Drawing.Size(42, 13); this.lblGender.TabIndex = 24; this.lblGender.Text = "Gender"; // // lblDOB // this.lblDOB.AutoSize = true; this.lblDOB.Location = new System.Drawing.Point(31, 307); this.lblDOB.Name = "lblDOB"; this.lblDOB.Size = new System.Drawing.Size(66, 13); this.lblDOB.TabIndex = 26; this.lblDOB.Text = "Date of Birth"; // // lblMaritialStatus // this.lblMaritialStatus.AutoSize = true; this.lblMaritialStatus.Location = new System.Drawing.Point(29, 336); this.lblMaritialStatus.Name = "lblMaritialStatus"; this.lblMaritialStatus.Size = new System.Drawing.Size(73, 13); this.lblMaritialStatus.TabIndex = 28; this.lblMaritialStatus.Text = "Maritial Status"; // // lblNationality // this.lblNationality.AutoSize = true; this.lblNationality.Location = new System.Drawing.Point(29, 367); this.lblNationality.Name = "lblNationality"; this.lblNationality.Size = new System.Drawing.Size(56, 13); this.lblNationality.TabIndex = 30; this.lblNationality.Text = "Nationality"; // // ddlNationality // this.ddlNationality.AutoCompleteCustomSource.AddRange(new string[] { "Neplai", "Japanese", "Chinese", "Indain"}); this.ddlNationality.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlNationality.FormattingEnabled = true; this.ddlNationality.Items.AddRange(new object[] { "None", "Nepali", "Japanese", "Chinese", "Indian"}); this.ddlNationality.Location = new System.Drawing.Point(218, 367); this.ddlNationality.Name = "ddlNationality"; this.ddlNationality.Size = new System.Drawing.Size(197, 21); this.ddlNationality.TabIndex = 31; this.ddlNationality.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlNationality_KeyDown); // // lblCitizenshipID // this.lblCitizenshipID.AutoSize = true; this.lblCitizenshipID.Location = new System.Drawing.Point(29, 400); this.lblCitizenshipID.Name = "lblCitizenshipID"; this.lblCitizenshipID.Size = new System.Drawing.Size(71, 13); this.lblCitizenshipID.TabIndex = 32; this.lblCitizenshipID.Text = "Citizenship ID"; // // txtCitizenshipID // this.txtCitizenshipID.Location = new System.Drawing.Point(218, 400); this.txtCitizenshipID.MaxLength = 50; this.txtCitizenshipID.Name = "txtCitizenshipID"; this.txtCitizenshipID.Size = new System.Drawing.Size(198, 20); this.txtCitizenshipID.TabIndex = 33; this.txtCitizenshipID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCitizenshipID_KeyDown); // // lblLicenseID // this.lblLicenseID.AutoSize = true; this.lblLicenseID.Location = new System.Drawing.Point(29, 426); this.lblLicenseID.Name = "lblLicenseID"; this.lblLicenseID.Size = new System.Drawing.Size(64, 13); this.lblLicenseID.TabIndex = 34; this.lblLicenseID.Text = "Licennse ID"; // // txtLicenseID // this.txtLicenseID.Location = new System.Drawing.Point(218, 426); this.txtLicenseID.MaxLength = 50; this.txtLicenseID.Name = "txtLicenseID"; this.txtLicenseID.Size = new System.Drawing.Size(197, 20); this.txtLicenseID.TabIndex = 35; this.txtLicenseID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtLicenseID_KeyDown); // // lblPassportID // this.lblPassportID.AutoSize = true; this.lblPassportID.Location = new System.Drawing.Point(28, 454); this.lblPassportID.Name = "lblPassportID"; this.lblPassportID.Size = new System.Drawing.Size(62, 13); this.lblPassportID.TabIndex = 36; this.lblPassportID.Text = "Passport ID"; // // txtPassportID // this.txtPassportID.Location = new System.Drawing.Point(217, 454); this.txtPassportID.MaxLength = 50; this.txtPassportID.Name = "txtPassportID"; this.txtPassportID.Size = new System.Drawing.Size(199, 20); this.txtPassportID.TabIndex = 37; this.txtPassportID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPassportID_KeyDown); // // lblCountry // this.lblCountry.AutoSize = true; this.lblCountry.Location = new System.Drawing.Point(508, 75); this.lblCountry.Name = "lblCountry"; this.lblCountry.Size = new System.Drawing.Size(43, 13); this.lblCountry.TabIndex = 39; this.lblCountry.Text = "Country"; // // ddlCountry // this.ddlCountry.AutoCompleteCustomSource.AddRange(new string[] { "Nepal", "Japan", "China", "India"}); this.ddlCountry.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlCountry.FlatStyle = System.Windows.Forms.FlatStyle.System; this.ddlCountry.FormattingEnabled = true; this.ddlCountry.Items.AddRange(new object[] { "None", "Nepal", "Japan", "China", "India"}); this.ddlCountry.Location = new System.Drawing.Point(666, 75); this.ddlCountry.Name = "ddlCountry"; this.ddlCountry.Size = new System.Drawing.Size(198, 21); this.ddlCountry.TabIndex = 40; this.ddlCountry.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlCountry_KeyDown); // // lblCity // this.lblCity.AutoSize = true; this.lblCity.Location = new System.Drawing.Point(509, 102); this.lblCity.Name = "lblCity"; this.lblCity.Size = new System.Drawing.Size(24, 13); this.lblCity.TabIndex = 41; this.lblCity.Text = "City"; // // ddlCity // this.ddlCity.AutoCompleteCustomSource.AddRange(new string[] { "----Select Item----", "Kathmandu", "Bhaktapur", "Lalitpur", "Banepa"}); this.ddlCity.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlCity.FormattingEnabled = true; this.ddlCity.Items.AddRange(new object[] { "None", "Kathmandu", "Lalitpur", "Bhaktapur", "Banepa"}); this.ddlCity.Location = new System.Drawing.Point(666, 102); this.ddlCity.Name = "ddlCity"; this.ddlCity.Size = new System.Drawing.Size(198, 21); this.ddlCity.TabIndex = 42; this.ddlCity.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlCity_KeyDown); // // lblMunicipality // this.lblMunicipality.AutoSize = true; this.lblMunicipality.Location = new System.Drawing.Point(509, 129); this.lblMunicipality.Name = "lblMunicipality"; this.lblMunicipality.Size = new System.Drawing.Size(62, 13); this.lblMunicipality.TabIndex = 43; this.lblMunicipality.Text = "Municipality"; // // lblDistrict // this.lblDistrict.AutoSize = true; this.lblDistrict.Location = new System.Drawing.Point(509, 155); this.lblDistrict.Name = "lblDistrict"; this.lblDistrict.Size = new System.Drawing.Size(39, 13); this.lblDistrict.TabIndex = 45; this.lblDistrict.Text = "District"; // // lblStreet // this.lblStreet.AutoSize = true; this.lblStreet.Location = new System.Drawing.Point(508, 181); this.lblStreet.Name = "lblStreet"; this.lblStreet.Size = new System.Drawing.Size(35, 13); this.lblStreet.TabIndex = 47; this.lblStreet.Text = "Street"; // // txtStreet // this.txtStreet.Location = new System.Drawing.Point(666, 181); this.txtStreet.MaxLength = 250; this.txtStreet.Name = "txtStreet"; this.txtStreet.Size = new System.Drawing.Size(198, 20); this.txtStreet.TabIndex = 48; this.txtStreet.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtStreet_KeyDown); // // lblHouseNo // this.lblHouseNo.AutoSize = true; this.lblHouseNo.Location = new System.Drawing.Point(509, 207); this.lblHouseNo.Name = "lblHouseNo"; this.lblHouseNo.Size = new System.Drawing.Size(55, 13); this.lblHouseNo.TabIndex = 49; this.lblHouseNo.Text = "House No"; // // txtHouseNo // this.txtHouseNo.Location = new System.Drawing.Point(666, 207); this.txtHouseNo.MaxLength = 100; this.txtHouseNo.Name = "txtHouseNo"; this.txtHouseNo.Size = new System.Drawing.Size(198, 20); this.txtHouseNo.TabIndex = 50; this.txtHouseNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtHouseNo_KeyDown); // // lblAreaCode // this.lblAreaCode.AutoSize = true; this.lblAreaCode.Location = new System.Drawing.Point(509, 233); this.lblAreaCode.Name = "lblAreaCode"; this.lblAreaCode.Size = new System.Drawing.Size(57, 13); this.lblAreaCode.TabIndex = 51; this.lblAreaCode.Text = "Area Code"; // // txtAreaCode // this.txtAreaCode.Location = new System.Drawing.Point(666, 233); this.txtAreaCode.MaxLength = 5; this.txtAreaCode.Name = "txtAreaCode"; this.txtAreaCode.Size = new System.Drawing.Size(198, 20); this.txtAreaCode.TabIndex = 52; this.txtAreaCode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAreaCode_KeyDown); this.txtAreaCode.Validating += new System.ComponentModel.CancelEventHandler(this.txtAreaCode_Validating); // // lblAddress // this.lblAddress.AutoSize = true; this.lblAddress.Location = new System.Drawing.Point(510, 262); this.lblAddress.Name = "lblAddress"; this.lblAddress.Size = new System.Drawing.Size(45, 13); this.lblAddress.TabIndex = 54; this.lblAddress.Text = "Address"; // // lblHomeTelephone // this.lblHomeTelephone.AutoSize = true; this.lblHomeTelephone.Location = new System.Drawing.Point(511, 324); this.lblHomeTelephone.Name = "lblHomeTelephone"; this.lblHomeTelephone.Size = new System.Drawing.Size(89, 13); this.lblHomeTelephone.TabIndex = 56; this.lblHomeTelephone.Text = "Home Telephone"; // // txtHomeTelephone // this.txtHomeTelephone.Location = new System.Drawing.Point(666, 324); this.txtHomeTelephone.MaxLength = 100; this.txtHomeTelephone.Name = "txtHomeTelephone"; this.txtHomeTelephone.Size = new System.Drawing.Size(198, 20); this.txtHomeTelephone.TabIndex = 57; this.txtHomeTelephone.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtHomeTelephone_KeyDown); // // lblMobileNo // this.lblMobileNo.AutoSize = true; this.lblMobileNo.Location = new System.Drawing.Point(511, 352); this.lblMobileNo.Name = "lblMobileNo"; this.lblMobileNo.Size = new System.Drawing.Size(55, 13); this.lblMobileNo.TabIndex = 58; this.lblMobileNo.Text = "Mobile No"; // // txtMobileNo // this.txtMobileNo.Location = new System.Drawing.Point(666, 352); this.txtMobileNo.MaxLength = 100; this.txtMobileNo.Name = "txtMobileNo"; this.txtMobileNo.Size = new System.Drawing.Size(198, 20); this.txtMobileNo.TabIndex = 59; this.txtMobileNo.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMobileNo_KeyDown); // // lblEmailAddress // this.lblEmailAddress.AutoSize = true; this.lblEmailAddress.Location = new System.Drawing.Point(511, 381); this.lblEmailAddress.Name = "lblEmailAddress"; this.lblEmailAddress.Size = new System.Drawing.Size(79, 13); this.lblEmailAddress.TabIndex = 60; this.lblEmailAddress.Text = "E-mail Address"; // // txtEmailAddress // this.txtEmailAddress.Location = new System.Drawing.Point(666, 381); this.txtEmailAddress.MaxLength = 100; this.txtEmailAddress.Name = "txtEmailAddress"; this.txtEmailAddress.Size = new System.Drawing.Size(198, 20); this.txtEmailAddress.TabIndex = 61; this.txtEmailAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtEmailAddress_KeyDown); this.txtEmailAddress.Validating += new System.ComponentModel.CancelEventHandler(this.txtEmailAddress_Validating); // // lblPhoto // this.lblPhoto.AutoSize = true; this.lblPhoto.Location = new System.Drawing.Point(512, 409); this.lblPhoto.Name = "lblPhoto"; this.lblPhoto.Size = new System.Drawing.Size(35, 13); this.lblPhoto.TabIndex = 62; this.lblPhoto.Text = "Photo"; // // lblPersonalDetails // this.lblPersonalDetails.AutoSize = true; this.lblPersonalDetails.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblPersonalDetails.Location = new System.Drawing.Point(30, 194); this.lblPersonalDetails.Name = "lblPersonalDetails"; this.lblPersonalDetails.Size = new System.Drawing.Size(99, 13); this.lblPersonalDetails.TabIndex = 19; this.lblPersonalDetails.Text = "Personal Details"; // // lblCreatedDate // this.lblCreatedDate.AutoSize = true; this.lblCreatedDate.Location = new System.Drawing.Point(371, 5); this.lblCreatedDate.Name = "lblCreatedDate"; this.lblCreatedDate.Size = new System.Drawing.Size(70, 13); this.lblCreatedDate.TabIndex = 13; this.lblCreatedDate.Text = "Created Date"; this.lblCreatedDate.Visible = false; // // lblAddressContact // this.lblAddressContact.AutoSize = true; this.lblAddressContact.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblAddressContact.Location = new System.Drawing.Point(508, 50); this.lblAddressContact.Name = "lblAddressContact"; this.lblAddressContact.Size = new System.Drawing.Size(125, 13); this.lblAddressContact.TabIndex = 38; this.lblAddressContact.Text = "Address and Contact"; // // btnCancel // this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnCancel.Location = new System.Drawing.Point(568, 504); this.btnCancel.Name = "btnCancel"; this.btnCancel.Size = new System.Drawing.Size(75, 23); this.btnCancel.TabIndex = 66; this.btnCancel.Text = "&Cancel"; this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click); // // btnOk // this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.btnOk.Location = new System.Drawing.Point(490, 504); this.btnOk.Name = "btnOk"; this.btnOk.Size = new System.Drawing.Size(75, 23); this.btnOk.TabIndex = 65; this.btnOk.Text = "&OK"; this.btnOk.Click += new System.EventHandler(this.btnOk_Click); // // ddlMaritialStatus // this.ddlMaritialStatus.AutoCompleteCustomSource.AddRange(new string[] { "Married", "Unmarried"}); this.ddlMaritialStatus.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlMaritialStatus.FormattingEnabled = true; this.ddlMaritialStatus.Items.AddRange(new object[] { "None", "Married", "Unmarried"}); this.ddlMaritialStatus.Location = new System.Drawing.Point(217, 336); this.ddlMaritialStatus.Name = "ddlMaritialStatus"; this.ddlMaritialStatus.Size = new System.Drawing.Size(199, 21); this.ddlMaritialStatus.TabIndex = 29; this.ddlMaritialStatus.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlMaritialStatus_KeyDown); // // btnDelete // this.btnDelete.Location = new System.Drawing.Point(165, 12); this.btnDelete.Name = "btnDelete"; this.btnDelete.Size = new System.Drawing.Size(75, 23); this.btnDelete.TabIndex = 2; this.btnDelete.Text = "&Delete"; this.btnDelete.UseVisualStyleBackColor = true; this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click); // // btnEdit // this.btnEdit.Location = new System.Drawing.Point(91, 12); this.btnEdit.Name = "btnEdit"; this.btnEdit.Size = new System.Drawing.Size(75, 23); this.btnEdit.TabIndex = 1; this.btnEdit.Text = "&Edit"; this.btnEdit.UseVisualStyleBackColor = true; this.btnEdit.Click += new System.EventHandler(this.btnEdit_Click); // // btnAdd // this.btnAdd.Location = new System.Drawing.Point(17, 12); this.btnAdd.Name = "btnAdd"; this.btnAdd.Size = new System.Drawing.Size(75, 23); this.btnAdd.TabIndex = 0; this.btnAdd.Text = "&Add"; this.btnAdd.UseVisualStyleBackColor = true; this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click); // // ddlGender // this.ddlGender.AutoCompleteCustomSource.AddRange(new string[] { "Male", "Female"}); this.ddlGender.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlGender.FormattingEnabled = true; this.ddlGender.Items.AddRange(new object[] { "Male", "Female"}); this.ddlGender.Location = new System.Drawing.Point(217, 276); this.ddlGender.Name = "ddlGender"; this.ddlGender.Size = new System.Drawing.Size(199, 21); this.ddlGender.TabIndex = 25; this.ddlGender.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlGender_KeyDown); // // btnLast // this.btnLast.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnLast.Location = new System.Drawing.Point(1108, 12); this.btnLast.Name = "btnLast"; this.btnLast.Size = new System.Drawing.Size(29, 23); this.btnLast.TabIndex = 6; this.btnLast.Text = ">>"; this.btnLast.UseVisualStyleBackColor = true; this.btnLast.Click += new System.EventHandler(this.btnLast_Click); // // btnNext // this.btnNext.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnNext.Location = new System.Drawing.Point(1082, 12); this.btnNext.Name = "btnNext"; this.btnNext.Size = new System.Drawing.Size(27, 23); this.btnNext.TabIndex = 5; this.btnNext.Text = ">"; this.btnNext.UseVisualStyleBackColor = true; this.btnNext.Click += new System.EventHandler(this.btnNext_Click); // // btnPrevious // this.btnPrevious.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnPrevious.Location = new System.Drawing.Point(1056, 12); this.btnPrevious.Name = "btnPrevious"; this.btnPrevious.Size = new System.Drawing.Size(27, 23); this.btnPrevious.TabIndex = 4; this.btnPrevious.Text = "<"; this.btnPrevious.UseVisualStyleBackColor = true; this.btnPrevious.Click += new System.EventHandler(this.btnPrevious_Click); // // btnFirst // this.btnFirst.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.btnFirst.Location = new System.Drawing.Point(1025, 12); this.btnFirst.Name = "btnFirst"; this.btnFirst.Size = new System.Drawing.Size(31, 23); this.btnFirst.TabIndex = 3; this.btnFirst.Text = "<<"; this.btnFirst.UseVisualStyleBackColor = true; this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click); // // lblAreaHeading // this.lblAreaHeading.AutoSize = true; this.lblAreaHeading.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); this.lblAreaHeading.Location = new System.Drawing.Point(26, 38); this.lblAreaHeading.Name = "lblAreaHeading"; this.lblAreaHeading.Size = new System.Drawing.Size(59, 13); this.lblAreaHeading.TabIndex = 3; this.lblAreaHeading.Text = "Customer"; // // rectangleShape2 // this.rectangleShape2.CornerRadius = 5; this.rectangleShape2.Location = new System.Drawing.Point(16, 481); this.rectangleShape2.Name = "rectangleShape2"; this.rectangleShape2.Size = new System.Drawing.Size(1119, 62); // // shapeContainer1 // this.shapeContainer1.Location = new System.Drawing.Point(0, 0); this.shapeContainer1.Margin = new System.Windows.Forms.Padding(0); this.shapeContainer1.Name = "shapeContainer1"; this.shapeContainer1.Shapes.AddRange(new Microsoft.VisualBasic.PowerPacks.Shape[] { this.S, this.rectangleShape2}); this.shapeContainer1.Size = new System.Drawing.Size(1159, 559); this.shapeContainer1.TabIndex = 65; this.shapeContainer1.TabStop = false; // // S // this.S.CornerRadius = 5; this.S.Location = new System.Drawing.Point(17, 43); this.S.Name = "S"; this.S.Size = new System.Drawing.Size(1117, 434); // // openFileDialog1 // this.openFileDialog1.FileName = "openFileDialog1"; // // txtPhotoPath // this.txtPhotoPath.Location = new System.Drawing.Point(666, 409); this.txtPhotoPath.Name = "txtPhotoPath"; this.txtPhotoPath.Size = new System.Drawing.Size(124, 20); this.txtPhotoPath.TabIndex = 63; this.txtPhotoPath.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtPhotoPath_KeyDown); // // btnBrowsePhoto // this.btnBrowsePhoto.Location = new System.Drawing.Point(796, 405); this.btnBrowsePhoto.Name = "btnBrowsePhoto"; this.btnBrowsePhoto.Size = new System.Drawing.Size(68, 27); this.btnBrowsePhoto.TabIndex = 64; this.btnBrowsePhoto.Text = "Browse"; this.btnBrowsePhoto.UseVisualStyleBackColor = true; this.btnBrowsePhoto.Click += new System.EventHandler(this.btnBrowsePhoto_Click); // // ddlMunicipality // this.ddlMunicipality.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlMunicipality.FormattingEnabled = true; this.ddlMunicipality.Items.AddRange(new object[] { "None", "Kathmandu", "Lalitpur", "Bhaktapur", "Banepa"}); this.ddlMunicipality.Location = new System.Drawing.Point(666, 129); this.ddlMunicipality.Name = "ddlMunicipality"; this.ddlMunicipality.Size = new System.Drawing.Size(198, 21); this.ddlMunicipality.TabIndex = 44; this.ddlMunicipality.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlMunicipality_KeyDown); // // ddlDistrict // this.ddlDistrict.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlDistrict.FormattingEnabled = true; this.ddlDistrict.Items.AddRange(new object[] { "None", "Kathmandu", "Lalitpur", "Bhaktapur", "Banepa"}); this.ddlDistrict.Location = new System.Drawing.Point(666, 155); this.ddlDistrict.Name = "ddlDistrict"; this.ddlDistrict.Size = new System.Drawing.Size(198, 21); this.ddlDistrict.TabIndex = 46; this.ddlDistrict.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlDistrict_KeyDown); // // btnIntroducerID // this.btnIntroducerID.Location = new System.Drawing.Point(422, 71); this.btnIntroducerID.Name = "btnIntroducerID"; this.btnIntroducerID.Size = new System.Drawing.Size(30, 23); this.btnIntroducerID.TabIndex = 9; this.btnIntroducerID.Text = "......"; this.btnIntroducerID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnIntroducerID.UseVisualStyleBackColor = true; this.btnIntroducerID.Click += new System.EventHandler(this.btnIntroducerID_Click); // // btnReferenceID // this.btnReferenceID.Location = new System.Drawing.Point(422, 96); this.btnReferenceID.Name = "btnReferenceID"; this.btnReferenceID.Size = new System.Drawing.Size(30, 23); this.btnReferenceID.TabIndex = 12; this.btnReferenceID.Text = "......"; this.btnReferenceID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnReferenceID.UseVisualStyleBackColor = true; this.btnReferenceID.Click += new System.EventHandler(this.btnReferenceID_Click); // // lblMembershipID // this.lblMembershipID.AutoSize = true; this.lblMembershipID.Location = new System.Drawing.Point(31, 55); this.lblMembershipID.Name = "lblMembershipID"; this.lblMembershipID.Size = new System.Drawing.Size(78, 13); this.lblMembershipID.TabIndex = 4; this.lblMembershipID.Text = "Membership ID"; // // btnMembershipID // this.btnMembershipID.Location = new System.Drawing.Point(421, 45); this.btnMembershipID.Name = "btnMembershipID"; this.btnMembershipID.Size = new System.Drawing.Size(30, 23); this.btnMembershipID.TabIndex = 6; this.btnMembershipID.Text = "......"; this.btnMembershipID.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnMembershipID.UseVisualStyleBackColor = true; this.btnMembershipID.Click += new System.EventHandler(this.btnMembershipID_Click); // // txtMembershipID // this.txtMembershipID.Location = new System.Drawing.Point(217, 48); this.txtMembershipID.MaxLength = 100; this.txtMembershipID.Name = "txtMembershipID"; this.txtMembershipID.Size = new System.Drawing.Size(198, 20); this.txtMembershipID.TabIndex = 5; this.txtMembershipID.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMembershipID_KeyDown); this.txtMembershipID.Validating += new System.ComponentModel.CancelEventHandler(this.txtMembershipID_Validating); // // btnAreaCode // this.btnAreaCode.Location = new System.Drawing.Point(870, 231); this.btnAreaCode.Name = "btnAreaCode"; this.btnAreaCode.Size = new System.Drawing.Size(30, 23); this.btnAreaCode.TabIndex = 53; this.btnAreaCode.Text = "......"; this.btnAreaCode.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; this.btnAreaCode.UseVisualStyleBackColor = true; this.btnAreaCode.Click += new System.EventHandler(this.btnAreCode_Click); // // txtAddress // this.txtAddress.Location = new System.Drawing.Point(666, 259); this.txtAddress.MaxLength = 1024; this.txtAddress.Multiline = true; this.txtAddress.Name = "txtAddress"; this.txtAddress.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; this.txtAddress.Size = new System.Drawing.Size(198, 59); this.txtAddress.TabIndex = 55; this.txtAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtAddress_KeyDown); // // mtxtCreatedDate // this.mtxtCreatedDate.Location = new System.Drawing.Point(493, 2); this.mtxtCreatedDate.Mask = "00/00/0000"; this.mtxtCreatedDate.Name = "mtxtCreatedDate"; this.mtxtCreatedDate.Size = new System.Drawing.Size(197, 20); this.mtxtCreatedDate.TabIndex = 14; this.mtxtCreatedDate.ValidatingType = typeof(System.DateTime); this.mtxtCreatedDate.Visible = false; this.mtxtCreatedDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mtxtCreatedDate_KeyDown); this.mtxtCreatedDate.Validating += new System.ComponentModel.CancelEventHandler(this.mtxtCreatedDate_Validating); // // mtxtDOB // this.mtxtDOB.Location = new System.Drawing.Point(217, 304); this.mtxtDOB.Mask = "00/00/0000"; this.mtxtDOB.Name = "mtxtDOB"; this.mtxtDOB.Size = new System.Drawing.Size(197, 20); this.mtxtDOB.TabIndex = 27; this.mtxtDOB.ValidatingType = typeof(System.DateTime); this.mtxtDOB.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mtxtDOB_KeyDown); this.mtxtDOB.Validating += new System.ComponentModel.CancelEventHandler(this.mtxtDOB_Validating); // // lblCustomerType // this.lblCustomerType.AutoSize = true; this.lblCustomerType.Location = new System.Drawing.Point(30, 132); this.lblCustomerType.Name = "lblCustomerType"; this.lblCustomerType.Size = new System.Drawing.Size(78, 13); this.lblCustomerType.TabIndex = 15; this.lblCustomerType.Text = "Customer Type"; // // ddlCustomerType // this.ddlCustomerType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList; this.ddlCustomerType.FormattingEnabled = true; this.ddlCustomerType.Location = new System.Drawing.Point(218, 125); this.ddlCustomerType.Name = "ddlCustomerType"; this.ddlCustomerType.Size = new System.Drawing.Size(196, 21); this.ddlCustomerType.TabIndex = 16; this.ddlCustomerType.KeyDown += new System.Windows.Forms.KeyEventHandler(this.ddlCustomerType_KeyDown); // // lblMROrientationDate // this.lblMROrientationDate.AutoSize = true; this.lblMROrientationDate.Location = new System.Drawing.Point(30, 161); this.lblMROrientationDate.Name = "lblMROrientationDate"; this.lblMROrientationDate.Size = new System.Drawing.Size(104, 13); this.lblMROrientationDate.TabIndex = 17; this.lblMROrientationDate.Text = "MR-Orientation Date"; // // mtxtMRDate // this.mtxtMRDate.Location = new System.Drawing.Point(217, 157); this.mtxtMRDate.Mask = "00/00/0000"; this.mtxtMRDate.Name = "mtxtMRDate"; this.mtxtMRDate.Size = new System.Drawing.Size(197, 20); this.mtxtMRDate.TabIndex = 18; this.mtxtMRDate.ValidatingType = typeof(System.DateTime); this.mtxtMRDate.KeyDown += new System.Windows.Forms.KeyEventHandler(this.mtxtMRDate_KeyDown); this.mtxtMRDate.Validating += new System.ComponentModel.CancelEventHandler(this.mtxtMRDate_Validating); // // pictureBox1 // this.pictureBox1.Location = new System.Drawing.Point(925, 53); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(200, 104); this.pictureBox1.TabIndex = 67; this.pictureBox1.TabStop = false; // // lblNoPhoto // this.lblNoPhoto.AutoSize = true; this.lblNoPhoto.Location = new System.Drawing.Point(985, 178); this.lblNoPhoto.Name = "lblNoPhoto"; this.lblNoPhoto.Size = new System.Drawing.Size(98, 13); this.lblNoPhoto.TabIndex = 68; this.lblNoPhoto.Text = "No photo to display"; this.lblNoPhoto.Visible = false; // // lblMarketingDate // this.lblMarketingDate.AutoSize = true; this.lblMarketingDate.Location = new System.Drawing.Point(418, 158); this.lblMarketingDate.Name = "lblMarketingDate"; this.lblMarketingDate.Size = new System.Drawing.Size(73, 13); this.lblMarketingDate.TabIndex = 69; this.lblMarketingDate.Text = "(dd/MM/yyyy)"; // // lblDateOfBirth // this.lblDateOfBirth.AutoSize = true; this.lblDateOfBirth.Location = new System.Drawing.Point(424, 307); this.lblDateOfBirth.Name = "lblDateOfBirth"; this.lblDateOfBirth.Size = new System.Drawing.Size(73, 13); this.lblDateOfBirth.TabIndex = 70; this.lblDateOfBirth.Text = "(dd/MM/yyyy)"; // // lblFullName // this.lblFullName.AutoSize = true; this.lblFullName.Location = new System.Drawing.Point(419, 224); this.lblFullName.Name = "lblFullName"; this.lblFullName.Size = new System.Drawing.Size(54, 13); this.lblFullName.TabIndex = 71; this.lblFullName.Text = "Full Name"; // // frmCustomer // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(1159, 559); this.Controls.Add(this.lblFullName); this.Controls.Add(this.lblDateOfBirth); this.Controls.Add(this.lblMarketingDate); this.Controls.Add(this.lblNoPhoto); this.Controls.Add(this.mtxtDOB); this.Controls.Add(this.mtxtMRDate); this.Controls.Add(this.mtxtCreatedDate); this.Controls.Add(this.lblMROrientationDate); this.Controls.Add(this.ddlCustomerType); this.Controls.Add(this.lblCustomerType); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.txtAddress); this.Controls.Add(this.btnAreaCode); this.Controls.Add(this.btnMembershipID); this.Controls.Add(this.txtMembershipID); this.Controls.Add(this.lblMembershipID); this.Controls.Add(this.btnReferenceID); this.Controls.Add(this.btnIntroducerID); this.Controls.Add(this.ddlDistrict); this.Controls.Add(this.ddlMunicipality); this.Controls.Add(this.txtPhotoPath); this.Controls.Add(this.btnBrowsePhoto); this.Controls.Add(this.lblAreaHeading); this.Controls.Add(this.btnLast); this.Controls.Add(this.btnNext); this.Controls.Add(this.btnPrevious); this.Controls.Add(this.btnFirst); this.Controls.Add(this.btnDelete); this.Controls.Add(this.btnEdit); this.Controls.Add(this.btnAdd); this.Controls.Add(this.ddlGender); this.Controls.Add(this.ddlMaritialStatus); this.Controls.Add(this.btnCancel); this.Controls.Add(this.btnOk); this.Controls.Add(this.lblAddressContact); this.Controls.Add(this.lblCreatedDate); this.Controls.Add(this.lblPersonalDetails); this.Controls.Add(this.lblPhoto); this.Controls.Add(this.txtEmailAddress); this.Controls.Add(this.lblEmailAddress); this.Controls.Add(this.txtMobileNo); this.Controls.Add(this.lblMobileNo); this.Controls.Add(this.txtHomeTelephone); this.Controls.Add(this.lblHomeTelephone); this.Controls.Add(this.lblAddress); this.Controls.Add(this.txtAreaCode); this.Controls.Add(this.lblAreaCode); this.Controls.Add(this.txtHouseNo); this.Controls.Add(this.lblHouseNo); this.Controls.Add(this.txtStreet); this.Controls.Add(this.lblStreet); this.Controls.Add(this.lblDistrict); this.Controls.Add(this.lblMunicipality); this.Controls.Add(this.ddlCity); this.Controls.Add(this.lblCity); this.Controls.Add(this.ddlCountry); this.Controls.Add(this.lblCountry); this.Controls.Add(this.txtPassportID); this.Controls.Add(this.lblPassportID); this.Controls.Add(this.txtLicenseID); this.Controls.Add(this.lblLicenseID); this.Controls.Add(this.txtCitizenshipID); this.Controls.Add(this.lblCitizenshipID); this.Controls.Add(this.ddlNationality); this.Controls.Add(this.lblNationality); this.Controls.Add(this.lblMaritialStatus); this.Controls.Add(this.lblDOB); this.Controls.Add(this.lblGender); this.Controls.Add(this.txtBenificiaryName); this.Controls.Add(this.lblBenificiaryName); this.Controls.Add(this.txtCustomerName); this.Controls.Add(this.lblCustomerName); this.Controls.Add(this.txtReferenceID); this.Controls.Add(this.lblReferenceID); this.Controls.Add(this.txtIntroducerID); this.Controls.Add(this.lblIntroducerID); this.Controls.Add(this.shapeContainer1); this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); this.MaximizeBox = false; this.MinimizeBox = false; this.Name = "frmCustomer"; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; this.Text = "FF: Customer"; this.Load += new System.EventHandler(this.frmCustomer_Load); this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.frmCustomer_KeyDown); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }
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(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmCurrencySetup)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdSave = new System.Windows.Forms.Button(); this.cmdDelete = new System.Windows.Forms.Button(); this.cmdNew = new System.Windows.Forms.Button(); this.grdDataGrid = new myDataGridView(); this.picButtons = new System.Windows.Forms.Panel(); this.cmdCancel = new System.Windows.Forms.Button(); this.cmdClose = new System.Windows.Forms.Button(); this.Label2 = new System.Windows.Forms.Label(); this.Label1 = new System.Windows.Forms.Label(); this.Shape1 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.picButtons.SuspendLayout(); this.SuspendLayout(); this.ToolTip1.Active = true; ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).BeginInit(); this.Text = "Currency Setup"; this.ClientSize = new System.Drawing.Size(419, 269); this.Location = new System.Drawing.Point(4, 23); this.ControlBox = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable; this.Enabled = true; this.KeyPreview = false; this.MaximizeBox = true; this.MinimizeBox = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.ShowInTaskbar = true; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmCurrencySetup"; this.cmdSave.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdSave.Text = "&Save"; this.cmdSave.Enabled = false; this.cmdSave.Size = new System.Drawing.Size(91, 29); this.cmdSave.Location = new System.Drawing.Point(120, 216); this.cmdSave.TabIndex = 8; this.cmdSave.BackColor = System.Drawing.SystemColors.Control; this.cmdSave.CausesValidation = true; this.cmdSave.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdSave.Cursor = System.Windows.Forms.Cursors.Default; this.cmdSave.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdSave.TabStop = true; this.cmdSave.Name = "cmdSave"; this.cmdDelete.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdDelete.Text = "&Delete"; this.cmdDelete.Size = new System.Drawing.Size(91, 29); this.cmdDelete.Location = new System.Drawing.Point(224, 216); this.cmdDelete.TabIndex = 7; this.cmdDelete.BackColor = System.Drawing.SystemColors.Control; this.cmdDelete.CausesValidation = true; this.cmdDelete.Enabled = true; this.cmdDelete.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdDelete.Cursor = System.Windows.Forms.Cursors.Default; this.cmdDelete.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdDelete.TabStop = true; this.cmdDelete.Name = "cmdDelete"; this.cmdNew.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdNew.Text = "A&dd New"; this.cmdNew.Size = new System.Drawing.Size(91, 29); this.cmdNew.Location = new System.Drawing.Point(16, 216); this.cmdNew.TabIndex = 6; this.cmdNew.BackColor = System.Drawing.SystemColors.Control; this.cmdNew.CausesValidation = true; this.cmdNew.Enabled = true; this.cmdNew.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdNew.Cursor = System.Windows.Forms.Cursors.Default; this.cmdNew.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdNew.TabStop = true; this.cmdNew.Name = "cmdNew"; //grdDataGrid.OcxState = CType(resources.GetObject("grdDataGrid.OcxState"), System.Windows.Forms.AxHost.State) this.grdDataGrid.Size = new System.Drawing.Size(401, 131); this.grdDataGrid.Location = new System.Drawing.Point(8, 72); this.grdDataGrid.TabIndex = 2; this.grdDataGrid.Name = "grdDataGrid"; this.picButtons.Dock = System.Windows.Forms.DockStyle.Top; this.picButtons.BackColor = System.Drawing.Color.Blue; this.picButtons.Size = new System.Drawing.Size(419, 39); this.picButtons.Location = new System.Drawing.Point(0, 0); this.picButtons.TabIndex = 0; this.picButtons.TabStop = false; this.picButtons.CausesValidation = true; this.picButtons.Enabled = true; this.picButtons.ForeColor = System.Drawing.SystemColors.ControlText; this.picButtons.Cursor = System.Windows.Forms.Cursors.Default; this.picButtons.RightToLeft = System.Windows.Forms.RightToLeft.No; this.picButtons.Visible = true; this.picButtons.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.picButtons.Name = "picButtons"; this.cmdCancel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdCancel.Text = "Undo"; this.cmdCancel.Size = new System.Drawing.Size(91, 29); this.cmdCancel.Location = new System.Drawing.Point(2, 2); this.cmdCancel.TabIndex = 5; this.cmdCancel.BackColor = System.Drawing.SystemColors.Control; this.cmdCancel.CausesValidation = true; this.cmdCancel.Enabled = true; this.cmdCancel.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdCancel.Cursor = System.Windows.Forms.Cursors.Default; this.cmdCancel.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdCancel.TabStop = true; this.cmdCancel.Name = "cmdCancel"; this.cmdClose.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdClose.Text = "E&xit"; this.cmdClose.Size = new System.Drawing.Size(91, 29); this.cmdClose.Location = new System.Drawing.Point(320, 2); this.cmdClose.TabIndex = 1; this.cmdClose.BackColor = System.Drawing.SystemColors.Control; this.cmdClose.CausesValidation = true; this.cmdClose.Enabled = true; this.cmdClose.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdClose.Cursor = System.Windows.Forms.Cursors.Default; this.cmdClose.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdClose.TabStop = true; this.cmdClose.Name = "cmdClose"; this.Label2.Text = "Last Update :"; this.Label2.Size = new System.Drawing.Size(87, 15); this.Label2.Location = new System.Drawing.Point(0, 272); this.Label2.TabIndex = 4; this.Label2.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label2.BackColor = System.Drawing.SystemColors.Control; this.Label2.Enabled = true; this.Label2.ForeColor = System.Drawing.SystemColors.ControlText; this.Label2.Cursor = System.Windows.Forms.Cursors.Default; this.Label2.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label2.UseMnemonic = true; this.Label2.Visible = true; this.Label2.AutoSize = false; this.Label2.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label2.Name = "Label2"; this.Label1.Text = "Available Currencies"; this.Label1.Size = new System.Drawing.Size(127, 17); this.Label1.Location = new System.Drawing.Point(4, 44); this.Label1.TabIndex = 3; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.SystemColors.Control; this.Label1.Enabled = true; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = false; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this.Shape1.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this.Shape1.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this.Shape1.Size = new System.Drawing.Size(413, 203); this.Shape1.Location = new System.Drawing.Point(2, 62); this.Shape1.BorderColor = System.Drawing.SystemColors.WindowText; this.Shape1.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this.Shape1.BorderWidth = 1; this.Shape1.FillColor = System.Drawing.Color.Black; this.Shape1.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this.Shape1.Visible = true; this.Shape1.Name = "Shape1"; this.Controls.Add(cmdSave); this.Controls.Add(cmdDelete); this.Controls.Add(cmdNew); this.Controls.Add(grdDataGrid); this.Controls.Add(picButtons); this.Controls.Add(Label2); this.Controls.Add(Label1); this.ShapeContainer1.Shapes.Add(Shape1); this.Controls.Add(ShapeContainer1); this.picButtons.Controls.Add(cmdCancel); this.picButtons.Controls.Add(cmdClose); ((System.ComponentModel.ISupportInitialize) this.grdDataGrid).EndInit(); this.picButtons.ResumeLayout(false); this.ResumeLayout(false); this.PerformLayout(); }
private void InitializeComponent() { System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(frmQuoteDelete)); this.components = new System.ComponentModel.Container(); this.ToolTip1 = new System.Windows.Forms.ToolTip(components); this.ShapeContainer1 = new Microsoft.VisualBasic.PowerPacks.ShapeContainer(); this.cmdDelete = new System.Windows.Forms.Button(); this.cmdExit = new System.Windows.Forms.Button(); this.lvData = new System.Windows.Forms.ListView(); this.Label1 = new System.Windows.Forms.Label(); this._Shape1_0 = new Microsoft.VisualBasic.PowerPacks.RectangleShape(); this.Shape1 = new RectangleShapeArray(components); this.SuspendLayout(); this.ToolTip1.Active = true; ((System.ComponentModel.ISupportInitialize) this.Shape1).BeginInit(); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; this.Text = "Delete unwanted quotes"; this.ClientSize = new System.Drawing.Size(695, 473); this.Location = new System.Drawing.Point(3, 22); this.ControlBox = false; this.KeyPreview = true; this.MaximizeBox = false; this.MinimizeBox = false; this.ShowInTaskbar = false; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.BackColor = System.Drawing.SystemColors.Control; this.Enabled = true; this.Cursor = System.Windows.Forms.Cursors.Default; this.RightToLeft = System.Windows.Forms.RightToLeft.No; this.HelpButton = false; this.WindowState = System.Windows.Forms.FormWindowState.Normal; this.Name = "frmQuoteDelete"; this.cmdDelete.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdDelete.Text = "&Delete"; this.cmdDelete.Size = new System.Drawing.Size(79, 34); this.cmdDelete.Location = new System.Drawing.Point(3, 3); this.cmdDelete.TabIndex = 3; this.cmdDelete.TabStop = false; this.cmdDelete.BackColor = System.Drawing.SystemColors.Control; this.cmdDelete.CausesValidation = true; this.cmdDelete.Enabled = true; this.cmdDelete.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdDelete.Cursor = System.Windows.Forms.Cursors.Default; this.cmdDelete.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdDelete.Name = "cmdDelete"; this.cmdExit.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; this.cmdExit.Text = "E&xit"; this.cmdExit.Size = new System.Drawing.Size(79, 34); this.cmdExit.Location = new System.Drawing.Point(609, 3); this.cmdExit.TabIndex = 2; this.cmdExit.TabStop = false; this.cmdExit.BackColor = System.Drawing.SystemColors.Control; this.cmdExit.CausesValidation = true; this.cmdExit.Enabled = true; this.cmdExit.ForeColor = System.Drawing.SystemColors.ControlText; this.cmdExit.Cursor = System.Windows.Forms.Cursors.Default; this.cmdExit.RightToLeft = System.Windows.Forms.RightToLeft.No; this.cmdExit.Name = "cmdExit"; this.lvData.Size = new System.Drawing.Size(664, 337); this.lvData.Location = new System.Drawing.Point(15, 114); this.lvData.TabIndex = 1; this.lvData.View = System.Windows.Forms.View.Details; this.lvData.LabelEdit = false; this.lvData.LabelWrap = true; this.lvData.HideSelection = true; this.lvData.CheckBoxes = true; this.lvData.FullRowSelect = true; this.lvData.ForeColor = System.Drawing.SystemColors.WindowText; this.lvData.BackColor = System.Drawing.SystemColors.Window; this.lvData.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; this.lvData.Name = "lvData"; this.Label1.Text = "&1. Affected Stock Items"; this.Label1.Size = new System.Drawing.Size(135, 13); this.Label1.Location = new System.Drawing.Point(18, 90); this.Label1.TabIndex = 0; this.Label1.TextAlign = System.Drawing.ContentAlignment.TopLeft; this.Label1.BackColor = System.Drawing.Color.Transparent; this.Label1.Enabled = true; this.Label1.ForeColor = System.Drawing.SystemColors.ControlText; this.Label1.Cursor = System.Windows.Forms.Cursors.Default; this.Label1.RightToLeft = System.Windows.Forms.RightToLeft.No; this.Label1.UseMnemonic = true; this.Label1.Visible = true; this.Label1.AutoSize = true; this.Label1.BorderStyle = System.Windows.Forms.BorderStyle.None; this.Label1.Name = "Label1"; this._Shape1_0.BackColor = System.Drawing.Color.FromArgb(192, 192, 255); this._Shape1_0.BackStyle = Microsoft.VisualBasic.PowerPacks.BackStyle.Opaque; this._Shape1_0.Size = new System.Drawing.Size(682, 355); this._Shape1_0.Location = new System.Drawing.Point(6, 105); this._Shape1_0.BorderColor = System.Drawing.SystemColors.WindowText; this._Shape1_0.BorderStyle = System.Drawing.Drawing2D.DashStyle.Solid; this._Shape1_0.BorderWidth = 1; this._Shape1_0.FillColor = System.Drawing.Color.Black; this._Shape1_0.FillStyle = Microsoft.VisualBasic.PowerPacks.FillStyle.Transparent; this._Shape1_0.Visible = true; this._Shape1_0.Name = "_Shape1_0"; this.Controls.Add(cmdDelete); this.Controls.Add(cmdExit); this.Controls.Add(lvData); this.Controls.Add(Label1); this.ShapeContainer1.Shapes.Add(_Shape1_0); this.Controls.Add(ShapeContainer1); this.Shape1.SetIndex(_Shape1_0, Convert.ToInt16(0)); ((System.ComponentModel.ISupportInitialize) this.Shape1).EndInit(); this.ResumeLayout(false); this.PerformLayout(); }