I fixed the problem by upgrading to wxPython-2.5.1, wxWizard pages are now validated.
Can someone give me a vague timeframe for when the 2.5.x series will become stable?
Also, I have one other wizard question.
I can't figure out how to disable the Back/Next buttons depending on user input. I tried...
self.FindWindowById(wx.ID_FORWARD)
but that always returns None. Can anyone help me out here?
This should work if self is the wizard window, and not one of the page windows. Each time you change pages the wizard will enable or disable the back button based on if there are previous pages or not, so you may have to re-(en|dis)able it after page changes.
ยทยทยท
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!