notebook with no tabs

Can anyone suggest what would be the best way to implement the
equivalent of a notebook control, but with no "user clickable" tabs??

Which notebook page should be displayed when would be under programmatic
control.

Please reply off list as well, since I'm not currently subscribed.

Thanks in advance for any replies.

Stephen.

Stephen M. Gava wrote:

Can anyone suggest what would be the best way to implement the
equivalent of a notebook control, but with no "user clickable" tabs??

Which notebook page should be displayed when would be under programmatic
control.

The way this is typically done is to simply create all panels, add them to a sizer and Hide() all but one of them. When you want to switch you just need to Show() the new one, Hide() the old one, and call Layout() on the sizer.

Please reply off list as well, since I'm not currently subscribed.

That's too bad because this question has been asked and answered several times on the list, so if you had been subscribed you probably wouldn't have needed to ask the question. :slight_smile:

ยทยทยท

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!