I had a working Access 2000 db, upsized it to a SQL 7.0 backend and now my combo boxes are not working. I receive a run-time error 438 message whenever I use them. The debugger is highlighting my code in the after_update event of the combo box that sets the rs.FindFirst = Me!. Here is a copy of the code:
Private Sub cbxSuite_AfterUpdate()
Dim rs as Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[SuiteID] = "&(Me![cbxSuite])
Me.Bookmark = rs.Bookmark
End Sub
Any ideas would be greatly appreciated.
Private Sub cbxSuite_AfterUpdate()
Dim rs as Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[SuiteID] = "&(Me![cbxSuite])
Me.Bookmark = rs.Bookmark
End Sub
Any ideas would be greatly appreciated.