You are not logged in.
Pages: 1
Hello,
the problem is that in Quickreport the code for printing shapes test for filter TQRPDFDocumentFilter. So if you use TQRSynPDFDocumentFilter all shapes are not printed.
procedure TQRPDFShape.Print(OfsX,OfsY : Integer);
begin
if parentreport.Exporting and IsEnabled then
begin
if (ParentReport.ExportFilter is TQRPDFDocumentFilter) then
TQRPDFDocumentFilter(ParentReport.ExportFilter).acceptgraphic(
qrprinter.XPos(OfsX + self.Size.Left),
qrprinter.YPos(OfsY+ self.size.top ), self );
end;
Pages: 1