Hi
I have a textfile I read in a loop. One row has more than 32000 characters, and kix dump. In the manual it says like this:
Quote:


A string expression can contain up to 32,000 characters.





Code:

$TLine = ReadLine(1)
If Len($TLine) > 32000
? "More then 32000 characters"
? $TLine ; Now kix dumps
EndIf
$Rc = WriteLine(9,"$TLine" + @Crlf) ; Doesnt work



Has anyone any good idee how I can write this string ?

/Mima