如何更改datagridview的最后一行的值

时间:2018-11-24 11:04:29

标签: vb.net

我想选择datagridview的最后一行并使用文本框更改行值

1 个答案:

答案 0 :(得分:0)

要使用文本框更改最后一行的值,请在文本框的text_changed事件下输入以下代码:

Dim last As Integer = dataGridView1.Rows.Count - 1
dataGridView1.Rows(last).Cells(0).Value = Textbox1.Text
'sets the value of the last row of the datagridview to the value of the text in the textbox