Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含许多行和列的数据表。如何将第 1 行第 1 列中的值(文本)显示到消息框?
我能够显示行数,但似乎无法弄清楚如何显示单元格的实际内容。
我正在使用 VS2012,并在 VB 中编码
Dim myDataRow AS DataRow = myDataTable.Rows(0) MessageBox.Show(myDataRow(0))
我认为这也有效:
myDataTable.Rows(0).Field(Of String)(0)
尝试,
MessageBox.Show(datatabelname.rows(1)(1))