Saturday 16 March 2013

[VB6] Create A Simple Web Browser

Hi Little Programmer To day I'll Share Tutorial "Create A Simple Web Browser With VB6"
This web browser is very self explanatory but the steps are shown. Once loaded Visual Basic, follow these steps.
1.Create a new project, and then go to "Project" on the menu. 
   Click components or use the shortcut Ctrl+T



2.Find the component "Microsoft Internet Controls," check it and click "Apply" and then "Close."

3.Click the icon that was just added in the tools window, and draw a large sized window with it but big enough to add in a few buttons and textboxes. This is going to be where you view web pages through your browser.

4.Make a text box; this will be your URL bar where you type in the address of the website you want to see. (You may also create a heading or such)

5.Make four command buttons, these are going to be your Go, Back, Forward, and Refresh buttons, change the captions accordingly, and name each of them Cmdgo, Cmdback, CmdForward, and CmdRefresh. Place them in appropriate positions and now we code.

Firstly we will code the back button.


Then we will code the Forward button which has a similar code to the back button.

Now we give the code to the Go button. This will link to the text box as when we click the button, the URL within the text box will open up.

This will refresh the page and reload it.

Double click the form and type the WebBrowser part in. This is for the homepage (Google is my default)

This changes the text box's text into what URL that you're currently at, and the next line makes the caption of your form into the header of the URL.

So now it should look like (or similar) like image attached.


Resource Program Here

0 comments:

Post a Comment