0
I’m developing a Notepad and I’m having trouble importing text from a text file where that text has several seats, but after importing to a multi-line textbox , instead of the seats a different symbol appears. As in the image below
I’ve tried some ways but it looks the same this was the last code I tried
OpenFileDialog1.Title = "Open Text File"
OpenFileDialog1.InitialDirectory = "C:\"
OpenFileDialog1.ShowDialog()
Dim textFile As StreamReader
textFile = File.OpenText(OpenFileDialog1.FileName)
TextBox1.Text = textFile.ReadToEnd()
textFile.Close()