Hi
how to add a new text line to an existing file without delete the previous informations ? Test this :
this produce this into the file :
i want add this without delete the previous
i want :
Thanks
how to add a new text line to an existing file without delete the previous informations ? Test this :
OutFile = WriteFile( "MyTest.txt" ) WriteLine OutFile, "one string." WriteLine OutFile, "another one." CloseFile OutFile OutFile = WriteFile( "MyTest.txt" ) WriteLine OutFile, "i want add this without delete the previous" CloseFile OutFile
this produce this into the file :
i want add this without delete the previous
i want :
one string. another one. i want add this without delete the previous
Thanks