rbWiki > Output > Preview > Hide Print Button on Print Preview

Hide Print Button on Print Preview

Table of contents
No headers

In the OnPreviewFormCreate event put:

uses
  ppPrvDlg;

procedure TForm1.ppReport1PreviewFormCreate(Sender: TObject);
begin
  TppPrintPreview(ppReport1.PreviewForm).PrintButton.Visible := False;
end;

 

Tags
none

Files (0)

 
You must login to post a comment.