以文本方式查看主题 - Foxtable(狐表) (http://foxtable.net/bbs/index.asp) -- 专家坐堂 (http://foxtable.net/bbs/list.asp?boardid=2) ---- 逻辑列筛选 (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=20581) |
||||
-- 作者:wilson -- 发布时间:2012/6/12 23:23:00 -- 逻辑列筛选 请求帮助 我想增加逻辑列的 已出货与未出货 筛选
|
||||
-- 作者:狐狸爸爸 -- 发布时间:2012/6/13 10:21:00 -- With e.Form.Controls("ComboBox1") If .Value IsNot Nothing Then If Filter >"" Then Filter = Filter & " And " End If If .Value = "已发货" Then Filter = Filter & " 已发货 = True" Else Filter = Filter & " 已发货 = False" End If End If End With |
||||
-- 作者:wilson -- 发布时间:2012/6/13 12:11:00 -- 谢谢狐爸 |
||||
-- 作者:wilson -- 发布时间:2012/6/13 23:56:00 -- 问题已解决,谢谢狐爸 |