VGSoftware wrote: > Hi all, Hello!
> I'm trying to get a PickList type form working, but i'm haviong some > problems, should i ShowModal() or just Show(). You shouldn't use either of those, as those are the wxPython methods. You should use show(). If you want it to be modal, you should send Modal=True in the constructor. > Also, it is written in the docs the PickList Forms don't have a Edit > tab... mine has... Perhaps the PickList parameter needs to be set in the constructor, too. See below. > Has anyone sucessfully used a PickList form? Yes, I use them, and they work well. > My code is as follows: > > frm = app.ui.FrmPublic_Escolas(self) > frm.FormType = "PickList" > frm.Show() Try changing that to: frm = app.ui.FrmPublic_Escolas(self, FormType="PickList", Modal=True) frm.show() -- 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]
