Вот кусок инструкции: Код (Text): wxHtmlParser::OpenURL virtual wxFSFile* OpenURL(wxHtmlURLType type, const wxString& url) Opens given URL and returns wxFSFile object that can be used to read data from it. This method may return NULL in one of two cases: either the URL doesn't point to any valid resource or the URL is blocked by overridden implementation of OpenURL in derived class. Parameters type Indicates type of the resource. Is one of: wxHTML_URL_PAGE Opening a HTML page. wxHTML_URL_IMAGE Opening an image. wxHTML_URL_OTHER Opening a resource that doesn't fall into any other category. url URL being opened. Notes Always use this method in tag handlers instead of GetFS()->OpenFile() because it can block the URL and is thus more secure. Default behaviour is to call wxHtmlWindow::OnOpeningURL of the associated wxHtmlWindow object (which may decide to block the URL or redirect it to another one),if there's any, and always open the URL if the parser is not used with wxHtmlWindow. Returned wxFSFile object is not guaranteed to point to url, it might have been redirected! Английским владею не слабо - понять не могу! Что тут хотят??? Код вроде WxHtmlWindow1 -> LoadPage("index.html"); работает нормально, а вот как качать из сети??? Кто уже пользовался wxWidgets 2.6.2: A portable C++ and Python GUI toolkit и Dev-C++ как среда компиляции - дайте совет!
подозреваю, что надо сделать WxHtmlWindow1->LoadPage("http://url.com/index.html"); если под винду, то может написать враппер IWebBrowser2'a?
Нет подозрения не верны! Это процедура для загрузки исключительно локальных файлов - а вот как СЕТЕВОЙ браузер сделать?