[求助]看看:对象refrash方法 “IAdodc”失败
Private Sub cmdstart_Click()
Set DataGrid1.DataSource = adocustomer
adocustomer.RecordSource = "select * from customer where 姓名 like '% " & txtfirname.Text & "%'"
adocustomer.Refresh----这里调试时是黄色的,之前我是直接用adocutstomer在属性栏设置的连接,查询时没有问题;可当我把连接改为用form_load时就报这个错了,实在郁闷!
If adocustomer.Recordset.BOF = False Then
MsgBox "该客户不存在!", vbOKOnly, "提示"
End If
If txtfirname.Text = "" Then
MsgBox "请输入查询姓氏!", vbOKOnly, "提示"
End If
End Sub
错误:先是提示我:adocustomer的from子句语法错误,然后我点确定,又提示我:实时错误:-2147217900 对象refrash方法 “IAdodc”失败!
究竟哪错了啊!~