How can I specify which tab to open in a tabbed form from VBA?

O

Ofer Cohen

If I understand your question, then you can set the focus to a field that
located on that TAB

Me.[Field NAme].SetFocus
 
M

mscertified

The whole point of as tab control is that the user clicks the tab to open it.
It's a non-standard user interface to be opening tabs from within the code.

-Dorian
 
Top