Hi , I would like to save a big textfile in the same format . I mean when I open it on a richtextbox and save it , the text loose is space .Exemple:

hi there

welcome home !! grattz

!!!//!/

will be (of course my file is alot bigger ) :


hi therewelcome home !! grattz
!!!//!/


Thanks and please help me .

my code to save file :
Dim save1 As New System.IO.StreamWriter(Form1.TextBox1.Text & "\scripts\NTBot\char_configs\NTConfig_Amazon_.ntl")
save1.Write(RichTextBox2.Text)
save1.Close()