rossnixon 0 Posted September 1, 2011 (edited) Here is my function that adds 3 lines of text to each file: Func ProcessFile($name) $text = FileRead($name,1) $text = $text & $bright & $contrast & $lastline $name_out = $name FileWrite($name_out, $text)EndFunc ;==>ProcessFile The problem is that an ! character is being added to the start of the first line of added text.Help? Edited September 1, 2011 by rossnixon Share this post Link to post Share on other sites
rossnixon 0 Posted September 1, 2011 I have a 'dirty' looking workaround with: $text = StringTrimRight($text,1) & @CRLF & $bright & $contrast & $lastline Any suggestions on an improvement? Share this post Link to post Share on other sites