以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 空行不可增加行 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=116425) |
-- 作者:王明晨 -- 发布时间:2018/3/24 13:35:00 -- 空行不可增加行 您好! 在窗口录入时,当最后一条记录“姓名”为空时不可以增加行,怎样设置才可以! 以上谢谢!
|
-- 作者:有点蓝 -- 发布时间:2018/3/24 15:10:00 -- BeforeAddDataRow事件 dim r as row = tables(e.datatable.name).rows(tables(e.datatable.name).rows.count - 1) if r isnot nothing then if r.isnull("姓名") then e.cancel = true end if
|