I have a combo box that lists different values based on a search. I would like Access to display the contents of each record listed in the combo box on the same form. I have in the After Update procedure of the combo box the following code, however it doesn't work. Can anybody tell me what I am doing wrong?
Sub NDW_AfterUpdate()
'Find the record that matches the control
Me.RecordSetClone.FindFirst "[NDW] = " & Me![NDW]
Me.Bookmark = Me.RecordSetClone.Bookmark
End Sub
Sub NDW_AfterUpdate()
'Find the record that matches the control
Me.RecordSetClone.FindFirst "[NDW] = " & Me![NDW]
Me.Bookmark = Me.RecordSetClone.Bookmark
End Sub