Re: [dabo-users] AppWizard compound keys ?

2007-12-12 Thread Ed Leafe
On Dec 11, 2007, at 11:18 PM, Lukasz Szybalski wrote: File /usr/lib/python2.4/site-packages/Dabo-0.8.3-py2.4.egg/dabo/ biz/dBizobj.py, line 715, in scanChangedRows self._moveToRowNum(row) File /usr/lib/python2.4/site-packages/Dabo-0.8.3-py2.4.egg/dabo/ biz/dBizobj.py, line 978,

Re: [dabo-users] AppWizard compound keys ?

2007-12-12 Thread Ed Leafe
On Dec 11, 2007, at 11:18 PM, Lukasz Szybalski wrote: I just posted a fix to dCursorMixin.py that should correct this. Please test it out, and let me know if any more problems turn up. moving forward but Looking at the code, I have another question: are you modifying

Re: [dabo-users] AppWizard compound keys ?

2007-12-12 Thread Lukasz Szybalski
On Dec 12, 2007 6:26 AM, Ed Leafe [EMAIL PROTECTED] wrote: On Dec 11, 2007, at 11:18 PM, Lukasz Szybalski wrote: File /usr/lib/python2.4/site-packages/Dabo-0.8.3-py2.4.egg/dabo/ biz/dBizobj.py, line 715, in scanChangedRows self._moveToRowNum(row) File

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread johnf
This is installment two of the bizObject tutorial. But before we can continue we need to setup two tables and add data to the tables. I am providing standard “Postgres” SQL statements that will create the tables and insert the data we will be working with though out the tutorial. However,

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread Adrian Klaver
class CustomerPanel(dabo.ui.dPanel): def afterInit(self): self.Sizer=vs=dabo.ui.dSizer('h') I have not had a chance to run this code, but I was wondering about the line above. In your previous code examples vs usually referred to a vertical sizer (dabo.ui.dSizer('v')).

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread johnf
On Wednesday 12 December 2007 10:36:49 am Adrian Klaver wrote: class CustomerPanel(dabo.ui.dPanel): def afterInit(self): self.Sizer=vs=dabo.ui.dSizer('h') I have not had a chance to run this code, but I was wondering about the line above. In your previous code examples vs

Re: [dabo-users] Web Update

2007-12-12 Thread Paul McNett
Adrian Klaver wrote: A question on the Web Update process. I am running 0.8.2 rev ~3777. When I check for updates it says none are available. Yet 0.8.3 was just released with a rev of 3793. Am I missing something? The current Web Update revision is 3777... I just tried updating it but my

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread johnf
On Wednesday 12 December 2007 11:03:25 am Uwe Grauer wrote: Why is the following line commented out? #self.contactGrid.bindEvent(dabo.dEvents.GridCellSelected,self.onGridCell Selected) Intend to use it later. Looks like the email changed the indent. -- John Fabiani

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread Uwe Grauer
johnf wrote: ... #the customer table class PublicarcustBizobj(dabo.biz.dBizobj): def afterInit(self): self.DataSource = public.arcustomer self.addFrom(public.arcustomer) self.KeyField = pkid self.addField(czip)

Re: [dabo-users] Web Update

2007-12-12 Thread Paul McNett
Adrian Klaver wrote: -- Original message -- From: Paul McNett [EMAIL PROTECTED] Adrian Klaver wrote: A question on the Web Update process. I am running 0.8.2 rev ~3777. When I check for updates it says none are available. Yet 0.8.3 was just released with

Re: [dabo-users] Web Update

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 1:59 PM, Adrian Klaver wrote: A question on the Web Update process. I am running 0.8.2 rev ~3777. When I check for updates it says none are available. Yet 0.8.3 was just released with a rev of 3793. Am I missing something? No, not at all. I will be updating Web

Re: [dabo-users] Web Update

2007-12-12 Thread Uwe Grauer
Adrian Klaver wrote: A question on the Web Update process. I am running 0.8.2 rev ~3777. When I check for updates it says none are available. Yet 0.8.3 was just released with a rev of 3793. Am I missing something? -- Adrian Klaver [EMAIL PROTECTED] See:

Re: [dabo-users] Web Update

2007-12-12 Thread Adrian Klaver
-- Original message -- From: Paul McNett [EMAIL PROTECTED] Adrian Klaver wrote: A question on the Web Update process. I am running 0.8.2 rev ~3777. When I check for updates it says none are available. Yet 0.8.3 was just released with a rev of 3793. Am I

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread Nate Lowrie
On Dec 12, 2007 12:00 PM, johnf [EMAIL PROTECTED] wrote: On Wednesday 12 December 2007 10:36:49 am Adrian Klaver wrote: class CustomerPanel(dabo.ui.dPanel): def afterInit(self): self.Sizer=vs=dabo.ui.dSizer('h') I have not had a chance to run this code, but I was

Re: [dabo-users] Web Update

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 2:34 PM, Adrian Klaver wrote: Thanks to you and Uwe for the information. I was just confused because the 0.8.3 announcement said the Web Update process would catch the change. Well, that's technically true, but sort of misleading. There is really

Re: [dabo-users] What am I missing?

2007-12-12 Thread Nate Lowrie
On Dec 12, 2007 1:05 PM, [EMAIL PROTECTED] wrote: In the dTextBoxMixinBase code below, why is the method recursed? super(dTextBoxMixinBase, self).flushValue() It looks like nothing ever will happen as a result of the call because _inFlush is always set to true and it simple

[dabo-users] What am I missing?

