当前位置: 代码迷 >> PB >> FILTER 发生异常 expecting string expression
  详细解决方案

FILTER 发生异常 expecting string expression

热度:163   发布时间:2016-04-29 10:11:27.0
FILTER 发生错误 expecting string expression
ll_col=long(i_dw.object.datawindow.column.count)
for i=1 to ll_col 
ls_colname = trim(i_dw.describe('#' + string(i) + ".name"))
if isnull(ls_colname) or ls_colname='' then continue ;
ls_visible = i_dw.describe( ls_colname+".visible")
if isnull(ls_visible) or ls_visible='0' then continue ;
ls_str = ls_str +"("+ ls_colname+" like '%"+data+"%') or "
next 
ls_str = mid(ls_str,1,len(ls_str)-3)
messagebox('',ls_str)
i_dw.setfilter(ls_str)
i_dw.filter( )

意识是表达式错误,可是我就是不知道哪出错了。

------解决方案--------------------
探讨
知道错误了
  相关解决方案