i am reading a text file line by line like this
VB Code:
dim reader As StreamReader = New StreamReader("c:\myfile.txt") Do While Not reader.EndOfStream msbox reader.readline loop
the accents characters are removed..
e.g.
instead of displaying
"González"
it displays
"Gonzlez"
any idea why??




Reply With Quote