开发者

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()
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