Hello!
Im reading a textfile using this code:
VB Code:
Dim sReader As New IO.StreamReader(New IO.FileStream(Application.StartupPath & "\data\" & drink & ".txt", IO.FileMode.Open)) While Not sReader.Peek TextBox1.AppendText(sReader.ReadToEnd) 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?




Reply With Quote