Here is the code you can use to retrieve all row data from a data table.
http://knowledgeiscool.wordpress.com/...
VB.NET - Get all row data from data table
Dim rowData As String = ""
'dt is the name of the data table
For Each row As DataRow In dt.Rows
For Each column As DataColumn In dt.Columns
rowData = rowData & column.ColumnName & "=" & row(column) & " "
Next
rowData = rowData & vbNewLine & vbNewLine
Next
MessageBox.Show(rowData)
Nesta página do site você pode assistir ao vídeo on-line VB.NET - Get all row data from data table duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário KnowledgeIsCool 05 Julho 2014, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 13,948 vezes e gostou 15 espectadores. Boa visualização!