VB的问题
dimstrsqlasstringIfText1.Text<>""ThenAdodc1.Recordset.CloseIfVal(Text1.Text)<>0Thenst...
dim strsql as string
If Text1.Text <> "" Then
Adodc1.Recordset.Close
If Val(Text1.Text) <> 0 Then
strsql = "select * from name where name=" & Trim(Text1.Text) 'Trim去掉前后空格
Else
strsql = "select * from name where name='" & Trim(Text1.Text) & "'"
End If
Adodc1.CommandType = adCmdText
Adodc1.Recordset.Open strsql
Set DataGrid1.DataSource = Adodc1
Else
Set DataGrid1.DataSource = Nothing
End If
以上查找字母或中文都不会报错,但查找的为数字就会报错”标准表达式中数据类型不匹配“ 展开
If Text1.Text <> "" Then
Adodc1.Recordset.Close
If Val(Text1.Text) <> 0 Then
strsql = "select * from name where name=" & Trim(Text1.Text) 'Trim去掉前后空格
Else
strsql = "select * from name where name='" & Trim(Text1.Text) & "'"
End If
Adodc1.CommandType = adCmdText
Adodc1.Recordset.Open strsql
Set DataGrid1.DataSource = Adodc1
Else
Set DataGrid1.DataSource = Nothing
End If
以上查找字母或中文都不会报错,但查找的为数字就会报错”标准表达式中数据类型不匹配“ 展开
展开全部
strsql = "select * from name where name= '" & Trim(Text1.Text) & "'
改完再试
改完再试
追问
谢谢 ,应该是这样才对
strsql = "select * from name where name= '" & Trim(Text1.Text) & "'"
谢谢 ,应该是这样才对
strsql = "select * from name where name= '" & Trim(Text1.Text) & "'"
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询