All pastes #2090691 Raw Edit

Mine

public text v1 · immutable
#2090691 ·published 2011-10-17 06:06 UTC
rendered paste body
        Do While Not myCSVReader.EndOfStream
            lineCount = lineCount + 1
            myFieldInput = Split(myCSVReader.ReadLine, ",")
            Do While x < myFieldInput.Length
                If myFieldInput(x) <> "" Then
                    relicGenerator(lineCount, x) = myFieldInput(x)
                End If
                x = x + 1
            Loop