Using VB.Net,
In my application, am using datagridview, when i clicking the particular row, that rows value should be appear in the textbox.
So the code should be come under the DataGrid3_CellMouseDoubleClick Event.
How to dispaly a rows value in the textbox.
For Example
3 rows means - 3 rows values should display in 3 textbox.
vb6 code
Private Sub datagrid1_DblClick()
textbox1 = datagrid1.SelectedItem.SubItems(1)
textbox2 = datagrid1.SelectedItem.SubItems(2)
textbox3 = datagrid1.SelectedItem.SubItems(3)
End Sub
How to write a code in vb.net by getting datagrid row values.
Need VB.Net sample code Help