Hello, Cab I ask some help for my project?
I'm using datagridview to add, edit and search items in ms access table. I already fixed the search button to work and it displays the selected row when I enter the ID value on textbox. My problem now is how will I be able to edit or delete the selected row result directly from datagridview?
Below is the code I'm using in searching row [search button]
Private Sub Button10_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button10.Click
DataGridView2.DataSource = Me.DataSet4.members.Select("ID=" & TextBox3.Text)
End Sub