EDN Admin
Well-known member
I know how to do the callback event for this method and I also know that this method will return a byte array. What I need to know is how I can create a string array from the data.
Basically the page that I am trying to download data from is a csv file with lines that go like this:
Line 1 : Date 1, Date 2, Info 1, Info 2, etc, etc
Line 2 : Date 1, Date 2, Info 1, Info 2, etc, etc
There are about 200 lines in each csv file and what I want to do is download the data all at once using the above method or a similar method and I want to be able to put Line 1 into an array for example and I want to create another array inside that array so I can do code like this:
Line 1 = array1
Line1.Split(,) = array2
I hope this makes sense to everybody. Basically the final array will look similar to this:
[Line 1 is here]
[Date 1]
[Date 2]
[etc]
[Line 2 is the same]
[Date and other info here]
If this doesnt make sense please let me know
Thanks
View the full article
Basically the page that I am trying to download data from is a csv file with lines that go like this:
Line 1 : Date 1, Date 2, Info 1, Info 2, etc, etc
Line 2 : Date 1, Date 2, Info 1, Info 2, etc, etc
There are about 200 lines in each csv file and what I want to do is download the data all at once using the above method or a similar method and I want to be able to put Line 1 into an array for example and I want to create another array inside that array so I can do code like this:
Line 1 = array1
Line1.Split(,) = array2
I hope this makes sense to everybody. Basically the final array will look similar to this:
[Line 1 is here]
[Date 1]
[Date 2]
[etc]
[Line 2 is the same]
[Date and other info here]
If this doesnt make sense please let me know
Thanks
View the full article