Re: Why does not my wx.html.HtmlWindow work?

2007-04-11 Thread Jorgen Bodde
Hi, Coming from the wx community, I do know that the wx.HtmlWindow is NOT meant to load full blown web pages with. It has no concept of javascript, CSS, and other complex DOM properties. If you really want to display complex web pages in a window, look at wxMozilla or the wxIE binding. So the re

Re: Why does not my wx.html.HtmlWindow work?

2007-04-11 Thread Carsten Haese
On 7 Apr 2007 20:38:25 -0700, [EMAIL PROTECTED] wrote > Below are my source code: > [snip > html.LoadPage(" > http://www.pythonthreads.com/articles/python/incorporating-into- > wxpython-part-1.html") > [snip] Have you tried loading a simpler page, something like http://www.google.com? -C

Re: Why does not my wx.html.HtmlWindow work?

2007-04-09 Thread kyosohma
On Apr 8, 8:31 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > On Apr 9, 1:01 am, Rob Williscroft <[EMAIL PROTECTED]> wrote: > > > > > [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED] > > comp.lang.python: > > > > Below are my source code: > > > > import wx > > > import wx.html > > > > class M

Re: Why does not my wx.html.HtmlWindow work?

2007-04-08 Thread [EMAIL PROTECTED]
On Apr 9, 1:01 am, Rob Williscroft <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote innews:[EMAIL PROTECTED] > comp.lang.python: > > > > > Below are my source code: > > > import wx > > import wx.html > > > class MyHtmlFrame(wx.Frame): > > > def __init__(self, parent, title): > > wx.

Re: Why does not my wx.html.HtmlWindow work?

2007-04-08 Thread Rob Williscroft
[EMAIL PROTECTED] wrote in news:[EMAIL PROTECTED] in comp.lang.python: > Below are my source code: > > import wx > import wx.html > > class MyHtmlFrame(wx.Frame): > > def __init__(self, parent, title): > wx.Frame.__init__(self, parent, -1, title, size=(600,400)) > html = wx

Re: Why does not my wx.html.HtmlWindow work?

2007-04-08 Thread [EMAIL PROTECTED]
On 4月8日, 下午2时29分, Thomas Krüger <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] schrieb: > > > > > html.LoadPage("http://www.pythonthreads.com/articles/python/incorporating-into-wxpyt...";) > > Quickshot: There's a space at the start of your URI. > > Thomas It seems it's not the problem. I

Re: Why does not my wx.html.HtmlWindow work?

2007-04-07 Thread Thomas Krüger
[EMAIL PROTECTED] schrieb: > html.LoadPage(" > http://www.pythonthreads.com/articles/python/incorporating-into-wxpython-part-1.html";) Quickshot: There's a space at the start of your URI. Thomas -- http://mail.python.org/mailman/listinfo/python-list

Why does not my wx.html.HtmlWindow work?

2007-04-07 Thread [EMAIL PROTECTED]
Below are my source code: import wx import wx.html class MyHtmlFrame(wx.Frame): def __init__(self, parent, title): wx.Frame.__init__(self, parent, -1, title, size=(600,400)) html = wx.html.HtmlWindow (self) if "gtk2" in wx.PlatformInfo: html.SetStandardFon