码迷,mamicode.com
首页 > 数据库 > 详细

DBGridEH序号的自动生成

时间:2019-02-09 10:42:41      阅读:309      评论:0      收藏:0      [点我收藏+]

标签:cti   自动   else   The   序号   for   tps   链接   vat   

序号的自动生成
1.定义变量
  private
        maxno:integer;
  public
        bmodified:boolean;
2.写函数
  function max(const a,b:integer):integer;
  begin
    if a>b then
       result:=a
    else
       result:=b;
  end;
3 FormCreate 中加入
  bmodified:=false;
  while not adoq_rsinfo.eof do
  begin
     maxno:=max(maxno, adoq_rsinfo.fields[0].asinteger);
     adoq_rsinfo.next;
  end;
4。在你的添加按钮中加入
  adoq_rsinfo.field[0].asinteger:=maxno+1; 
---------------------
作者:paulchenbo
来源:CSDN
原文:https://blog.csdn.net/paulchenbo/article/details/1553401
版权声明:本文为博主原创文章,转载请附上博文链接!

DBGridEH序号的自动生成

标签:cti   自动   else   The   序号   for   tps   链接   vat   

原文地址:https://www.cnblogs.com/jijm123/p/10357054.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!