vb中 文本框不为空怎么表达

是不是 : Text1.text<>"" 这样表达?我运行后,说缺少表达式
2024-12-12 18:21:10
推荐回答(5个)
回答1:

你的思路对的,但是没有判断,所以没有办法执行。
用If...Then...Else语句

If text1 <> "" Then
End If

如果你需要在判断后进行操作,可以这样
If text1 <> "" Then MsgBox "不为空"

或者这样

If text1 <> "" Then
MsgBox "不为空"
Else
MsgBox "空"
End if

回答2:

If text1 <> "" Then MsgBox "这样就不会缺少表达式"

回答3:

if ......then

[elseif]

[elseif]

[else]

end if

回答4:

if len(text1) then
'不为空
else
'空
end if

回答5:

if text1.text <> "" then

end if