Code:
'''''''''''''''''''''''''''''''''''''''''''
' The AfterUpdate event procedure used in '
' the Find Customer combo box search. '
'''''''''''''''''''''''''''''''''''''''''''
'Moves to Customer Name text box and
'finds the record of whatever name
'is selected in the combo box
DoCmd.ShowAllRecords
Me.OrderDate.SetFocus
DoCmd.FindRecord Me.Combo74
'Set value of combo box equal to an empty string
Me!Combo74.Value = ""
Comment