以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  删除为空的行  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=117139)

--  作者:hope1122
--  发布时间:2018/4/7 16:00:00
--  删除为空的行
在窗口中如何按控件清空后,删除表F中任务为false的所有行。




图片点击可在新窗口打开查看此主题相关图片如下:111.png
图片点击可在新窗口打开查看

--  作者:有点蓝
--  发布时间:2018/4/7 16:08:00
--  
for i as integer = tables("A").rows.count - 1 to 0 step -1
if tables("A").rows(i)("任务") = false
tables("A").rows(i).delete
end if
next
[此贴子已经被作者于2018/4/7 16:08:18编辑过]