Hello,
Im newbie at VB and i need help solving my issue please
The code i used:
Dim SaveFile As New SaveFileDialog
SaveFile.FileName = ""
SaveFile.Filter = "Text Files (*.txt)|*.txt"
SaveFile.Title = "Save"
SaveFile.ShowDialog()
Try
Dim Write As New System.IO.StreamWriter(SaveFile.FileName)
Write.Write(RichTextBox1.Text)
Write.Close()
Catch ex As Exception
End Try
The problem is that when i save the text file
It be from
A
B
C
D
E
F
TO ONE LINE
ABCDEF
Hope someone could help me, thanks in advance