Help wit list

davelew1s

Active Member
Licensed User
Longtime User
Hi! I am having problems with a list...I can load a csv file into a list then display it in a table. this is the csv file:-
0,1,123.456,abcdef
1,1,456.789,ghijk
etc
my problem is I need to add a row to the list i'm using 'addall' but whatever I try it fails, this is just one way i've tried
newrow = Array As String ("2,1,321.321,AAAAAABBBBB")
list1 .AddAll (newrow )
this doen't give an error until I try to 'row = list1.Get(i)'
Any help? Dave.
 

davelew1s

Active Member
Licensed User
Longtime User
Thanks Erel that works great. One more question about list, am I right in thinking that 'sort' won't work with multiple entries on one line?
Thanks Dave.
 
Upvote 0
Top