我有这行:
Me.Combo103 = "SELECT profile from table where profile < '" & CAST(me.width AS DOUBLE) & "'"
它给我一个错误:编译错误:预期:列表分隔符或
您知道什么可能导致问题吗? 预先谢谢你。
答案 0 :(得分:1)
无论您要实现什么目标,都有几个问题:
尝试这样的事情:
Me.Combo103.RowSource = "SELECT profile from table where " & BuildCriteria("profile", dbDouble, "<" & CStr(Me.Width))