I have a combo box that when a member number is selected the form is autopopulated with that members details thefollowing code works fine
Private Sub cboLookUp_AfterUpdate()
Me.RecordsetClone.FindFirst "MembershipNo = " & cboLookUp
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
But when i tab out of the combobox the form go's to the next members details......can anyone help me stop this from happening
CJB
Private Sub cboLookUp_AfterUpdate()
Me.RecordsetClone.FindFirst "MembershipNo = " & cboLookUp
Me.Bookmark = Me.RecordsetClone.Bookmark
End Sub
But when i tab out of the combobox the form go's to the next members details......can anyone help me stop this from happening
CJB