Use "\r\n" instead of "\\r\\n" "\" is an escape character. "\\" means the second "\" should be treated as is rather then as an escape for the following symbol. : I am trying to create a log file by using the concatex command and then using : the filesave command. The problem is how do I put in line feeds? : I did see an example that had "\\r\\n" but that just puts a : "\r\n in the middle of my text file. : Example of code: Today( current_day ) : concatex ("FAST rollout ", current_day, message) : concat (message, "Maplecrest", message) : FileSave("f:\\user\\jonbo\\24x7 test\\rollout.log", message) : This is what I am getting: FAST Rollout 10/8/2003Maplecrest : This is what I would like: FAST Rollout 10/8/2003 : Maplecrest : Ideas?
|