Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

CRLF Unicode?

Former Member
0 Likes
481

Weu2019ve upgraded our system to 6.0 Unicode. I have a program that builds html for our Web Order Center screen. The carriage returns are always ignored when the html is building arrays for multiple listings in a drop-down- u2013 as seen in out u201Cview sourceu201D in notepad.I have tried everything and anything with the utilities object with cr_lf, newline, horizontal tab, etcu2026.. It doesnu2019t seem to matter the crlfs are always ignored. Iu2019ve also looked at codepages, <FS> casting to invoke new hex values.

We get the error u201Carray not definedu201D in the browser because of this issue.

Any ideas......?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
343

Hello,

We had the same problem.

Are you dumping your files on the operating system with a open dataset for output ?

What we did after the upgrade to Unicode is opening all the files like non-unicode files with :

OPEN DATASET ... FOR OUTPUT IN TEXT MODE ENCODING NON-UNICODE.

Wim

1 REPLY 1
Read only

Former Member
0 Likes
344

Hello,

We had the same problem.

Are you dumping your files on the operating system with a open dataset for output ?

What we did after the upgrade to Unicode is opening all the files like non-unicode files with :

OPEN DATASET ... FOR OUTPUT IN TEXT MODE ENCODING NON-UNICODE.

Wim