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;
You need to place a frxDesigner
component on the Form or Datamodule keeping your frxReport component to enable runtime design.