Re: PythonCard and Py2Exe

2005-02-26 Thread PipedreamerGrey
That did it. Thanks a lot. -- http://mail.python.org/mailman/listinfo/python-list

Re: PythonCard and Py2Exe

2005-02-22 Thread It's me
It's: from PythonCard.components import radiogroup not just: from PythonCard import radiogroup "PipedreamerGrey" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I'm trying to create a standalone version (.exe) of PythonCard's Custdb > sample using Py2Exe version 0.5.0. E

PythonCard and Py2Exe

2005-02-22 Thread PipedreamerGrey
I'm trying to create a standalone version (.exe) of PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I attempt to compile the program, I get an error during compilation. This is the exact code I'm using in the setup file: from distutils.core import setup import py2exe setup( name

PythonCard and Py2Exe

2005-02-22 Thread PipedreamerGrey
I'm trying to create a standalone version (.exe) of PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I attempt to compile the program, I get an error during compilation. This is the exact code I'm using in the setup file: from distutils.core import setup import py2exe setup( nam

PythonCard and Py2Exe

2005-02-22 Thread PipedreamerGrey
I'm trying to create a standalone version (.exe) of PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I attempt to compile the program, I get an error during compilation. This is the exact code I'm using in the setup file: from distutils.core import setup import py2exe setup( nam

Re: PythonCard and Py2Exe

2005-02-18 Thread PipedreamerGrey
I am using the command prompt. What I realized after reading your entry, Peter, is that if I use "setup.py py2exe" instead of "start setup.py py2exe" I can see the error in the same window without it closing. I went into the script and double spaced everything in case Notebook smashed the lines

Re: PythonCard and Py2Exe

2005-02-17 Thread Peter Hansen
[EMAIL PROTECTED] wrote: (Most recent call last): C:\Documents and Settings\Gateway User\ Desktop\custdb\setup.py", > line 1, name = "custdb", 'setup' is not defined There may be a single word infront of 'setup' on the fourth line, it scramble on my screen because I have to use a screen capture to

Re: PythonCard and Py2Exe

2005-02-16 Thread pipedreamergrey
The Error: (Most recent call last): C:\Documents and Settings\Gateway User\ Desktop\custdb\setup.py", line 1, name = "custdb", 'setup' is not defined There may be a single word infront of 'setup' on the fourth line, it scramble on my screen because I have to use a screen capture to read th

Re: PythonCard and Py2Exe

2005-02-16 Thread pipedreamergrey
> You should move these 'import ...' statements to your *script* so that > py2exe doesn find them, not to the setup script. > > Thomas Removing import statements only returns this error message before the package compiles: = "custdb", 'setup' is not defined No files are returned. -- http://ma

Re: PythonCard and Py2Exe

2005-02-16 Thread Peter Hansen
[EMAIL PROTECTED] wrote: You should move these 'import ...' statements to your *script* so that py2exe doesn find them, not to the setup script. Removing import statements only returns this error message before the package compiles: = "custdb", 'setup' is not defined No files are returned. Please u

Re: PythonCard and Py2Exe

2005-02-15 Thread Thomas Heller
[EMAIL PROTECTED] writes: > For this setup file, the executable packs, but when I attempt to run > the program, the screen flashes, " cannot import name radiogroup ". > I've attempted adding "import radiogroup", "from Pythoncard import > radiogroup" and "from Pythoncard.compnents import radiogrou

Re: PythonCard and Py2Exe

2005-02-15 Thread PipedreamerGrey
For this setup file, the executable packs, but when I attempt to run the program, the screen flashes, " cannot import name radiogroup ". I've attempted adding "import radiogroup", "from Pythoncard import radiogroup" and "from Pythoncard.compnents import radiogroup" to the setup file, and that doe

Re: PythonCard and Py2Exe

2005-02-15 Thread Fredrik Lundh
[EMAIL PROTECTED] wrote: > I've been banging my head against this problem for a week. It's time > to ask for help, because I'm obviously not going to solve this by trial > and error. I'm trying to create a standalone version (.exe) of > PythonCard's Custdb sample using Py2Exe version 0.5.0. Eve

PythonCard and Py2Exe

2005-02-15 Thread PipedreamerGrey
I've been banging my head against this problem for a week. It's time to ask for help, because I'm obviously not going to solve this by trial and error. I'm trying to create a standalone version (.exe) of PythonCard's Custdb sample using Py2Exe version 0.5.0. Everytime I attempt to compile the pr