Re: [dabo-users] Joins on datasets

2009-07-15 Thread tim awa
Nice one Larry, you solved the puzzle (cursorDict=). Thanks! On Wed, Jul 15, 2009 at 1:57 PM, wrote: > Try... > ds = nameDS.execute("select dataset.fullname, curPhone.phone from dataset > join curPhone on dataset.pk=curPhone.fkName",cursorDict={ "curPhone" : > phoneDS }) > > >> -Original Mes

[dabo-users] py2exe setup.py example for a class designer runnable app

2009-07-15 Thread tim awa
I have tried a couple of successful py2exe runs on a simple app and on an AppWizard generated app. Well, this was because they both have examples for me to follow. He he he. Do we have an example for a class designer runnable app as well? This is the last step of my Dabo based address book applica

Re: [dabo-users] Joins on datasets

2009-07-15 Thread tim awa
I have closed ticket # 1245 with some comments. http://trac.dabodev.com/ticket/1245 ___ Post Messages to: Dabo-users@leafe.com Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users Searchable Archives: http://leafe.com/archives/search/

Re: [dabo-users] py2exe setup.py example for a class designer runnable app

2009-07-15 Thread Paul McNett
tim awa wrote: > I have tried a couple of successful py2exe runs on a simple app and on > an AppWizard generated app. Well, this was because they both have > examples for me to follow. He he he. > > Do we have an example for a class designer runnable app as well? This > is the last step of my Dabo

Re: [dabo-users] Joins on datasets

2009-07-15 Thread lalong1
Tim, Great! When I get into trouble, one of the first things I do is go thru the call stack and look at the functions and parameters to try to see what it is expecting. That's how I tracked this one down for ya. Larry > -Original Message- > From: dabo-users-boun...@leafe.com > [mailto

Re: [dabo-users] Troublesome install on Ubuntu

2009-07-15 Thread Ed Leafe
On Jul 13, 2009, at 8:59 PM, Jim McDonald wrote: > Following instructions in Dabo Wiki (including the bits about > installing > python2.5-dev and putting a dabo.pth file in the 'site-packages' > directory), 'setup.py install' errors out with a traceback that ends > as > follows: > > " File

Re: [dabo-users] Troublesome install on Ubuntu

2009-07-15 Thread Roger Gammans
On 7/14/09, Jim McDonald wrote: > Following instructions in Dabo Wiki (including the bits about installing > python2.5-dev and putting a dabo.pth file in the 'site-packages' > directory), 'setup.py install' errors out with a traceback that ends as > follows: > > " File ' . . . dabo/lib/ev

Re: [dabo-users] How do you refresh a dRaioList?

2009-07-15 Thread Mike Mabey
On Tue, Jul 14, 2009 at 6:53 PM, Paul McNett wrote: > > > Oops. Clearing the sizer cleared the caption too. I'll look at this > tomorrow. > > Paul > How's it coming, Paul? Is there anything I can help with? Mike M. --- StripMime Report -- processed MIME parts --- multipart/alternative text/

Re: [dabo-users] How do you refresh a dRaioList?

2009-07-15 Thread Paul McNett
Mike Mabey wrote: > On Tue, Jul 14, 2009 at 6:53 PM, Paul McNett wrote: >> >> Oops. Clearing the sizer cleared the caption too. I'll look at this >> tomorrow. >> >> Paul >> > > How's it coming, Paul? Is there anything I can help with? Fixed in r5297. Thanks for the gentle reminder! Paul _

Re: [dabo-users] py2exe setup.py example for a class designer runnable app

2009-07-15 Thread tim awa
Almost got there! I now have a running exe with just one hiccup. The print button generates the ff message in the exe log file. in onHit from dabo.dReportWriter import dReportWriter ImportError: No module named dReportWriter On Wed, Jul 15, 2009 at 10:47 PM, Paul McNett wrote: > ti

Re: [dabo-users] Joins on datasets

2009-07-15 Thread tim awa
In the class designer, when running the form, there is a debugger window. I have been looking at this window but there seems to be no activity there even when there is an error. To be able to see the error, I have to run the form/app at the console using python test.py. I found this at the wiki -

Re: [dabo-users] Very Simple dropdownlist

