Hi all,
I have a very simple TUI program with a printform which I want to send to as print output to a physical file.
I have this code:
converseVar.printerAssociation = "printer" ;
TestPrintForm.field="Hello world!";
print TestPrintForm;
close TestPrintForm;
And on resource association I have this:
<association fileName="printer">
<win>
<seqws systemName="C:\Users\rafael\Desktop\PrintOutput.txt"/>
</win>
<aix>
<seqws systemName="PrintOutput.txt"/>
</aix>
</association>
When application runs, the file PrintOutput.txt is created, however it is always empty. Am I doing something wrong?
Same bahaviour happens on both Windows (when I run locally) and AIX (when I generate application to run on the server).
Rafael CHC