-
Notifications
You must be signed in to change notification settings - Fork 0
/
Inventory.Designer.vb
93 lines (89 loc) · 3.72 KB
/
Inventory.Designer.vb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class Inventory
Inherits System.Windows.Forms.Form
'Form overrides dispose to clean up the component list.
<System.Diagnostics.DebuggerNonUserCode()> _
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.
<System.Diagnostics.DebuggerStepThrough()> _
Private Sub InitializeComponent()
Me.dgvData = New System.Windows.Forms.DataGridView()
Me.txtSearch = New System.Windows.Forms.TextBox()
Me.cbxItems = New System.Windows.Forms.ComboBox()
Me.cmdSearch = New System.Windows.Forms.Button()
CType(Me.dgvData, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'dgvData
'
Me.dgvData.AllowUserToAddRows = False
Me.dgvData.AllowUserToDeleteRows = False
Me.dgvData.Anchor = CType((((System.Windows.Forms.AnchorStyles.Top Or System.Windows.Forms.AnchorStyles.Bottom) _
Or System.Windows.Forms.AnchorStyles.Left) _
Or System.Windows.Forms.AnchorStyles.Right), System.Windows.Forms.AnchorStyles)
Me.dgvData.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgvData.Location = New System.Drawing.Point(23, 93)
Me.dgvData.Name = "dgvData"
Me.dgvData.ReadOnly = True
Me.dgvData.RowTemplate.Height = 25
Me.dgvData.Size = New System.Drawing.Size(748, 358)
Me.dgvData.TabIndex = 2
'
'txtSearch
'
Me.txtSearch.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle
Me.txtSearch.Location = New System.Drawing.Point(23, 13)
Me.txtSearch.Name = "txtSearch"
Me.txtSearch.Size = New System.Drawing.Size(196, 23)
Me.txtSearch.TabIndex = 1
'
'cbxItems
'
Me.cbxItems.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList
Me.cbxItems.FormattingEnabled = True
Me.cbxItems.Location = New System.Drawing.Point(367, 12)
Me.cbxItems.Name = "cbxItems"
Me.cbxItems.Size = New System.Drawing.Size(237, 23)
Me.cbxItems.TabIndex = 3
'
'cmdSearch
'
Me.cmdSearch.Location = New System.Drawing.Point(234, 13)
Me.cmdSearch.Name = "cmdSearch"
Me.cmdSearch.Size = New System.Drawing.Size(75, 23)
Me.cmdSearch.TabIndex = 0
Me.cmdSearch.Text = "Search"
Me.cmdSearch.UseVisualStyleBackColor = True
'
'Inventory
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(7.0!, 15.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(793, 467)
Me.Controls.Add(Me.cbxItems)
Me.Controls.Add(Me.dgvData)
Me.Controls.Add(Me.txtSearch)
Me.Controls.Add(Me.cmdSearch)
Me.Name = "Inventory"
Me.Text = "Inventory"
CType(Me.dgvData, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents dgvData As DataGridView
Friend WithEvents txtSearch As TextBox
Friend WithEvents cbxItems As ComboBox
Friend WithEvents cmdSearch As Button
End Class