Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to program web-browser?

Status
Not open for further replies.

kai2005

Programmer
Oct 8, 2005
21
DE
Hi all,
I want try to write a web-browser, like IE or firefox. But how?
Can someone speak something about this?
I can C/C++ and java.
 
Do you know how to create Windows GUI programs using various controls like buttons, menus...? If not, that's something you should learn first.

You could make use of various .NET or MFC classes to greatly simplify the process of doing the network I/O and displaying the info to the window...
 
hello cpjust,

I have windowsprogramming experience with pure win-api, without using MFC, because I don't like MFC. And I can also Java-GUI programming with using Java Swing. But I still do not know how to begin to program web-browser.

I think a web browser should be cross-platteform, like firefox.

 
In decreasing order of complexity....

Since firefox is open source, why don't you just download it and have a look?

Or something simpler, like lynx, which is a text-only browser, again with source code.

Or maybe curl, which is a page grabber.

--
 
Do you really want to program a web browser, or just want to provide internet browsing capabilities to your application ? If the second is true, since you have specified you want your code to be cross-platform, look at wxMozilla:
which embeds the Mozilla web browser into wxWidgets applications
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top