以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  错误提示!  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=30600)

--  作者:wqb1102
--  发布时间:2013/3/31 14:02:00
--  错误提示!
.NET Framework 版本:2.0.50727.5466
Foxtable 版本:2012.11.28.1
错误所在事件:
详细错误信息:
System.Data.SyntaxErrorException: 语法错误:“=”运算符后缺少操作数。
   在 System.Data.ExpressionParser.Parse()
   在 System.Data.DataExpression..ctor(DataTable table, String expression, Type type)
   在 System.Data.DataView.set_RowFilter(String value)
   在 System.Data.DataView.System.ComponentModel.IBindingListView.set_Filter(String value)
   在 System.Windows.Forms.BindingSource.set_InnerListFilter(String value)
   在 System.Windows.Forms.BindingSource.set_Filter(String value)
   在 Foxtable.OOO0OOl111.set_Filter(String O10ll)
   不知在那出现错误?

--  作者:wqb1102
--  发布时间:2013/3/31 16:03:00
--  
操作的代码在那里?
--  作者:wqb1102
--  发布时间:2013/3/31 16:04:00
--  
Dim t As Table = Tables("回款明细_Table1")
With Tables("销售明细")
    If .Current Is Nothing Then
        t.Filter = "False"
    Else
        t.Filter = "客户 = " & .Current("客户")
    End If
End With

--  作者:y2287958
--  发布时间:2013/3/31 16:08:00
--  
问题出在这里吧: t.Filter = "False"
--  作者:wqb1102
--  发布时间:2013/3/31 16:46:00
--  
在帮助文件中复制的