本人新手,这是一个登录界面,ado控件已经连接数据库用户表,下面是我的代码
Private Sub Command1_Click()
Adodc1.RecordSource = "select * from 用户表 where 用户账号 ='" & Text1.Text & "' and 用户密码 ='" & Text2.Text & "'"
Adodc1.Refresh
 If Adodc1.Recordset.RecordCount = 1 Then
 Form1.Hide
 Form2.Show
 Else
 MsgBox ("请确认账号或密码!")
 End If
End Sub
运行的时候总显示
至少有一个参数没有被指定
实时错误'-2147217904(80040e10)':
对象‘refresh’的方法‘iadodc’失败
调试时指向adodc1.refresh
请问哪位大神知道是出了什么问题吗?