Is does not quite correspond to what I am trying to do as when you mouse click, all is fine, it is when forcing move focus via Tab or Enter from keyboard but NOT in the natural tab order.
So why not manage the tab order?
Code:
Private Sub Command2_Enter()
Command2.TabIndex = 0
Text0.TabIndex = 1
End Sub
Private Sub Command5_Enter()
Command5.TabIndex = 0
Text0.TabIndex = 1
End Sub