以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 请问is nothing和= nothing是不是不一样 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=80919) |
-- 作者:fengnu -- 发布时间:2016/2/10 21:31:00 -- 请问is nothing和= nothing是不是不一样 如题,我的列是字符类型,相同的代码 dim sum as integer=0 dim sum1 as integer=0 if r("列名")=nothing then sum =sum+1 endif 或者if r("列名") is nothing then sum 1=sum1+1 endif 两个代码得到的结果不一样。 我用手机登陆,请原谅完整代码实在是不方便输入 |
-- 作者:Hyphen -- 发布时间:2016/2/12 9:10:00 -- vb语法中,nothing要用Is进行比较。 |