pwnu91
pwnu91

Reputation: 1

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.

Upvotes: 0

Views: 1521

Answers (2)

Yippie-Ki-Yay
Yippie-Ki-Yay

Reputation: 22814

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

Upvotes: 2

Related Questions