changed: - **dPageNoTabs** is the paged control class to use when you do not want to allow the user to randomly select a page, but instead want to control which page is visible by programmatic means. A wizard is the most common example of such a paged control ---- Some of the more useful properties for **dPageNoTabs**: <table border="0" width="95%" cellspacing="16"> <tr> <td>**!PageClass** - (dPage): The default class to use for pages added to the control.</td> </tr> <tr> <td>**!PageCount** - (int): This isn't just a read-only counting of pages; changing this property will add or delete pages to bring the total number of pages in line.</td> </tr> <tr> <td>**Pages** - (list): a read-only list of the pages in this control.</td> </tr> <tr> <td>**!PageSizerClass** - (dSizer or dGridSizer): When a new page is created, this is the class of the sizer that is automatically added to it.</td> </tr> <tr> <td>**!SelectedPage** - (dPage): A reference to the currently visible page.</td> </tr> <tr> <td>**!SelectedPageNumber** - (int): The index of the SelectedPage.</td> </tr> </table> ---- Some of the more useful methods for **dPageNoTabs**: <table border="0" width="95%" cellspacing="16"> <tr> <td>**appendPage(page)** - (dPage): Adds a new page to the control. 'page' can be either a page instance or a page class to be instantiated. The page is placed in the last position in the control, and a reference to it is returned.</td> </tr> <tr> <td>**insertPage(pos, page)** - (dPage): Adds a new page to the control. 'page' can be either a page instance or a page class to be instantiated. The page is placed in the position specified by 'pos', and a reference to it is returned.</td> </tr> <tr> <td>**removePage(pgOrPos, delete=True)** - (None or dPage): Removes the specified page from the control. You can pass a reference to the page, or its index in the control. If 'delete' is False, the page is not destroyed, and a reference to it is returned. Otherwise, the page is destroyed and None is returned.</td> </tr> </table> See the <a href="http://dabodev.com/getDaboDoc">Dabo Class Documentation</a> for an exhaustive documentation of this control's Properties and Methods.