I managed to sort this problem out... this code is working fine for me .. i am getting the first row of my datatable..
now i have another problemm ahh i wish someone could help.. i have my arrlist yeah i need to get these values form the arraylist i was trying to put them in a string because then with that string i need to create a table for sql server....
dont know maybe someone else has another solution... for how i should do this.. but for shore i need the values of the array to be put in a CREATE TABLE and sent it to the database.
Visual Basic:
Dim arrlist As New ArrayList
Dim row As DataRow
row = oDT.NewRow()
Dim o As Object
Dim odrr As Object = oDT.Rows(0)
For Each o In odrr.ItemArray
odrr.Item(intcount) = o
intcount = intcount + 1
arrlist.Add(odrr)
Next