hi all
even thou vs 2005 have a in built web browser that we can use in our work I am just wonderring how webbrowsers work ??
what i know :
connectsto the server www.google.com : 72.14.205.103
and :confused:
Printable View
hi all
even thou vs 2005 have a in built web browser that we can use in our work I am just wonderring how webbrowsers work ??
what i know :
connectsto the server www.google.com : 72.14.205.103
and :confused:
i might be able to help. i'm a beginner, but building a web browser was my very first project. the only thing that i've forgotten is how to get the progress bar to work properly, but if you want to build your own, i can help you.
Yeah conflix I would be glad :)
my e-mail
[mynameatthissite]@gmail.com (no caps)
what would you like to know specifically? or you can pm me on here... it's just easier because i don't have to sign in to check my email.
well k I am good at tcp and that kind of stuff
so how do u connect ?? to as site ??
and after getting the information how do u encrpt it ??
and after that how do u display the site ??
just give a breif exp
I'm not sure about encryption, but let me get the rest right...
You want to know how to build a browser that connects to the net when you type in the address? I can help you out on that if that's what you're asking.
It sounds to me like you want to build your very own webbrowser, without using the webbrowser control, am i correct?
yeah
If you want to build a remote control kind of program, I can help you out... lol... I did it by accident... if you want to use the web browser control, I know how to do that... what exactly do you want it to do?
I have made a remote control application but Now I want to make my own webbrowser :)
Basically you need the following controls, just rename them to whatever your controls are named...
Web Browser
Text Box
Navigate Button
VB Code:
WebBrowser1.Navigate("" & ToolStripTextBox1.Text)
Back Button
VB Code:
WebBrowser1.GoBack()
Forward Button
VB Code:
webbrowser1.goforward()
Home
VB Code:
webbrowser1.gohome()
Stop
VB Code:
webbrowser1.stop()
If you want to put in a progress bar, you'll have to ask someone else, I forgot... This is just a basic browser with basic functions... Hope this helps...
yeah but I want to make one from starting
I'm not sure if I understand what you mean... can you be more specific?Quote:
Originally Posted by demon.KILER
well I want to make one myself not use the one given by vs
A Web browser communicates with a Web server via HTTP and it interprets the HTML code it receives and renders it as a Web page. The communication part is easy using the HttpWebRequest and HttpWebResponse classes. Rendering HTML code is not a trivial thing, then there's Java, JavaScript, VBScript, etc. What you ask is impractical except for the simplest of pages. Even rendering hyperlinks in a page would not be easy. How long do you think it took the open source community to create Firefox, and they were starting with an existing engine.