I an app with the following control:

The AfterUpdate event code is:
Code:
Private Sub tbCellPhone_AfterUpdate()
If Not IsNull(Me.tbCellPhone) Then Me.tbCellPhone = FmtPhoneNos(Me.tbCellPhone)
End Sub
The event does not fire after data is entered into the filed and Enter is pressed. The event fires AFTER I click on another filed. I can't even get the AfterEnter to fire either.
What would cause the delay? (I have 2 other apps that are structured in exactly the same way and the AfterUpdate event fires exactly as expected.)