Hi, I have been using CheckListCtrlMixin for a while, but recently, (just after upgrading from wxPython 2.8
to 2.9) when i use py2exe to generate an .exe file, the application no longer draws the checkboxes, everything else works as expected (capturing check and uncheck
events, etc.) except for this.
This only happens when I generate the .exe file with py2exe, otherwise everything works great, Does this have anything
to do with the version of wxPython or I have to add something to my setup script, which I attach below?
I’m lost with this, any help is very welcome, and please excuse my English…i’m from Venezuela
Hi, I have been using CheckListCtrlMixin for a while, but recently, (just
after upgrading from wxPython 2.8
to 2.9) when i use py2exe to generate an .exe file, the application no
longer draws the checkboxes, everything else works as expected (capturing
check and uncheck
events, etc.) except for this.
This only happens when I generate the .exe file with py2exe, otherwise
everything works great, Does this have anything
to do with the version of wxPython or I have to add something to my setup
script, which I attach below?
I'm lost with this, any help is very welcome, and please excuse my
English....i'm from Venezuela
You don't appear to have a manifest for your exe. This is probably
causing the native renderer for the checkbox to silently fail on some
level since it doesn't know what themeing it needs to use to draw the
checkbox.
Look at some of the examples in the wxPython wiki for using py2exe.
The manifiest is dependant upon what version of Python your using to
create your exe.
Cody
···
On Thu, Nov 1, 2012 at 10:36 AM, Mario Castro <mariocastro.pva@gmail.com> wrote: