High DPI

edited 11:33PM in FastReport VCL 5
Is there a way for Preview and Designer to become High DPI aware?

Comments

  • gpigpi
    edited 11:33PM
    Sorry, but FR doesn't have such feature at this moment
  • edited 11:33PM
    gpi wrote: »
    Sorry, but FR doesn't have such feature at this moment

    Really??? I did this:

    1. add an OnPreview event to the TfrxReport
    2. in the event handler, put the following code
    procedure TdmReport.frxReportPreview(Sender: TObject);
    var
      frmPreview:TfrxPreviewForm;
    begin
      frmPreview:=TfrxPreviewForm(frxReport.PreviewForm);
      frmPreview.Scaled:=true;
    end;
    

Leave a Comment