I need some advice on a project I'm working on. I thought I'd use Visual Basic for this, mainly because I need a nice looking GUI for this code.
I want to read the last ~10000 lines in a very big text file. The text file can be 20GB in size, so I need some way of reading the lines from the end, like "tail -f 1000" (if I remember correctly).
I tried using streamreader on a much smaller file (12MB), and it takes a very long time (several minutes) to read the whole file.
Do I have any options other than abandoning VB and resort to python (that reads the 12MB file in a about a second)
Tobbe