On Nov 9, 2005, at 10:53 AM, Ed Leafe wrote:
I'm working on integrating the DataEnvWizard into the Designer in order to let users quickly layout fields from a table. So far so good, but when the wizard exits, the Designer form and all of its menus are disabled. I originally thought that the problem was that the wizard form is not based on dDialog, which is required for modal operation, so I tried switching that around, but while that correctly creates a wait state where the code calls wiz.start(), it doesn't fix the problem. This happens whether the wizard finishes or is exited early via the Cancel button.
Found the problem: the wizard had a call to wx.MakeModal(True). Commenting that out and setting the Wizard class Modal property to True (which does the same thing) seems to have fixed it.
Let me test the changes to the Wizard class with your recent AppWizard stuff to make sure that it doesn't mangle anything, and then I'll post them.
-- Ed Leafe -- http://leafe.com -- http://dabodev.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
