I've recently found that couple of wxPython apps compiled with py2exe
complain about not being able to load wx\_core_.pyd. One is an app that
I am developing, the other is Andrea's GUI2exe.
If I copy the gdiplus.dll from C:\Python24\Lib\site-packages
\wx-2.8-msw-unicode\wx into the directory with the rest of the py2exe
files the application runs.
I have another app that I developed with wxPython and built with py2exe.
On the same (virtual) machine where GUI2exe and my first app won't run
unless gdiplus.dll is in the startup folder, it runs fine without
gdiplus.dll. This app, while graphical, has a very limited interface.
Does it run because it doesn't use any of the features in gdiplus.dll?
If so, what controls need gdiplus.dll?
gdiplus.dll appears to be a Microsoft DLL from it's version information,
but it was located in my wx installation folder, so I assume that the
wxPython install put it there.
Mark