0

我的程序导入了 excel 文件,之后,excel 中的所有数据都显示在 DatagridView. 我想要一个特定的单元格将其值传递给Textbox.

我试过使用 Me.TextBox3.Text = DataGridView1.Rows(15).Cells(2).Value.ToString() 但是有一个错误不能在字符串中转换.. row15,column2 has text..

4

1 回答 1

0

我猜这个错误(错误转换为字符串)是因为值是Nothing. 索引从 0 开始,因此,正如 Andrey 所说,要到达第 15 行和第二列,您必须这样做:

Me.TextBox3.Text = DataGridView1.Rows(15).Cells(1).Value.ToString()
于 2013-02-08T07:58:34.007 回答