cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
user name:
password:
Forgot your password?
please wait
try again
cancel
forgot your password?
sign up
log in
[Legacy version]
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Simple Web Browser
Simple Web Browser
Jan 2, 2013 at 5:43am
Jan 2, 2013 at 5:43am UTC
cttstudentX
(1)
Hey Guys:
I am trying to create a simple web browser (and I’m talking simple)
There are several step-by-step instructions on the web
But they all seem to be using C ++ from visual studio 5
And they all start out the same - go to file new and then “Windows Form Application”
When I go to files / new on Visual Studio 6.0 – there is no "Windows Form Application" option.
Is there any place that has the step-by-step instructions for developing a simple web browser. In 6.0 .???
Or am I missing something simple?
Thanx in advance
Jan 2, 2013 at 6:29am
Jan 2, 2013 at 6:29am UTC
modoran
(2077)
Don't know what it is called in VC6, but you shoul have "Win32 GUI Project" or something like that (one of the generated files must contain
WinMain
function).
As for writing a simple web browser from C or C++ code, the most simple way is to use Internet Explorer engine, using IWebBrowser2 COM interface.
http://msdn.microsoft.com/en-us/library/aa752127(v=vs.85).aspx
There is some sample code:
http://www.codeproject.com/Articles/16559/Launch-and-control-MSIE-using-IWebBrowser2
Topic archived. No new replies allowed.