Uwe Grauer wrote: > I know that you like really short doc strings. > I was asking for differences between > SDI and MDI behavior of createForm().
Whether SDI or MDI form is created is a function of whether the parent form is MDI or not. This happens in the constructor of dForm, not in the createForm() method. I don't think this is documented anywhere at this time, unfortunately. See: dabo.settings.MDI (there's a comment about it in dabo/settings.py) MDI property of dForm and dFormMain. The reason this happens automatically is that wxPython segfaults if you try to make a sdi form a child of a mdi form, or if you try to make a mdi form a child of a sdi form. -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/dabo-users This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]
