Re: HyperText within a Euphoria program?
- Posted by DanM Dec 13, 2008
- 1098 views
I'll have to look at/into wxEuphoria before I ask any more questions
Dan
LOL
Ok, now I've looked at wxEuphoria a little, and I do have questions!
I tried to modify "splitter_demo.exw", in order to make an html window in only a portion of the main window, but when I did so, the mod wouldn't run..didn't crash, or error, just didn't RUN.
Here's how I modified splitter: I replaced:
text4 = create( wxTextCtrl, {splith2, -1, "Text Control 4", -1, -1, -1, -1})
with:
html = create( wxHtmlWindow, {splith2, -1, "button 4", -1, -1, -1, -1})
(the "button4" in the above is just a leftover from putting a button into the 4th split section, to see if I could make ANY kind of mod to the splitter that would work)
I also changed a line further down to be:
split_window( splith2, vpanel, html, wxHORIZONTAL, 0 )
So, is there any way to put a html window into just a part of a main window, & if so, how?
Dan