Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Werner F. Bruhin
Paul, On 02/02/2011 19:42, Paul McNett wrote: > Or have an alternative(s) datanav's, i.e. have different ones and at the >> appropriate moment the AppWizard asks which one to use - kind of like >> having different templates. > That would be really cool. :) > I having a go at it. - moved all the s

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Ed Leafe
On Feb 2, 2011, at 1:08 PM, Werner F. Bruhin wrote: > Oops, I ment dDockForm also know as wx.AUI:) BTW, what were the reasons > to go with wx.AUI over wx.agw.aui? Because when it was done, there was no wx.agw.aui. :) In any case, aren't they the same? -- Ed Leafe ___

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Werner F. Bruhin
On 02/02/2011 20:32, Ed Leafe wrote: > On Feb 2, 2011, at 1:08 PM, Werner F. Bruhin wrote: > >> Oops, I ment dDockForm also know as wx.AUI:) BTW, what were the reasons >> to go with wx.AUI over wx.agw.aui? > > Because when it was done, there was no wx.agw.aui. :) That is a good reason. >

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Werner F. Bruhin
On 03/02/2011 13:36, Werner F. Bruhin wrote: > Paul, > > On 02/02/2011 19:42, Paul McNett wrote: >> Or have an alternative(s) datanav's, i.e. have different ones and at the >>> appropriate moment the AppWizard asks which one to use - kind of like >>> having different templates. >> That would be rea

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Werner F. Bruhin
Paul, On 03/02/2011 14:29, Werner F. Bruhin wrote: ... >> However I can't figure out a way to get at the Bizobj, obviously using >> GetGrandParent() is a hack (and on top it returns "None"). >> Got it to work, but still feels like a bit of a hack. Have this now: class PagSelectCellarbook(PagSele

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Ed Leafe
On Feb 3, 2011, at 8:28 AM, Werner F. Bruhin wrote: >> In any case, aren't they the same? > Basically yes, however Andrea has fixed a lot of the know issues/bugs > which were filed against wx.aui. > > Check the "What's new" section on this page: > http://xoomer.virgilio.it/infinity77/AGW_D

Re: [dabo-users] Handling Parent-Child-SubChild relationships

2011-02-03 Thread Nate Lowrie
2011/2/1 Nate Lowrie : > 2011/2/1 Jacek KaƂucki : >> I modified my code since I posted it lately. >> I will send you patch against current version tomorrow, Ok? > > Attach it to the ticket and I will test it against my system and applications. Jacek, Just a reminder to attach the patch to the tic

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Werner F. Bruhin
Ed, On 03/02/2011 16:39, Ed Leafe wrote: > On Feb 3, 2011, at 8:28 AM, Werner F. Bruhin wrote: > >>> In any case, aren't they the same? >> Basically yes, however Andrea has fixed a lot of the know issues/bugs >> which were filed against wx.aui. >> >> Check the "What's new" section on this page

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Ed Leafe
On Feb 3, 2011, at 10:44 AM, Werner F. Bruhin wrote: > Don't work on this just because I brought it up. Actually, that's how things usually get done. :) I don't use a lot of the framework regularly; you're bringing it up was the first time I've looked at dDockForm code in a cou

[dabo-users] wx.lib.inspection with Dabo

2011-02-03 Thread Werner F. Bruhin
I can get this to kind of work, but there are some exceptions thrown. I basically added the inspection mixin as described here to dabo\ui\uiwx\uiApp. I can then invoke the inspection tool with ctrl-alt-i. However during its use I get exceptions like the following and it doesn't quit work corr

Re: [dabo-users] wx.lib.inspection with Dabo

2011-02-03 Thread Ed Leafe
On Feb 3, 2011, at 11:39 AM, Werner F. Bruhin wrote: > I can then invoke the inspection tool with ctrl-alt-i. However during > its use I get exceptions like the following and it doesn't quit work > correctly, i.e. list is getting reset, it doesn't open on the widget one > invoked it. > > Any

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Paul McNett
On 2/3/11 4:36 AM, Werner F. Bruhin wrote: > However I can't figure out a way to get at the Bizobj, obviously using > GetGrandParent() is a hack (and on top it returns "None"). Did you try "self.Form.getBizobj()"? Paul ___ Post Messages to: Dabo-users@

Re: [dabo-users] AppWizzard - customization?

2011-02-03 Thread Werner F. Bruhin
On 03/02/2011 18:33, Paul McNett wrote: > On 2/3/11 4:36 AM, Werner F. Bruhin wrote: >> However I can't figure out a way to get at the Bizobj, obviously using >> GetGrandParent() is a hack (and on top it returns "None"). > Did you try "self.Form.getBizobj()"? No, but it works just great. Thanks We

Re: [dabo-users] dEditor selection

2011-02-03 Thread Ed Leafe
On Jan 25, 2011, at 9:37 PM, Ricardo Araoz wrote: > Working on a dEditor control. In the parent form I have this code in my > search method: > >ed = self.Editor >start = 0 >end = len(ed.Value) >srch = TxtToSearchFor > >selStart = ed.FindText(start, end, srch) >selEnd = se