本文介绍了运行时错误3705 ..............的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Dim startstg As String
Dim EndStg As String
Dim date1 As String
Dim date2 As String

Private Sub Command1_Click()

Call Connect

esql = "select * from bank where Date>=3DCDate('" & DTPicker1.Value & "') AND Date<=3DCDate('" & DTPicker2.Value & "')"
rs.Open esql, con, adOpenForwardOnly, adLockReadOnly

End Sub



msg:ERROR 3705 - 对象打开时不允许操作


msg : ERROR 3705 - Operation is not allowed when the object is open

推荐答案


这篇关于运行时错误3705 ..............的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 18:17