My vbKeyReturn key when pressed is not invoking the call statement below. If I move cmdTotal_Click under vbKeyBack, pressing backspace will invoke the call. It seems that the return key has a mind of its own. Please help.
Select Case KeyCode
Case Is = vbKeyBack
Call cmdBack_Click
Case Is = vbKeyReturn
Call cmdTotal_Click
End Select
Select Case KeyCode
Case Is = vbKeyBack
Call cmdBack_Click
Case Is = vbKeyReturn
Call cmdTotal_Click
End Select