以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 复选框在filler中的应用问题? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=69475) |
-- 作者:mrak2 -- 发布时间:2015/6/5 17:16:00 -- 复选框在filler中的应用问题? 请问有没有在filler中过滤掉已勾选行的方法? 还有就是问下 For Each r As Row In Tables("员工").GetCheckedRows r.DeleteNext 上面的语句能删除已勾选的如何改造可以删除未勾选的。
GetunCheckedRows??? |
-- 作者:Bin -- 发布时间:2015/6/5 17:29:00 -- for i as integer = Tables("员工").rows.count-1 to 0 step-1 if Tables("员工").rows(i).Checked = false then Tables("员工").rows(i).delete() end if
next |