回 帖 发 新 帖 刷新版面

主题:利用下拉框控件的有或没有值作为选择条件


利用下拉框控件的有或没有值作为选择条件来实现两种查询,但是只能实现一种,程序如下:
if thisform.combo5.rowsource <> ' '
select * from 视图2 where file_id = allt(thisform.TEXT3.value) and kind_id = val(allt(thisform.combo5.value)) 
else
select * from 视图2 where file_id = allt(thisform.TEXT3.value)   
endi

只能检索:select * from 视图2 where file_id = allt(thisform.TEXT3.value) and kind_id = val(allt(thisform.TEXT3.value))
请问该怎样设置

回复列表 (共1个回复)

沙发

试试用:if !EMPTY(thisform.combo5.Value)


我来回复

您尚未登录,请登录后再回复。点此登录或注册