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 后,为何就不好使了,不能正确判断了呢?