VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Make Your Own Internet Explorer

by D1M3N510N (1 Submission)
Category: Internet/HTML
Compatability: Visual Basic 5.0
Difficulty: Beginner
Date Added: Wed 3rd February 2021
Rating: (8 Votes)

to make your own internet web browser to use for personal uses. make a internet web browser to dislay latest news from your website. this uses the Microsoft Internet Explorer.

Rate Make Your Own Internet Explorer

start a new .EXE file. go to Project>Components>Microsoft Internet Controls then click apply then close. you should see a new icon in the general window. it looks like a globe. click that and draw a big square on your form. you should make it fit right down to the bottom and right to the sides. not too far as users may not be able to see the information as it may go off screen. add a new text box and 1 new command button. double click on the command button and the code window will open. in the middle of the:
Private Sub Command1_Click()
and
End Sub
put WebBrowser1.Navigate Text1.Text so the code would look like this:
Private Sub Command1_Click()
WebBrowser1.Navigate Text1.Text
End Sub
what this code does is tells the web browser control to navigate to the url in the text box. you can add other commands other than Navigate.
Here are some of them:
WebBrowser1.Refresh
WebBrowser1.goBack
WebBrowser1.goForward
WebBrowser1.Stop
WebBrowser1.goHome
i think you can figure out what they all do. experiment with them.
NOTE: the user must have Microsoft Internet Explorer to run. hope you like my tutorial. rate it plz!

Download this snippet    Add to My Saved Code

Make Your Own Internet Explorer Comments

No comments have been posted about Make Your Own Internet Explorer. Why not be the first to post a comment about Make Your Own Internet Explorer.

Post your comment

Subject:
Message:
0/1000 characters