以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- [求助]判断 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=149885) |
-- 作者:crazyfengyu -- 发布时间:2020/5/14 15:16:00 -- [求助]判断 dim r as row = tables("表a").Current if r("计算") isnot nothing then
Message.show(1) end id 当计算为NULL 也会弹框显示1
|
-- 作者:有点蓝 -- 发布时间:2020/5/14 15:31:00 -- dim r as row = tables("表a").Current if r isnot nothing andalso r.isnull("计算") = false then Message.show(1) end if |