如何在没有setfocus的情况下检查组合框是否为空?

时间:2010-05-16 20:15:07

标签: sql vba ms-access

我需要知道是否已将任何文本输入组合框

如果我这样做:

If comboReason1.Value <> "" Then

它给了我一个错误,如果我这样做:

If comboReason1.Value <> Null then

这不起作用。

如何检查文本是否已输入组合框?

2 个答案:

答案 0 :(得分:3)

If IsNull(comboReason1.Value) then

答案 1 :(得分:0)

我没有快速对这个位置进行测试,但请尝试

if comboReason1.Text<>"" then