PRINTING Question

edited 8:11AM in FastReport 4.0
I've created letters that I merge data with. Is there a way to print the page without the data?

Thanks
Wayne

Comments

  • edited 8:11AM
    After much trial and error I ended up printing the form with the designer in a Delphi project.
    I load the report, give the printer a title, get rid of the inspector and guide and the print.


    CloseDesigner;
    if DMOptions.LoadFRXReport(DMOptions.frxPROLetter, scode, 'EN') then
    RefreshfrxDesigner(nil);

    printer.Title :=
    q.FieldByName('lrCode').AsString
    + ' (' + q.FieldByName('lrType').AsString + ') '
    + q.FieldByName('lrDescription').AsString
    + '.pdf';


    Designer.Inspector.Visible := false;
    RulersMI.Click;
    GuidesMI.Click;

    self.Print;

Leave a Comment

Rich Text Editor. To edit a paragraph's style, hit tab to get to the paragraph menu. From there you will be able to pick one style. Nothing defaults to paragraph. An inline formatting menu will show up when you select text. Hit tab to get into that menu. Some elements, such as rich link embeds, images, loading indicators, and error messages may get inserted into the editor. You may navigate to these using the arrow keys inside of the editor and delete them with the delete or backspace key.