- 设计报表
通过“TfrxReport.DesignReport”方法调用报表设计器。你必须在你的项目中包含报表设计器
(必要条件是:要么使用“TfrxDesigner”组件,要么增加“frxDesgn”单元到uses列表)
DesigReport 方法接受两个默认参数:
procedure DesignReport(Modal: Boolean = True;
MDIChild: Boolean = False);
Modal参数决定设计器是否被模态,MDIChild参数允许把设计器窗体作为一个MDI子窗体。
例如:
frxReport1.DesignReport;
时间: 2024-10-13 16:57:03