How do I use DCPRINT ON to use paper size 33 Lineas and 80 C

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
digitsoft
Posts: 461
Joined: Thu Jan 28, 2010 1:33 pm
Location: Republica Dominicana
Contact:

How do I use DCPRINT ON to use paper size 33 Lineas and 80 C

#1 Post by digitsoft »

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.
Nolberto Paulino
Regards

User avatar
rdonnay
Site Admin
Posts: 4813
Joined: Wed Jan 27, 2010 6:58 pm
Location: Boise, Idaho USA
Contact:

Re: How do I use DCPRINT ON to use paper size 33 Lineas and

#2 Post by rdonnay »

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.

User avatar
digitsoft
Posts: 461
Joined: Thu Jan 28, 2010 1:33 pm
Location: Republica Dominicana
Contact:

Re: How do I use DCPRINT ON to use paper size 33 Lineas and

#3 Post by digitsoft »

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.
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

Post Reply