_ Partial Class Logs 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 DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle() Me.Panel1 = New System.Windows.Forms.Panel() Me.lblSearch = New System.Windows.Forms.Label() Me.txtSearch = New System.Windows.Forms.TextBox() Me.dg_inventory = New System.Windows.Forms.DataGridView() Me.GroupBox2 = New System.Windows.Forms.GroupBox() Me.Panel1.SuspendLayout() CType(Me.dg_inventory, System.ComponentModel.ISupportInitialize).BeginInit() Me.GroupBox2.SuspendLayout() Me.SuspendLayout() ' 'Panel1 ' Me.Panel1.Controls.Add(Me.txtSearch) Me.Panel1.Controls.Add(Me.lblSearch) 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(848, 69) Me.Panel1.TabIndex = 5 ' '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 ' '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.InactiveCaption 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.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(848, 447) Me.dg_inventory.TabIndex = 17 ' '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(854, 538) Me.GroupBox2.TabIndex = 5 Me.GroupBox2.TabStop = False Me.GroupBox2.Text = "Inventory Logs" ' 'Logs ' Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!) Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font Me.ClientSize = New System.Drawing.Size(854, 538) Me.ControlBox = False Me.Controls.Add(Me.GroupBox2) Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog Me.Name = "Logs" Me.Text = "Logs" Me.Panel1.ResumeLayout(False) Me.Panel1.PerformLayout() CType(Me.dg_inventory, System.ComponentModel.ISupportInitialize).EndInit() Me.GroupBox2.ResumeLayout(False) Me.ResumeLayout(False) End Sub 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 dg_inventory As System.Windows.Forms.DataGridView Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox End Class