rossnixon Posted September 1, 2011 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
rossnixon Posted September 1, 2011 Author Posted September 1, 2011 I have a 'dirty' looking workaround with: $text = StringTrimRight($text,1) & @CRLF & $bright & $contrast & $lastline Any suggestions on an improvement?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now