用 access vba 编写的实时查询数据库并将结果显示在子窗口的程序
PrivateSubText2_Change()Setrecdst1=NewADODB.Recordsetrecdst1.ActiveConnection=Current...
Private Sub Text2_Change()
Set recdst1 = New ADODB.Recordset
recdst1.ActiveConnection = CurrentProject.Connection
recdst1.CursorType = adOpenDynamic
recdst1.Open " Select * FROM 99规范列表 where [99规范列表].规范名称 like '*" & Text2.Value & "*'", , adOpenDynamic, adLockOptimistic
Set Me.Child75.Form.Recordset = recdst1
Child75.Form.Refresh
Child75.Form.Requery
recdst1.Close
Set recdst1 = Nothing
End Sub
程序运行到 “Set Me.Child75.Form.Recordset = recdst1” 一行
提示 运行时错误 ‘7965’
您输入的对象不是有效的 Recordset 属性。
请问是什么原因 展开
Set recdst1 = New ADODB.Recordset
recdst1.ActiveConnection = CurrentProject.Connection
recdst1.CursorType = adOpenDynamic
recdst1.Open " Select * FROM 99规范列表 where [99规范列表].规范名称 like '*" & Text2.Value & "*'", , adOpenDynamic, adLockOptimistic
Set Me.Child75.Form.Recordset = recdst1
Child75.Form.Refresh
Child75.Form.Requery
recdst1.Close
Set recdst1 = Nothing
End Sub
程序运行到 “Set Me.Child75.Form.Recordset = recdst1” 一行
提示 运行时错误 ‘7965’
您输入的对象不是有效的 Recordset 属性。
请问是什么原因 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询