开发者

how to fill the textbox with grid view data in vb.net windows application

开发者 https://www.devze.com 2023-03-10 03:42 出处:网络
I want to fill the textboxes with 开发者_开发问答datagrid value ie the row that is selected. i am working on 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

精彩评论

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