This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeInfo.vb
453 lines (300 loc) · 15.2 KB
/
ChangeInfo.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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
Imports System.Data.OleDb
Imports System.IO
Public Class ChangeInfo
Private Sub RoundButtonUpdate(btn As Button)
btn.FlatStyle = FlatStyle.Flat
btn.FlatAppearance.BorderSize = 0
btn.Cursor = Cursors.Hand
Dim Raduis As New Drawing2D.GraphicsPath
Raduis.StartFigure()
Raduis.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
Raduis.AddLine(10, 0, btn.Width - 20, 0)
Raduis.AddArc(New Rectangle(btn.Width - 20, 0, 20, 20), -90, 90)
Raduis.AddLine(btnUpdate.Width, 20, btn.Width, btn.Height - 10)
Raduis.AddArc(New Rectangle(btn.Width - 25, btn.Height - 25, 25, 25), 0, 90)
Raduis.AddLine(btn.Width - 10, btn.Width, 20, btn.Height)
Raduis.AddArc(New Rectangle(0, btn.Height - 20, 20, 20), 90, 90)
Raduis.CloseFigure()
btnUpdate.Region = New Region(Raduis)
End Sub
Private Sub RoundButtonClear(btn As Button)
btn.FlatStyle = FlatStyle.Flat
btn.FlatAppearance.BorderSize = 0
btn.Cursor = Cursors.Hand
Dim Raduis As New Drawing2D.GraphicsPath
Raduis.StartFigure()
Raduis.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
Raduis.AddLine(10, 0, btn.Width - 20, 0)
Raduis.AddArc(New Rectangle(btn.Width - 20, 0, 20, 20), -90, 90)
Raduis.AddLine(btnClear.Width, 20, btn.Width, btn.Height - 10)
Raduis.AddArc(New Rectangle(btn.Width - 25, btn.Height - 25, 25, 25), 0, 90)
Raduis.AddLine(btn.Width - 10, btn.Width, 20, btn.Height)
Raduis.AddArc(New Rectangle(0, btn.Height - 20, 20, 20), 90, 90)
Raduis.CloseFigure()
btnClear.Region = New Region(Raduis)
End Sub
Private Sub RoundButtonClose(btn As Button)
btn.FlatStyle = FlatStyle.Flat
btn.FlatAppearance.BorderSize = 0
btn.Cursor = Cursors.Hand
Dim Raduis As New Drawing2D.GraphicsPath
Raduis.StartFigure()
Raduis.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
Raduis.AddLine(10, 0, btn.Width - 20, 0)
Raduis.AddArc(New Rectangle(btn.Width - 20, 0, 20, 20), -90, 90)
Raduis.AddLine(btnClose.Width, 20, btn.Width, btn.Height - 10)
Raduis.AddArc(New Rectangle(btn.Width - 25, btn.Height - 25, 25, 25), 0, 90)
Raduis.AddLine(btn.Width - 10, btn.Width, 20, btn.Height)
Raduis.AddArc(New Rectangle(0, btn.Height - 20, 20, 20), 90, 90)
Raduis.CloseFigure()
btnClose.Region = New Region(Raduis)
End Sub
Private Sub RoundButtonCapture(btn As Button)
btn.FlatStyle = FlatStyle.Flat
btn.FlatAppearance.BorderSize = 0
btn.Cursor = Cursors.Hand
Dim Raduis As New Drawing2D.GraphicsPath
Raduis.StartFigure()
Raduis.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
Raduis.AddLine(10, 0, btn.Width - 20, 0)
Raduis.AddArc(New Rectangle(btn.Width - 20, 0, 20, 20), -90, 90)
Raduis.AddLine(btnCapture.Width, 20, btn.Width, btn.Height - 10)
Raduis.AddArc(New Rectangle(btn.Width - 25, btn.Height - 25, 25, 25), 0, 90)
Raduis.AddLine(btn.Width - 10, btn.Width, 20, btn.Height)
Raduis.AddArc(New Rectangle(0, btn.Height - 20, 20, 20), 90, 90)
Raduis.CloseFigure()
btnCapture.Region = New Region(Raduis)
End Sub
Private Sub RoundButtonBrowse(btn As Button)
btn.FlatStyle = FlatStyle.Flat
btn.FlatAppearance.BorderSize = 0
btn.Cursor = Cursors.Hand
Dim Raduis As New Drawing2D.GraphicsPath
Raduis.StartFigure()
Raduis.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
Raduis.AddLine(10, 0, btn.Width - 20, 0)
Raduis.AddArc(New Rectangle(btn.Width - 20, 0, 20, 20), -90, 90)
Raduis.AddLine(btnBrowse.Width, 20, btn.Width, btn.Height - 10)
Raduis.AddArc(New Rectangle(btn.Width - 25, btn.Height - 25, 25, 25), 0, 90)
Raduis.AddLine(btn.Width - 10, btn.Width, 20, btn.Height)
Raduis.AddArc(New Rectangle(0, btn.Height - 20, 20, 20), 90, 90)
Raduis.CloseFigure()
btnBrowse.Region = New Region(Raduis)
End Sub
Private Sub RoundButtonRemove(btn As Button)
btn.FlatStyle = FlatStyle.Flat
btn.FlatAppearance.BorderSize = 0
btn.Cursor = Cursors.Hand
Dim Raduis As New Drawing2D.GraphicsPath
Raduis.StartFigure()
Raduis.AddArc(New Rectangle(0, 0, 20, 20), 180, 90)
Raduis.AddLine(10, 0, btn.Width - 20, 0)
Raduis.AddArc(New Rectangle(btn.Width - 20, 0, 20, 20), -90, 90)
Raduis.AddLine(btnRemove.Width, 20, btn.Width, btn.Height - 10)
Raduis.AddArc(New Rectangle(btn.Width - 25, btn.Height - 25, 25, 25), 0, 90)
Raduis.AddLine(btn.Width - 10, btn.Width, 20, btn.Height)
Raduis.AddArc(New Rectangle(0, btn.Height - 20, 20, 20), 90, 90)
Raduis.CloseFigure()
btnRemove.Region = New Region(Raduis)
End Sub
Private Sub BtnCancel_Click(sender As Object, e As EventArgs) Handles btnClose.Click
MainForm.Dispose()
Dim User As New MainForm
Hide()
User.Show()
End Sub
Private Sub ChangeInfo_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
MainForm.Dispose()
Dim User As New MainForm
Hide()
User.Show()
End Sub
Private Function RequiredEntry() As Boolean
If txtUserName.Text = "" Or txtPOB.Text = "" Or txtEmailID.Text = "" Then
MsgBox("Please enter all information....", MsgBoxStyle.Critical, "Attention")
Return True
Exit Function
End If
End Function
Private Sub ChangeInfo_Load(sender As Object, e As EventArgs) Handles MyBase.Load
RoundButtonUpdate(btnUpdate)
RoundButtonClear(btnClear)
RoundButtonClose(btnClose)
RoundButtonCapture(btnCapture)
RoundButtonBrowse(btnBrowse)
RoundButtonRemove(btnRemove)
Try
Dim LoadConnection As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database\Pre-enrollment.accdb")
Dim LoadDataReader As OleDbDataReader
Dim LoadCommand As New OleDbCommand
If LoginForm.cmbFormState.Text = "Teacher" Then
If LoadConnection.State = ConnectionState.Open Then LoadConnection.Close()
LoadConnection.Open()
LoadCommand.CommandText = "select [TeacherID],[Username],[DateOfBirth],[PlaceOfBirth],[EmailID],[TeacherPic] from TeacherInfo where TeacherID = '" & LoginForm.txtTeacherUsername.Text & "'"
LoadCommand.Connection = LoadConnection
LoadDataReader = LoadCommand.ExecuteReader
If LoadDataReader.Read Then
txtUserName.Text = LoadDataReader(1).ToString()
dtpDOB.Text = LoadDataReader(2).ToString()
txtPOB.Text = LoadDataReader(3).ToString()
txtEmailID.Text = LCase(LoadDataReader(4)).ToString()
Dim bytTeacher As Byte() = LoadDataReader("TeacherPic")
Dim msTeacher As New MemoryStream(bytTeacher)
IDPicture.Image = Image.FromStream(msTeacher)
End If
LoadConnection.Close()
Return
End If
If LoginForm.cmbFormState.Text = "Admin" Then
If LoadConnection.State = ConnectionState.Open Then LoadConnection.Close()
LoadConnection.Open()
LoadCommand.CommandText = "select [AdminID],[Username],[DateOfBirth],[PlaceOfBirth],[EmailID],[AdminPic] from AdminInfo where AdminID = '" & LoginForm.txtAdminUsername.Text & "'"
LoadCommand.Connection = LoadConnection
LoadDataReader = LoadCommand.ExecuteReader
If LoadDataReader.Read Then
txtUserName.Text = LoadDataReader(1).ToString()
dtpDOB.Text = LoadDataReader(2).ToString()
txtPOB.Text = LoadDataReader(3).ToString()
txtEmailID.Text = LCase(LoadDataReader(4)).ToString()
Dim bytAdmin As Byte() = LoadDataReader("AdminPic")
Dim msAdmin As New MemoryStream(bytAdmin)
IDPicture.Image = Image.FromStream(msAdmin)
End If
LoadConnection.Close()
Return
End If
Catch ex As Exception
MsgBox(ex.Message(), MsgBoxStyle.Critical, "Error")
Exit Try
End Try
End Sub
Private Sub BtnClear_Click(sender As Object, e As EventArgs) Handles btnClear.Click
txtUserName.Clear()
dtpDOB.Value = Today
txtPOB.Clear()
txtEmailID.Clear()
IDPicture.Image = Image.FromFile(My.Application.Info.DirectoryPath & "\Image\personal.PNG")
End Sub
Private Sub BtnUpdate_Click(sender As Object, e As EventArgs) Handles btnUpdate.Click
If RequiredEntry() = True Then Return
Try
Dim UpdateConnection As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database\Pre-enrollment.accdb")
'Teacher Data Update
If LoginForm.cmbFormState.Text = "Teacher" Then
If UpdateConnection.State = ConnectionState.Open Then UpdateConnection.Close()
UpdateConnection.Open()
Dim TeacherCommand As New OleDbCommand("Update TeacherInfo Set Username=@UName,DateOfBirth=@DOB,PlaceOfBirth=@POB,EmailID=@EmailID,TeacherPic=@Pic Where (TeacherID='" & LoginForm.txtTeacherUsername.Text & "')", UpdateConnection)
' User name
Dim UserName As New OleDbParameter("@UName", OleDbType.VarWChar, 100) With {
.Value = txtUserName.Text.ToString()
}
TeacherCommand.Parameters.Add(UserName)
'Date of Birth
Dim DOB As New OleDbParameter("@DOB", OleDbType.Date, 25) With {
.Value = dtpDOB.Text.ToString()
}
TeacherCommand.Parameters.Add(DOB)
'Place of Birth
Dim POB As New OleDbParameter("@POB", OleDbType.VarWChar, 100) With {
.Value = txtPOB.Text.ToString()
}
TeacherCommand.Parameters.Add(POB)
'Email ID
Dim EmailID As New OleDbParameter("@EmailID", OleDbType.VarWChar, 100) With {
.Value = txtEmailID.Text.ToString()
}
TeacherCommand.Parameters.Add(EmailID)
Dim TeacherMemStream As New MemoryStream
Dim TeacherDataPic_Update As Byte()
IDPicture.Image.Save(TeacherMemStream, Imaging.ImageFormat.Png)
TeacherDataPic_Update = TeacherMemStream.GetBuffer()
TeacherMemStream.Read(TeacherDataPic_Update, 0, TeacherMemStream.Length)
' Teacher ID Picture
Dim TeacherPicture As New OleDbParameter("@Pic", SqlDbType.Image) With {
.Value = TeacherDataPic_Update
}
TeacherCommand.Parameters.Add(TeacherPicture)
If TeacherCommand.ExecuteNonQuery() Then
UpdateConnection.Close()
MsgBox("Your data updated successfully.", MsgBoxStyle.Information, "Data Updated")
MainForm.Dispose()
Close()
Else
MsgBox("Your data update failed.", MsgBoxStyle.Critical, "Update Failed")
Return
End If
End If
'Admin Data Update
If LoginForm.cmbFormState.Text = "Admin" Then
If UpdateConnection.State = ConnectionState.Open Then UpdateConnection.Close()
UpdateConnection.Open()
Dim AdminCommand As New OleDbCommand("Update AdminInfo Set Username=@UserName,DateOfBirth=@DOB,PlaceOfBirth=@POB,EmailID=@EmailID,AdminPic=@Pic Where (AdminID='" & LoginForm.txtAdminUsername.Text & "') ", UpdateConnection)
' Admin name
Dim AdminName As New OleDbParameter("@AdminName", OleDbType.VarWChar, 100) With {
.Value = txtUserName.Text.ToString()
}
AdminCommand.Parameters.Add(AdminName)
' Date of Birth
Dim DOB As New OleDbParameter("@DOB", OleDbType.Date, 100) With {
.Value = dtpDOB.Text.ToString()
}
AdminCommand.Parameters.Add(DOB)
' Place of Birth
Dim POB As New OleDbParameter("@POB", OleDbType.VarWChar, 100) With {
.Value = txtPOB.Text.ToString()
}
AdminCommand.Parameters.Add(POB)
' Email ID
Dim EmailID As New OleDbParameter("@EmailID", OleDbType.VarWChar, 100) With {
.Value = txtEmailID.Text.ToString()
}
AdminCommand.Parameters.Add(EmailID)
Dim AdminMemStream As New MemoryStream
Dim AdminDataPic_Update As Byte()
IDPicture.Image.Save(AdminMemStream, Imaging.ImageFormat.Png)
AdminDataPic_Update = AdminMemStream.GetBuffer()
AdminMemStream.Read(AdminDataPic_Update, 0, AdminMemStream.Length)
' Admin ID Picture
Dim AdminPicture As New OleDbParameter("@Pic", SqlDbType.Image) With {
.Value = AdminDataPic_Update
}
AdminCommand.Parameters.Add(AdminPicture)
If AdminCommand.ExecuteNonQuery() Then
UpdateConnection.Close()
MsgBox("Your data updated successfully.", MsgBoxStyle.Information, "Data Updated")
MainForm.Dispose()
Close()
Else
MsgBox("Your data update failed.", MsgBoxStyle.Critical, "Update Failed")
Return
End If
End If
Catch ex As Exception
MsgBox(ex.Message(), MsgBoxStyle.Critical, "Error")
Exit Sub
End Try
End Sub
Private Sub BtnRemove_Click(sender As Object, e As EventArgs) Handles btnRemove.Click
IDPicture.Image = Image.FromFile(My.Application.Info.DirectoryPath & "\Image\personal.PNG")
End Sub
Private Sub BtnBrowse_Click(sender As Object, e As EventArgs) Handles btnBrowse.Click
Dim OpenFile As New OpenFileDialog()
Try
With OpenFile
.FileName = ""
.Title = "Photo:"
.Filter = "Image files: (*.jpg)|*.jpg|(*.jpeg)|*.jpeg|(*.png)|*.png|(*.Gif)|*.Gif|(*.bmp)|*.bmp| All Files (*.*)|*.*"
If .ShowDialog = Windows.Forms.DialogResult.OK Then
IDPicture.Image = Image.FromFile(.FileName)
End If
End With
Catch ex As Exception
MsgBox(ex.Message(), MsgBoxStyle.Critical, "Error")
Exit Sub
End Try
End Sub
Private Sub BtnCapture_Click(sender As Object, e As EventArgs) Handles btnCapture.Click
cmbCapture.Text = "ChangeInfo"
CapturePicture.Show()
End Sub
End Class