Application Appearance - Py2exe / wxPython

So my problem is the look and feel of my app as it looks like an old look app.

This is a wxPython app, and in python it works fine and looks fine, but when I convert it to an .exe with py2exe, the look is just bad.

Now I know that if you are using XP you need some kind of manifest to fix it, but I am in different circumstances. I am using Windows 7 and I am using Python 2.6 (yes I include DLLs and Microsoft.VC90.CRT.manifest).

So my question is, how can I solve this in these circumstances?

NOTE. I tried to do a google search, but the posts I found were pretty old with people using XP and older versions of python, so I assumed it would be different?

EDIT: Screenshots Normal (desired look and feel): http://img80.imageshack.us/img80/3157/70762988.png

Py2exe (undesirable appearance): http://img687.imageshack.us/img687/6581/53608742.jpg

+2


a source to share


1 answer


Try using Gui2exe

I am using gui2exe for win7 running on a virtual server.



This makes the gui look good on all Windows versions. upx.exe to compress exe, dll, pyd.

And inno-setup, to install fil for windows.

+4


a source







All Articles