W
wang8139
Unregistered / Unconfirmed
GUEST, unregistred user!
打开报表设计的代码
procedure TPrint.Designer(APath: string;
ADS: TDataSource);
//两个传入参数,都有数据
begin
frxReport.LoadFromFile(APath);
//加载报表
frxDbDataset.DataSource := ADS;
frxReport.DataSet := frxdbdataset;
frxReport.DesignReport;
end;
为什么这时在设计窗口里,在data栏里面没有frxdbdataset对象?
昨天想了一天都没搞定,急,在线等,
procedure TPrint.Designer(APath: string;
ADS: TDataSource);
//两个传入参数,都有数据
begin
frxReport.LoadFromFile(APath);
//加载报表
frxDbDataset.DataSource := ADS;
frxReport.DataSet := frxdbdataset;
frxReport.DesignReport;
end;
为什么这时在设计窗口里,在data栏里面没有frxdbdataset对象?
昨天想了一天都没搞定,急,在线等,