vb如何判断文本框为空,If语句是?

2025-01-29 21:51:09
推荐回答(2个)
回答1:

假设你要判断的文本框名为text1。
if len(text1.text)=0 then print "文本框无内容"。
其中len是求字符串长度

回答2:

如下 if text1.text="" then 'text1为空时 语句end if