How do i import special text characters from a text file?
hi,
i was wanting to import special charcters from a text file, and using the following code, visual basic ignores charcters such as and ?. All other characters are imported fine.
Dim TextFileStreamAs System.IO.TextReader' Load the textfile into the streamTextFileStream = System.IO.File.OpenText(txtTempLocation.Text)' Where txtTempLocation.text is the file location
' Read to the end of the file into a String variable.
Dim MyFileContentsAsString = TextFileStream.ReadToEndstrFileContents = MyFileContents
' Close the Stream objectTextFileStream.Close()
--Can someone please help. in need this 2 work.--
1noob

