How can I remove line feeds from text?
I've tried cText = StrTran( cText, CRLF, CHR(13) )
Also tried cText = StrTRan( cText, CHR(10), "" )
but when I put the text in an Ascii checker (http://www.asciivalue.com/) it shill shows CHR 10
I've tried writing the file with MemoWrit() and FCreate()/Fwrite()
I'm stumped