I'm still experiencing this error, even with the latest Trunk version
of PyInstaller. Actually the error is slightly different: it no longer
gives me the message about MSVCR71.dll, it simply crashes.

It consistently happens when I include the bitmapcanvas component of
PythonCard.

Here's a simple script that shows the error. It works fine uncompiled,
but when compiled it crashes. If I comment out the bitmapcanvas line,
all works fine both compiled and uncompiled. I uploaded the compiled
version of this to http://wrybread.com/dropbox/test.zip. And the
script I'm using to compile is:

python Makespec.py --console --onefile "c:/test/starting_point.py"

Build.py starting_point\starting_point.spec

Anyway, here's the script:

#########################################################

# this line will cause the compiled app to crash:
from PythonCard.components import statictext, bitmapcanvas

# this line works fine:
#from PythonCard.components import statictext

# here's a list of more pythoncard elements, none of which cause a
crash:
#from PythonCard.components import statictext, imagebutton, textfield,
textarea, list, staticline, slider, choice, checkbox

import time

while True:
    print time.time()
    time.sleep(.5)




--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"PyInstaller" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/PyInstaller?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to