[dabo-users] RegID problem

2008-08-25 Thread Sibylle Koczian
Hello, in the afterInit method of my form I put a dGrid in with testLog = dabo.ui.dEditBox(self, RegID=testlogID, ReadOnly=True) testLog.Value = SQLite Feldtest panel.Sizer.append1x(testLog) and in the afterRequery method I want to put additional text in: def afterRequery(self):

Re: [dabo-users] Probable revision mismatch (ClassDe signer and dabo module )

2008-08-25 Thread Sibylle Koczian
Am Montag, 25. August 2008 13:19:39 schrieb Uwe Grauer: Sibylle Koczian wrote: I suppose I need a development release for the visual tools, where can I find it? On the Website it's not mentioned. Note that i use the same directory naming as in my last post. You would have to checkout

Re: [dabo-users] Probable revision mismatch (ClassDesigner and dabo module )

2008-08-25 Thread Nate Lowrie
On Mon, Aug 25, 2008 at 8:03 AM, Sibylle Koczian [EMAIL PROTECTED] wrote: BTW the Editor doesn't seem to indent anything automatically any more. Why? Confirmed. It's in dEditor.py. I will look into it. Nate L. ___ Post Messages to:

Re: [dabo-users] RegID problem

2008-08-25 Thread Uwe Grauer
Sibylle Koczian wrote: def afterRequery(self): self.testlogID.Value += u\nRequery ausgeführt. BTW, if you need this for logging only, use: print Requery ausgeführt. This will print to the command line window if you start your app from a command line. Uwe

[dabo-users] Suppressing Requerying dataset message and more

2008-08-25 Thread Steve Rose
I am working on an application which has a module that repeatedly queries and counts records in a scan of a table. In the process there is lots of flashing in a child grid as it is updated, in addition to the message Please wait... Requerying dataset. The entire processing takes only 1.5 seconds

Re: [dabo-users] Suppressing Requerying dataset message and more

2008-08-25 Thread Nate Lowrie
On Mon, Aug 25, 2008 at 4:31 PM, Steve Rose [EMAIL PROTECTED] wrote: I am working on an application which has a module that repeatedly queries and counts records in a scan of a table. In the process there is lots of flashing in a child grid as it is updated, in addition to the message Please

Re: [dabo-users] Suppressing Requerying dataset message and more

2008-08-25 Thread Ed Leafe
On Aug 25, 2008, at 5:31 PM, Steve Rose wrote: 1. Is there anyway to tell Dabo not to update a grid or the whole ui until all the processing is complete? Something like: self.update( False ) self.doAllProcessing() self.update( True ) There are two methods that can be used