Your compiled application is lacking the resource fil (minimal.rsrc.py).
This can be fixed in 2 ways:
1. Include resource file inside minimal.py
rsrc = "minimal.rsrc.py data"
and change:
app = model.Application(Minimal)
to:
app = model.Application(Minimal, None, rsrc)
2. Copy minimal.rsrc.py to the compile output folder (.\dist\)
Can be done by adding it to the setup.py (used to setup...
2009-04-20 21:46:54 UTC in PythonCard