A recent client of mine insisted that he wanted the app to remove the load and save button for the quickreports.
After searching for around 2 hours, i found the solution from mr.wu
So thank you mr.wu
Here is the code
another way can solve this problem.
(1)append
uses ...QRPrntr, QRPrev,...
(2)complete the OnPreview method for the QuickRep as following:
procedure TqrpLabelGrader.QuickRep1Preview(Sender: TObject);
var
qrStandardPreview: TQRStandardPreview;
begin
qrStandardPreview:=TQRStandardPreview.CreatePreview(Self, TQRPrinter(Sender));
qrStandardPreview.SaveReport.Enabled := False;
qrStandardPreview.LoadReport.Enabled := False;
qrStandardPreview.Show;
end;
HPH,
wu yong
Enjoy
Coffee Cup