i've got a table with several fields, all char.
all fields are filled with something.
when i use following to dump all contents to a textfile
OUTPUT TO VALUE(vFilename).
FOR EACH ...
DISPLAY
<table>.<field1>
<table>.<field2>
<table>.<field3> VIEW-AS EDITOR SIZE 40 BY 1
<table>.<field4> VIEW-AS EDITOR SIZE 40 BY 1
WITH STREAM-IO NO-BOX WIDTH 123.
END.
OUTPUT CLOSE.
the result is unexpected, many of <field4> is not displayed.
When i use PUT statement instead everything is dumped to textfile.
What is wrong with DISPLAY ??
(progress82c)
all fields are filled with something.
when i use following to dump all contents to a textfile
OUTPUT TO VALUE(vFilename).
FOR EACH ...
DISPLAY
<table>.<field1>
<table>.<field2>
<table>.<field3> VIEW-AS EDITOR SIZE 40 BY 1
<table>.<field4> VIEW-AS EDITOR SIZE 40 BY 1
WITH STREAM-IO NO-BOX WIDTH 123.
END.
OUTPUT CLOSE.
the result is unexpected, many of <field4> is not displayed.
When i use PUT statement instead everything is dumped to textfile.
What is wrong with DISPLAY ??
(progress82c)