D
DianePDavies
I have an application with a subform "issueList". It works well, but
sometimes after having made changse to the code I get
Run-time error '40036'
Method'Parent' of object '_Form_issueList' failed
when running this code:
Private Sub Form_Current()
Dim rs As Object
Set rs = Me.Parent.Recordset.Clone
rs.FindFirst "[IID] = " & Me.IID
If Not rs.EOF Then Me.Parent.Bookmark = rs.Bookmark
End Sub
When I go back and recreate the changes in a backup I may very well be able
to make them without any errors. To me it look slike some bug....
Any ideas
sometimes after having made changse to the code I get
Run-time error '40036'
Method'Parent' of object '_Form_issueList' failed
when running this code:
Private Sub Form_Current()
Dim rs As Object
Set rs = Me.Parent.Recordset.Clone
rs.FindFirst "[IID] = " & Me.IID
If Not rs.EOF Then Me.Parent.Bookmark = rs.Bookmark
End Sub
When I go back and recreate the changes in a backup I may very well be able
to make them without any errors. To me it look slike some bug....
Any ideas