VBA Page on UserForm Control

MGumbrell

Registered User.
Local time
Today, 23:25
Joined
Apr 22, 2005
Messages
129
I have a UserForm1 on it is a Multipage2. On the Multipage2 I have a Page9

What I would like to do.
When OptionButton1 is checked I would like Page9. Enabled = False
This code comes up with an error.

Can you please advise where I am going wrong.

Regards, Matt
 
What is the error?

As a guess try:

Code:
Multipage2.Pages("Page9").Enabled = False
 
Chergh

It was a runtime error.

Your suggestion works.

Thank you for you assistance.

Matt
 

Users who are viewing this thread

Back
Top Bottom