Richard Mendes wrote:
The thing i see on the screen is 2 red windows when filePanel is
selected in the notebook but i don't see pathList while i put it over
the second window.
Try using wx.Panel instead of wx.Window. wx.Window does not do auto-layout because then everything that inherits from it would do auto-layout too, and that just doesn't make sense for some things that will never contain child widgets (e.g., wx.Checkbox).
Besides this point i have some ideas for this applications but i don't
really know if that's possible- There is a standard fileDialog as well as a progress bar available
as a pop up menu. I would rather like to integrate these dialogs in a
window / panel is this possible without coding it myself ?
Huh?
- In the application above i also want to make the width of the
notebook 0 if a certain button is pressed, i thought if i just altered
the self.width or self.height this would be done automatically
unfortunatly i was mistaken, is there another way to do this ?
width and height are not properties of wx.Window, but Size is. (It maps to GetSize and SetSize.)
http://wxpython.org/docs/api/wx.Window-class.html#Size
ยทยทยท
--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!