HtmlWindow in a Frame?

Hi guys,
I'd like to design an app, that would have a textbox, an OK button and a HtmlWindow that would diplay the results of a query. But as far as I know HtmlWindow is a separate window...naturally, I know. Is there any way of incorporating a html-displaying widget into a wxFrame instance?
Thx
Dan

I'd like to design an app, that would have a textbox, an OK button and a HtmlWindow that would diplay the results of a query. But as far as I know HtmlWindow is a separate window...naturally, I know.

No it's not. It's a wx.Window, which is not a Top-level Window, it needs to be put in a wx.Frame anyway. It can also be put on a wx.panel, and wx.NoteBook, etc, etc.

Some definitions:

wx.Window: The superclass of virtually all widgets.

wx.Frame: A Top-level Window. It is not put on anything, and it gets a title bar and stuff, and is managed by the system window manager.

Is there any way of incorporating a html-displaying widget into a wxFrame instance?

Just put it on there!

Make sure to look at the demo.

-Chris

ยทยทยท

--
Christopher Barker, Ph.D.
Oceanographer
                                         
NOAA/OR&R/HAZMAT (206) 526-6959 voice
7600 Sand Point Way NE (206) 526-6329 fax
Seattle, WA 98115 (206) 526-6317 main reception

Chris.Barker@noaa.gov