Hi,
I use the streamreader to read one file line by line:
...
fileIn = New System.IO.StreamReader("c:\text.txt", system.Text.Encoding.ASCII )
Do
linia = fileIn.ReadLine
...
Loop Until linia Is Nothing
...
If in my file there is a character like á, é, í, etc
it can`t read it, it...