我需要知道是否已将任何文本输入组合框
如果我这样做:
If comboReason1.Value <> "" Then
它给了我一个错误,如果我这样做:
If comboReason1.Value <> Null then
这不起作用。
如何检查文本是否已输入组合框?
答案 0 :(得分:3)
If IsNull(comboReason1.Value) then
答案 1 :(得分:0)
我没有快速对这个位置进行测试,但请尝试
if comboReason1.Text<>"" then