Search found 44 matches: duplex

Return to advanced search

Re: Printing double sided

... is what I have found: 1) I can use PRNDUPLEX( 1 ) to set the printer to one side only 2) I can use PRNDUPLEX( 2 ) or ( 3 ) to print both sides ( duplex ). HOWEVER, it prints incorrectly. Either 2 or 3 will print the same. It is called "short edge binding" and it means that with a single ...
by TimStone
Tue Oct 25, 2022 12:46 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing double sided
Replies: 24
Views: 1254

Re: Printing double sided

... corrective lenses ( to see the text clearly ) until today. Re-reading this, and the reference page, I would do the following: Single Sided =. PrnDuplex( 1 ) Dual sided, Landscape = PrnDuplex( 3 ) Dual sided, Portrait = PrnDuplex( 2 ) Now ... If my printer defaults to Single Sided, and I select ...
by TimStone
Wed Oct 05, 2022 10:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Printing double sided
Replies: 24
Views: 1254

Re: ¿Impresion por ambas caras?

Silvio.Falconi wrote:on printer class search duplex


http://forums.fivetechsupport.com/viewtopic.php?f=3&t=1457&p=236156&hilit=DUPLEX#p236156

Regards, saludos.
by karinha
Thu Dec 17, 2020 5:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Impresion por ambas caras?
Replies: 4
Views: 812

Re: ¿Impresion por ambas caras?

on printer class search duplex
by Silvio.Falconi
Thu Dec 17, 2020 4:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ¿Impresion por ambas caras?
Replies: 4
Views: 812

Re: Duplex printing

This is the code I use :
InstPrinter()
PrnLandscape() ;
PrnDuplex( IF(US->RPRTDUP2, 2, 3) )
Anyone any idea where the function InstPrinter() comes from?

I can't remember anymore why I am using it.

Thank you.
by driessen
Fri Nov 06, 2020 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex printing
Replies: 7
Views: 1685

Re: Duplex printing

I think these are the values :

1 DMDUP_SIMPLEX
2 DMDUP_HORIZONTAL
3 DMDUP_VERTICAL
by driessen
Fri Nov 06, 2020 8:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex printing
Replies: 7
Views: 1685

Re:

You can call it before the PRINT command. From the MSDN: dmDuplex Selects duplex or double-sided printing for printers capable of duplex printing. Following are the possible values. Value Meaning DMDUP_SIMPLEX Normal (nonduplex) printing. DMDUP_HORIZONTAL Short-edge ...
by Silvio.Falconi
Fri Nov 06, 2020 8:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex printing
Replies: 7
Views: 1685

"Front Retro"

Is it possible to enable the duplex printing function of the printer (if this function is supported by the device) from fwh and with printer class ?
by Silvio.Falconi
Thu Nov 05, 2020 7:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: "Front Retro"
Replies: 1
Views: 466

Re: Ports to 485 with converter USB, please help.

... example on how to transmit a sequence of chars (in this case 0x55 0x00 0x55) over the RS485 line. // rs485tx.c // Basic example of RS485 half duplex transmission #include <sys/ioctl.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> ...
by Busmatic_wpb
Thu Feb 08, 2018 3:30 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Ports to 485 with converter USB, please help.
Replies: 7
Views: 1415

Re: Print Preview support of Duplexing

... way I solved this problem. I installed my printer twice. The first printer is defined to print one sided, the second printer is defined to print duplex. In the print preview you can change the printer. So you can choose if you want to print duplex from the preview or not. Good luck.
by driessen
Tue May 30, 2017 9:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Print Preview support of Duplexing
Replies: 2
Views: 484

Re: Duplex Printing

It is in source\winapi\printdc.c
by Gale FORd
Tue Feb 14, 2017 3:36 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex Printing
Replies: 3
Views: 834

Re: Duplex Printing

Mr. Ford, thanks, is this a part of the TPrinter class, or is this just a function in fivewin. I will try it either way. I noticed also it becomes difficult to print Landscape, and Portrait in the same print job because if you preview the metafile switches to the last orientation call made. However ...
by byron.hopp
Tue Feb 14, 2017 12:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex Printing
Replies: 3
Views: 834

Re: Duplex Printing

I think this is the function you are looking for.
PrnDuplex( [ nValue ] ) //--> nOldValue
by Gale FORd
Mon Feb 13, 2017 11:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Duplex Printing
Replies: 3
Views: 834
Next

Return to advanced search