2007-12-12 Thread lalong1
In the dTextBoxMixinBase code below, why is the method recursed? super(dTextBoxMixinBase, self).flushValue() It looks like nothing ever will happen as a result of the call because _inFlush is always set to true and it simple returns when true. Since we are already in

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 3:24 PM, Nate Lowrie wrote: Why did you embed the dGrid object in a panel/Sizer when you could have just added it to the mainForm sizer? That's a standard practice, especially when you need to work with Windows. The panel gives Windows forms a cleaner look, and

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread bsnipes
bsnipes wrote: Were you able to get a base setup.py that doesn't give the locale error to you on a non-AppWizard generated app? I find myself in need of one and have searched through the list and tried to understand other posts on it - such as Paul's - but can't seem to make it work.

Re: [dabo-users] Web Update

2007-12-12 Thread Nate Lowrie
On Dec 12, 2007 1:38 PM, Ed Leafe [EMAIL PROTECTED] wrote: On Dec 12, 2007, at 3:32 PM, Nate Lowrie wrote: You can auto update with svn using a simple bash script and a Kron job... Of course, and then in the middle of development your update changes something behind the scenes.

Re: [dabo-users] stumped adding new record!?!

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 3:55 PM, Dennis Meulensteen wrote: I've tried searching the wiki, the web and the list-archives but can't for the life of me find any tips on how to add a button which inserts a new record in the DB... A button is a UI element, so it should talk to its Form.

Re: [dabo-users] What am I missing?

2007-12-12 Thread lalong1
Gotcha...thanks! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nate Lowrie Sent: Wednesday, December 12, 2007 3:30 PM To: Dabo Users list Subject: Re: [dabo-users] What am I missing? On Dec 12, 2007 1:05 PM, [EMAIL PROTECTED] wrote: In the

Re: [dabo-users] Web Update

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 3:32 PM, Nate Lowrie wrote: You can auto update with svn using a simple bash script and a Kron job... Of course, and then in the middle of development your update changes something behind the scenes. Wonderful to debug! -- Ed Leafe -- http://leafe.com --

[dabo-users] Web Update Updated

2007-12-12 Thread Ed Leafe
For those of you using Web Update, I've updated the revision to the current svn revision, which means that after updating you should all see '0.8.4' in the About screen. -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Post

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread bsnipes
Ed Leafe wrote: On Dec 12, 2007, at 3:44 PM, bsnipes wrote: Got it to work... now to get the icons showing up... Great - be sure to tell me how you get the icons to show! Ok... Here is what I have. It is pieced together from the Wiki page you created a long time ago and from

[dabo-users] stumped adding new record!?!

2007-12-12 Thread Dennis Meulensteen
Hi all, This is my first day using DABO and it looks very much like what I need. So a big thanks to the devs for this really nice product. I've tried searching the wiki, the web and the list-archives but can't for the life of me find any tips on how to add a button which inserts a new record in

Re: [dabo-users] Web Update

2007-12-12 Thread Nate Lowrie
On Dec 12, 2007 12:38 PM, Ed Leafe [EMAIL PROTECTED] wrote: On Dec 12, 2007, at 2:34 PM, Adrian Klaver wrote: Thanks to you and Uwe for the information. I was just confused because the 0.8.3 announcement said the Web Update process would catch the change. Well, that's technically

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 3:44 PM, bsnipes wrote: Got it to work... now to get the icons showing up... Great - be sure to tell me how you get the icons to show! -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Post Messages to:

Re: [dabo-users] Web Update

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 3:46 PM, Nate Lowrie wrote: Of course, and then in the middle of development your update changes something behind the scenes. Wonderful to debug! If something goes wrong you just revert to a known good revision of Dabo. It is no different than updating

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 4:18 PM, bsnipes wrote: Ok... Here is what I have. It is pieced together from the Wiki page you created a long time ago and from some other posts in the mailing list. It does allow my simple app ( created using John's tutorial series :-) ) to have icons in the

Re: [dabo-users] Web Update Updated

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 4:08 PM, Ed Leafe wrote: you should all see '0.8.4' in the About screen. Doh! Stupid fat fingers! '0.8.3' grumble... -- Ed Leafe -- http://leafe.com -- http://dabodev.com ___ Post Messages to:

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread bsnipes
Paul McNett wrote: Ed Leafe wrote: On Dec 12, 2007, at 3:44 PM, bsnipes wrote: Got it to work... now to get the icons showing up... Great - be sure to tell me how you get the icons to show! Check out the generated setup.py that AppWizard gives you. locale and icons should

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread Paul McNett
Brian, I sent you a setup.py privately. Did you get it? Paul -- http://paulmcnett.com ___ Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives:

Re: [dabo-users] setup.py py2exe

2007-12-12 Thread bsnipes
Paul McNett wrote: Brian, I sent you a setup.py privately. Did you get it? Just checked and yes I did. I read and post using Nabble so don't check my email often :-) What I posted is copied from what you sent me which is what you posted in response to another py2exe thread but the

Re: [dabo-users] [part 2] a Simple tutorial on bizObjects`

2007-12-12 Thread johnf
On Wednesday 12 December 2007 12:42:51 pm Nate Lowrie wrote: Also, you have you're controls spread out over multiple panels.  You will get tabbing between those in the dGridSizer, but you cannot tab from the dGridSizer controls to the button bar controls to the dGrid. John, I am just wondering

Re: [dabo-users] stumped adding new record!?!

2007-12-12 Thread Ed Leafe
On Dec 12, 2007, at 5:40 PM, Ed Leafe wrote: You were on a date field in a grid, and were typing to do incremental search? Well, first off, don't do that! ;-) Seriously, though, even though that makes no sense, you shouldn't crash. I'll look into it and post a fix ASAP. OK,