Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I adjusted the size in report ( Detail->Detail Band Properties->Start Detail set on new page when less than I checked here by reducing the size but no result.
Note I want to print multiple copies (1+2 copies) (invoice, delivery Order) etc. which is pre-printed.
SELECT MyData.*;
99 AS RptPage;
FROM MyData;
WHERE [i]<whatever report criteria you need to use>[/i];
ORDER BY [i]<whatever line order you need>[/i];
INTO CURSOR RptData READWRITE
nRecordsPerPage = 10
SELECT RptData
nRptRecords = RECCOUNT()
FOR Cntr = 1 To nRptRecords STEP nRecordsPerPage
nLastRec = Cntr + 9
REPLACE ALL RptPage WITH Cntr;
FOR BETWEEN(RECNO , Cntr, nLastRec)
ENDFOR
SELECT RptData
REPORT FORM MyReport NOCONSOLE TO PRINT
nRecordsPerPage = 10
SELECT RptData
REPLACE ALL RptPage WITH INT(RECNO()/nRecordsPerPage) + 1
SELECT RptData
REPORT FORM MyReport NOCONSOLE TO PRINT