VBA脚本中判断Variant变量是否为空的方法,一般有以下三种:
第一种:
if typeName( curVariant) <> "Nothing" then
...
end if
第二种:
if typeName( curVariant) <> "Empty" then
...
end if
第三种:
if Not curVariant is Nothing then
...
end if
VBA脚本中判断Variant变量是否为空的方法,一般有以下三种:
第一种:
if typeName( curVariant) <> "Nothing" then
...
end if
第二种:
if typeName( curVariant) <> "Empty" then
...
end if
第三种:
if Not curVariant is Nothing then
...
end if