2009-07-15 Thread Carey Gagnon
John, thanks so much! I knew there had to be a simpler way. Ihad already successfully created the drop downlist it was getting it populated without a db look up that I was having an issue with. Now it is populating and correctly saving everything to the database. Still one issue however. I am now

Re: [dabo-users] Joins on datasets

2009-07-15 Thread Ed Leafe
On Jul 15, 2009, at 5:40 PM, tim awa wrote: > In the class designer, when running the form, there is a debugger > window. I have been looking at this window but there seems to be no > activity there even when there is an error. To be able to see the > error, I have to run the form/app at the conso

Re: [dabo-users] Joins on datasets

2009-07-15 Thread tim awa
I am getting some progress with pdb thru google. On Thu, Jul 16, 2009 at 6:40 AM, tim awa wrote: > In the class designer, when running the form, there is a debugger > window. I have been looking at this window but there seems to be no > activity there even when there is an error. To be able to see

Re: [dabo-users] Very Simple dropdownlist

2009-07-15 Thread Paul McNett
Carey Gagnon wrote: > John, thanks so much! I knew there had to be a simpler way. Ihad already > successfully created the drop downlist it was getting it populated without a > db look up that I was having an issue with. Now it is populating and > correctly saving everything to the database. > > St

Re: [dabo-users] Very Simple dropdownlist

2009-07-15 Thread Paul McNett
Paul McNett wrote: > Carey Gagnon wrote: >> John, thanks so much! I knew there had to be a simpler way. Ihad already >> successfully created the drop downlist it was getting it populated without a >> db look up that I was having an issue with. Now it is populating and >> correctly saving everything

Re: [dabo-users] Joins on datasets

2009-07-15 Thread John
On Wednesday 15 July 2009 09:19:14 am lalo...@charter.net wrote: > Tim, > > Great! When I get into trouble, one of the first things I do is go thru the > call stack and look at the functions and parameters to try to see what it > is expecting. That's how I tracked this one down for ya. > > Larry

Re: [dabo-users] Troublesome install on Ubuntu

2009-07-15 Thread John
On Wednesday 15 July 2009 09:59:46 am Ed Leafe wrote: > On Jul 13, 2009, at 8:59 PM, Jim McDonald wrote: > > Following instructions in Dabo Wiki (including the bits about > > installing > > python2.5-dev and putting a dabo.pth file in the 'site-packages' > > directory), 'setup.py install' errors ou

Re: [dabo-users] Very Simple dropdownlist

2009-07-15 Thread John
On Wednesday 15 July 2009 03:58:23 pm Carey Gagnon wrote: > John, thanks so much! I knew there had to be a simpler way. Ihad already > successfully created the drop downlist it was getting it populated without > a db look up that I was having an issue with. Now it is populating and > correctly savi

Re: [dabo-users] Very Simple dropdownlist

2009-07-15 Thread Carey Gagnon
John, here's the entire trace back: Traceback (most recent call last): File "/usr/lib/python2.5/site-packages/wx-2.8-gtk2-unicode/wx/_misc.py", line 1341, in Notify self.notify() File "/usr/lib/python2.5/site-packages/wx-2.8-gtk2-unicode/wx/_core.py", line 14652, in Notify self.result

Re: [dabo-users] Joins on datasets

2009-07-15 Thread tim awa
I am getting familiar with pdb and looks like I am happy with it already. I was able to trace Larry's path in solving my dataset-join puzzle with it. I am returning the favor with a tutorial I posted in: http://dabodev.com/wiki/UsingPdbDebuggerInClassDesigner Cheers! On Thu, Jul 16, 2009 at 7:

Re: [dabo-users] Very Simple dropdownlist

2009-07-15 Thread Paul McNett
Carey Gagnon wrote: >I have tried one other way, and that was setting up a database table > for the states. I can get that to work no problem. My thought was..why the > unnecessary over head. To me that would mean the call to the database. This > isn't a field that is likely to change. Does

Re: [dabo-users] py2exe setup.py example for a class designer runnable app

2009-07-15 Thread tim awa
I need help on how to include dReportWriter in my py2exe setup.py file. I am confused why it is being left out when all other dabo components have been included during the exe build even without explicitly including them. In my print button, I have the following as my first two lines: from