Web

This is a discussion on Web within the C++ Programming forums, part of the General Programming Boards category; Can anybody show me how and what i need to make my own simple web browser in c++ or c ...

  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
    Posts
    5,453
    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:
    int main(void){srand(time(0));for(double l=rand(),l0=0,l00=0;;l0+=0.1){for(double l000=0;l000
    <1;l000+=.001,l+=((double)rand()/RAND_MAX)/0x64,l00+=((sin(l*0x8*atan(l0)*l000-(l0*0x8*atan
    (l)))*0.5)+0.5)){l00-=floor(l00);for(size_t l0000=0,l00000=(size_t)(0x50*(l00));l0000<l00000;++l0000
    )putchar(0x20);putchar(0x61+(int)((double)rand()/RAND_MAX*0x1a));putchar('\n');}}return 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, 05:36 PM
  2. Consuming same Web Service multiple times
    By cfriend in forum C# Programming
    Replies: 2
    Last Post: 01-10-2006, 08: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, 12:49 PM

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21