-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmCategories.Designer.vb
More file actions
147 lines (143 loc) · 6.86 KB
/
Copy pathfrmCategories.Designer.vb
File metadata and controls
147 lines (143 loc) · 6.86 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmCategories
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.components = New System.ComponentModel.Container()
Me.btnSave = New System.Windows.Forms.Button()
Me.dgvCategories = New System.Windows.Forms.DataGridView()
Me.IdDataGridViewTextBoxColumn = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.NameDataGridViewTextBoxColumn = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.DescriptionDataGridViewTextBoxColumn = New System.Windows.Forms.DataGridViewTextBoxColumn()
Me.CategoriesBindingSource = New System.Windows.Forms.BindingSource(Me.components)
Me.InventoryDataSet = New InventorySystem.inventoryDataSet()
Me.CategoriesTableAdapter = New InventorySystem.inventoryDataSetTableAdapters.categoriesTableAdapter()
Me.btnDelete = New System.Windows.Forms.Button()
Me.btnRefresh = New System.Windows.Forms.Button()
CType(Me.dgvCategories, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.CategoriesBindingSource, System.ComponentModel.ISupportInitialize).BeginInit()
CType(Me.InventoryDataSet, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'btnSave
'
Me.btnSave.Location = New System.Drawing.Point(656, 63)
Me.btnSave.Name = "btnSave"
Me.btnSave.Size = New System.Drawing.Size(132, 37)
Me.btnSave.TabIndex = 1
Me.btnSave.Text = "Save Changes"
Me.btnSave.UseVisualStyleBackColor = True
'
'dgvCategories
'
Me.dgvCategories.AutoGenerateColumns = False
Me.dgvCategories.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.dgvCategories.Columns.AddRange(New System.Windows.Forms.DataGridViewColumn() {Me.IdDataGridViewTextBoxColumn, Me.NameDataGridViewTextBoxColumn, Me.DescriptionDataGridViewTextBoxColumn})
Me.dgvCategories.DataSource = Me.CategoriesBindingSource
Me.dgvCategories.Location = New System.Drawing.Point(12, 127)
Me.dgvCategories.Name = "dgvCategories"
Me.dgvCategories.RowHeadersWidth = 62
Me.dgvCategories.RowTemplate.Height = 28
Me.dgvCategories.Size = New System.Drawing.Size(776, 311)
Me.dgvCategories.TabIndex = 2
'
'IdDataGridViewTextBoxColumn
'
Me.IdDataGridViewTextBoxColumn.DataPropertyName = "id"
Me.IdDataGridViewTextBoxColumn.HeaderText = "id"
Me.IdDataGridViewTextBoxColumn.MinimumWidth = 8
Me.IdDataGridViewTextBoxColumn.Name = "IdDataGridViewTextBoxColumn"
Me.IdDataGridViewTextBoxColumn.Visible = False
Me.IdDataGridViewTextBoxColumn.Width = 150
'
'NameDataGridViewTextBoxColumn
'
Me.NameDataGridViewTextBoxColumn.DataPropertyName = "name"
Me.NameDataGridViewTextBoxColumn.HeaderText = "name"
Me.NameDataGridViewTextBoxColumn.MinimumWidth = 8
Me.NameDataGridViewTextBoxColumn.Name = "NameDataGridViewTextBoxColumn"
Me.NameDataGridViewTextBoxColumn.Width = 150
'
'DescriptionDataGridViewTextBoxColumn
'
Me.DescriptionDataGridViewTextBoxColumn.DataPropertyName = "description"
Me.DescriptionDataGridViewTextBoxColumn.HeaderText = "description"
Me.DescriptionDataGridViewTextBoxColumn.MinimumWidth = 8
Me.DescriptionDataGridViewTextBoxColumn.Name = "DescriptionDataGridViewTextBoxColumn"
Me.DescriptionDataGridViewTextBoxColumn.Width = 150
'
'CategoriesBindingSource
'
Me.CategoriesBindingSource.DataMember = "categories"
Me.CategoriesBindingSource.DataSource = Me.InventoryDataSet
'
'InventoryDataSet
'
Me.InventoryDataSet.DataSetName = "inventoryDataSet"
Me.InventoryDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema
'
'CategoriesTableAdapter
'
Me.CategoriesTableAdapter.ClearBeforeFill = True
'
'btnDelete
'
Me.btnDelete.Location = New System.Drawing.Point(497, 63)
Me.btnDelete.Name = "btnDelete"
Me.btnDelete.Size = New System.Drawing.Size(153, 37)
Me.btnDelete.TabIndex = 3
Me.btnDelete.Text = "Delete Seletected"
Me.btnDelete.UseVisualStyleBackColor = True
'
'btnRefresh
'
Me.btnRefresh.Location = New System.Drawing.Point(403, 63)
Me.btnRefresh.Name = "btnRefresh"
Me.btnRefresh.Size = New System.Drawing.Size(79, 37)
Me.btnRefresh.TabIndex = 4
Me.btnRefresh.Text = "Refresh"
Me.btnRefresh.UseVisualStyleBackColor = True
'
'frmCategories
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(9.0!, 20.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.ClientSize = New System.Drawing.Size(800, 450)
Me.Controls.Add(Me.btnRefresh)
Me.Controls.Add(Me.btnDelete)
Me.Controls.Add(Me.dgvCategories)
Me.Controls.Add(Me.btnSave)
Me.Name = "frmCategories"
Me.Text = "frmCategories"
CType(Me.dgvCategories, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.CategoriesBindingSource, System.ComponentModel.ISupportInitialize).EndInit()
CType(Me.InventoryDataSet, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
End Sub
Friend WithEvents btnSave As Button
Friend WithEvents dgvCategories As DataGridView
Friend WithEvents InventoryDataSet As inventoryDataSet
Friend WithEvents CategoriesBindingSource As BindingSource
Friend WithEvents CategoriesTableAdapter As inventoryDataSetTableAdapters.categoriesTableAdapter
Friend WithEvents IdDataGridViewTextBoxColumn As DataGridViewTextBoxColumn
Friend WithEvents NameDataGridViewTextBoxColumn As DataGridViewTextBoxColumn
Friend WithEvents DescriptionDataGridViewTextBoxColumn As DataGridViewTextBoxColumn
Friend WithEvents btnDelete As Button
Friend WithEvents btnRefresh As Button
End Class