View Poll Results: Should i make a Advanced Web Browser Tutorial?

Voters
15. You may not vote on this poll
  • Yes

    15 100.00%
  • No

    0 0%
  • Maybe Later

    0 0%
Results 1 to 9 of 9

Thread: Tutorial - Very Simple Web Browser (Beginners)

Threaded View

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2008
    Location
    I live in Iceland :)
    Posts
    107

    Smile Tutorial - Very Simple Web Browser (Beginners)

    Hi welcome to my tutorial.
    This is a tutorial for beginners.
    I will teach you how to make a very simple Web browser.
    This tutorial is for windows forms.
    --------------------------------------------------------
    The idea for Home is by me ( Hlinzi )
    Start off by designing you're Web Browser.
    What you need is

    - 2 Text Boxes ( 1 For Go (Gotextbox) 1 For Home (Hometextbox) )
    - 6 Buttons ( Go, Home, Forward, Back, Stop, Refresh )
    - 1 Webbrowser ( Webbrowser1 )
    - 1 Status Strip
    - 1 StatusStrip Label
    - 1 StatusStrip Progress Bar

    Okay.
    When you've put you're buttons together, double click Go button and write in this code:
    Code:
    Webbrowser1.Navigate(Gotextbox.text)
    Then go back to design and double click Home, Now write in this code:
    Code:
    Webbrowser1.Navigate(Hometextbox.text)
    Do this over again, here are the codes for the buttons:
    ---------
    Forward:
    Code:
    Webbrowser1.GoForward
    ---------
    Back:
    Code:
    Webbrowser1.GoBack
    ---------
    Stop:
    Code:
    Webbroser1.Stop
    ---------
    Refresh:
    Code:
    Webbrowser1.Refresh
    ---------
    StatusStrip Label & Progress Bar
    For this you need to double click the WebBrowser and change the Declaration to ProgressChanged.
    Code:
    ToolStripProgressBar1.Maximum = e.MaximumProgress
    ToolStripProgressBar1.Value = e.CurrentProgress
    ToolStripStatusLabel1.Text = "Progress: " & e.CurrentProgress
    ---------

    Thank you for reading my tutorial
    If this helped you, Please rate
    This is my Biggest Post So Far!
    Last edited by Hlinzi; Oct 25th, 2008 at 07:57 AM.

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