Here is the deal. I used to have this form and table as a separte database and I consolidated it into a another database. Now when I open up the form and us the combo box I get a run time error 3021 saying no current record found.
Here is the script on the combo box.
Private Sub Combo36_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[NSN] = '" & Me![Combo36] & "'"
Me.Bookmark = rs.Bookmark
End Sub
Where could I have gone wrong.
Thank you,
Joe
Here is the script on the combo box.
Private Sub Combo36_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[NSN] = '" & Me![Combo36] & "'"
Me.Bookmark = rs.Bookmark
End Sub
Where could I have gone wrong.
Thank you,
Joe