hello Roger
How do I use DCPRINT ON to use paper size 33 Lineas and 80 Column and page break in 33 Lines
Thank you.
How do I use DCPRINT ON to use paper size 33 Lineas and 80 C
How do I use DCPRINT ON to use paper size 33 Lineas and 80 C
Nolberto Paulino
Regards
Regards
Re: How do I use DCPRINT ON to use paper size 33 Lineas and
Code: Select all
DCPRINT ON SIZE 33, 80
nRow := 1
FOR i := 1 TO 100
@ i,5 DCPRINT SAY 'This is line ' + Alltrim(Str(i))
nRow++
IF nRow > 32
DCPRINT EJECT
nRow := 1
ENDIF
NEXT
DCPRINT OFF
The eXpress train is coming - and it has more cars.
Re: How do I use DCPRINT ON to use paper size 33 Lineas and
hello Roger
I'm doing it to myself but in the Preview you see a Leaf 8 1/2 x 11
complete not on half sheet
Thank you.
I'm doing it to myself but in the Preview you see a Leaf 8 1/2 x 11
complete not on half sheet
Thank you.
rdonnay wrote:Code: Select all
DCPRINT ON SIZE 33, 80 nRow := 1 FOR i := 1 TO 100 @ i,5 DCPRINT SAY 'This is line ' + Alltrim(Str(i)) nRow++ IF nRow > 32 DCPRINT EJECT nRow := 1 ENDIF NEXT DCPRINT OFF
Nolberto Paulino
Regards
Regards