Answer
Apr 21, 2012 - 06:23 AM
Hi there :)
It is not really hard.
1 For Each RW As DataGridViewRow In myDataGrid.SelectedRows
2 'Send the first cell value into textbox'
3 TextBox1.Text = RW.Cells(0).Value.ToString
4 Next
Hope it helps you . :)
It is not really hard.
1 For Each RW As DataGridViewRow In myDataGrid.SelectedRows
2 'Send the first cell value into textbox'
3 TextBox1.Text = RW.Cells(0).Value.ToString
4 Next
Hope it helps you . :)
Add New Comment