Solved it .. it was quite simple really.

I just used a SendKeys statement to add a {TAB} which forced the focus to the next tabstop.

Here's the code:

Private Sub ComboBox1_Change()
SendKeys "{TAB}"
End Sub