[dabo-users] py2exe failed on AppWizard generated app - ImportError: No module named win32com

2009-07-14 Thread tim awa
I generated a one table app using AppWizard. I then executed buildwin.bat but I got the following error. c:\dabodev\test>python -OO setup.py py2exe --bundle 3 running py2exe creating c:\dabodev\test\dist *** generate typelib stubs *** Traceback (most recent call last): File "setup.py", line 131

Re: [dabo-users] py2exe failed on AppWizard generated app - ImportError: No module named win32com

2009-07-14 Thread Uwe Grauer
tim awa wrote: > I generated a one table app using AppWizard. > > I then executed buildwin.bat but I got the following error. > > c:\dabodev\test>python -OO setup.py py2exe --bundle 3 > running py2exe > ... > import win32com > ImportError: No module named win32com > Try again after installi

Re: [dabo-users] py2exe failed on AppWizard generated app - ImportError: No module named win32com

2009-07-14 Thread tim awa
When Google fails, ask Uwe. Thanks! On Tue, Jul 14, 2009 at 7:32 PM, Uwe Grauer wrote: > tim awa wrote: >> I generated a one table app using AppWizard. >> >> I then executed buildwin.bat but I got the following error. >> >> c:\dabodev\test>python -OO setup.py py2exe --bundle 3 >> running py2exe

Re: [dabo-users] Joins on datasets

2009-07-14 Thread lalong1
Does changing... aliasDict = { "curPhone" : phoneDS } to.. aliasDict = { "curPhone" : PhoneDS } work? Larry Long > -Original Message- > From: dabo-users-boun...@leafe.com > [mailto:dabo-users-boun...@leafe.com] On Behalf Of tim awa > Sent: Monday, July 13, 2009 8:59 PM > To: dabo-use

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

2009-07-14 Thread Mike Mabey
On Mon, Jul 13, 2009 at 4:01 PM, Paul McNett wrote: > > Update to r5296 and that should be cleared up. > > Thanks for reporting these issues! > Thanks Paul! The updating is working great now. However, after the choice text is updated, the caption disappears. I've tried adding a radioObj.refr

Re: [dabo-users] Joins on datasets

2009-07-14 Thread tim awa
Larry, I can't spot any difference in the two lines of code that you posted. On Tue, Jul 14, 2009 at 10:16 PM, wrote: > > Does changing... > aliasDict = { "curPhone" : phoneDS } > > to.. > aliasDict = { "curPhone" : PhoneDS } > > work? > > Larry Long > >> -Original Message- >> From: da

Re: [dabo-users] Joins on datasets

2009-07-14 Thread Dan Means
phoneDS / PhoneDS are not the same. Capitalization counts - it's not Foxrpo...:} On Tue, Jul 14, 2009 at 3:41 PM, tim awa wrote: > Larry, > > I can't spot any difference in the two lines of code that you posted. > > > > On Tue, Jul 14, 2009 at 10:16 PM, wrote: > > > > Does changing... > > alias

Re: [dabo-users] Joins on datasets

2009-07-14 Thread Ed Leafe
On Jul 14, 2009, at 5:41 PM, tim awa wrote: > I can't spot any difference in the two lines of code that you posted. PhoneDS != phoneDS Case sensitivity sucks, but that's the way Python works. Your code mixes the capitalized and lower-case versions. -- Ed Leafe __

Re: [dabo-users] Joins on datasets

2009-07-14 Thread tim awa
My eyes are fooling me. I am aware of the case-sensitiveness of Python. But for some reasons, I was not able to detect it. LOL. On Wed, Jul 15, 2009 at 6:48 AM, Ed Leafe wrote: > On Jul 14, 2009, at 5:41 PM, tim awa wrote: > >> I can't spot any difference in the two lines of code that you posted.

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

2009-07-14 Thread Paul McNett
Mike Mabey wrote: > On Mon, Jul 13, 2009 at 4:01 PM, Paul McNett wrote: > >> Update to r5296 and that should be cleared up. >> >> Thanks for reporting these issues! >> > > > Thanks Paul! The updating is working great now. However, after the choice > text is updated, the caption disappears. I

Re: [dabo-users] Very Simple dropdownlist

2009-07-14 Thread Carey Gagnon
Oktwo days have passed and I still can't figure it out. I need a sample to study. What I am trying to do is take the step by step tutorial ( http://docs.google.com/Doc?id=dg79jzmg_3x78zkp) and create a form to add new clients. I've gotten this far with success. Now what I want to do on the for

Re: [dabo-users] Joins on datasets

2009-07-14 Thread tim awa
I revisited the issue noticing that I had the typo "PhoneDS" on my original post. Following is the code that i tested: nameDS = self.PrimaryBizobj.getDataSet() phoneDS = self.getBizobj(dataSource="public.tblphone").getDataSet() nameDS.execute("select * from dataset") phoneDS.execute("select

Re: [dabo-users] Joins on datasets

2009-07-14 Thread lalong1
Tim, Dunno, looks right. Is it possible that there are no phoneDS.fkName matching nameDS.pk? One possible thing...check to make sure that the field "fkName" is actually spelled (capitalized) the way you have it in the dataset. I don't know if it works the same here but in Postgres if you have a

Re: [dabo-users] Very Simple dropdownlist

2009-07-14 Thread John
On Tuesday 14 July 2009 05:32:22 pm Carey Gagnon wrote: > Oktwo days have passed and I still can't figure it out. I need a sample > to study. > What I am trying to do is take the step by step tutorial ( > http://docs.google.com/Doc?id=dg79jzmg_3x78zkp) and create a form to add > new clients. I'

Re: [dabo-users] Very Simple dropdownlist

2009-07-14 Thread Ed Leafe
On Jul 14, 2009, at 7:32 PM, Carey Gagnon wrote: > Oktwo days have passed and I still can't figure it out. I need a > sample > to study. > What I am trying to do is take the step by step tutorial ( > http://docs.google.com/Doc?id=dg79jzmg_3x78zkp) and create a form to > add new > clients.

Re: [dabo-users] Joins on datasets

2009-07-14 Thread tim awa
I actually tried various combinations and nothing worked. Each reasonable attempt yields the same error - "OperationalError: no such table: curPhone". The alias curPhone seems to be not pointing to the actual dataset which is phoneDS. It traces back to line 372 in dabo\db\dDataSet.py >From the e

Re: [dabo-users] Joins on datasets

2009-07-14 Thread lalong1
Try... ds = nameDS.execute("select dataset.fullname, curPhone.phone from dataset join curPhone on dataset.pk=curPhone.fkName",cursorDict={ "curPhone" : phoneDS }) > -Original Message- > From: dabo-users-boun...@leafe.com > [mailto:dabo-users-boun...@leafe.com] On Behalf Of tim awa > Sent