how to fill the textbox with grid view data in vb.net windows application
I want to fill the textboxes with 开发者_开发问答datagrid value ie the row that is selected. i am working on vb.net windows application
thanks in advance
Use the following:
textBox.Text = dataGridView.SelectedRows(0).Cells(cellIndex).Value.ToString()
精彩评论