Search found 18 matches: prnlandscape

Return to advanced search

Re: SetLandscape

Please try it this way and lets check if there is a difference:

PrnLandscape( oPrinter:hDC )
...
PrnPortrait( oPrinter:hDC )
by Antonio Linares
Sun Jun 13, 2021 4:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: SetLandscape
Replies: 11
Views: 1288

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: 1711

Re: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6382

Re: Imagén del pdf pixelada y borrosa

... XPS Document Writer", cIniFile) SetPrintDefault(cPrinter) PrnSetPage(9) ///a4 PrnPortrait() ///vertical // PrnLandScape() ///horizontal TPreview():lListViewHide := .T. //PRINT oPrn NAME "Impresión de facturas" PREVIEW PRINT oPrn NAME "Facturas ...
by postinelli
Thu Jun 18, 2015 11:44 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Imagén del pdf pixelada y borrosa
Replies: 1
Views: 410

Re: de Vertical a Horizontal, treport

PrnSetSize(2160,2790) //media hoja=2160 x 1395, carta=2160 x 2790 PrnLandScape() //horizontal REPORT oReport; TITLE "XXXXXXX"; PREVIEW COLUMN TITLE "FECHA","DOCUMENT"; DATA FIELD->FECHA; CENTERED; SIZE 8; GRID 1 *** *** END ...
by FranciscoA
Sat May 24, 2014 8:49 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: de Vertical a Horizontal, treport
Replies: 1
Views: 508

Re: landscape to a report sheet

I have the same problem and was solved using PrnLandscape() just before REPORT command, and put the PrnPortrait after the command, but the all the following reports remains landscaped.

I try the prnportrait after activate report but with the same wrong results.

What am I doing wrong?
by Carlos Mora
Thu Mar 17, 2011 9:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: landscape to a report sheet
Replies: 8
Views: 1795

Re: landscape to a report sheet

you are right Enrico!

i had declared PrnLandScape() after REPORT oRpt when I should have earlier

Now if you work

Thanks
by artu01
Wed Feb 16, 2011 12:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: landscape to a report sheet
Replies: 8
Views: 1795

Re: visualizar apaisado con la clase report (SOLUCIONADO)

Gracias a todos los q me ayudaron
No me funcionaba por que habia declarado la funcion PrnLandScape() despues de declarar REPORT oRpt
cuando se tiene que hacer antes.

Gracias
by artu01
Wed Feb 16, 2011 12:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: visualizar apaisado con la clase report
Replies: 7
Views: 1009

landscape to a report sheet

Hi, How to get landscape an sheet using report class I tried this way: ACTIVATE REPORT oRpt ; on init oRpt:PrnLandScape() but not working Also tried: ACTIVATE REPORT oRpt ; on init oRpt:oDevice:SetLandScape() Can you help me? Thanks! My configuration is: Fwh8.11, xharbour build ...
by artu01
Mon Feb 14, 2011 11:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: landscape to a report sheet
Replies: 8
Views: 1795

Re: visualizar apaisado con la clase report

Hola Francisco, Le puse oRpt:PrnLandScape() asi: ACTIVATE REPORT oRpt ; on init oRpt:PrnLandScape() pero no funciona tambien asi: ACTIVATE REPORT oRpt ; on init oRpt:oDevice:SetLandScape() y tampoco lo voltea Creo el comando SetLandScape() ...
by artu01
Mon Feb 14, 2011 11:05 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: visualizar apaisado con la clase report
Replies: 7
Views: 1009

Re: visualizar apaisado con la clase report

Hola, si usas TReport, prueba con: PrnLandScape() // Horizontal
by FranciscoA
Sat Feb 12, 2011 6:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: visualizar apaisado con la clase report
Replies: 7
Views: 1009

Re: Se necesita ayuda en el wiki !

... PostQuitMessage() PrintBegin() PrinterEsc() PrinterSetup() PrnBinSource() PrnDuplex() PrnGetName() PrnGetOrientation() PrnGetPort() PrnGetSize() PrnLandscape() PrnOffset() PrnPortrait() PrnSetCopies() PrnSetPage() PrnSetSize() RaConst() Radial() RaEnumConnections() RaEnumEntries() RaGetConst() ...
by Cgallegoa
Tue Feb 23, 2010 3:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Se necesita ayuda en el wiki !
Replies: 12
Views: 5510

Re: Tamaño de Hoja Con TReport

... oReport; etc... o asi: PrnSetSize( 2100, 2790 ) // tam carta PrnSetSize( 2100, 1395 ) // tam media carta //Orientacion PrnPortrait() //vertical PrnLandScape() //horizontal Saludos.
by FranciscoA
Mon Nov 16, 2009 12:28 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Tamaño de Hoja Con TReport
Replies: 3
Views: 796

Re: Landscape and portrait

Hello Micel,

PrnPortrait() and PrnLandScape() works on Print-start, not during printing.
To change the orientation during printing, You have to send the ESC-sequence
for the needed style after the page is printed ( look at Your printer-doc. )

Regards
Uwe :lol:
by ukoenig
Sat Mar 28, 2009 10:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Landscape and portrait
Replies: 2
Views: 416

Landscape and portrait

Hello,

Using the printer class, I want to print the first page in portrait, starting the second page I want to print in landscape.

I tried to use PrnPortrait() and PrnLandScape() but everything was printed in the same mode.

How can I establish what I want ?

Thanks a lot in advance for any help.
by driessen
Sat Mar 28, 2009 9:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Landscape and portrait
Replies: 2
Views: 416
Next

Return to advanced search