JackQu的程序员博客

欢迎来的我Blog.这里记录工作学习的点滴,愿与大家分享。欢迎大家共同交流 。

导航

字段值累加到字符串


 1  var   sl:TStrings;
 2   begin
 3     CommitDataSet;
 4      sl:=TStringList.Create;
 5     with dsrBill.DataSet do  try
 6      if  FieldByName('SERVICETYPE').AsInteger=0 then sl.Add('服务方式为空!');
 7       if Trim(FieldByName('Attn').AsString)=''  then sl.Add('联系人为空!');
 8         if sl.Count>0 then begin
 9         //Result:=False;
10         ShowMessage(sl.Text);
11         exit;
12         end;
13         finally
14         sl.free;
15     end

posted on 2008-12-19 15:46  Qcj  阅读(253)  评论(0编辑  收藏  举报