Page 1 of 1

PtblRV error

Posted: Fri May 06, 2011 7:51 am
by mdv
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 ===

Posted: Fri May 06, 2011 8:11 am
by Sergey Tkachenko
Yes, this is a bug. It is already fixed in the latest version (TRichView 13.0.5)