T
tullip
Unregistered / Unconfirmed
GUEST, unregistred user!
我用query1.Close;{首先关闭query1}
query1.SQL.Clear;{置空SQL语句}
query1.SQL.Add('select *');
query1.SQL.Add('from claim_data');
query1.SQL.Add('where claim_data.部门=1');
query1.ParamByName('p1').AsString:=ComboBox1.Text;
query1.Prepare;{准备展开query1语句}
query1.Open;{展开}
语句进行查询
然后用
query1.Close;
query1.Params.ParamValues['p1']:=ComboBox1.text;
query1.Open;
form4.qrlabel2.caption:=form5.ComboBox1.text;
form4.quickrep1.preview;
进行打印,本人想在打印中将金额进行数据求和,我该怎么做,请您给我详细的程序代码
我在线等待谢谢!,
query1.SQL.Clear;{置空SQL语句}
query1.SQL.Add('select *');
query1.SQL.Add('from claim_data');
query1.SQL.Add('where claim_data.部门=1');
query1.ParamByName('p1').AsString:=ComboBox1.Text;
query1.Prepare;{准备展开query1语句}
query1.Open;{展开}
语句进行查询
然后用
query1.Close;
query1.Params.ParamValues['p1']:=ComboBox1.text;
query1.Open;
form4.qrlabel2.caption:=form5.ComboBox1.text;
form4.quickrep1.preview;
进行打印,本人想在打印中将金额进行数据求和,我该怎么做,请您给我详细的程序代码
我在线等待谢谢!,