Page 1 of 1

Report.prg FWH12.04

Posted: Mon Jun 25, 2012 4:04 pm
by Bayron
prev32.dll was not being located by report preview, even including path as sugested in:

http://forums.fivetechsupport.com/viewt ... th#p125619

Modified file starting in line 774:

Code: Select all

   if ! IsWin64()
      if ! File( cFilePath( GetModuleFileName( GetInstance() ) ) + "prev32.dll" )
         MsgAlert( "prev32.dll not found", "Error" )
         SetResources( ::hOldRes )
         return nil
      else   
         SET RESOURCES to cFilePath( GetModuleFileName( GetInstance() ) ) + "prev32.dll"
      endif   
   else   
      if ! File( cFilePath( GetModuleFileName( GetInstance() ) ) + "prev64.dll" )
         MsgAlert( "prev64.dll not found", "Error" )
         SetResources( ::hOldRes )
         return nil
      else   
         SET RESOURCES to cFilePath( GetModuleFileName( GetInstance() ) ) + "prev64.dll"
      endif   
   endif
 
Missing line in report to separate report's body from footer...
Image
Line 1658

Code: Select all

   if ::aGroups[ nGroup ]:lFooter
      ::Separator() //Bayron Landaverry
      ::StartLine( ::aGroups[ nGroup ]:nFooterHeight )
      ::aGroups[ nGroup ]:Footer( ::nRow )
      ::EndLine( ::aGroups[ nGroup ]:nFooterHeight )
   endif
 
Image

Re: Report.prg FWH12.04

Posted: Mon Jun 25, 2012 6:57 pm
by Antonio Linares
Bayron,

Thanks, added for next build! :-)

Re: Report.prg FWH12.04

Posted: Tue Jun 26, 2012 3:15 am
by Bayron
When seeing a report of many pages in Double page, if the NEXT button is used, the last page that can be seen (the one on the right), is a blank page.

Image

I think it should be the last printable page in the report...