I have a file with several thousand rows and several columns separated by tabs. What I would like to do is cycle through them individually. Put the columns in an array so that I can put them in another application separately, and then move on to the next line. Unfortunately, I got to this:
Open mytextfile.txt For Input As
Do While Not EOF(FileHandle)
Line Input
StringToBreakup = IndividualLine
Loop
So, how can I change the breakdown of a single row into an array
Jackie-brown
source
share