Simple Question

  • Thread starter Thread starter TylerTheCoderGuy
  • Start date Start date
T

TylerTheCoderGuy

I have a few text boxes on a MultiPage. If i tab through the textboxes,
does this trigger a MultiPage_Change() event, or any type of multipage
or userform event?
 
The MultiPage is just a holder of control objects like TextBoxes, ComboBoxes
or Buttons.
Once you click a tab, the MultiPage has the focus for a while, but on each
Page a control has its own events.
So if you tab through the textboxes, it won't affect the MultiPage - instead
the TextBox_Change-event is triggered.
 
Back
Top