View Poll Results: Did You Have Fun? Was this helpful?

Voters
5. This poll is closed
  • Yes! I Had Fun and it was very helpful!

    4 80.00%
  • It was helpful but I didn t have That much fun :"(

    1 20.00%
Results 1 to 6 of 6
  1. #1
    VistaLite's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep

    Thumbs up [Read Me!]How to make a webrowser(Simple)

    Hey,
    Im going to teach you how to make a simple webrowser.

    You will need:[Visual Basic All versions]
    5 buttons
    1 webrowser
    1 textbox

    Ok names your buttons:Back,Forward,Home,Refresh and Go


    Enter the following codes:

    Back:
    webrowser1.goback()



    Forward:
    webrowser1.goforward()



    Home:
    webrowser1.gohome()



    Refresh:
    webrowser1.refresh



    Go:
    webrowser1.go(textbox1.text)



    Not Finished! Ok click on the textbox
    See where its properties are? down at the bottom right part of the screen?
    CLick what looks like a lightning bolt and if you put your mouse on it it says"Events" click on that. Now scroll down and look for "KeyDown" Now double click Keydown and type this code:



    If e.KeyCode = Keys.Enter Then
    WebBrowser1.Navigate(TextBox1.Text)
    End If



    Your Coding Should Look like this:


    Heres Your Final Product:




    You are done your first webrowser! Congratz and please thank me =)
    You can download My Project in attachments,
    Heres a virus scan:VirusTotal - Free Online Virus, Malware and URL Scanner
    Last edited by VistaLite; 12-07-2010 at 03:34 PM.

  2. #2
    Zithium's Avatar
    Join Date
    Oct 2010
    Gender
    male
    Location
    UK
    Posts
    2,996
    Reputation
    103
    Thanks
    438
    My Mood
    Psychedelic
    Very simple, but good job man.
    "Depending on the context, I may or may not enjoy getting stoned to death" - zιтнιυм™

    Ex WarRock Minion Force



  3. #3
    VistaLite's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    Tahnks so much! I just got vb last week its been a blast!

  4. #4
    MJLover's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Location
    Neverland
    Posts
    759
    Reputation
    33
    Thanks
    110
    My Mood
    Cheerful

  5. #5
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    @hassan, Fail search
    @ OP Thanks for sharing, web-browsers and tuts for them are a little redundant, but thanks


     


     


     



    The Most complete application MPGH will ever offer - 68%




  6. #6
    VistaLite's Avatar
    Join Date
    Dec 2010
    Gender
    male
    Posts
    30
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    If I could edit it I would teach others how to make a search box its pretty simples to =)

    If you want to make a searchBar add a textbox2 and ill use google for ex:

    double click searchbar/textbox2 and code:
    webrowser1.navigate(samesite.com and (Textbox1.text and textbox2.text)
    Fudge! My bad I messed up o well Ill post later on next tutorial
    Last edited by VistaLite; 12-08-2010 at 04:48 PM.