-
Notifications
You must be signed in to change notification settings - Fork 0
/
StudentRegistrationForm.Designer.vb
288 lines (283 loc) · 11.5 KB
/
StudentRegistrationForm.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
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()>
Partial Class StudentRegistrationForm
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()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(StudentRegistrationForm))
Me.Button1 = New System.Windows.Forms.Button()
Me.FirstName = New System.Windows.Forms.Label()
Me.LastName = New System.Windows.Forms.Label()
Me.txtFirstName = New System.Windows.Forms.TextBox()
Me.txtLastName = New System.Windows.Forms.TextBox()
Me.StudentID = New System.Windows.Forms.Label()
Me.Dept = New System.Windows.Forms.Label()
Me.Password = New System.Windows.Forms.Label()
Me.ConfirmPassword = New System.Windows.Forms.Label()
Me.txtStudentId = New System.Windows.Forms.TextBox()
Me.txtPassword = New System.Windows.Forms.TextBox()
Me.txtConfirmPassword = New System.Windows.Forms.TextBox()
Me.Button2 = New System.Windows.Forms.Button()
Me.Label1 = New System.Windows.Forms.Label()
Me.txtDept = New System.Windows.Forms.ListBox()
Me.Label2 = New System.Windows.Forms.Label()
Me.DOBPicker = New System.Windows.Forms.DateTimePicker()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.EmailTextBox = New System.Windows.Forms.TextBox()
Me.CourseYearListBox = New System.Windows.Forms.ListBox()
Me.SuspendLayout()
'
'Button1
'
Me.Button1.Location = New System.Drawing.Point(542, 471)
Me.Button1.Name = "Button1"
Me.Button1.Size = New System.Drawing.Size(94, 29)
Me.Button1.TabIndex = 0
Me.Button1.Text = "Register"
Me.Button1.UseVisualStyleBackColor = True
'
'FirstName
'
Me.FirstName.AutoSize = True
Me.FirstName.Location = New System.Drawing.Point(218, 132)
Me.FirstName.Name = "FirstName"
Me.FirstName.Size = New System.Drawing.Size(80, 20)
Me.FirstName.TabIndex = 1
Me.FirstName.Text = "First Name"
'
'LastName
'
Me.LastName.AutoSize = True
Me.LastName.Location = New System.Drawing.Point(219, 235)
Me.LastName.Name = "LastName"
Me.LastName.Size = New System.Drawing.Size(79, 20)
Me.LastName.TabIndex = 2
Me.LastName.Text = "Last Name"
'
'txtFirstName
'
Me.txtFirstName.Location = New System.Drawing.Point(428, 129)
Me.txtFirstName.Name = "txtFirstName"
Me.txtFirstName.Size = New System.Drawing.Size(125, 27)
Me.txtFirstName.TabIndex = 3
'
'txtLastName
'
Me.txtLastName.Location = New System.Drawing.Point(428, 228)
Me.txtLastName.Name = "txtLastName"
Me.txtLastName.Size = New System.Drawing.Size(125, 27)
Me.txtLastName.TabIndex = 4
'
'StudentID
'
Me.StudentID.AutoSize = True
Me.StudentID.Location = New System.Drawing.Point(219, 330)
Me.StudentID.Name = "StudentID"
Me.StudentID.Size = New System.Drawing.Size(79, 20)
Me.StudentID.TabIndex = 5
Me.StudentID.Text = "Student ID"
'
'Dept
'
Me.Dept.AutoSize = True
Me.Dept.Location = New System.Drawing.Point(941, 136)
Me.Dept.Name = "Dept"
Me.Dept.Size = New System.Drawing.Size(89, 20)
Me.Dept.TabIndex = 6
Me.Dept.Text = "Department"
'
'Password
'
Me.Password.AutoSize = True
Me.Password.Location = New System.Drawing.Point(941, 231)
Me.Password.Name = "Password"
Me.Password.Size = New System.Drawing.Size(70, 20)
Me.Password.TabIndex = 7
Me.Password.Text = "Password"
'
'ConfirmPassword
'
Me.ConfirmPassword.AutoSize = True
Me.ConfirmPassword.Location = New System.Drawing.Point(941, 333)
Me.ConfirmPassword.Name = "ConfirmPassword"
Me.ConfirmPassword.Size = New System.Drawing.Size(127, 20)
Me.ConfirmPassword.TabIndex = 8
Me.ConfirmPassword.Text = "Confirm Password"
'
'txtStudentId
'
Me.txtStudentId.Location = New System.Drawing.Point(428, 330)
Me.txtStudentId.Name = "txtStudentId"
Me.txtStudentId.Size = New System.Drawing.Size(125, 27)
Me.txtStudentId.TabIndex = 9
'
'txtPassword
'
Me.txtPassword.Location = New System.Drawing.Point(1175, 225)
Me.txtPassword.Name = "txtPassword"
Me.txtPassword.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.txtPassword.Size = New System.Drawing.Size(125, 27)
Me.txtPassword.TabIndex = 11
'
'txtConfirmPassword
'
Me.txtConfirmPassword.Location = New System.Drawing.Point(1175, 330)
Me.txtConfirmPassword.Name = "txtConfirmPassword"
Me.txtConfirmPassword.PasswordChar = Global.Microsoft.VisualBasic.ChrW(42)
Me.txtConfirmPassword.Size = New System.Drawing.Size(125, 27)
Me.txtConfirmPassword.TabIndex = 12
'
'Button2
'
Me.Button2.Location = New System.Drawing.Point(1066, 471)
Me.Button2.Name = "Button2"
Me.Button2.Size = New System.Drawing.Size(94, 29)
Me.Button2.TabIndex = 13
Me.Button2.Text = "Cancel"
Me.Button2.UseVisualStyleBackColor = True
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.BackColor = System.Drawing.Color.FromArgb(CType(CType(255, Byte), Integer), CType(CType(224, Byte), Integer), CType(CType(192, Byte), Integer))
Me.Label1.Font = New System.Drawing.Font("Segoe UI", 12.0!, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point)
Me.Label1.Location = New System.Drawing.Point(598, 32)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(204, 28)
Me.Label1.TabIndex = 14
Me.Label1.Text = "REGISTRATION FORM"
'
'txtDept
'
Me.txtDept.FormattingEnabled = True
Me.txtDept.ItemHeight = 20
Me.txtDept.Items.AddRange(New Object() {"BCA", "BBA", "BA"})
Me.txtDept.Location = New System.Drawing.Point(1175, 132)
Me.txtDept.Name = "txtDept"
Me.txtDept.Size = New System.Drawing.Size(125, 24)
Me.txtDept.TabIndex = 15
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.Location = New System.Drawing.Point(632, 132)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(86, 20)
Me.Label2.TabIndex = 17
Me.Label2.Text = "Course Year"
'
'DOBPicker
'
Me.DOBPicker.Location = New System.Drawing.Point(747, 225)
Me.DOBPicker.Name = "DOBPicker"
Me.DOBPicker.Size = New System.Drawing.Size(115, 27)
Me.DOBPicker.TabIndex = 18
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Location = New System.Drawing.Point(632, 232)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(40, 20)
Me.Label3.TabIndex = 19
Me.Label3.Text = "DOB"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Location = New System.Drawing.Point(632, 330)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(46, 20)
Me.Label4.TabIndex = 20
Me.Label4.Text = "Email"
'
'EmailTextBox
'
Me.EmailTextBox.Location = New System.Drawing.Point(747, 327)
Me.EmailTextBox.Name = "EmailTextBox"
Me.EmailTextBox.Size = New System.Drawing.Size(125, 27)
Me.EmailTextBox.TabIndex = 21
'
'CourseYearListBox
'
Me.CourseYearListBox.FormattingEnabled = True
Me.CourseYearListBox.ItemHeight = 20
Me.CourseYearListBox.Items.AddRange(New Object() {"1", "2", "3"})
Me.CourseYearListBox.Location = New System.Drawing.Point(747, 129)
Me.CourseYearListBox.Name = "CourseYearListBox"
Me.CourseYearListBox.Size = New System.Drawing.Size(125, 24)
Me.CourseYearListBox.TabIndex = 22
'
'StudentRegistrationForm
'
Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 20.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.AppWorkspace
Me.BackgroundImage = CType(resources.GetObject("$this.BackgroundImage"), System.Drawing.Image)
Me.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Zoom
Me.ClientSize = New System.Drawing.Size(1585, 645)
Me.Controls.Add(Me.CourseYearListBox)
Me.Controls.Add(Me.EmailTextBox)
Me.Controls.Add(Me.Label4)
Me.Controls.Add(Me.Label3)
Me.Controls.Add(Me.DOBPicker)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.txtDept)
Me.Controls.Add(Me.Label1)
Me.Controls.Add(Me.Button2)
Me.Controls.Add(Me.txtConfirmPassword)
Me.Controls.Add(Me.txtPassword)
Me.Controls.Add(Me.txtStudentId)
Me.Controls.Add(Me.ConfirmPassword)
Me.Controls.Add(Me.Password)
Me.Controls.Add(Me.Dept)
Me.Controls.Add(Me.StudentID)
Me.Controls.Add(Me.txtLastName)
Me.Controls.Add(Me.txtFirstName)
Me.Controls.Add(Me.LastName)
Me.Controls.Add(Me.FirstName)
Me.Controls.Add(Me.Button1)
Me.DoubleBuffered = True
Me.Name = "StudentRegistrationForm"
Me.Text = "StudentRegistrationForm"
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Button1 As Button
Friend WithEvents FirstName As Label
Friend WithEvents LastName As Label
Friend WithEvents txtFirstName As TextBox
Friend WithEvents txtLastName As TextBox
Friend WithEvents StudentID As Label
Friend WithEvents Dept As Label
Friend WithEvents Password As Label
Friend WithEvents ConfirmPassword As Label
Friend WithEvents txtStudentId As TextBox
Friend WithEvents txtPassword As TextBox
Friend WithEvents txtConfirmPassword As TextBox
Friend WithEvents Button2 As Button
Friend WithEvents Label1 As Label
Friend WithEvents txtDept As ListBox
Friend WithEvents Label2 As Label
Friend WithEvents DOBPicker As DateTimePicker
Friend WithEvents Label3 As Label
Friend WithEvents Label4 As Label
Friend WithEvents EmailTextBox As TextBox
Friend WithEvents CourseYearListBox As ListBox
End Class