'O.K. I have made some progress.... This works well when someone scans a barcode that is "In the List" Now, how about when it a "Not in the List Event" I want it to do the same procedure. Clear out the bad data and allow another card to be scanned.
'Here is the good.
Private Sub SSN_Exit(Cancel AS Integer)
DoCmd.GoToRecord , , acNewRec
Me.SSN.SetFocus
DoCmd.OpenForm "FrmRecallSuccess"
End Sub
'Here is the code for the "Not in List Event"
Private Sub_NotInList(NewData As String, response As Integer)
response = acDataErrContinue
DoCmd.OpenForm "frmRecallAttentionNeededMessage"
DoCmd.GotoRecord , , acNewRec
Me.SSN.setfocus
End Sub