Search found 100 matches: orpt

Return to advanced search

Re: XBrowse: report header and footer

Solved for footer:

oRpt:bPostEnd = { || oRpt:Say( ... ) }

Any ideas for header? I'm trying with oRpt:bInit but it prints after the columns header.

EMG
by Enrico Maria Giordano
Wed Dec 16, 2020 2:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBrowse: report header and footer
Replies: 10
Views: 1236

Re: CENTRADO DE CABECERAS EN TREPORT

... segun el alineamiento de la columna correspondiente, como hago para cambiarlo y ponerlas todas centradas por ejemplo? He probado con oHeader (ej:oRpt:oHeader:aPad[1] := RPT_CENTER etc,etc y nada funciona Los totales de las columnas numericas salen centrados y quisiera alinearlos a la derecha ...
by nageswaragunupudi
Mon Aug 31, 2020 2:46 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: CENTRADO DE CABECERAS EN TREPORT
Replies: 7
Views: 1184

CENTRADO DE CABECERAS EN TREPORT

... segun el alineamiento de la columna correspondiente, como hago para cambiarlo y ponerlas todas centradas por ejemplo? He probado con oHeader (ej:oRpt:oHeader:aPad[1] := RPT_CENTER etc,etc y nada funciona Los totales de las columnas numericas salen centrados y quisiera alinearlos a la derecha ...
by rterraz
Sun Aug 30, 2020 4:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: CENTRADO DE CABECERAS EN TREPORT
Replies: 7
Views: 1184

Re: IMPRIMIR GRAFICA ANTES QUE LAS COLUMNAS CON oReport

... como un excel, hay un metodo en la clase que es :Grid() sobre el reporte "no en la columna" y otro que dibuja lineas, prueba primero con oRpt:Grid en la clase ......   METHOD Line( nTop, nLeft, nBottom, nRight, nPen, nScale )   METHOD Shadow( nHeight )   METHOD Grid( ...
by joseluisysturiz
Wed Aug 14, 2019 6:48 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRIMIR GRAFICA ANTES QUE LAS COLUMNAS CON oReport
Replies: 4
Views: 978

Re: IMPRIMIR GRAFICA ANTES QUE LAS COLUMNAS CON oReport

... como un excel, hay un metodo en la clase que es :Grid() sobre el reporte "no en la columna" y otro que dibuja lineas, prueba primero con oRpt:Grid en la clase ......   METHOD Line( nTop, nLeft, nBottom, nRight, nPen, nScale )   METHOD Shadow( nHeight )  ...
by armando.lagunas
Wed Aug 14, 2019 4:34 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: IMPRIMIR GRAFICA ANTES QUE LAS COLUMNAS CON oReport
Replies: 4
Views: 978

Re: Problemas con Report

Si solo cambias

oRpt : nTotalLine := 0

y dejas las demás sigue ocurriendo ?
by cnavarro
Tue Mar 13, 2018 8:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Report
Replies: 22
Views: 2623

Re: Problemas con Report

Haciendo pruebas y comentariando esta linea: oRpt : CellView() funciona perfectamente. Me interesa esta opción. Alguna manera de arreglarlo ?

Saludos
by horacio
Tue Mar 13, 2018 2:55 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problemas con Report
Replies: 22
Views: 2623

Re: Clase Report y FwhMariaDb

Algo asi:

REPORT oPrn .....
...
...
..

oRpt:bSkip := {|| oRs:Skip(), SYSREFRESH() }

END REPORT

ACTIVATE REPORT oRpt WHILE !oRs:EOF()
by Willi Quintana
Tue Nov 28, 2017 2:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase Report y FwhMariaDb
Replies: 5
Views: 746

CRYSTAL REPORT XI print to printer

Dear All, I try this code for Preview and Export to file, it's work well but print to printer doesn't work and got an error. oRpt:SelectPrinter( cPrinter ) // Error missing method oRpt:PrintOut("False",nCopy) // Error missing method Thanks in advance for any help or suggestion. ...
by dutch
Mon Apr 24, 2017 10:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: CRYSTAL REPORT XI print to printer
Replies: 2
Views: 514

oReport:SetCopies No funciona

Hola Fivewinners...

eso.. oReport:SetCopies() no funciona, y PrnSetCopies() llamado desde dentro del report oRpt...activate tampoco.
Alguna idea o workaround.

Saludos

Desde Chile
Adolfo
by Adolfo
Fri Feb 10, 2017 2:08 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: oReport:SetCopies No funciona
Replies: 1
Views: 426

Re: TLabel class

Add New Method on Label Class METHOD PrintBarcode(oRpt,nVal,nRiga,nCol,nType) METHOD  PrintBarcode(cCode,nLine,nLeft,nType,nWidth,nHeigth,lBanner,lHorz,cFont,nColor)  CLASS TLabellocal nRow    := ::nRow     +nLinelocal ...
by Silvio.Falconi
Tue Jan 24, 2017 11:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TLabel class
Replies: 17
Views: 5139

Barcode Report

How I can add on RptColumn ( TREPORT CLASS) a bar code as I can print a image (image imgdata) or a graph ?

...using oRpt:oDevice
by Silvio.Falconi
Sun Apr 17, 2016 7:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Barcode Report
Replies: 3
Views: 700

Re: How do I code this report ?

There is a clause ON STARTPAGE:

ACTIVATE REPORT oRpt ON STARTPAGE bStartpage...

James
by James Bott
Wed May 27, 2015 2:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How do I code this report ?
Replies: 7
Views: 936

Re: Report Eject

Try:

Create a function to return the quarter of the year. Sort the array by quarter plus whatever else you need.

function quarter( dDate )
...
return nQuarter

report oRpt...group on quarter( aArray[...] )

activate report oRpt...on endgroup {|oRpt| oRpt:endpage() }
by James Bott
Fri Mar 20, 2015 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report Eject
Replies: 1
Views: 385
Next

Return to advanced search