-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathInsert_Results.vb
485 lines (358 loc) · 19.4 KB
/
Insert_Results.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
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
481
482
483
484
485
Imports System.Data.SqlClient
Public Class Insert_Results
Dim image_Path As String
Private Sub GroupBox2_Enter(sender As Object, e As EventArgs) Handles GroupBox2.Enter
End Sub
Private Sub Label16_Click(sender As Object, e As EventArgs) Handles Label16.Click
End Sub
Private Sub Label18_Click(sender As Object, e As EventArgs)
End Sub
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
database.GetSQLConnection()
Dim query As String = "SELECT tr.ResultID, tr.PID, tr.RequestID, tr.TestID, tr.ResultValue, tr.ResultDate, tr.PerformedBy, tr.Flag, tr.Notes, img.Image_Path " &
"FROM TestResult tr " &
"LEFT JOIN Images img ON tr.RequestID = img.Request_ID"
' Create a SqlDataAdapter to execute the query and fill the DataTable
Using adapter As New SqlDataAdapter(query, sqlcon)
' Create a DataTable to hold the query results
Dim dataTable As New DataTable()
Try
' Fill the DataTable with the query results
adapter.Fill(dataTable)
' Bind the DataTable to the DataGridView
DataGridView1.DataSource = dataTable
Catch ex As Exception
' Handle any errors that occur
MessageBox.Show("An error occurred: " & ex.Message)
End Try
End Using
End Sub
Private Sub Button5_Click(sender As Object, e As EventArgs) Handles Button5.Click
Dim query As String = "SELECT tr.ResultID, tr.PID, tr.RequestID, tr.TestID, tr.ResultValue, tr.ResultDate, tr.PerformedBy, tr.Flag, tr.Notes, img.Image_Path " &
"FROM TestResult tr " &
"LEFT JOIN Images img ON tr.RequestID = img.Request_ID Where ResultID = " & TextBox1.Text.Trim() & ""
' Create a SqlDataAdapter to execute the query and fill the DataTable
Using adapter As New SqlDataAdapter(query, sqlcon)
' Create a DataTable to hold the query results
Dim dataTable As New DataTable()
Try
' Fill the DataTable with the query results
adapter.Fill(dataTable)
image_Path = dataTable.Rows(0)("Image_Path").ToString()
' Bind the DataTable to the DataGridView
DataGridView1.DataSource = dataTable
Catch ex As Exception
' Handle any errors that occur
MessageBox.Show("An error occurred: " & ex.Message)
End Try
End Using
If Not String.IsNullOrEmpty(image_Path) Then
Try
PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
PictureBox1.ImageLocation = image_Path
Catch ex As Exception
MessageBox.Show("An error occurred while loading the image: " & ex.Message)
End Try
End If
End Sub
Private Sub Button6_Click(sender As Object, e As EventArgs) Handles Button6.Click
Dim query As String = "SELECT tr.ResultID, tr.PID, tr.RequestID, tr.TestID, tr.ResultValue, tr.ResultDate, tr.PerformedBy, tr.Flag, tr.Notes, img.Image_Path " &
"FROM TestResult tr " &
"LEFT JOIN Images img ON tr.RequestID = img.Request_ID Where PID = " & TextBox2.Text.Trim() & ""
' Create a SqlDataAdapter to execute the query and fill the DataTable
Using adapter As New SqlDataAdapter(query, sqlcon)
' Create a DataTable to hold the query results
Dim dataTable As New DataTable()
Try
' Fill the DataTable with the query results
adapter.Fill(dataTable)
image_Path = dataTable.Rows(0)("Image_Path").ToString()
' Bind the DataTable to the DataGridView
DataGridView1.DataSource = dataTable
Catch ex As Exception
' Handle any errors that occur
MessageBox.Show("An error occurred: " & ex.Message)
End Try
End Using
If Not String.IsNullOrEmpty(image_Path) Then
Try
PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
PictureBox1.ImageLocation = image_Path
Catch ex As Exception
MessageBox.Show("An error occurred while loading the image: " & ex.Message)
End Try
End If
End Sub
Private Sub Insert_Results_Load(sender As Object, e As EventArgs) Handles MyBase.Load
End Sub
Private Sub PictureBox1_Click(sender As Object, e As EventArgs) Handles PictureBox1.Click
End Sub
Private Sub Button8_Click(sender As Object, e As EventArgs) Handles Button8.Click
Dim queryTestResult As String = "INSERT INTO TestResult (PID, RequestID, TestID, ResultValue, ResultDate, PerformedBy, Flag, Notes) VALUES ('" & TextBox4.Text.ToString.Trim() & "', '" & TextBox5.Text.ToString.Trim() & "', '" & TextBox6.Text.ToString.Trim() & "', '" & TextBox7.Text.ToString.Trim() & "', '" & TextBox8.Text.ToString.Trim() & "', '" & TextBox14.Text.ToString.Trim() & "', '" & TextBox16.Text.ToString.Trim() & "', '" & TextBox17.Text.ToString.Trim() & "')"
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(queryTestResult, 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
Dim queryImages As String = "Insert INTO Images (Request_ID, Image_path) Values (" & TextBox5.Text.Trim() & ", '" & image_Path & "')"
Using command As New SqlCommand(queryImages, 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
Using openFileDialog As New OpenFileDialog
openFileDialog.InitialDirectory = "c:\"
openFileDialog.Filter = "Image Files|*.jpg;*.jpeg;*.png;*.bmp;*.gif"
openFileDialog.FilterIndex = 1
openFileDialog.RestoreDirectory = True
' Show the dialog and check if the user selected a file
If openFileDialog.ShowDialog() = DialogResult.OK Then
' Get the selected file's path
image_Path = openFileDialog.FileName
' Display the selected image in the PictureBox
PictureBox1.SizeMode = PictureBoxSizeMode.StretchImage
PictureBox1.Image = Image.FromFile(image_Path)
End If
End Using
End Sub
Private Sub Button7_Click(sender As Object, e As EventArgs) Handles Button7.Click
Dim query As String = "UPDATE TestResult SET "
Dim ResultID As String = TextBox3.Text.Trim()
' Check if TextBox2 has a value
If TextBox4.Text.Trim() <> "" Then
query &= "PID = '" & TextBox4.Text.ToString.Trim() & "', "
End If
' Check if TextBox3 has a value
If TextBox5.Text.Trim() <> "" Then
query &= "RequestID = '" & TextBox5.Text.ToString.Trim() & "', "
End If
' Check if TextBox4 has a value
If TextBox6.Text.Trim() <> "" Then
query &= "TestID = '" & TextBox6.Text.ToString.Trim() & "', "
End If
' Check if TextBox5 has a value
If TextBox7.Text.Trim() <> "" Then
query &= "ResultValue = '" & TextBox7.Text.ToString.Trim() & "', "
End If
If TextBox8.Text.Trim() <> "" Then
query &= "ResultDate = '" & TextBox8.Text.ToString.Trim() & "', "
End If
If TextBox14.Text.Trim() <> "" Then
query &= "PerformedBy = '" & TextBox14.Text.ToString.Trim() & "', "
End If
If TextBox16.Text.Trim() <> "" Then
query &= "Flag = '" & TextBox16.Text.ToString.Trim() & "', "
End If
If TextBox17.Text.Trim() <> "" Then
query &= "Notes = '" & TextBox17.Text.ToString.Trim() & "', "
End If
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 ResultID = " & TextBox3.Text.Trim() & ""
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
Dim queryImage As String = "UPDATE Images SET "
Dim requestID As String = TextBox5.Text.Trim()
' Check if TextBox2 has a value
If TextBox5.Text.Trim() <> "" Then
queryImage &= "Request_ID = '" & TextBox5.Text.ToString.Trim() & "', "
End If
' Check if TextBox3 has a value
If TextBox5.Text.Trim() <> "" Then
queryImage &= "Image_Path = '" & image_Path & "', "
End If
If queryImage.EndsWith(", ") Then
queryImage = queryImage.Substring(0, queryImage.Length - 2)
End If
' Append the WHERE clause to identify the record to be updated
queryImage &= " WHERE Request_ID = " & requestID & ""
Using command As New SqlCommand(query, sqlcon)
Try
Dim rowsAffected As Integer = command.ExecuteNonQuery()
' Check if the query was successful
If rowsAffected > 0 Then
Else
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 TestResult WHERE ResultID =" & 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
'' Trying to delete the image from images but failed
'Dim queryImages As String = "Delete From Images WHERE requestID =" & TextBox5.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
' 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 Button9_Click(sender As Object, e As EventArgs) Handles Button9.Click
Dim queryTestResult As String = "INSERT INTO TestResult (PID, RequestID, TestID, ResultValue, ResultDate, PerformedBy, Flag, Notes) VALUES ('" & TextBox10.Text.ToString.Trim() & "', '" & TextBox11.Text.ToString.Trim() & "', '" & TextBox12.Text.ToString.Trim() & "', '" & TextBox13.Text.ToString.Trim() & "', '" & TextBox18.Text.ToString.Trim() & "', '" & TextBox15.Text.ToString.Trim() & "', '" & TextBox19.Text.ToString.Trim() & "', '" & TextBox20.Text.ToString.Trim() & "')"
' Create a SqlCommand object with the query and connection
Using command As New SqlCommand(queryTestResult, 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 Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click
Dim query As String = "UPDATE TestResult SET "
Dim ResultID As String = TextBox9.Text.Trim()
' Check if TextBox2 has a value
If TextBox10.Text.Trim() <> "" Then
query &= "PID = '" & TextBox10.Text.ToString.Trim() & "', "
End If
' Check if TextBox3 has a value
If TextBox11.Text.Trim() <> "" Then
query &= "RequestID = '" & TextBox11.Text.ToString.Trim() & "', "
End If
' Check if TextBox4 has a value
If TextBox12.Text.Trim() <> "" Then
query &= "TestID = '" & TextBox12.Text.ToString.Trim() & "', "
End If
' Check if TextBox5 has a value
If TextBox13.Text.Trim() <> "" Then
query &= "ResultValue = '" & TextBox13.Text.ToString.Trim() & "', "
End If
If TextBox18.Text.Trim() <> "" Then
query &= "ResultDate = '" & TextBox15.Text.ToString.Trim() & "', "
End If
If TextBox15.Text.Trim() <> "" Then
query &= "PerformedBy = '" & TextBox14.Text.ToString.Trim() & "', "
End If
If TextBox19.Text.Trim() <> "" Then
query &= "Flag = '" & TextBox16.Text.ToString.Trim() & "', "
End If
If TextBox20.Text.Trim() <> "" Then
query &= "Notes = '" & TextBox20.Text.ToString.Trim() & "', "
End If
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 ResultID = " & TextBox9.Text.Trim() & ""
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 Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
Dim query As String = "Delete From TestResult WHERE ResultID =" & 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
End Class