forked from mohany203/Spectra-Laboratory
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstaff.vb
More file actions
480 lines (388 loc) · 19.9 KB
/
Copy pathstaff.vb
File metadata and controls
480 lines (388 loc) · 19.9 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
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
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
Imports System.Data.SqlClient
Imports System.Windows.Forms.VisualStyles.VisualStyleElement
Public Class staff
Private Sub staff_Load(sender As Object, e As EventArgs) Handles MyBase.Load
database.GetSQLConnection()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs)
End Sub
Private Sub RadioButton2_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton2.CheckedChanged
End Sub
Private Sub TextBox3_TextChanged(sender As Object, e As EventArgs) Handles TextBox3.TextChanged
End Sub
Private Sub Label4_Click(sender As Object, e As EventArgs) Handles Label4.Click
End Sub
Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
Dim flag As Integer = 0
While flag < 1
If RadioButton1.Checked Then
flag = 1 ' Staff info only
ElseIf RadioButton2.Checked Then
flag = 2 'Staff + salaries
ElseIf RadioButton3.Checked Then
flag = 3 'staff + department
ElseIf RadioButton4.Checked Then
flag = 4 'all info
Else
MessageBox.Show("Please choose searching method!")
Return
End If
End While
' displaying data
Dim staffonly As String = "select * from STAFF where Staff_ID = " & TextBox1.Text.Trim() & ""
Dim staffandsalary As String = "SELECT s.NAME, s.PHONE_NUMBER, s.ADDRESS, s.DNO, sa.SALARY, sa.EFFECTIVE_DATE
FROM
STAFF s
INNER JOIN
SALARY sa ON s.Staff_ID = sa.EMPLOYEE_ID
WHERE
s.Staff_ID = " & TextBox1.Text.Trim() & ""
Dim staffanddepartment As String = "SELECT s.NAME, s.PHONE_NUMBER, s.ADDRESS, d.Dnmae as Department_Name, s.DNO
FROM
STAFF s
INNER JOIN
Department d ON s.Dno = d.dno
WHERE
s.Staff_ID = " & TextBox1.Text.Trim() & ""
Dim all As String = "SELECT
s.Staff_ID,
s.NAME,
s.PHONE_NUMBER,
s.ADDRESS,
sa.SALARY,
sa.EFFECTIVE_DATE,
d.DNMAE AS Department_Name
FROM
STAFF s
INNER JOIN
SALARY sa ON s.Staff_ID = sa.EMPLOYEE_ID
INNER JOIN
DEPARTMENT d ON s.DNO = d.DNO
WHERE s.Staff_ID = " & TextBox1.Text.Trim() & ""
If flag = 1 Then
Dim adapter As New SqlDataAdapter(staffonly, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 2 Then
Dim adapter As New SqlDataAdapter(staffandsalary, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 3 Then
Dim adapter As New SqlDataAdapter(staffanddepartment, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 4 Then
Dim adapter As New SqlDataAdapter(all, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
End If
End Sub
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
Dim flag As Integer = 0
While flag < 1
If RadioButton1.Checked Then
flag = 1 ' Staff info only
ElseIf RadioButton2.Checked Then
flag = 2 'Staff + salaries
ElseIf RadioButton3.Checked Then
flag = 3 'staff + department
ElseIf RadioButton4.Checked Then
flag = 4 'all info
Else
MessageBox.Show("Please choose searching method!")
Return
End If
End While
' displaying data
Dim staffonly As String = "select * from STAFF where Name LIKE '%" & TextBox2.Text.Trim() & "%'"
Dim staffandsalary As String = "SELECT s.NAME, s.PHONE_NUMBER, s.ADDRESS, s.DNO, sa.SALARY, sa.EFFECTIVE_DATE
FROM
STAFF s
INNER JOIN
SALARY sa ON s.Staff_ID = sa.EMPLOYEE_ID
WHERE
s.Name LIKE '%" & TextBox2.Text.Trim() & "%'"
Dim staffanddepartment As String = "SELECT s.NAME, s.PHONE_NUMBER, s.ADDRESS, d.Dnmae as Department_Name, s.DNO
FROM
STAFF s
INNER JOIN
Department d ON s.Dno = d.dno
WHERE
s.Name LIKE '%" & TextBox2.Text.Trim() & "%'"
Dim all As String = "SELECT
s.Staff_ID,
s.NAME,
s.PHONE_NUMBER,
s.ADDRESS,
sa.SALARY,
sa.EFFECTIVE_DATE,
d.DNMAE AS Department_Name
FROM
STAFF s
INNER JOIN
SALARY sa ON s.Staff_ID = sa.EMPLOYEE_ID
INNER JOIN
DEPARTMENT d ON s.DNO = d.DNO
WHERE s.Name LIKE '%" & TextBox2.Text.Trim() & "%'"
If flag = 1 Then
Dim adapter As New SqlDataAdapter(staffonly, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 2 Then
Dim adapter As New SqlDataAdapter(staffandsalary, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 3 Then
Dim adapter As New SqlDataAdapter(staffanddepartment, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 4 Then
Dim adapter As New SqlDataAdapter(all, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
End If
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
Dim flag As Integer = 0
While flag < 1
If RadioButton1.Checked Then
flag = 1 ' Staff info only
ElseIf RadioButton2.Checked Then
flag = 2 'Staff + salaries
ElseIf RadioButton3.Checked Then
flag = 3 'staff + department
ElseIf RadioButton4.Checked Then
flag = 4 'all info
Else
MessageBox.Show("Please choose searching method!")
Return
End If
End While
' displaying data
Dim staffonly As String = "select * from STAFF "
Dim staffandsalary As String = "SELECT s.NAME, s.PHONE_NUMBER, s.ADDRESS, s.DNO, sa.SALARY, sa.EFFECTIVE_DATE
FROM
STAFF s
INNER JOIN
SALARY sa ON s.Staff_ID = sa.EMPLOYEE_ID
"
Dim staffanddepartment As String = "SELECT s.NAME, s.PHONE_NUMBER, s.ADDRESS, d.Dnmae as Department_Name, s.DNO
FROM
STAFF s
INNER JOIN
Department d ON s.Dno = d.dno
"
Dim all As String = "SELECT
s.Staff_ID,
s.NAME,
s.PHONE_NUMBER,
s.ADDRESS,
sa.SALARY,
sa.EFFECTIVE_DATE,
d.DNMAE AS Department_Name
FROM
STAFF s
INNER JOIN
SALARY sa ON s.Staff_ID = sa.EMPLOYEE_ID
INNER JOIN
DEPARTMENT d ON s.DNO = d.DNO
"
If flag = 1 Then
Dim adapter As New SqlDataAdapter(staffonly, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 2 Then
Dim adapter As New SqlDataAdapter(staffandsalary, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 3 Then
Dim adapter As New SqlDataAdapter(staffanddepartment, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
ElseIf flag = 4 Then
Dim adapter As New SqlDataAdapter(all, sqlcon)
Dim table As New DataTable()
adapter.Fill(table)
DataGridView1.DataSource = table
End If
End Sub
Private Sub Button8_Click(sender As Object, e As EventArgs) Handles Button8.Click
Dim query As String = "INSERT INTO staff (Staff_ID, NAME, PHONE_NUMBER, ADDRESS, DNO) VALUES ('" & TextBox3.Text.ToString.Trim() & "', '" & TextBox4.Text.ToString.Trim() & "', '" & TextBox5.Text.ToString.Trim() & "', '" & TextBox6.Text.ToString.Trim() & "', '" & TextBox7.Text.ToString.Trim() & "')"
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(query, sqlcon)
' Add parameters to the query and set their values from TextBoxes
Try
' Open the connection and execute the query
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
MessageBox.Show("Data inserted successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("No rows were affected. Data insertion failed.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Catch ex As Exception
' Handle any exceptions here
MessageBox.Show("Error inserting data: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
End Try
End Using
End Sub
Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
Dim query As String = "UPDATE staff SET "
' Get the patientID from TextBox1
Dim staffID As String = TextBox3.Text.Trim()
' Check if TextBox2 has a value
If TextBox4.Text.Trim() <> "" Then
query &= "Name = '" & TextBox4.Text.ToString.Trim() & "', "
End If
' Check if TextBox3 has a value
If TextBox5.Text.Trim() <> "" Then
query &= "Phone_Number = '" & TextBox5.Text.ToString.Trim() & "', "
End If
' Check if TextBox4 has a value
If TextBox6.Text.Trim() <> "" Then
query &= "Address = '" & TextBox6.Text.ToString.Trim() & "', "
End If
' Check if TextBox5 has a value
If TextBox7.Text.Trim() <> "" Then
query &= "DNO = '" & TextBox7.Text.ToString.Trim() & "', "
End If
' Remove the trailing comma and space if values have been added to the query
If query.EndsWith(", ") Then
query = query.Substring(0, query.Length - 2)
End If
' Append the WHERE clause to identify the record to be updated
query &= " WHERE Staff_ID = " & TextBox3.Text.Trim() & ""
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(query, sqlcon)
Try
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
MessageBox.Show("Record updated successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("No record was updated. No matching record found.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Catch ex As Exception
' Handle any exceptions here
MessageBox.Show("Error updating record: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
End Try
End Using
End Sub
Private Sub Button4_Click(sender As Object, e As EventArgs) Handles Button4.Click
Dim query As String = "Delete From staff WHERE staff_ID =" & TextBox3.Text() & ""
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(query, sqlcon)
Try
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
MessageBox.Show("Data Deleted successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("No rows were affected. Data Deletion failed.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Catch ex As Exception
' Handle any exceptions here
MessageBox.Show("Error deleting data: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
End Try
End Using
End Sub
Private Sub TextBox12_TextChanged(sender As Object, e As EventArgs) Handles TextBox12.TextChanged
End Sub
Private Sub TextBox10_TextChanged(sender As Object, e As EventArgs) Handles TextBox10.TextChanged
End Sub
Private Sub Button11_Click(sender As Object, e As EventArgs) Handles Button11.Click
Dim query As String = "INSERT INTO Salary (EMPLOYEE_ID, SALARY, DNO, EFFECTIVE_DATE) VALUES ('" & TextBox9.Text.ToString.Trim() & "', '" & TextBox10.Text.ToString.Trim() & "', '" & TextBox11.Text.ToString.Trim() & "', '" & TextBox12.Text.ToString.Trim() & "')"
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(query, sqlcon)
' Add parameters to the query and set their values from TextBoxes
Try
' Open the connection and execute the query
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
MessageBox.Show("Data inserted successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("No rows were affected. Data insertion failed.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Catch ex As Exception
' Handle any exceptions here
MessageBox.Show("Error inserting data: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
End Try
End Using
End Sub
Private Sub Button10_Click(sender As Object, e As EventArgs) Handles Button10.Click
Dim query As String = "UPDATE salary SET "
' Get the patientID from TextBox1
Dim Employee_ID As String = TextBox9.Text.Trim()
' Check if TextBox2 has a value
If TextBox10.Text.Trim() <> "" Then
query &= "Salary = '" & TextBox10.Text.ToString.Trim() & "', "
End If
' Check if TextBox3 has a value
If TextBox11.Text.Trim() <> "" Then
query &= "DNO = '" & TextBox11.Text.ToString.Trim() & "', "
End If
' Check if TextBox4 has a value
If TextBox12.Text.Trim() <> "" Then
query &= "EFFECTIVE_DATE = '" & TextBox12.Text.ToString.Trim() & "', "
End If
' Remove the trailing comma and space if values have been added to the query
If query.EndsWith(", ") Then
query = query.Substring(0, query.Length - 2)
End If
' Append the WHERE clause to identify the record to be updated
query &= " WHERE Employee_ID = " & TextBox9.Text.Trim() & ""
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(query, sqlcon)
Try
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
MessageBox.Show("Record updated successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("No record was updated. No matching record found.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Catch ex As Exception
' Handle any exceptions here
MessageBox.Show("Error updating record: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
End Try
End Using
End Sub
Private Sub Button9_Click(sender As Object, e As EventArgs) Handles Button9.Click
Dim query As String = "Delete From salary WHERE Employee_ID =" & TextBox9.Text() & ""
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(query, sqlcon)
Try
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
MessageBox.Show("Data Deleted successfully.", "Success", MessageBoxButtons.OK, MessageBoxIcon.Information)
Else
MessageBox.Show("No rows were affected. Data Deletion failed.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End If
Catch ex As Exception
' Handle any exceptions here
MessageBox.Show("Error deleting data: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
Finally
End Try
End Using
End Sub
Private Sub RadioButton1_CheckedChanged(sender As Object, e As EventArgs) Handles RadioButton1.CheckedChanged
End Sub
End Class