Advertisement
rofelbca

vb,net

Mar 13th, 2024
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 2.80 KB | None | 0 0
  1. Imports System.Data.SqlClient
  2. Public Class Form1
  3. Dim connectionString As String=
  4. "Data Source=(localdb)\MSSQLLocalDB;Integrated Security=True"
  5. Dim connection As New SqlConnection(connectionString)
  6. Dim cmd As SqlCommand
  7. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles
  8. MyBase.Load
  9. connection.Open()
  10. display()
  11. End Sub
  12. Private Sub Button4_Click(sender As Object, e As EventArgs) Handles
  13. Button4.Click
  14. 'button add
  15. txtid.Enabled = True
  16. txtid.Focus()
  17. End Sub
  18. Private Sub Button2_Click(sender As Object, e As EventArgs) Handles
  19. Button2.Click
  20. 'coding on remove button
  21. delemp()
  22. display()
  23. End Sub
  24. Private Sub Button3_Click(sender As Object, e As EventArgs) Handles
  25. Button3.Click
  26. 'coding on update button
  27. update_Stud()
  28. display()
  29. End Sub
  30. Private Sub DataGridView1_CellClick(sender As Object, e As
  31. DataGridViewCellEventArgs) Handles DataGridView1.CellClick
  32. 'coding on cell click event
  33. 'datagrid view
  34. txtid.Enabled = False
  35. Dim i As Integer
  36. i = DataGridView1.CurrentRow.Index
  37. If i = DataGridView1.RowCount - 1 Then
  38. txtid.Text = DataGridView1.Item(0, i).Value
  39. txtname.Text = DataGridView1.Item(1, i).Value
  40. txtdesig.Text = DataGridView1.Item(2, i).Value
  41. MsgBox("passed last record")
  42. Else
  43. txtid.Text = DataGridView1.Item(0, i).Value
  44. txtname.Text = DataGridView1.Item(1, i).Value
  45. txtdesig.Text = DataGridView1.Item(2, i).Value
  46. End If
  47. End Sub
  48. Private Sub clear()
  49. txtdesig.Text = ""
  50. txtid.Text = ""
  51. txtname.Text = ""
  52. End Sub
  53. Private Sub insertNew()
  54. cmd = New SqlCommand("insert into Emp_3
  55. values(@id,@name,@class)", connection)
  56. cmd.Parameters.AddWithValue("@id", txtid.Text.Trim)
  57. cmd.Parameters.AddWithValue("@name", txtname.Text.Trim)
  58. cmd.Parameters.AddWithValue("@class", txtdesig.Text.Trim)
  59. cmd.ExecuteNonQuery()
  60. MsgBox("Record inserted successfully")
  61. End Sub
  62. Public Sub delemp()
  63. Dim eid1 As Integer
  64. id1 = InputBox("enter the reocrd to delete")
  65. cmd = New SqlCommand("delete from Stud where id=@id", connection)
  66. cmd.Parameters.AddWithValue("@id", id1)
  67. cmd.ExecuteNonQuery()
  68. MsgBox("record deleted successfully")
  69. End Sub
  70. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles
  71. Button1.Click
  72. 'coding on insert button
  73. insertNew()
  74. clear()
  75. display()
  76. End Sub
  77. Public Sub display()
  78. cmd = New SqlCommand("select * from Stud", connection)
  79. cmd.ExecuteNonQuery()
  80. Dim adpt As New SqlDataAdapter(cmd)
  81. Dim ds As New DataSet()
  82. adpt.Fill(ds, "studDS")
  83. DataGridView1.DataSource = ds
  84. DataGridView1.DataMember = "studDS"
  85. End Sub
  86. Public Sub update_stud()
  87. cmd = New SqlCommand("update stud set
  88. name=@name,class=@class where id=@id", connection)
  89. cmd.Parameters.AddWithValue("@name", txtname.Text.Trim)
  90. cmd.Parameters.AddWithValue("@class", txtdesig.Text.Trim)
  91. cmd.Parameters.AddWithValue("@id", txtid.Text)
  92. cmd.ExecuteNonQuery()
  93. MsgBox("Record updated successfully")
  94. End Sub
  95. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement