Reputation: 1667
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
Reputation: 21
I solved the problem.
add to part
interface uses frxDesgn,frxDesgnCtrls, ....................
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
Reputation: 11
Drag and drop TFrxDesigner from Tool Platte. inside your TFrxReport
frxReport1.DesignReport;
Upvotes: 1
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
Reputation: 27384
You need to place a frxDesigner
component on the Form or Datamodule keeping your frxReport component to enable runtime design.
Upvotes: 3