Why use a "StreamReader" to "WRITE" to a File?
Have you tried using a Stream"WRITER"?
Dim ioFile As New StreamWriter(myStream)'<---------------------------ERROR WAS HERE
ioFile.Write(text) '<---------------------------AND HERE
ioFile.Close()