Im writing a program in Visual Basic .NET and I was wondering if there was a way to jump to the end of a text file and only read in somewhere between the last 10 to 20 lines of it. I want to do this without reading in the entire text file through a stream reader because these text files can be very large and I only care about the last few lines of it. Does anyone have any suggestions? Ive tried using the SEEK command to jump to the end of a file but after that Im not sure how to get the file input to read characters backwards.