以文本方式查看主题

-  Foxtable(狐表)  (http://www.foxtable.com/bbs/index.asp)
--  专家坐堂  (http://www.foxtable.com/bbs/list.asp?boardid=2)
----  提示缺少操作数  (http://www.foxtable.com/bbs/dispbbs.asp?boardid=2&id=76218)

--  作者:aidimeng
--  发布时间:2015/10/24 6:35:00
--  提示缺少操作数

Dim txtkey As WinForm.TextBox = e.Form.Controls("txtkey")
Dim str As String =txtkey.Text
With CurrentTable
\'Dim cname As String=.Cols(.ColSel).Name
Dim str1 As String = "& cname &   = \'"& str & "\' "

    .Filter =  str1
End With

 

提示&前缺少操作数


--  作者:Hyphen
--  发布时间:2015/10/24 8:51:00
--  
Dim txtkey As WinForm.TextBox = e.Form.Controls("txtkey")
Dim str As String =txtkey.Text
With CurrentTable
    \'Dim cname As String=.Cols(.ColSel).Name
    Dim str1 As String = "cname = \'" & str & "\'"
   
    .Filter =  str1
End With

--  作者:aidimeng
--  发布时间:2015/10/24 16:36:00
--  
谢谢