back
Add Navigation Capabilities to Your Browser
Note: This project is adapted from two books:VB6 for Web Development by Rod Paddock
Professional VB6 Web Programming by Wrox Press.

It's easy to add navigational capabilities to your browser. For example, the code to make a back button is:

WebBrowser1.GoBack

To go forward:
WebBrowser1.GoForward

To Stop:
WebBrowser1.Stop

And to search:
WebBrowser1.GoSearch

You can place your code inside the button on a web toolbar, inside a regular command button, even inside a drop down button.

Assignment
Create custom buttons for all of the above features and add them to the toolbar of your browser.