From: Jeff Grimmett [mailto:grimmtooth@gmail.com]
wx.HtmlWindow doesn't support all the nice tasty stuff that HTML 4.01
spec (or even 2.0) has. It's a very very basic implementation.If you can't rely on having IEHtmlWindow available, what about
wx.Mozilla? That's available on most platforms, right?
Good idea, but I'd rather not depend on any specific browser. I think I
might just use urllib.open() since it's safe to assume any platform where my
app would run would have a browser, and would then have the more advanced
html capabilities (plus browsing without having to add my own buttons etc).
Oliver