Well, your first post didn't tell anything on how the input data was formed, and how you wanted it displayed in your table, I just assumed you were having trouble building a dynamic table from your fetched data.
On another note, you could make it:
Code:
Dim sb As New StringBuilder
oMailMsg.BodyFormat = MailFormat.Html
Dim aRow As DataRow
sb.Append("<p><img SRC=C:\SelectLogo.gif></p><br>") --Image embeded
sb.Append("<table border=1>")
For Each aRow In ds.Tables(0).Rows
sb.Append("<tr><td>" + aRow.Item(0) + "</td>" + "<td>" + aRow.Item(1) + "</td></tr>")
Next
sb.Append("</table>")
oMailMsg.Body = sb.ToString
For a nicer output.