How to disable one of the page from Multipage ?

P

Peter

I have such a formula:

If CheckBox1 = False Then I'd like to Disable One page from Multipage Form
named Page3

I have one Multipage1 (Page1, Page2, Page3).

How to do that ?

Thanks for your help
Peter
 
J

Jonathan West

Peter said:
I have such a formula:

If CheckBox1 = False Then I'd like to Disable One page from Multipage Form
named Page3

I have one Multipage1 (Page1, Page2, Page3).

How to do that ?


Set the Visible property of the relevant page to False

MultiPage1.Pages("Page1").Visible = False
 
P

Peter

Unfortunately it doesn't work.
I have:
If checkbox1 = True Then
Multipage1.Pages("Page3").Visible = True
Else
Multipage1.Pages("Page3").Visible = False
End if

Where is an error ? What I miss ?
I count on your advice

Thanks
Peter
 

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