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
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
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
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.
[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
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
[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
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