ReportPage in form
Hi. i using Fst report 4.2. I wanna put Tfrxreportpage in form and insert bands and labels,.. in form without using frxreport page.
how can i do this?
i writing this code but not work.
var
Frxpage:TfrxReportPage;
procedure TFrmCreateReport.Button1Click(Sender: TObject);
begin
Frxpage:=TfrxReportPage.Create(Application);
// Frxpage.Parent:=frxpage;
Frxpage.PaperHeight:=29.70;
Frxpage.PaperWidth:=21;
end;
how can i do this?
i writing this code but not work.
var
Frxpage:TfrxReportPage;
procedure TFrmCreateReport.Button1Click(Sender: TObject);
begin
Frxpage:=TfrxReportPage.Create(Application);
// Frxpage.Parent:=frxpage;
Frxpage.PaperHeight:=29.70;
Frxpage.PaperWidth:=21;
end;
Comments
frxReport1.EngineOptions.DestroyForms:=False;
frxReport1.Preview:=FrxPreview;
frxReport1.DesignReportInPanel(PgDesign);
but i show only design grid to my customers.how to do this action?