PtblRV error

General TRichView support forum. Please post your questions here
Post Reply
mdv
Posts: 1
Joined: Fri May 06, 2011 7:44 am

PtblRV error

Post 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 ===
Sergey Tkachenko
Site Admin
Posts: 17559
Joined: Sat Aug 27, 2005 10:28 am
Contact:

Post by Sergey Tkachenko »

Yes, this is a bug. It is already fixed in the latest version (TRichView 13.0.5)
Post Reply