WebBrowser component in Dev-C++
I want to use a WebBrowser
control in a Dev-C++ project. Ages ago, when I was using VB6, I just added the WebBrowser
control (C:\Windows\System32\shdocvw.dll
) to my form and it worked, but I'm lost in C++.
Should I load it dynamically with LoadLibrary
, then somehow add it to my dialog window? I want to have standard features like page navigation, dynamic HTML elements, submittable forms, view page source, etc.
Update: I installed Qt Maker and downloaded a test project from the official site.开发者_运维技巧 But when running/compiling I get this error:
Could not find make command: make in the build environment Error while building project betalabsclient (target: Desktop) When executing build step 'Make'
Does anyone have any ideas? Mingw is installed, of course.
This is not the answer for your question, but you may want to try and use Qt
and the webkit
browser component in it.
There are several webkit
-related samples and I assume that they may actually suit for your needs "as they are".
Web Browser Example (ActiveQt)
HOWTO: Get QT working with Dev-C++
精彩评论