以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 能用文字替换True (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=119048) |
-- 作者:aza520 -- 发布时间:2018/5/16 18:15:00 -- 能用文字替换True 在窗口的组合框中的True能替换成“已批”吗 |
-- 作者:有点甜 -- 发布时间:2018/5/16 18:31:00 -- 1、为什么不直接改成文字【已批】的下拉?
2、你筛选代码那里判断文字的值,合成不同的条件即可。 |
-- 作者:aza520 -- 发布时间:2018/5/16 18:56:00 -- 请问老师该怎么改? With e.Form.Controls("ComboBox8") If .Value IsNot Nothing Then If Filter >"" Then Filter = Filter & " And " End If Filter = Filter & "业主审批 = \'" & .Value & "\'" End If End With
|
-- 作者:有点甜 -- 发布时间:2018/5/16 19:15:00 -- With e.Form.Controls("ComboBox8")
If .Value <> Nothing Then
If Filter > "" Then
Filter = Filter & " And "
End If
Filter = Filter & "业主审批 = " & iif(.Value="xxx", "true", "false") & ""
End If
End With
|