Advertisement
binjeeclick

dfg

Dec 5th, 2018
530
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.38 KB | None | 0 0
  1. Private Sub DataGridView1_CellMouseClick(sender As Object, e As DataGridViewCellMouseEventArgs) Handles DataGridView1.CellMouseClick
  2.         txtID.Text = DGV.Rows(e.RowIndex).Cells(0).Value
  3.         txtFullName.Text = DGV.Rows(e.RowIndex).Cells(1).Value
  4.         txtAddress.Text = DGV.Rows(e.RowIndex).Cells(2).Value
  5.         txtNo_Contact.Text = DGV.Rows(e.RowIndex).Cells(3).Value
  6.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement