I just test small program from my old code to new FWH version.
Appear Empty paper?

Richard
Harbour 3.2.0dev (r2503251254) => Borland C++ v7.7 32bit
MySQL v8.0
Harbour 3.2.0dev (r2503251254) => Borland C++ v7.7 64bit

Richard,
It looks like your report is printing too close to the bottom margin which is causing a page feed. You can try changing the margins in the printer setup or changing them in the program code.
Regards,
James
Use the method "margin" to change the default 0.2 inch margins.
TReport::Margin( nValue, nType, nScale ) --> nil
Modify any of the top, left, bottom & right report margins.
nValue The value of the new margin to be used. Default is 0.2.
nType The type of margin to be changed:
LEFT 1 (default)
TOP 4
RIGHT 2
BOTTOM 5
nScale Inches or centimeters to be used:
INCHES 1 (default)
CENTIMETERS 2
Use the manifest constants:
RPT_LEFT
RPT_RIGHT
RPT_TOP
RPT_BOTTOM
Hello Richard,
I fixed these problem for me like this:
viewtopic.php?f=3t=31090p=179578hilit=oreport#p179578
Best regards,
Otto
&&&
Hi James, Otto
Thanks a lot for help me.
The problem be solved.
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 )
?