M
Mika M
Hello!
I'm reading text file line by line using the StreamReader like code below
shows. Reading is working fine, but if readed line contains Scandinavian
letters like äÄöÖ then those letters are simply cut off ! Why ??? For
example my lastname Mähönen will be Mhnen. How should I change code to get
all letters as is of the file?
Dim strLine as String
Dim sr As StreamReader = New StreamReader(strFilePath)
Do While ...
strLine = sr.ReadLine()
'...
Loop
sr.Close()
Thank you in advance!
Mika from Finland
I'm reading text file line by line using the StreamReader like code below
shows. Reading is working fine, but if readed line contains Scandinavian
letters like äÄöÖ then those letters are simply cut off ! Why ??? For
example my lastname Mähönen will be Mhnen. How should I change code to get
all letters as is of the file?
Dim strLine as String
Dim sr As StreamReader = New StreamReader(strFilePath)
Do While ...
strLine = sr.ReadLine()
'...
Loop
sr.Close()
Thank you in advance!
Mika from Finland