I am using WRITE to output some data to a file. The problem I am having is that each line is being appended with a binary Carriage Return and Line Feed but I only want the Line Feed as the line termination character so the mainframe can read the file. Is there another method like WRITE or a setting I'm not setting to have Navision just output the data?
0
Comments
If this doesn't work, you can also try this:
Some info : the COPYSTR in the binary mode is necessary, because otherwise the WRITE writes the complete string, even if the string is not completely filled up.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
Set Textmode(FALSE) for the file and write each character from the string separately with a FOR-NEXT statement.
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!