Hello!

Im reading a textfile using this code:

VB Code:
  1. Dim sReader As New IO.StreamReader(New IO.FileStream(Application.StartupPath & "\data\" & drink & ".txt", IO.FileMode.Open))
  2.         While Not sReader.Peek
  3.             TextBox1.AppendText(sReader.ReadToEnd)
  4.         End While

But my problem is that it doesnt read "special characters" like åäö.
so if my textfile would contain "Hellö" then all that I would get would be "Hell"

Can this be fixed?