remove "prepared Report" option

Hi,

I'm new to Fast Reports, but trying to get up to speed.

I've added pdfExport and so now get the option under the Save in the preview for the .pdf format. How can I get rid of the "Prepared Report" option that's there by default?

I'm just trying to simplify for my customers. If the "Prepared Report" option is there they'll use it and send reports around that can't be opened...

Screen Cap attached.

Comments

  • gpigpi
    edited 9:32PM
    uses frxPreview;
    procedure TForm1.frxReport1Preview(Sender: TObject);
    begin
      TfrxPreviewForm(frxReport1.PreviewForm).ExportPopup.Items[0].Visible := False;
    end;
    

Leave a Comment