T
TCORDON
How can I do this without loosing special characters (í, ó, ú, é, etc) so I
can replace some parts of it later.
I was using this code but it eliminates those characters.
Dim str As StreamReader
str = File.OpenText(txtFile.Text)
Dim _maildata As String = str.ReadToEnd()
str.Close()
TIA
can replace some parts of it later.
I was using this code but it eliminates those characters.
Dim str As StreamReader
str = File.OpenText(txtFile.Text)
Dim _maildata As String = str.ReadToEnd()
str.Close()
TIA