PDA

View Full Version : hide or disable a page



Djblois
02-26-2007, 08:09 AM
Is it possible to hide or disable a page in a multipage form in VBA?

royUK
02-26-2007, 08:15 AM
You can hide the tabs & use code to select specific tabs, or hide a specific page, rememer page nmbers start at 0 (zero)


Me.MultiPage1.Pages(1).Visible = False

Djblois
02-26-2007, 08:28 AM
thank you I didn't know you can do that because pages don't have their own properties

moa
02-26-2007, 08:41 AM
pages in a multipage control have their own properties. You may be thinking of tabs in a tabstrip control.