|
-
Feb 16th, 2007, 06:04 PM
#1
Thread Starter
Hyperactive Member
[2005] Webbrowser
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
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 06:37 PM
#2
Hyperactive Member
Re: [2005] Webbrowser
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.
-
Feb 16th, 2007, 06:40 PM
#3
Thread Starter
Hyperactive Member
Re: [2005] Webbrowser
Yeah conflix I would be glad
my e-mail
[mynameatthissite]@gmail.com (no caps)
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 06:43 PM
#4
Hyperactive Member
Re: [2005] Webbrowser
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.
-
Feb 16th, 2007, 06:45 PM
#5
Thread Starter
Hyperactive Member
Re: [2005] Webbrowser
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
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 06:49 PM
#6
Hyperactive Member
Re: [2005] Webbrowser
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.
-
Feb 16th, 2007, 06:53 PM
#7
Re: [2005] Webbrowser
It sounds to me like you want to build your very own webbrowser, without using the webbrowser control, am i correct?
-
Feb 16th, 2007, 07:13 PM
#8
Thread Starter
Hyperactive Member
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 07:41 PM
#9
Hyperactive Member
Re: [2005] Webbrowser
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?
-
Feb 16th, 2007, 08:08 PM
#10
Thread Starter
Hyperactive Member
Re: [2005] Webbrowser
I have made a remote control application but Now I want to make my own webbrowser
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 08:24 PM
#11
Hyperactive Member
Re: [2005] 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
Forward Button
Home
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...
-
Feb 16th, 2007, 08:50 PM
#12
Thread Starter
Hyperactive Member
Re: [2005] Webbrowser
yeah but I want to make one from starting
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 09:03 PM
#13
Hyperactive Member
Re: [2005] Webbrowser
 Originally Posted by demon.KILER
yeah but I want to make one from starting
I'm not sure if I understand what you mean... can you be more specific?
-
Feb 16th, 2007, 09:10 PM
#14
Thread Starter
Hyperactive Member
Re: [2005] Webbrowser
well I want to make one myself not use the one given by vs
VS 2005 .....Framework SDK 3.0
"Its mostly the brave one who choose to not fight"
-
Feb 16th, 2007, 09:19 PM
#15
Re: [2005] Webbrowser
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.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|