I'm developing a notepad and I'm having trouble importing text from a text file where this text has multiple setups, but after importing to a multiple textbox lines, instead of the seats a different symbol appears. As in the image below
IalreadytriedsomeformsbutitstaysthesamethiswasthelastcodeItried
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()