(1) Put wx and wxPython_Phoenix.egg-info in site-packages
(2) Launched idle and imported wx…no problems.
(3) Ran Dependency Walker and found core did not have IESHIMS.DLL (some other dll’s needed it too)
(4) Downloaded the 64bit version and put it into the wx directory…no issues
(5) Program: (copied this from somewhere…)
import wx
import sys
class mf(wx.Frame):
def init(self, p, t):
wx.Frame.init(self, p, title=t, size=(200, 100))
self.Show(True)
f = mf(None, ‘me’)
app.MainLoop()
(6) Ran it in idle and from command line.
(7) Crashes on wx.Frame.init
(8) Looked at Event Viewer
System
···
-
Provider
[ Name]
Application Error
-
EventID
1000
[ Qualifiers]
0
Level
2
Task
100
Keywords
0x80000000000000
-
TimeCreated
[ SystemTime]
2013-06-26T20:24:54.000000000Z
EventRecordID
61931
Channel
Application
Computer
NB2B6084.cs.xxxxx.net
Security
-
EventData
pythonw.exe
0.0.0.0
51940717
wxmsw295u_core_vc100_x64.dll
2.9.5.0
51c7fab2
c0000005
000000000008f496
12f0
01ce72ab122557b0
C:\Users\xxxx\python3.3\pythonw.exe
C:\Users\xxxxxxx\python3.3\lib\site-packages\wx\wxmsw295u_core_vc100_x64.dll
758d8e06-de9e-11e2-bf48-5c260a278663
(9) Please insert help here…exhausted…
Lew