I found this tip (Author Allen Browne), which looks quite nifty, however it is falling over, can anyone help please. The idea is that an Unbound Combo Box can be used as a means of record navigation.
AfterUpdate Event Procedure (the example show the combo named as cboMoveTo and the field Customer Name as the 1st part of the loockup)
Private Sub cboMoveTo_AfterUpdate()
Dim Rst As Recordset
Set Rst = Me.RecordsetClone
Rst.findfirst “[Customer Name] = ‘ ” & Me![cboMoveTo] & ” ‘ ”
If Not Rst.NoMatch Then Me.Bookmark = Rst.Bookmark
End Sub
However it returns a compile error on the part Me![cboMoveTo] which is method or data member not found.
Any suggestions please
Steve