Search found 4301 matches: report

Return to advanced search

xbrowse report group

to select the group I give the way that the end user can select the group (ngroup ) from an array aGroup on which to print and groups Before printing I have to index on the selected group if an archive (odbf) is online I do it normally oDbf:setorder(nGroup)        oDbf:gotop()       ...
by Silvio.Falconi
Mon Apr 29, 2024 4:44 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse report group
Replies: 0
Views: 47

Re: Report rpreview excel button disable not work

nageswaragunupudi wrote:Do not use 22.12 code.
Use this code:
Code: Select all  Expand view
     if !::lHaru .and. Empty( ::oDevice:cFile ) .and. !PrintQueue()
         Eval( ::bPreview, ::oDevice )
      else
         PrintEnd()
      endif


Yes, I know.
I just want to show new version problems code
by richard-service
Sun Apr 28, 2024 1:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Do not use 22.12 code. Use this code:      if !::lHaru .and. Empty( ::oDevice:cFile ) .and. !PrintQueue()         Eval( ::bPreview, ::oDevice )      else         PrintEnd()    &n...
by nageswaragunupudi
Sat Apr 27, 2024 9:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Please try this change in \source\classes\report.prg : Please locate these lines towards the end of METHOD Activate( .......... ) CLASS TReport      if !::lHaru .and. Empty( ::oDevice:cFile ) .and. !PrintQueue()         PrintEnd()// ...
by richard-service
Sat Apr 27, 2024 5:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Please try this change in \source\classes\report.prg : Please locate these lines towards the end of METHOD Activate( .......... ) CLASS TReport      if !::lHaru .and. Empty( ::oDevice:cFile ) .and. !PrintQueue()  ...
by nageswaragunupudi
Sat Apr 27, 2024 4:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Get in touch with the FiveTech team, I think someone committed an atrocity in the RPREVIEW.PRG class of the version you use. Ponte en contacto con el equipo de FiveTech, creo que alguien cometió una atrocidad en la clase RPREVIEW.PRG de la versión que utilizas. Tks. Regards, Saludos. Yes, I think so.
by richard-service
Sat Apr 27, 2024 3:48 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Get in touch with the FiveTech team, I think someone committed an atrocity in the RPREVIEW.PRG class of the version you use.

Ponte en contacto con el equipo de FiveTech, creo que alguien cometió una atrocidad en la clase RPREVIEW.PRG de la versión que utilizas.

Tks.

Regards, saludos.
by karinha
Fri Apr 26, 2024 5:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

... Excel en Preview     oReport:bInit := { || ( cAlias )->( DBGOTOP() ) }  Regards, Saludos. I build fwh\samples\report.prg not working. // Testing FiveWin built-in report engine and print preview#include "FiveWin.ch"#include "Report.ch"static ...
by richard-service
Fri Apr 26, 2024 4:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

You put:

Tú colocaste:

Code: Select all  Expand view


   LOCAL cAlias

   USE...

   cAlias := ALIAS()

// Habilita Boton Excel en Preview
     oReport:bInit := { || ( cAlias )->( DBGOTOP() ) }
 


Regards, saludos.
by karinha
Fri Apr 26, 2024 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Prueba este ejemplo, pls. // C:\FWH\SAMPLES\TESTRPT2.PRG// FiveWin own report engine sample#include "Report.ch"#include "FiveWin.ch"STATIC oReport//----------------------------------------------------------------------------//Function Main()  ...
by richard-service
Fri Apr 26, 2024 11:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

Prueba este ejemplo, pls. // C:\FWH\SAMPLES\TESTRPT2.PRG// FiveWin own report engine sample#include "Report.ch"#include "FiveWin.ch"STATIC oReport//----------------------------------------------------------------------------//Function Main()  ...
by karinha
Fri Apr 26, 2024 11:38 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

... := {|| ::oDB:Skip()  }   // .OR.// oRep:bInit := { || ::oDB:MoveFirst() }// oRep:bSkip := { || ::oDB:MoveNext() }   ACTIVATE REPORT oReport WHILE .NOT. ::oDB:Eof() ;      ON STARTGROUP oReport:NewLine()   oFont[ 1 ]:End()   oFont[ 2 ]:End()  ...
by richard-service
Fri Apr 26, 2024 3:03 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work

...  }   // .OR.// oRep:bInit := { || ::oDB:MoveFirst() }// oRep:bSkip := { || ::oDB:MoveNext() }   ACTIVATE REPORT oReport WHILE .NOT. ::oDB:Eof() ;      ON STARTGROUP oReport:NewLine()   oFont[ 1 ]:End()  ...
by karinha
Thu Apr 25, 2024 12:29 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613

Re: Report rpreview excel button disable not work



Dear Karinha,
Yes, I saw full suggestion and samples.
But I don't know where set error or need to add some code.
Any idea to study it?
by richard-service
Thu Apr 25, 2024 2:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Report rpreview excel button disable not work-SOLVED
Replies: 15
Views: 613
Next

Return to advanced search