Designing a report

Top  Previous  Next

The report designer can be opened using the “TfrxReport.DesignReport” method. The designer must be included in your project (either add the “TfrxDesigner” component to your form or add the “frxDesgn” unit to the “uses” list).

 

The “DesignReport” method has two default parameters:

 

procedure DesignReport(Modal: Boolean = True; MDIChild: Boolean = False);

 

The Modal parameter determines whether the designer is modal. The MDIChild parameter makes the designer window an MDI child window.

 

Example:

 

frxReport1.DesignReport;