So, I got my program up and running correctly. Then I used this script to compile it to an executable:
Code: Select all
`from distutils.core import setup
import py2exe, sys, os
sys.argv.append(‘py2exe’)
setup(
options = {‘py2exe’: {‘optimize’: 2, ‘bundle_files’: 2}},
windows = [{‘script’: “ephesus.pyw”}]
)
`
So,
I ran it, but then, once I run my program, my Toolbar doesn’t look like
it goes with the vista theme anymore (It looks like something from the
depths of win95), and my statusbar has the same effect applied to it.
Oh, and so do all my wx.dialogs. The only things that seem unaffected
are the menubar and the text box’s scrollbar.
Any ideas?