-
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?
-
I never used Multipage and I don't know what it is, but try passing an index:
Code:
UserForm1.MultiPage1(0).Enabled=False
'Change the 0 to any number in the index of the multipage
'And it does have an .Enabled property?
-
That won't work either. What do you think?