以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.com/bbs/index.asp)
--  专家坐堂  (http://foxtable.com/bbs/list.asp?boardid=2)
----  多条件FIND  (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=187271)

--  作者:atlas77
--  发布时间:2023/7/4 18:19:00
--  多条件FIND

dr = DataTables("字典库").Find("\'" & e.NewValue & "\' like \'%\' + isnull([关键词1],\'\') +\'%\'  and \'" & e.NewValue & "\' like \'%\' + isnull([关键词2],\'\') +\'%\'") 

这个代码正确


dr DataTables("字典库").Find("\'" & e.NewValue & "\' like \'%\' + isnull([关键词1],\'\') +\'%\'  and \'" & e.NewValue & "\' like \'%\' + isnull([关键词2],\'\') +\'%\'"  and \'" & e.NewValue & "\' like \'%\' + isnull([关键词3],\'\') +\'%\'")

这个提示编译错误:应为表达式。



没明白 


--  作者:有点蓝
--  发布时间:2023/7/4 20:00:00
--  
多了个双引号

dr = DataTables("字典库").Find("\'" & e.NewValue & "\' like \'%\' + isnull([关键词1],\'\') +\'%\'  and \'" & e.NewValue & "\' like \'%\' + isnull([关键词2],\'\') +\'%\'  and \'" & e.NewValue & "\' like \'%\' + isnull([关键词3],\'\') +\'%\'")