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
/
Copy pathChangePassword.vb
371 lines (219 loc) · 12.1 KB
/
ChangePassword.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
Imports System.Data.OleDb
Imports System.Text
Public Class ChangePassword
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
'Encryption
Public Function Encrypt(Encryption As String) As String
Dim encode As Byte() = New Byte(Encryption.Length - 1) {}
encode = Encoding.UTF8.GetBytes(Encryption)
Dim msg As String = Convert.ToBase64String(encode)
Return msg
End Function
Private Function RequiredEntry() As Boolean
If txtOldPass.Text = "" Or TxtNewPass.Text = "" Or txtConformPass.Text = "" Then
MsgBox("Please enter all information....", MsgBoxStyle.Critical, "Attention...")
txtOldPass.Focus()
Return True
Exit Function
End If
End Function
Private Sub CmdClear_Click(sender As Object, e As EventArgs) Handles btnClear.Click
txtOldPass.Clear()
TxtNewPass.Clear()
txtConformPass.Clear()
txtOldPass.Focus()
End Sub
Private Sub CmdEdit_Click(sender As Object, e As EventArgs) Handles btnUpdate.Click
If RequiredEntry() = True Then Return
Try
Dim okcancel As Integer = MessageBox.Show("Do you really want to update this record?", "Change Password", MessageBoxButtons.YesNo, MessageBoxIcon.Question)
If okcancel = vbCancel Then
Return
Else
Dim SelectConnection As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database\Pre-enrollment.accdb")
Dim SelectDataReader As OleDbDataReader
Dim SelectCommand As New OleDbCommand
If LoginForm.cmbFormState.Text = "Teacher" Then
If SelectConnection.State = ConnectionState.Open Then SelectConnection.Close()
SelectConnection.Open()
SelectCommand.CommandText = "SELECT [TeacherID],[Password] FROM TeacherInfo WHERE TeacherID = '" & LoginForm.txtTeacherUsername.Text & "'"
SelectCommand.Connection = SelectConnection
SelectDataReader = SelectCommand.ExecuteReader
If SelectDataReader.Read Then
If SelectDataReader("Password") = Encrypt(txtOldPass.Text) Then
If TxtNewPass.Text = txtConformPass.Text Then
Try
Dim UpdateConnection As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database\Pre-enrollment.accdb")
' Teacher Data Update
If UpdateConnection.State = ConnectionState.Open Then UpdateConnection.Close()
UpdateConnection.Open()
Dim TeacherCommand As New OleDbCommand("Update TeacherInfo Set [Password]=@Password Where (TeacherID='" & SelectDataReader("TeacherID") & "')", UpdateConnection)
' Password
Dim Password As New OleDbParameter("@Password", OleDbType.VarWChar, 200) With {
.Value = Encrypt(TxtNewPass.Text).ToString
}
TeacherCommand.Parameters.Add(Password)
If TeacherCommand.ExecuteNonQuery() Then
UpdateConnection.Close()
MsgBox("Your password update successfully...", MsgBoxStyle.Information, "Password Updated")
btnClear.PerformClick()
MainForm.Dispose()
Close()
Else
MsgBox("Password updation failed ", MsgBoxStyle.Critical, "Updation Failed")
Return
End If
Catch ex As Exception
MessageBox.Show(ex.Message.ToString(), "Password 'UPDATE' error")
Exit Sub
End Try
Else
MessageBox.Show("Password & conform password does not match", "Attention", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
Else
MsgBox("Old password is Wrong!!!", MsgBoxStyle.Critical, "Password Wrong")
End If
End If
Return
End If
If LoginForm.cmbFormState.Text = "Admin" Then
If SelectConnection.State = ConnectionState.Open Then SelectConnection.Close()
SelectConnection.Open()
SelectCommand.CommandText = "SELECT [AdminID],[Password] FROM AdminInfo WHERE AdminID = '" & LoginForm.txtAdminUsername.Text & "'"
SelectCommand.Connection = SelectConnection
SelectDataReader = SelectCommand.ExecuteReader
If SelectDataReader.Read Then
If SelectDataReader("Password") = Encrypt(txtOldPass.Text) Then
If TxtNewPass.Text = txtConformPass.Text Then
Try
Dim UpdateConnection As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\Database\Pre-enrollment.accdb")
' Admin Data Update
If UpdateConnection.State = ConnectionState.Open Then UpdateConnection.Close()
UpdateConnection.Open()
Dim TeacherCommand As New OleDbCommand("Update AdminInfo Set [Password]=@Password Where (AdminID ='" & SelectDataReader("AdminID") & "')", UpdateConnection)
' Password
Dim Password As New OleDbParameter("@Password", OleDbType.VarWChar, 200) With {
.Value = Encrypt(TxtNewPass.Text).ToString
}
TeacherCommand.Parameters.Add(Password)
If TeacherCommand.ExecuteNonQuery() Then
UpdateConnection.Close()
MsgBox("Your password update successfully...", MsgBoxStyle.Information, "Password Updated")
btnClear.PerformClick()
MainForm.Dispose()
Close()
Else
MsgBox("Password updation failed ", MsgBoxStyle.Critical, "Updation Failed")
Return
End If
Catch ex As Exception
MessageBox.Show(ex.Message.ToString(), "Password 'UPDATE' error")
Exit Sub
End Try
Else
MessageBox.Show("Password & Conform password does not match", "Attention", MessageBoxButtons.OK, MessageBoxIcon.Warning)
End If
Else
MsgBox("Old password is Wrong!!!", MsgBoxStyle.Critical, "Password Wrong")
Return
End If
End If
Return
End If
End If
Catch ex As Exception
MsgBox(ex.Message(), MsgBoxStyle.Critical, "Error Changing Password")
Exit Sub
End Try
End Sub
Private Sub ChangePassword_FormClosing(sender As Object, e As FormClosingEventArgs) Handles Me.FormClosing
MainForm.Dispose()
Dim User As New MainForm
Hide()
User.Show()
End Sub
Private Sub CmdCancel_Click(sender As Object, e As EventArgs) Handles btnClose.Click
Close()
End Sub
Private Sub TxtNewPass_KeyPress(sender As Object, e As KeyPressEventArgs) Handles TxtNewPass.KeyPress
Dim NotAllowed As String = "~`@%^&+={[}]()!:,;'><?/|\-.#+"
'Allowed letters numbers and ( _ $ *)
If e.KeyChar <> ControlChars.Back = True Then
If NotAllowed.IndexOf(e.KeyChar) = -1 = False Then
e.Handled = True
End If
End If
End Sub
Private Sub TxtOldPass_KeyPress(sender As Object, e As KeyPressEventArgs) Handles txtOldPass.KeyPress
Dim NotAllowed As String = "~`@%^&+={[}]()!:,;'><?/|\-.#+"
'Allowed letters numbers and ( _ $ *)
If e.KeyChar <> ControlChars.Back = True Then
If NotAllowed.IndexOf(e.KeyChar) = -1 = False Then
e.Handled = True
End If
End If
End Sub
Private Sub TxtConformPass_KeyPress(sender As Object, e As KeyPressEventArgs) Handles txtConformPass.KeyPress
Dim NotAllowed As String = "~`@%^&+={[}]()!:,;'><?/|\-.#+"
'Allowed letters numbers and ( _ $ *)
If e.KeyChar <> ControlChars.Back = True Then
If NotAllowed.IndexOf(e.KeyChar) = -1 = False Then
e.Handled = True
End If
End If
End Sub
Private Sub ChangePassword_Load(sender As Object, e As EventArgs) Handles MyBase.Load
btnClear.PerformClick()
txtOldPass.Focus()
RoundButtonUpdate(btnUpdate)
RoundButtonClear(btnClear)
RoundButtonClose(btnClose)
End Sub
End Class