Foxtable(狐表)用户栏目专家坐堂 → listview 怎么对单列刷新


  共有3118人关注过本帖树形打印复制链接

主题:listview 怎么对单列刷新

帅哥,在线噢!
有点蓝
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:超级版主 帖子:110495 积分:562359 威望:0 精华:9 注册:2015/6/24 9:21:00
  发帖心情 Post By:2023/8/29 9:16:00 [显示全部帖子]

从被移除的行的上一行开始,遍历后面的行重新生成序号,比如

dim r as row = tables(“表A”).current
dim i as integer = 0
if r.index > 0 then
i = r.index - 1
end if
r = tables(“表A”).rows(i)
dim m as integer = r("序号")
for j as integer = i+1 to tables(“表A”).rows.count - 1
m = m + 1
tables(“表A”).rows(j)("序号") = m
next

 回到顶部