On a user form with a multipage form. What is the code to disable one of the tabs?

I tried this:
Code:
UserForm1.MultiPage1.Enabled=False
That didn't work.
Then I tried this:
Code:
UserForm1.MultiPage1(pgePIO).Enabled=False
That didn't work either.
What am I doing wrong here?