Did soem changes to make a 100* Times Loop to step through the Stream. No checking for EndOfStream
Is that assingment to a new ListBox1.Item correct? (Only the last value of Data, not the previous ones?)
Vb.Net Code:
  1. Try
  2.             Dim fr As FileStream = File.OpenRead("test.txt")
  3.             Dim data(fr.Length) As Byte
  4.             Using reader As New BinaryReader(fr)
  5.                 Dim START As Long = 4896
  6.                 Dim i As Integer = 0
  7.                 Do
  8.                     fr.Seek(START, SeekOrigin.Begin)
  9.                     data = reader.ReadBytes(data.Length)
  10.                     START += 1200
  11.                     i += 1
  12.                 Loop Until i = 100 ' do loop is done 100 times!
  13.                 fr.Seek(START, SeekOrigin.Begin)
  14.                 data = reader.ReadBytes(data.Length)
  15.             End Using
  16.             ListBox1.Items.Add(System.Text.Encoding.UTF8.GetString(data))
  17.             fr.Close()
  18.         Catch
  19.         End Try