Thread: Web

  1. #1
    Registered User
    Join Date
    Oct 2003
    Posts
    5

    Web

    Can anybody show me how and what i need to make my own simple web browser in c++ or c or even MFC if i have to but I hate MFC

  2. #2
    PC Fixer-Upper Waldo2k2's Avatar
    Join Date
    May 2002
    Posts
    2,001
    If you have visual C you can create a new mfc project and you can use the htmlview document class. That's as simple of a web browser as you can get.

    STFW
    PHP and XML
    Let's talk about SAX

  3. #3
    Guest Sebastiani's Avatar
    Join Date
    Aug 2001
    Location
    Waterloo, Texas
    Posts
    5,708
    A 'simple web-browser' is an oxymoron. There are quite a few issues to be addressed before taking the leap - notably, socket programming, the http protocol, html parsing, gui programming, yadayadayada. In other words, a generous amount of R&D.
    Code:
    #include <cmath>
    #include <complex>
    bool euler_flip(bool value)
    {
        return std::pow
        (
            std::complex<float>(std::exp(1.0)), 
            std::complex<float>(0, 1) 
            * std::complex<float>(std::atan(1.0)
            *(1 << (value + 2)))
        ).real() < 0;
    }

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. MS Web Services Question
    By mercury529 in forum Windows Programming
    Replies: 0
    Last Post: 11-14-2006, 06:36 PM
  2. Consuming same Web Service multiple times
    By cfriend in forum C# Programming
    Replies: 2
    Last Post: 01-10-2006, 09:59 AM
  3. SWEBS Web Server
    By nickname_changed in forum A Brief History of Cprogramming.com
    Replies: 6
    Last Post: 09-22-2003, 02:46 AM
  4. Further developing C for the web
    By bjdea1 in forum C Programming
    Replies: 24
    Last Post: 12-25-2002, 01:49 PM