T
ting__ting
Unregistered / Unconfirmed
GUEST, unregistred user!
COMPOSITEREPPORT可以合并几张报表,但是我想合并同一张报表,只是报表内容根据
查询条件而不同。但结果是我有几个查询条件,就出现几张相同的报表。而不是出现
几张结果不同的报表。我的源程序如下:
QR_Reports.Query1.Close;
QR_Reports.Query1.ParamByName('acct_nbr').AsInteger:=1209395;
QR_Reports.Query1.Open;
Add(QR_Reports);
QR_Reports.Query1.Close;
QR_Reports.Query1.ParamByName('acct_nbr').AsInteger:=2094056;
QR_Reports.Query1.Open;
Add(QR_Reports);
结果是出现两条相同的记录,acct_nbr=2094056;
查询条件而不同。但结果是我有几个查询条件,就出现几张相同的报表。而不是出现
几张结果不同的报表。我的源程序如下:
QR_Reports.Query1.Close;
QR_Reports.Query1.ParamByName('acct_nbr').AsInteger:=1209395;
QR_Reports.Query1.Open;
Add(QR_Reports);
QR_Reports.Query1.Close;
QR_Reports.Query1.ParamByName('acct_nbr').AsInteger:=2094056;
QR_Reports.Query1.Open;
Add(QR_Reports);
结果是出现两条相同的记录,acct_nbr=2094056;