Project

General

Profile

output_to_printer_simple_row.p

result of last the script, wich prints 9 symbols "1" - Vadim Gindin, 09/06/2013 11:08 AM

Download (209 Bytes)

 
1
&GLOBAL-DEFINE LEN 9
2

    
3
def var somenums as int extent {&LEN}.
4
def var i as int.
5
repeat i=1 to {&LEN}:
6
  somenums[i]=1.
7
end.
8

    
9
output to printer "PDFCreator".
10
display somenums NO-LABELS.
11
output close.