以文本方式查看主题

-  Foxtable(狐表)  (http://foxtable.net/bbs/index.asp)
--  专家坐堂  (http://foxtable.net/bbs/list.asp?boardid=2)
----  这个窗口查找代码错在何处哟,不动作  (http://foxtable.net/bbs/dispbbs.asp?boardid=2&id=3833)

--  作者:ybmjy
--  发布时间:2009/8/7 15:58:00
--  这个窗口查找代码错在何处哟,不动作
Dim a As String
With e.Form.Controls("combobox1")
    If .Value IsNot Nothing Then
        a = "姓名 = \'" & .Value & "\'"
    End If
End With
If a > "" Then
    dataTables("民兵数据库").Find (a)
End If

--  作者:czy
--  发布时间:2009/8/7 16:24:00
--  
你上面的代码本身就没给他其它动作?
你想让它怎么动作?
--  作者:czy
--  发布时间:2009/8/7 16:31:00
--  
Dim a As String
Dim dr As DataRow
With e.Form.Controls("combobox1")
    If .Value IsNot Nothing Then
        a = "姓名 = \'" & .Value & "\'"
    End If
End With
If a > "" Then
    dr = dataTables("民兵数据库").Find(a)
    If dr IsNot Nothing Then
        \'要执行的操作
    End If
End If