I have a form that has a combobox on it and I want the user to select from it then have the form go to that record.
I am converting an MDB to an .ADP so I can't use DAO and must use ADO.
This "old" form used this DAO code:
Me.RecordsetClone.FindFirst "[CustID] = '" & Me![cbx-lookupcustid] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
And I am not sure how to convert it.
I am converting an MDB to an .ADP so I can't use DAO and must use ADO.
This "old" form used this DAO code:
Me.RecordsetClone.FindFirst "[CustID] = '" & Me![cbx-lookupcustid] & "'"
Me.Bookmark = Me.RecordsetClone.Bookmark
And I am not sure how to convert it.