Hide form page

  • Thread starter Thread starter Paul
  • Start date Start date
P

Paul

I have a form with a multipage control.

I want to hide or show the relevant pages dependant on user selections.

How can I hide a page with VBA ?
 
For a multiphage control you can use this.

MultiPageName.Pages(0).Visible = False

I'm not sure what pages you want to hide, but you can modify this a little
to suit your macro. Just change the 0 to which ever page you want hidden.

Hope this helps! If so, click "YES" below.
 
Back
Top