As soon as I posted and swept up whats left of my hair off the floor I found one answer at
http://www.dotnetspark.com/tutorial/13-43-edit-row-datatable.aspx[
^]
lbLive.Items.Add(DT.Rows(i)("Folder"))
So the loop in question and the end should be this:
For i = 0 To DT.Rows.Count - 1
lbLive.Items.Add(DT.Rows(i)("Folder"))
Next
Still looking for a better way to find than looping the whole list...