ciberperson
Programmer
I have an array which was created by reading in lines from my FileSystemObject. Each line has 8 fields and I want to create a 2 dimensional array from the original array so that I can select information based on a column.
Here's what I have:
While not theFile.AtEndOfStream
i=i+1
arrLines(i) = theFile.ReadLine
Wend
Redim Preserve arrLines(i)
and I want to take arrLines and make it arrFile(i,m) where m is the 8 columns . Can someone help me with this logic? Thanks in advance.
Here's what I have:
While not theFile.AtEndOfStream
i=i+1
arrLines(i) = theFile.ReadLine
Wend
Redim Preserve arrLines(i)
and I want to take arrLines and make it arrFile(i,m) where m is the 8 columns . Can someone help me with this logic? Thanks in advance.