Thank You Andrew
Insert Major Face Palm here.
Assuming we have 3 Tabs; TabA, TabB, and TabC
and we start on TabA
and we click TabB
Private Sub utc_Main_ActiveTabChanging(sender As Object, e As ActiveTabChangingEventArgs) Handles utc_Main.ActiveTabChanging
utc_Main.ActiveTab
e.Tab
End Sub
I totally missed the fact that .ActiveTab would still be "TabA" because the change event had not completed yet
and was totally hung up on the fact that e.Tab was "TabB" and in my mind I kept expecting it to be "TabA" as well.
Thanks for getting me back on track!!