Fast report designer run-time does not appear

12,172

Solution 1

You need to place a frxDesigner component on the Form or Datamodule keeping your frxReport component to enable runtime design.

Solution 2

I solved the problem.

  1. Open Delphi
  2. Follow the path Tools>Options>Library
  3. Add Library Path Fast_report_install_folder\source
  4. add to part

    interface uses frxDesgn,frxDesgnCtrls, ....................

  5. Now it will run the following code

     procedure TForm1.Button1Click(Sender: TObject);
         begin
         frxReport1.DesignReport;
     end;
    

It is written in 2013. I've had the same problem and solved it. Maybe it would be useful.

Solution 3

Drag and drop TFrxDesigner from Tool Platte. inside your TFrxReport

frxReport1.DesignReport;
Share:
12,172
Oussaki
Author by

Oussaki

My name is Oussama Abdallah (a.k.a Oussaki), Detail-oriented software developer (Android developer) with 4+ years’ success devising innovative and tailored solutions to meet ever-changing business requirements within diverse industries. Advanced skill with leading-edge programming tools complemented by proven ability to assimilate and rapidly utilize emerging technologies. Experience developing comprehensive algorithms and data-processing logic. here is a list of the main technologies I have used during my career: ■ Back-end: PHP MVC (Codeigniter, Custom MVC frameworks), NodeJS, Slim Framework. ■ Front-end: HTML5, CSS, JAVASCRIPT, JQUERY, BackboneJS ■ Mobile: Android, Cordova Framework ■ Databases: MySql, JSON Storage, SQLITE, NoSQL,AbsoluteDB,MSACCESS ■ Cloud: S3, AWS. ■ Source Control: Git, SVN, BitBucket. ■ Architectures: MVC,MVVM, Client/Server ■ Low-level languages: Intel 8086 assembly language Development Object-oriented Design (OOD), Unified Modeling Language (UML), Solutions Architecture, Technical Documentation, API Architect.

Updated on June 05, 2022

Comments

  • Oussaki
    Oussaki almost 2 years

    i just set at my VCL app a TfrxReport and then i just do a button click event to show the report designer when the application run , but the problem here is that the run time designer never appear to me ...

    procedure TForm1.Button1Click(Sender: TObject);
    begin
     frxReport1.DesignReport;
    end;
    
  • Oussaki
    Oussaki almost 11 years
    I don't have that that component i can(t find it in the list of fast report components ... do you think that my version is not completed .. ?
  • bummi
    bummi almost 11 years
    Designer is included from the Standard Version, (I'm unable to add the featurematrix). Without the Component designing at runtime is not possible. Since you mentioned having an enterprise version maybe something went wrong through installation.