以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [求助]IsNot Nothing 为何不好使呢? (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=711) |
-- 作者:t_fs -- 发布时间:2008/9/26 18:40:00 -- [求助]IsNot Nothing 为何不好使呢? Dim Proc As New Process Proc.File =Tables("厂家").Current("邮箱") If Proc.File>"" Then Proc.File ="mailto: " & Tables("厂家").Current("邮箱") Proc.Start() End If 上述代码为发邮件的按扭,可以正常执行的。但是如果将 If Proc.File>"" Then 换成 If Proc.File IsNot Nothing Then 后,为何就不好使了,不能正确判断了呢? 谁能解释一下吗? |
-- 作者:czy -- 发布时间:2008/9/26 19:14:00 -- is和isnot是针对对象的,字符只能用大于、等于了 [此贴子已经被作者于2008-9-26 19:13:46编辑过]
|
-- 作者:t_fs -- 发布时间:2008/9/26 19:52:00 -- 明白了!谢谢! |