Datagridvie oncelldoublclick get the data of the clicked row
hi
first we bind the dataset to Datagridview..
then here wat we do is while we double click on the any row of the Datagridview
we retrieve the data of the particular row by using the ID
so we have to write it on Datagridview_CellDoubleClick Event
Private Sub Boatname_DataGridView_CellDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles Boatname_DataGridView.CellDoubleClick
Try
Dim dgresult As New DialogResult
dgresult = MessageBox.Show("Are You Sure Want To Edit This Record", msgtitle, MessageBoxButtons.YesNo, MessageBoxIcon.Exclamation)
If dgresult = Windows.Forms.DialogResult.Yes Then
boatNameID = Boatname_DataGridView.Rows(e.RowIndex).Cells(1).Value
BoatName_TextBox.Text = Boatname_DataGridView.Rows(e.RowIndex).Cells(0).Value
Save_Button.Visible = False
Update_Button.Visible = True
Delete_Button.Visible = True
End If
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub