Simple Question

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?
 
M

moon

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top