Carl wrote: > I don't know for sure, but I think that string gets passed to a wx > component that doesn't know how to dig into the zip.
Are you using a setup.py based on the appwizard-generated one? Because if you'll notice, that one creates a resources directory outside of the zip, and then copies all the dabo icon files into that, and in the main.py of a appwizard app, this line happens pretty early on: sys.path.append(os.path.join(app.HomeDirectory, "resources")) Haven't tried with the splash screen, but it does work for the other icons. This is probably your problem with the grid bool renderer too, which pulls a couple png files from the icons directory to use as the images to render for checked/unchecked checkboxes. I just confirmed in my .exe that I'm seeing the checkboxes in the grid. Basically, it sounds like you are struggling to find answers to things I've already struggled with and solved, so you should give the appwizard's setup.py another look, because it is working well for me. -- pkm ~ http://paulmcnett.com _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/%(messageid)s
