hmmm really not complex guys....
If the file will always have the same first word then you could seek an appropriate length before the end
then use some of my string manipulation in my tutorials section, and your good to go
[php]
Dim SR As New StreamReader("location Of text\textfile.txt")
Dim LL As String
Dim FW As String = "First Word"' whatever the first word is.
sr.BaseStream.Seek(-1000, SeekOrigin.End)'-1000 is the byte length to search, increase or decrease as needed
LL = sr.ReadToEnd
LL = LL.Substring(LastLines.IndexOf(FirstWor))
Textbox1.text = LL
[/php]
It may need some further manipulation, but it is easily accomplishable with other methods as well
Unless you mean something entirely different.