py2exe rendering

All,

After using py2exe I am noticing strange rendering of the GUI. In particular, the buttons and status bar background color. Is there a way to keep the styles like the before attached image instead of the after attached image?

System:
XP
py2exe 0.6.9
python 2.6

Thanks.

after_py2exe.png

before_py2exe.png

You likely are seeing Windows themes not being enabled, which requires shipping your
application with a manifest. See:

http://wiki.wxpython.org/DistributingYourApplication

Paul

···

On 4/27/13 6:11 PM, Jason Terhune wrote:

After using py2exe I am noticing strange rendering of the GUI. In particular, the
buttons and status bar background color. Is there a way to keep the styles like the
before attached image instead of the after attached image?

check out the wiki:
http://wiki.wxpython.org/Deployment
http://wiki.wxpython.org/py2exe-python26

Werner

···

On 28/04/2013 03:11, Jason Terhune wrote:

All,

After using py2exe I am noticing strange rendering of the GUI. In particular, the buttons and status bar background color. Is there a way to keep the styles like the before attached image instead of the after attached image?

System:
XP
py2exe 0.6.9
python 2.6

check out the wiki:

http://wiki.wxpython.org/Deployment

http://wiki.wxpython.org/py2exe-python26

Werner

Thanks Werner and Paul! Shipping the app with a manifest worked!