你的思路对的,但是没有判断,所以没有办法执行。
用If...Then...Else语句
If text1 <> "" Then
End If
如果你需要在判断后进行操作,可以这样
If text1 <> "" Then MsgBox "不为空"
或者这样
If text1 <> "" Then
MsgBox "不为空"
Else
MsgBox "空"
End if
If text1 <> "" Then MsgBox "这样就不会缺少表达式"
if ......then
[elseif]
[elseif]
[else]
end if
if len(text1) then
'不为空
else
'空
end if
if text1.text <> "" then
end if