以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- ComboBox,GetComboListString 无法过滤指定条件 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=159977) |
-- 作者:lianghanyu -- 发布时间:2021/1/16 8:48:00 -- ComboBox,GetComboListString 无法过滤指定条件 如题,数据类型是SQL
ComboBox 的enter 加入如下代码。
e.Sender.ComboList = DataTables("项目总表").GetComboListString( "项目编号" ,"设计负责人 = \'张三\'" )
我上边这样写可以实现我想要的功能。
但是,当我想变为动态的时候,这样写,就无法实现了。
Dim name As String = User.name
|
-- 作者:有点蓝 -- 发布时间:2021/1/16 9:44:00 -- 先看几遍:http://www.foxtable.com/webhelp/topics/1284.htm e.Sender.ComboList = DataTables("项目总表").GetComboListString( "项目编号" ,"设计负责人 = \'" & name & "\'" )
|