I have a project where I must create a single-line upload file. Through testing it appears KiX is limited to 31,999 characters that can be written on a single line. My question, does anyone know if such a write process truly writes 31,999 characters on a single line? I script w/Notepad, and its limits of 1024-characters makes it appear that the file has 32 lines (using GOTO Line brings me to additional lines). My guess is the process writes properly as a single line, but I've no other tools to verify.

Can anyone help me with this? I'd appreciate it.

Bill

My simple test script:
code:
$Fil = "C:\Temp\wl.txt"
$Idx=0
$Chk=31999
$Char=A
OPEN (1, $Fil, 5)
DO
$Char=$Char + "A"
$Idx=$Idx+1
? "Idx: $Idx"
UNTIL ($Idx = $Chk)
$wri = writeline (1, "$Char" + @CRLF)
CLOSE (1)