To add more data to your file you should change this line:
export = New FileStream(Application.StartupPath + "\read.dat", FileMode.Create)
to:
export = New FileStream(Application.StartupPath + "\read.dat", FileMode.Append)
This will create the file if it does not exist, otherwise it opens it and positions the write pointer at the end ready to add new data.
Hope this helps.