_ Partial Class PPInventoryForm Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. _ Protected Overrides Sub Dispose(ByVal disposing As Boolean) Try If disposing AndAlso components IsNot Nothing Then components.Dispose() End If Finally MyBase.Dispose(disposing) End Try End Sub 'Required by the Windows Form Designer Private components As System.ComponentModel.IContainer 'NOTE: The following procedure is required by the Windows Form Designer 'It can be modified using the Windows Form Designer. 'Do not modify it using the code editor. _ Private Sub InitializeComponent() Dim DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() Me.GroupBox2 = New System.Windows.Forms.GroupBox() Me.btnBack = New System.Windows.Forms.Button() Me.lblSearch = New System.Windows.Forms.Label() Me.txtSearch = New System.Windows.Forms.TextBox() Me.Panel1 = New System.Windows.Forms.Panel() Me.dg_inventory = New System.Windows.Forms.DataGridView() Me.GroupBox2.SuspendLayout() Me.Panel1.SuspendLayout() CType(Me.dg_inventory, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'GroupBox2 ' Me.GroupBox2.Controls.Add(Me.dg_inventory) Me.GroupBox2.Controls.Add(Me.Panel1) Me.GroupBox2.Dock = System.Windows.Forms.DockStyle.Fill Me.GroupBox2.Font = New System.Drawing.Font("Calibri", 9.75!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.GroupBox2.Location = New System.Drawing.Point(0, 0) Me.GroupBox2.Name = "GroupBox2" Me.GroupBox2.Size = New System.Drawing.Size(775, 594) Me.GroupBox2.TabIndex = 4 Me.GroupBox2.TabStop = False Me.GroupBox2.Text = "Inventory Part Number" ' 'btnBack ' Me.btnBack.Location = New System.Drawing.Point(659, 15) Me.btnBack.Name = "btnBack" Me.btnBack.Size = New System.Drawing.Size(90, 37) Me.btnBack.TabIndex = 0 Me.btnBack.Text = "Back" Me.btnBack.UseVisualStyleBackColor = True Me.btnBack.Visible = False ' 'lblSearch ' Me.lblSearch.AutoSize = True Me.lblSearch.Location = New System.Drawing.Point(9, 26) Me.lblSearch.Name = "lblSearch" Me.lblSearch.Size = New System.Drawing.Size(140, 15) Me.lblSearch.TabIndex = 1 Me.lblSearch.Text = "Search Serial/Partnum : " ' 'txtSearch ' Me.txtSearch.Location = New System.Drawing.Point(155, 23) Me.txtSearch.Name = "txtSearch" Me.txtSearch.Size = New System.Drawing.Size(190, 23) Me.txtSearch.TabIndex = 2 ' 'Panel1 ' Me.Panel1.Controls.Add(Me.txtSearch) Me.Panel1.Controls.Add(Me.lblSearch) Me.Panel1.Controls.Add(Me.btnBack) Me.Panel1.Dock = System.Windows.Forms.DockStyle.Top Me.Panel1.Location = New System.Drawing.Point(3, 19) Me.Panel1.Name = "Panel1" Me.Panel1.Size = New System.Drawing.Size(769, 69) Me.Panel1.TabIndex = 5 ' 'dg_inventory ' Me.dg_inventory.AllowUserToAddRows = False Me.dg_inventory.AllowUserToDeleteRows = False Me.dg_inventory.AllowUserToResizeColumns = False Me.dg_inventory.AllowUserToResizeRows = False DataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.InactiveCaption Me.dg_inventory.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle1 Me.dg_inventory.BackgroundColor = System.Drawing.SystemColors.Control Me.dg_inventory.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D Me.dg_inventory.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize Me.dg_inventory.Dock = System.Windows.Forms.DockStyle.Fill Me.dg_inventory.GridColor = System.Drawing.Color.SteelBlue Me.dg_inventory.Location = New System.Drawing.Point(3, 88) Me.dg_inventory.Name = "dg_inventory" Me.dg_inventory.RowHeadersVisible = False Me.dg_inventory.RowHeadersWidth = 20 Me.dg_inventory.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.DisableResizing Me.dg_inventory.Size = New System.Drawing.Size(769, 503) Me.dg_inventory.TabIndex = 17 ' 'DIDhistory ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(775, 594) Me.ControlBox = False Me.Controls.Add(Me.GroupBox2) Me.Font = New System.Drawing.Font("Calibri", 8.25!, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle Me.Name = "DIDhistory" Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual Me.Text = "Parts Preparation Inventory" Me.GroupBox2.ResumeLayout(False) Me.Panel1.ResumeLayout(False) Me.Panel1.PerformLayout() CType(Me.dg_inventory, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox Friend WithEvents Panel1 As System.Windows.Forms.Panel Friend WithEvents txtSearch As System.Windows.Forms.TextBox Friend WithEvents lblSearch As System.Windows.Forms.Label Friend WithEvents btnBack As System.Windows.Forms.Button Friend WithEvents dg_inventory As System.Windows.Forms.DataGridView End Class