_ 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() Me.components = New System.ComponentModel.Container() Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() Me.Timer1 = New System.Windows.Forms.Timer(Me.components) Me.GroupBox2 = New System.Windows.Forms.GroupBox() Me.dg_inventory = New System.Windows.Forms.DataGridView() Me.GroupBox2.SuspendLayout() CType(Me.dg_inventory, System.ComponentModel.ISupportInitialize).BeginInit() Me.SuspendLayout() ' 'Timer1 ' ' 'GroupBox2 ' Me.GroupBox2.Controls.Add(Me.dg_inventory) 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(6, 3) Me.GroupBox2.Name = "GroupBox2" Me.GroupBox2.Size = New System.Drawing.Size(752, 587) Me.GroupBox2.TabIndex = 4 Me.GroupBox2.TabStop = False Me.GroupBox2.Text = "Inventory Part Number" ' 'dg_inventory ' Me.dg_inventory.AllowUserToAddRows = False Me.dg_inventory.AllowUserToDeleteRows = False Me.dg_inventory.AllowUserToResizeColumns = False Me.dg_inventory.AllowUserToResizeRows = False DataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.InactiveCaptionText Me.dg_inventory.AlternatingRowsDefaultCellStyle = DataGridViewCellStyle2 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.GridColor = System.Drawing.Color.SteelBlue Me.dg_inventory.Location = New System.Drawing.Point(6, 15) 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(740, 566) Me.dg_inventory.TabIndex = 17 ' 'PPInventoryForm ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(764, 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 = "PPInventoryForm" Me.StartPosition = System.Windows.Forms.FormStartPosition.Manual Me.Text = "Parts Preparation Inventory" Me.GroupBox2.ResumeLayout(False) CType(Me.dg_inventory, System.ComponentModel.ISupportInitialize).EndInit() Me.ResumeLayout(False) End Sub Friend WithEvents Timer1 As System.Windows.Forms.Timer Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox Friend WithEvents dg_inventory As System.Windows.Forms.DataGridView End Class