I am currently trying to export data from a excell db to a vb.net and create some for loops so I can generate data from it.
anyway I got the whole thing working apart from I cant get the list box to show all the data in the column instead of just one value.
column1string = ds.Tables("query1").Rows(0).Item(0)
pupilfore1.Items.Add(column1string)
If I try and change Rows(0) to something like
Rows(0, 100) or Rows(0-100) it just says it can't handle more than one integer
can anyone help with this please?
thanks