Search found 108 matches: orep

Return to advanced search

Re: Report Xbrowse Multiheader

... this multiheader project with oBrw:report() is too hard because there many problems I use to print this command oApp:oGrid:Report( cTitle, , , { | oRep, oBrw, nCall| MyRepSetup( oRep, oApp:oGrid, nCall,1) } ) MyRepSetup static function MyRepSetUp( oRep, oBrw, nCall,ntipo )    Local oFont  ...
by Silvio.Falconi
Tue Dec 05, 2017 6:00 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report Xbrowse Multiheader
Replies: 17
Views: 3376

Re: Report from xBrowse, need options

Done

bSetUp := {|oRep| oRep:CellView()}

xBr:Report("Printing....",.T.,,bSetUp )
by Adolfo
Mon Aug 21, 2017 12:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report from xBrowse, need options
Replies: 1
Views: 594

Re: Mr Rao, How insert image using oBrw:Report ? (Solved)

... ; SIZE 80, 15 PIXEL 2007 ; NOBORDER ; PROMPT " &oBrw1:Report() " ; FILENAME c_Path1 + "REPORT.bmp" ; ACTION ( bImage := {|oRep| oRep:SayBitmap(0.2, 7, c_Path1 + "Customer.bmp")}, ; bStart := {|oRep| oRep:bStartPage := bImage}, ; oBrw1:Report("Xbrowse report ...
by ukoenig
Wed Aug 16, 2017 9:35 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr Rao, How insert image using oBrw:Report ? (Solved)
Replies: 3
Views: 791

Re: Pregunta sobre Report

Gracias Karina, uso tu codigo que me colocastes y me genera error, a ti te funciona asi.

Funciona pero si quito esta linea
HEADER "REPORTE", ;
"Fecha: "+ DTOC( DATE() ), ;
"Hoja: " + STR( oRep:npage, 3 )
by ruben Dario
Wed Feb 15, 2017 1:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Pregunta sobre Report
Replies: 5
Views: 792

Re: Filtering a report.

Gustavo,

You may check how the nTotal variable is being modified:

oRep:bFor := { || MsgInfo( nTotal ), nTotal >= 0 }
by Antonio Linares
Wed May 11, 2016 8:04 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Filtering a report.
Replies: 2
Views: 488

Re: PRINT oPrn en Archivo.txt no funciona.

... FILE clause and then while defining REPORT, the printer object may be set as DEVICE of the report Eg. PRINTER oPrn FILE "rep.pdf" REPORT oRep {<othere caluses>] DEVICE oPrn.
by nageswaragunupudi
Fri Mar 04, 2016 7:47 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: PRINT oPrn en Archivo.txt no funciona.
Replies: 4
Views: 1199

Re: Appear Empty paper when use TReport

Can the issue be solved by suitably setting top and bottom margins by

oRep:Margin( nPixels, RPT_BOTTOM, 0 )
and
oRep:Margin( nPixels, RPT_TOP, 0 )
?
by nageswaragunupudi
Mon Jan 18, 2016 2:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Appear Empty paper when use TReport
Replies: 4
Views: 711

New FTDN August/Agosto 2015 (FWH 15.08)

August 2015 ========== * Enhancement: treport.prg: New data nRptAlign. By setting oRep:nRptAlign to RPT_RIGHT or RPT_LEFT, a report can be aligned to Right or Left of the page instead of the default Center. * New: function SetCustomPrintPreview( bPreview (0r) NIL ...
by Antonio Linares
Wed Sep 09, 2015 9:12 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN August/Agosto 2015 (FWH 15.08)
Replies: 12
Views: 3568

Re: Metodo Report de XBrowse - Totales

Please make this correction in the static function MakeRepCol( oRep, oXCol ) in xbrowe.prg Existing code:      oCol := RptAddColumn( aHeader, nil ,;                          ...
by nageswaragunupudi
Sun Jul 19, 2015 9:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Metodo Report de XBrowse - Totales
Replies: 2
Views: 520

Re: De REPORT a PDF sin pasar por PREVIEW

Manuel,

ya me respondió Rao:

PRINT oPrn FILE "pdffilename.PDF"
REPORT oRep <clauses> TO DEVICE oPrn

pruébalo :-)
by Antonio Linares
Tue Nov 18, 2014 11:07 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: De REPORT a PDF sin pasar por PREVIEW (Solucionado)
Replies: 9
Views: 1366

Re: New FWH 13.07 revised build

And oReport:bInit can be setted globally at the main function? Not possible because it is not a class data. I would even advise it is not desirable. A project would contain many reports some dealing with dbfs, some arrays, ...
by nageswaragunupudi
Fri Aug 23, 2013 3:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: New FWH 13.07 revised build
Replies: 28
Views: 6748

Re: Asignar bPrint de Tpreview

... write a function which replaces Method PrintPage(), in your style. Within the function, you can use all methods and data of TPreview. bPrint := { |oRep| MyPrintPage( oRep ) } function MyPrintPage( Self ) <here write your function as if you are replacing method PrintPage() > return nil Right, ...
by mastintin
Fri Aug 16, 2013 7:36 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Asignar bPrint de Tpreview
Replies: 4
Views: 979

Re: Asignar bPrint de Tpreview

... write a function which replaces Method PrintPage(), in your style. Within the function, you can use all methods and data of TPreview. bPrint := { |oRep| MyPrintPage( oRep ) } function MyPrintPage( Self ) <here write your function as if you are replacing method PrintPage() > return nil
by nageswaragunupudi
Fri Aug 16, 2013 4:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Asignar bPrint de Tpreview
Replies: 4
Views: 979

Re: XBREPORT : Less known features of FWH- 1

... and has the same limitations of the Report() method. We can customize the report's parameters with the clause XBREPORT .............. REPSETUP { |oRep,n| <report setup code > } This codeblock's functionality is the same as bSetUp parameter in oBrw:Report(...) method. Let us try to improve ...
by nageswaragunupudi
Tue Jul 30, 2013 9:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBREPORT : Less known features of FWH- 1
Replies: 8
Views: 2168

Re: XBREPORT : Less known features of FWH- 1

... oInforme:oFont1 ; HEADER oSayEmpresa(), "Fecha: "+dtoc(Date()), "Hora: "+Time() ; FOOTER "Página: "+str(oRep:nPage,3) ; CAPTION "Vista Previa del Informe "+oInforme:cTitulo1 PREVIEW I mean, several titles, fonts, the header, footer and caption. ...
by elvira
Tue Jul 30, 2013 9:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBREPORT : Less known features of FWH- 1
Replies: 8
Views: 2168
PreviousNext

Return to advanced search