Hey guys, I'm hoping someone could help me parse a dataset.. Below is the
non-syntanically corrct way of doing it, I'm hoping someone could translate
it from english to vb.net :)
With each row in dataset do
with each column in dataset do
writeline("this is the data from this cell")
loop
loop
so it parses each cell, so if i have a dataset like this
1 2 3
4 5 6
7 8 9
it would parse, and pull data from 1, then 2, then 3, then 4, yada yada....
thanks!
