Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
这个意思?
Dim Txt As String = Forms("窗口2").Controls("TextBox1").Value
Dim dr As DataRow = DataTables("表名").Find("列名='" & Txt & "'")
If dr IsNot Nothing Then
MessageBox.Show("找到")
End If
Dim Txt As String = Forms("窗口2").Controls("TextBox1").Value
Dim dr As DataRow = DataTables("表名").Find("列名='" & Txt & "'")
If dr IsNot Nothing Then
e.Form.Controls("Label1").text = dr("姓名")
……
End If