Oussaki
Oussaki

Reputation: 1667

Fast report designer run-time does not appear

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;

Upvotes: 3

Views: 13892

Answers (4)

Muslum CENGIZ
Muslum CENGIZ

Reputation: 21

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.

Upvotes: 2

mahmoud mansour
mahmoud mansour

Reputation: 11

Drag and drop TFrxDesigner from Tool Platte. inside your TFrxReport

frxReport1.DesignReport;

Upvotes: 1

gpi
gpi

Reputation: 544

It seems you still use some FR Embarcadero edition packages. Uninstall all instances of FR, remove all FR's files and folders (see system and hidden folders too) and then install FR Enterprise again

Upvotes: 0

bummi
bummi

Reputation: 27384

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

Upvotes: 3

Related Questions