weblistbox.addrow

I have a weblistbox with 45 columns

I have a CSV string with 45 data elements ( and 44 commas!)

Is there an elegant way to ADDROW wiht having to

addrow one,twe,three,four,five…45

The documentation for WebListBox says that like the Desktop counterpart it will also accept a paramarray. This means you should be able to do something like this:

for each sLine as String in arsArrayOfLinesThatYou'veAlreadyBrokenUpEarlier
  dim arsColumns() as String = sLine.Split(",")
  lbListbox.AddRow(arsColumns)

next