Question:
On an application, WriteToFile() command is being used to write values in a TXT file, but it is not writing in a new line. How can I fix the problem?
Solution:
To do so, use Chr(13)+Chr(10) command after the message to be written.
Example of script:
WriteToFile(“text.txt”,”Elipse Software”+Chr(13)+Chr(10))