-
Notifications
You must be signed in to change notification settings - Fork 1
/
frmAttendance.Designer.vb
executable file
·422 lines (418 loc) · 21.3 KB
/
frmAttendance.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
<Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
Partial Class frmAttendance
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 DataGridViewCellStyle1 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle2 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim DataGridViewCellStyle3 As System.Windows.Forms.DataGridViewCellStyle = New System.Windows.Forms.DataGridViewCellStyle()
Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(frmAttendance))
Me.Label1 = New System.Windows.Forms.Label()
Me.Label3 = New System.Windows.Forms.Label()
Me.Label4 = New System.Windows.Forms.Label()
Me.Label5 = New System.Windows.Forms.Label()
Me.GroupBox2 = New System.Windows.Forms.GroupBox()
Me.txtInTime = New System.Windows.Forms.TextBox()
Me.txtOutTime = New System.Windows.Forms.TextBox()
Me.BasicWorkingTime = New System.Windows.Forms.TextBox()
Me.Label9 = New System.Windows.Forms.Label()
Me.Status = New System.Windows.Forms.ComboBox()
Me.Label8 = New System.Windows.Forms.Label()
Me.OutTime = New System.Windows.Forms.DateTimePicker()
Me.InTime = New System.Windows.Forms.DateTimePicker()
Me.Label7 = New System.Windows.Forms.Label()
Me.Overtime = New System.Windows.Forms.TextBox()
Me.Submit = New System.Windows.Forms.Button()
Me.EmployeeName = New System.Windows.Forms.TextBox()
Me.EmployeeID = New System.Windows.Forms.ComboBox()
Me.WorkingDate = New System.Windows.Forms.DateTimePicker()
Me.Label6 = New System.Windows.Forms.Label()
Me.GroupBox1 = New System.Windows.Forms.GroupBox()
Me.Delete = New System.Windows.Forms.Button()
Me.Update_Record = New System.Windows.Forms.Button()
Me.Save = New System.Windows.Forms.Button()
Me.NewRecord = New System.Windows.Forms.Button()
Me.DataGridView1 = New System.Windows.Forms.DataGridView()
Me.Label2 = New System.Windows.Forms.Label()
Me.GroupBox2.SuspendLayout()
Me.GroupBox1.SuspendLayout()
CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).BeginInit()
Me.SuspendLayout()
'
'Label1
'
Me.Label1.AutoSize = True
Me.Label1.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label1.Location = New System.Drawing.Point(31, 105)
Me.Label1.Name = "Label1"
Me.Label1.Size = New System.Drawing.Size(122, 21)
Me.Label1.TabIndex = 0
Me.Label1.Text = "Employee Name"
'
'Label3
'
Me.Label3.AutoSize = True
Me.Label3.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label3.Location = New System.Drawing.Point(31, 41)
Me.Label3.Name = "Label3"
Me.Label3.Size = New System.Drawing.Size(42, 21)
Me.Label3.TabIndex = 2
Me.Label3.Text = "Date"
'
'Label4
'
Me.Label4.AutoSize = True
Me.Label4.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label4.Location = New System.Drawing.Point(31, 210)
Me.Label4.Name = "Label4"
Me.Label4.Size = New System.Drawing.Size(65, 21)
Me.Label4.TabIndex = 3
Me.Label4.Text = "In Time"
'
'Label5
'
Me.Label5.AutoSize = True
Me.Label5.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label5.Location = New System.Drawing.Point(31, 284)
Me.Label5.Name = "Label5"
Me.Label5.Size = New System.Drawing.Size(76, 21)
Me.Label5.TabIndex = 4
Me.Label5.Text = "Overtime"
'
'GroupBox2
'
Me.GroupBox2.Controls.Add(Me.txtInTime)
Me.GroupBox2.Controls.Add(Me.txtOutTime)
Me.GroupBox2.Controls.Add(Me.BasicWorkingTime)
Me.GroupBox2.Controls.Add(Me.Label9)
Me.GroupBox2.Controls.Add(Me.Status)
Me.GroupBox2.Controls.Add(Me.Label8)
Me.GroupBox2.Controls.Add(Me.OutTime)
Me.GroupBox2.Controls.Add(Me.InTime)
Me.GroupBox2.Controls.Add(Me.Label7)
Me.GroupBox2.Controls.Add(Me.Overtime)
Me.GroupBox2.Controls.Add(Me.Submit)
Me.GroupBox2.Controls.Add(Me.EmployeeName)
Me.GroupBox2.Controls.Add(Me.EmployeeID)
Me.GroupBox2.Controls.Add(Me.WorkingDate)
Me.GroupBox2.Controls.Add(Me.Label6)
Me.GroupBox2.Controls.Add(Me.Label5)
Me.GroupBox2.Controls.Add(Me.Label4)
Me.GroupBox2.Controls.Add(Me.Label3)
Me.GroupBox2.Controls.Add(Me.Label1)
Me.GroupBox2.Font = New System.Drawing.Font("Palatino Linotype", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.GroupBox2.Location = New System.Drawing.Point(31, 72)
Me.GroupBox2.Name = "GroupBox2"
Me.GroupBox2.Size = New System.Drawing.Size(547, 331)
Me.GroupBox2.TabIndex = 0
Me.GroupBox2.TabStop = False
Me.GroupBox2.Text = "Entry"
'
'txtInTime
'
Me.txtInTime.Location = New System.Drawing.Point(216, 209)
Me.txtInTime.Name = "txtInTime"
Me.txtInTime.ReadOnly = True
Me.txtInTime.Size = New System.Drawing.Size(137, 24)
Me.txtInTime.TabIndex = 19
Me.txtInTime.Visible = False
'
'txtOutTime
'
Me.txtOutTime.Location = New System.Drawing.Point(216, 247)
Me.txtOutTime.Name = "txtOutTime"
Me.txtOutTime.ReadOnly = True
Me.txtOutTime.Size = New System.Drawing.Size(137, 24)
Me.txtOutTime.TabIndex = 18
Me.txtOutTime.Visible = False
'
'BasicWorkingTime
'
Me.BasicWorkingTime.Location = New System.Drawing.Point(216, 136)
Me.BasicWorkingTime.Name = "BasicWorkingTime"
Me.BasicWorkingTime.ReadOnly = True
Me.BasicWorkingTime.Size = New System.Drawing.Size(76, 24)
Me.BasicWorkingTime.TabIndex = 17
'
'Label9
'
Me.Label9.AutoSize = True
Me.Label9.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label9.Location = New System.Drawing.Point(31, 140)
Me.Label9.Name = "Label9"
Me.Label9.Size = New System.Drawing.Size(152, 21)
Me.Label9.TabIndex = 16
Me.Label9.Text = "Basic Working Time"
'
'Status
'
Me.Status.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append
Me.Status.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems
Me.Status.FormattingEnabled = True
Me.Status.Items.AddRange(New Object() {"A", "P"})
Me.Status.Location = New System.Drawing.Point(216, 171)
Me.Status.Name = "Status"
Me.Status.Size = New System.Drawing.Size(44, 25)
Me.Status.TabIndex = 15
'
'Label8
'
Me.Label8.AutoSize = True
Me.Label8.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label8.Location = New System.Drawing.Point(31, 175)
Me.Label8.Name = "Label8"
Me.Label8.Size = New System.Drawing.Size(54, 21)
Me.Label8.TabIndex = 14
Me.Label8.Text = "Status"
'
'OutTime
'
Me.OutTime.CalendarFont = New System.Drawing.Font("Minion Pro", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.OutTime.CustomFormat = "hh:mm tt"
Me.OutTime.Enabled = False
Me.OutTime.Font = New System.Drawing.Font("Minion Pro", 9.749999!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.OutTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom
Me.OutTime.Location = New System.Drawing.Point(216, 246)
Me.OutTime.Name = "OutTime"
Me.OutTime.Size = New System.Drawing.Size(137, 25)
Me.OutTime.TabIndex = 4
'
'InTime
'
Me.InTime.CalendarFont = New System.Drawing.Font("Minion Pro", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.InTime.CustomFormat = "hh:mm tt"
Me.InTime.Enabled = False
Me.InTime.Font = New System.Drawing.Font("Minion Pro", 9.749999!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.InTime.Format = System.Windows.Forms.DateTimePickerFormat.Custom
Me.InTime.Location = New System.Drawing.Point(216, 209)
Me.InTime.Name = "InTime"
Me.InTime.Size = New System.Drawing.Size(137, 25)
Me.InTime.TabIndex = 3
'
'Label7
'
Me.Label7.AutoSize = True
Me.Label7.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label7.Location = New System.Drawing.Point(31, 246)
Me.Label7.Name = "Label7"
Me.Label7.Size = New System.Drawing.Size(77, 21)
Me.Label7.TabIndex = 13
Me.Label7.Text = "Out Time"
'
'Overtime
'
Me.Overtime.Location = New System.Drawing.Point(216, 284)
Me.Overtime.Name = "Overtime"
Me.Overtime.ReadOnly = True
Me.Overtime.Size = New System.Drawing.Size(76, 24)
Me.Overtime.TabIndex = 5
'
'Submit
'
Me.Submit.Font = New System.Drawing.Font("Palatino Linotype", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Submit.Location = New System.Drawing.Point(450, 34)
Me.Submit.Name = "Submit"
Me.Submit.Size = New System.Drawing.Size(69, 29)
Me.Submit.TabIndex = 8
Me.Submit.Text = "&Submit"
Me.Submit.UseVisualStyleBackColor = True
'
'EmployeeName
'
Me.EmployeeName.Location = New System.Drawing.Point(216, 102)
Me.EmployeeName.Name = "EmployeeName"
Me.EmployeeName.ReadOnly = True
Me.EmployeeName.Size = New System.Drawing.Size(303, 24)
Me.EmployeeName.TabIndex = 2
'
'EmployeeID
'
Me.EmployeeID.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest
Me.EmployeeID.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.ListItems
Me.EmployeeID.FormattingEnabled = True
Me.EmployeeID.Location = New System.Drawing.Point(216, 71)
Me.EmployeeID.Name = "EmployeeID"
Me.EmployeeID.Size = New System.Drawing.Size(201, 25)
Me.EmployeeID.TabIndex = 1
'
'WorkingDate
'
Me.WorkingDate.CalendarFont = New System.Drawing.Font("Minion Pro", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.WorkingDate.CustomFormat = "dd/MMM/yyyy"
Me.WorkingDate.Font = New System.Drawing.Font("Minion Pro", 9.749999!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.WorkingDate.Format = System.Windows.Forms.DateTimePickerFormat.Custom
Me.WorkingDate.Location = New System.Drawing.Point(216, 38)
Me.WorkingDate.Name = "WorkingDate"
Me.WorkingDate.Size = New System.Drawing.Size(137, 25)
Me.WorkingDate.TabIndex = 0
'
'Label6
'
Me.Label6.AutoSize = True
Me.Label6.Font = New System.Drawing.Font("Palatino Linotype", 11.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label6.Location = New System.Drawing.Point(31, 73)
Me.Label6.Name = "Label6"
Me.Label6.Size = New System.Drawing.Size(99, 21)
Me.Label6.TabIndex = 7
Me.Label6.Text = "Employee ID"
'
'GroupBox1
'
Me.GroupBox1.Controls.Add(Me.Delete)
Me.GroupBox1.Controls.Add(Me.Update_Record)
Me.GroupBox1.Controls.Add(Me.Save)
Me.GroupBox1.Controls.Add(Me.NewRecord)
Me.GroupBox1.Location = New System.Drawing.Point(858, 73)
Me.GroupBox1.Name = "GroupBox1"
Me.GroupBox1.Size = New System.Drawing.Size(134, 176)
Me.GroupBox1.TabIndex = 1
Me.GroupBox1.TabStop = False
'
'Delete
'
Me.Delete.Enabled = False
Me.Delete.Font = New System.Drawing.Font("Palatino Linotype", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Delete.Location = New System.Drawing.Point(16, 133)
Me.Delete.Name = "Delete"
Me.Delete.Size = New System.Drawing.Size(99, 29)
Me.Delete.TabIndex = 3
Me.Delete.Text = "&Delete"
Me.Delete.UseVisualStyleBackColor = True
'
'Update_Record
'
Me.Update_Record.Enabled = False
Me.Update_Record.Font = New System.Drawing.Font("Palatino Linotype", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Update_Record.Location = New System.Drawing.Point(16, 98)
Me.Update_Record.Name = "Update_Record"
Me.Update_Record.Size = New System.Drawing.Size(99, 29)
Me.Update_Record.TabIndex = 2
Me.Update_Record.Text = "&Update"
Me.Update_Record.UseVisualStyleBackColor = True
'
'Save
'
Me.Save.Font = New System.Drawing.Font("Palatino Linotype", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Save.Location = New System.Drawing.Point(16, 63)
Me.Save.Name = "Save"
Me.Save.Size = New System.Drawing.Size(99, 29)
Me.Save.TabIndex = 1
Me.Save.Text = "&Save"
Me.Save.UseVisualStyleBackColor = True
'
'NewRecord
'
Me.NewRecord.Font = New System.Drawing.Font("Palatino Linotype", 9.75!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.NewRecord.Location = New System.Drawing.Point(16, 28)
Me.NewRecord.Name = "NewRecord"
Me.NewRecord.Size = New System.Drawing.Size(99, 29)
Me.NewRecord.TabIndex = 0
Me.NewRecord.Text = "&New"
Me.NewRecord.UseVisualStyleBackColor = True
'
'DataGridView1
'
Me.DataGridView1.BackgroundColor = System.Drawing.SystemColors.ButtonHighlight
DataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control
DataGridViewCellStyle1.Font = New System.Drawing.Font("Palatino Linotype", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText
DataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.DataGridView1.ColumnHeadersDefaultCellStyle = DataGridViewCellStyle1
Me.DataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize
Me.DataGridView1.Location = New System.Drawing.Point(596, 79)
Me.DataGridView1.Name = "DataGridView1"
DataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleLeft
DataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control
DataGridViewCellStyle2.Font = New System.Drawing.Font("Palatino Linotype", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
DataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText
DataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight
DataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText
DataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.[True]
Me.DataGridView1.RowHeadersDefaultCellStyle = DataGridViewCellStyle2
DataGridViewCellStyle3.Font = New System.Drawing.Font("Palatino Linotype", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.DataGridView1.RowsDefaultCellStyle = DataGridViewCellStyle3
Me.DataGridView1.Size = New System.Drawing.Size(244, 417)
Me.DataGridView1.TabIndex = 9
'
'Label2
'
Me.Label2.AutoSize = True
Me.Label2.BackColor = System.Drawing.SystemColors.ControlLight
Me.Label2.Font = New System.Drawing.Font("Palatino Linotype", 14.25!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte))
Me.Label2.Location = New System.Drawing.Point(26, 27)
Me.Label2.Name = "Label2"
Me.Label2.Size = New System.Drawing.Size(207, 26)
Me.Label2.TabIndex = 10
Me.Label2.Text = "Employee Attendance"
'
'frmAttendance
'
Me.AcceptButton = Me.Save
Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
Me.BackColor = System.Drawing.SystemColors.ButtonHighlight
Me.ClientSize = New System.Drawing.Size(1015, 522)
Me.Controls.Add(Me.Label2)
Me.Controls.Add(Me.DataGridView1)
Me.Controls.Add(Me.GroupBox1)
Me.Controls.Add(Me.GroupBox2)
Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog
Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
Me.MaximizeBox = False
Me.Name = "frmAttendance"
Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
Me.Text = "Attendance"
Me.GroupBox2.ResumeLayout(False)
Me.GroupBox2.PerformLayout()
Me.GroupBox1.ResumeLayout(False)
CType(Me.DataGridView1, System.ComponentModel.ISupportInitialize).EndInit()
Me.ResumeLayout(False)
Me.PerformLayout()
End Sub
Friend WithEvents Label1 As System.Windows.Forms.Label
Friend WithEvents Label3 As System.Windows.Forms.Label
Friend WithEvents Label4 As System.Windows.Forms.Label
Friend WithEvents Label5 As System.Windows.Forms.Label
Friend WithEvents GroupBox2 As System.Windows.Forms.GroupBox
Friend WithEvents Label6 As System.Windows.Forms.Label
Friend WithEvents WorkingDate As System.Windows.Forms.DateTimePicker
Friend WithEvents EmployeeID As System.Windows.Forms.ComboBox
Friend WithEvents EmployeeName As System.Windows.Forms.TextBox
Friend WithEvents GroupBox1 As System.Windows.Forms.GroupBox
Friend WithEvents Delete As System.Windows.Forms.Button
Friend WithEvents Update_Record As System.Windows.Forms.Button
Friend WithEvents Save As System.Windows.Forms.Button
Friend WithEvents NewRecord As System.Windows.Forms.Button
Friend WithEvents Submit As System.Windows.Forms.Button
Friend WithEvents DataGridView1 As System.Windows.Forms.DataGridView
Friend WithEvents Overtime As System.Windows.Forms.TextBox
Friend WithEvents OutTime As System.Windows.Forms.DateTimePicker
Friend WithEvents InTime As System.Windows.Forms.DateTimePicker
Friend WithEvents Label7 As System.Windows.Forms.Label
Friend WithEvents Label8 As System.Windows.Forms.Label
Friend WithEvents Status As System.Windows.Forms.ComboBox
Friend WithEvents Label9 As System.Windows.Forms.Label
Friend WithEvents BasicWorkingTime As System.Windows.Forms.TextBox
Friend WithEvents txtInTime As System.Windows.Forms.TextBox
Friend WithEvents txtOutTime As System.Windows.Forms.TextBox
Friend WithEvents Label2 As System.Windows.Forms.Label
End Class