Unicode or ANSI for text file

franktang

Member
Dear All,

I have used Progress Editor in QAD MFG/Pro to output something into text file. But the problem is the default format of text file is ANSI, but I need Unicode for this text file.

I am not sure how to do it with progress.

my script like below:

output to value(filename) append.
put "something from database".
output close.

If you have good suggestion, please let me know.
Thank you very much.


Frank
 
change output statement to:
OUTPUT TO VALUE(filename) APPEND CONVERT TARGET 'utf-8'.

HTH,
Casper.
 
change output statement to:
OUTPUT TO VALUE(filename) APPEND CONVERT TARGET 'utf-8'.

HTH,
Casper.

Dear Casper,

I have already try to modify my program, the system pop up an error message:
The code page conversion table was not found in convmap.cp (6063)

I don't know how to solve it? If I need re-install my progress or update convmap.cp with a new one?

My progress version is 8.3b in Windows NT.



Thank you.

Frank
 
Back
Top