以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  getcombliststring的filter  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=131911)

--  作者:giulioli
--  发布时间:2019/3/8 20:27:00
--  getcombliststring的filter
大家好,能否帮我看下getcomboliststring的过滤用法?

Dim cname As String
    For Each ccode As String In ccodes
        cname = DataTables("temperorder").getcomboliststring("clientname","[client] = ccode")
    MessageBox.Show(ccode & cname)
    Next



提示
未找到列 [ccode]。

我是要将该函数的filter设置为字段CLIENT中和CCODE变量数值一样的时候取CLIENTNAME字段的值

--  作者:有点蓝
--  发布时间:2019/3/8 21:26:00
--  
http://www.foxtable.com/webhelp/scr/1284.htm

DataTables("temperorder").getcomboliststring("clientname","[client] = \'" & ccode & "\'")

--  作者:giulioli
--  发布时间:2019/3/8 21:27:00
--  
谢谢老师