I just discovered the bug in Excel with TextBox_Exit inside a frame. http://www.excelforum.com/excel-prog...t-trigger.html

I'm wondering if there is anything wrong with this solution.
Private Sub FrameAbilities_Exit(ByVal Cancel As MSForms.ReturnBoolean)
    txtAT.SetFocus     'Textbox inside the Frame
End Sub
I've tested it and the "txtAT.SetFocus" triggers the "TextBox_Exit" that didn't execute properly, then it ignores the "SetFocus" and moves onto the next control outside the Frame. It works going forward and backward through the TabIndex order.

Is there anything else that I should be concerned with?