Re: [python-win32] Attempt to make executable from Python script

2010-03-31 Thread Werner F. Bruhin
On 31/03/2010 10:59, travel europe wrote: Harald, I followed the recommendation in your link and got the following result: C:\Python26\dist>golden.exe Traceback (most recent call last): File "golden.py", line 2, in File "winsys\registry.pyc", line 39, in File "winsys\security.pyc", line 42, i

Re: [python-win32] Attempt to make executable from Python script

2010-03-31 Thread Massa, Harald Armin
''' RT_MANIFEST = 24 and within the setup-dictionary ... wxreport = dict( script = "yourscript.py", other_resources = [ (RT_MANIFEST, 1, manifest_template % dict(prog="your Progname")), ], dest_base = r"yo

Re: [python-win32] Attempt to make executable from Python script

2010-03-31 Thread travel europe
led: This application has failed to start because the a pplication configuration is incorrect. Reinstalling the application may fix this problem. Can you think of anything else to try? Thanks! Ron Date: Tue, 30 Mar 2010 17:22:28 +0200 Subject: Re: [python-win32] Attempt to make execut

Re: [python-win32] Attempt to make executable from Python script

2010-03-30 Thread Massa, Harald Armin
Hello Travel Europe, that is a documented challenge with the excellent WinShell module from Tim Golden. I described in detail how to solve it at: http://www.py2exe.org/index.cgi/WinShell best wishes, Harald On Tue, Mar 30, 2010 at 07:39, travel europe wrote: > Hello, > > I am attempting to

Re: [python-win32] Attempt to make executable from Python script

2010-03-30 Thread Tim Golden
On 30/03/2010 10:44, Werner F. Bruhin wrote: Hi, On 30/03/2010 07:39, travel europe wrote: Hello, I am attempting to make an executable from a working Python script per the instructions from the following website: http://logix4u.net/Python/Tutorials/How_to_create_Windows_executable_exe_from_P

Re: [python-win32] Attempt to make executable from Python script

2010-03-30 Thread Werner F. Bruhin
Hi, On 30/03/2010 07:39, travel europe wrote: Hello, I am attempting to make an executable from a working Python script per the instructions from the following website: http://logix4u.net/Python/Tutorials/How_to_create_Windows_executable_exe_from_Python_script.html Everything seems to go as p

[python-win32] Attempt to make executable from Python script

2010-03-29 Thread travel europe
Hello, I am attempting to make an executable from a working Python script per the instructions from the following website: http://logix4u.net/Python/Tutorials/How_to_create_Windows_executable_exe_from_Python_script.html Everything seems to go as planned, except when I run the resul