by James Bott » Sun Jan 17, 2016 5:23 pm
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
----------------------------