PtblRV error
Posted: Fri May 06, 2011 7:51 am
Hello,
It seems that we have found an error in unit 'PtblRV'. There are incorrect checks of page limits at the printing. Is it an error? If not explain us please this code:
procedure TPrintableRV.PrintPages(firstPgNo, lastPgNo: Integer;
const Title: String; Copies: Integer; Collate: Boolean);
== source ===
if firstPgNo>RVPrint.FirstPageNo then
firstPgNo := RVPrint.FirstPageNo;
== source ===
== modified source ===
if firstPgNo<RVPrint.FirstPageNo then
firstPgNo := RVPrint.FirstPageNo;
== modified source ===
It seems that we have found an error in unit 'PtblRV'. There are incorrect checks of page limits at the printing. Is it an error? If not explain us please this code:
procedure TPrintableRV.PrintPages(firstPgNo, lastPgNo: Integer;
const Title: String; Copies: Integer; Collate: Boolean);
== source ===
if firstPgNo>RVPrint.FirstPageNo then
firstPgNo := RVPrint.FirstPageNo;
== source ===
== modified source ===
if firstPgNo<RVPrint.FirstPageNo then
firstPgNo := RVPrint.FirstPageNo;
== modified source ===