Results 1 to 15 of 15

Thread: [2005] Webbrowser

  1. #1

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    Question [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"

  2. #2
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    Las Vegas, NV
    Posts
    301

    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.

  3. #3

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    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"

  4. #4
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    Las Vegas, NV
    Posts
    301

    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.

  5. #5

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    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"

  6. #6
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    Las Vegas, NV
    Posts
    301

    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.

  7. #7
    Raging swede Atheist's Avatar
    Join Date
    Aug 2005
    Location
    Sweden
    Posts
    8,018

    Re: [2005] Webbrowser

    It sounds to me like you want to build your very own webbrowser, without using the webbrowser control, am i correct?
    Rate posts that helped you. I do not reply to PM's with coding questions.
    How to Get Your Questions Answered
    Current project: tunaOS
    Me on.. BitBucket, Google Code, Github (pretty empty)

  8. #8

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    Re: [2005] Webbrowser

    yeah
    VS 2005 .....Framework SDK 3.0

    "Its mostly the brave one who choose to not fight"

  9. #9
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    Las Vegas, NV
    Posts
    301

    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?

  10. #10

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    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"

  11. #11
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    Las Vegas, NV
    Posts
    301

    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:
    1. WebBrowser1.Navigate("" & ToolStripTextBox1.Text)

    Back Button
    VB Code:
    1. WebBrowser1.GoBack()

    Forward Button
    VB Code:
    1. webbrowser1.goforward()

    Home
    VB Code:
    1. webbrowser1.gohome()

    Stop
    VB Code:
    1. 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...

  12. #12

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    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"

  13. #13
    Hyperactive Member
    Join Date
    Feb 2007
    Location
    Las Vegas, NV
    Posts
    301

    Re: [2005] Webbrowser

    Quote 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?

  14. #14

    Thread Starter
    Hyperactive Member demon.KILER's Avatar
    Join Date
    Jul 2006
    Location
    I cannot remember !?
    Posts
    408

    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"

  15. #15
    Super Moderator jmcilhinney's Avatar
    Join Date
    May 2005
    Location
    Sydney, Australia
    Posts
    111,221

    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.
    Why is my data not saved to my database? | MSDN Data Walkthroughs
    VBForums Database Development FAQ
    My CodeBank Submissions: VB | C#
    My Blog: Data Among Multiple Forms (3 parts)
    Beginner Tutorials: VB | C# | SQL

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width