On this example, what would i need to do in order to read the file into an array last line first?
Dim strArray() As StringReDim strArray(0)Open "c:\autoexec.bat" For Input As #1 Do Until EOF(1) Line Input #1, strArray(UBound(strArray)) ReDim Preserve strArray(UBound(strArray) + 1) LoopClose #1