G
George
I am trying to use a combo box to pull up records.
When I select a name in the combo box then leave the
form open and then manually run the query it gives
me the results I want, so I know that part works. I read
to add this statement to the "Afterupdate" on my Combo Box
so I did and I keep getting an error message - which states
"You entered an expression that has an invalid reference to the Recordsetclone
property"
Here is the Afterupdate I added - I changed the Combo box name to mine
Private Sub Combo2_AfterUpdate()
Me.RecordsetClone.Findfirst "[ID] = " & Me![Combo2]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
What am I doing wrong ?
Thanks - George
When I select a name in the combo box then leave the
form open and then manually run the query it gives
me the results I want, so I know that part works. I read
to add this statement to the "Afterupdate" on my Combo Box
so I did and I keep getting an error message - which states
"You entered an expression that has an invalid reference to the Recordsetclone
property"
Here is the Afterupdate I added - I changed the Combo box name to mine
Private Sub Combo2_AfterUpdate()
Me.RecordsetClone.Findfirst "[ID] = " & Me![Combo2]
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
What am I doing wrong ?
Thanks - George