From: Tim B. <tb...@bi...> - 2004-06-02 15:51:36
|
The only difference is the main app source file parameter in my setup distutils script is changed from "console" to "windows". So I change from: setup( name = "Messenger", console = ["Messenger.py"], data_files = [(".", [ "Readme.txt", "Format.txt", "Tim.ico", "Messenger.rsrc.py", "Constants.py" ] ) ] ) to: setup( name = "Messenger", windows = ["Messenger.py"], data_files = [(".", [ "Readme.txt", "Format.txt", "Tim.ico", "Messenger.rsrc.py", "Constants.py" ] ) ] ) All the extra data_files are in the same directory as the main app script file. Tim -----Original Message----- From: Ruben Marquez [mailto:rmc...@ya...] Sent: Wednesday, June 02, 2004 7:51 AM To: PythonCard Mailing List Subject: Re: [Pythoncard-users] evaluating compiled Python expressions makes my py2exe-compiled P ythonCard app crash --- Tim Black wrote: > fine under python.exe, > pythonw.exe, and the py2exe-generated console .exe, > but the windows .exe > won't run. What is the difference between how you build the py2exe-generated console .exe and the windows .exe? -Ruben __________________________________ Do you Yahoo!? Friends. Fun. Try the all-new Yahoo! Messenger. http://messenger.yahoo.com/ ------------------------------------------------------- This SF.Net email is sponsored by the new InstallShield X. From Windows to Linux, servers to mobile, InstallShield X is the one installation-authoring solution that does it all. Learn more and evaluate today! http://www.installshield.com/Dev2Dev/0504 _______________________________________________ Pythoncard-users mailing list Pyt...@li... https://lists.sourceforge.net/lists/listinfo/pythoncard-users |