N
Nikolay Petrov
I have an application, which reads data from MS Excel and store it in text
file.
I use a two dimensional array in which I store the contents of Excell cell,
by using For loop.
After that to store the data from the array in String, so I can use it in
StreamWriter i do another For loop to add a vbCrLf at the end of each row.
I am new to programming, but I am quite sure that this is not the best way
to accomplish this. It works, but it is very slow when the Excel table
contains many data.
Reading from Excel is slow, but I guess I can't change this. Any ideas how
to speed up the other things. Looping arrays is not the fastest method i
guess.
TIA
file.
I use a two dimensional array in which I store the contents of Excell cell,
by using For loop.
After that to store the data from the array in String, so I can use it in
StreamWriter i do another For loop to add a vbCrLf at the end of each row.
I am new to programming, but I am quite sure that this is not the best way
to accomplish this. It works, but it is very slow when the Excel table
contains many data.
Reading from Excel is slow, but I guess I can't change this. Any ideas how
to speed up the other things. Looping arrays is not the fastest method i
guess.
TIA