I'm trying to implement wxIEHtmlWin, but it won't work
You should have gotten a NameError exception on wxIEhtmlWin because you didn't import iewin. (The traceback probably flashed in a stder output window that got killed immediately because of the exception. If you add a zero to the MyApp constructor and run from a command line then you'll see things like that better.)
Modified code:
from wxPython.wx import *
from wxPython.iewin import *
Change (so you can see the consol output:
app = MyApp(0)
···
----- Original Message -----
From: Jonas Geiregat
To: wxPython-users@lists.wxwindows.org
Sent: Friday, April 18, 2003 2:11 AM
Subject: [wxPython-users] simple browser ?
I'm trying to implement wxIEHtmlWin, but it won't work