Recent content by Ronzan

  1. R

    Read text file backwards

    Yes I found a way to do it. Sorry for not posting it before.. Private Function GetNextLineReversed(ByVal lngStartPos As Long) As String ************************************************************************ ** GET NEXT LINE REVERSED...
  2. R

    Read text file backwards

    Thanks for replying anyways Nerseus :) Ive used the seek method to put the pointer at EOF and then step back 2 bytes with offset -2, that gets me to the last character of the last line with text(the very last is a crlf). Then i tried something like this: dim buffer(1) as char dim temp as...
  3. R

    Read text file backwards

    Hello, Im trying to find out how to read a text file backwards. I want like a ReadLastLine() method of some kind, and then be able to step though the lines backwards. I have some very large logfiles(2GB+) that I need to parse over time when new lines are added to those files. Anyone got any...
Back
Top