Introduction
Browsing the World Wide Web is nothing new to us. But, how about organizing the Web Addresses of frequently visiting Websites in a Table and browsing the Web from within an Access Form?
Not only Internet Sites, but you can also browse the Intranet Website within your Local Area Network (Corporate LAN) too. All you have to do is to create an Access Form with a Microsoft Web Browser Control and a few lines of VBA Code.
For example, the following VBA Code will open the Gmail Web Site http://www.gmail.com/ automatically when you open the Form with the Web Browser Control, as shown in the above image.:
Simple Website Opening Code
Private Sub Form_Load() Dim strURL As String strURL = "http://www.gmail.com/" Me.WebBrowser0.Navigate strURL End Sub
Designing a Form for Web ActiveX Control
Don't know how to do it? Try the following:
Open a new Form in Design View.
Click somewhere on the Detail Section of the Form to select that area.
Select the ActiveX Control from Insert Menu.
Look for the name Microsoft Web Browser in the displayed list of ActiveX Controls and select it.
Click OK to insert a Web Browser Control on the Form.
While the Control is still in the selected state drag the right-bottom-corner sizing control to make it big enough on the Form so that you can view the Web Pages properly.
Display the Property Sheet of the Browser Control (View - ->Properties).
Change the Name Property Value to WebBrowserO to match with the name used in the above VBA Code.
Select Code from View Menu to display the VBA Code Module of the Form.
Copy and Paste the above Code into the Module.
Save and Close the Form with the name myWebBrowser.
Demo Run of the Form
Connect your PC to the Internet.
Open myWebBrowser Form in normal View.
Wait for a few seconds to load the Web Page into the Control and to display.
We have used the Website Address directly in the Code. But, if you create a table with the list of all the Website addresses that you visit very often then with a Combo Box on the Form we can select the Web address to go to that site quickly. We need to make a few changes to the above code to make it flexible.
Table with Frequently Visiting Web Addresses
Create a Table with a single field with the following details:
Table Name: WebSites
Field Name: Web Address Data Type: Text Field Size: 255
Save the Table Structure and open it in Datasheet View.
Add a few records with Web URLs that you visit frequently, and save and close the Table.
Make a copy of the Form myWebBrowser and name the copy as myWebBrowser2.
Open myWebBrowser2 in Design View.
Display the Form Header Section (View - -> Form Header/Footer), if it is not already Visible.
Expand the Form Header Section with enough height to create a Combo Box Control.
Create a Combo Box using the Web Sites Table.
While the Combo Box is still in the selected state display the Property Sheet (View - -> Properties).
Change the following Property Values of the Combo Box:
- Name : cboWeb
- Width : 5"
- Default Value: "http://www.gmail.com/" or any other Website Address Value you prefer.
Select the child label attached to the Combo box and change the Caption Property Value to Web Address:
Display the Code Module of the Form (View - -> Code).
Copy and Paste the following Code into the Module, replacing the existing lines.
Form Module Code
Option Compare Database Option Explicit Dim WebObj As WebBrowser Dim varURL As Variant Private Sub cboWeb_Click() GotoSite End Sub Private Sub cboWebLostFocus() GotoSite End Sub Private Sub Form_Load() Set WebObj = Me.WebBrowser0.Object GotoSite End Sub Private Function GotoSite() varURL = Me!cboWeb If Len(Nz(varURL, "")) = 0 Then Exit Function End If WebObj.Navigate varURL End Function
Save the Form and open it in Normal View.
The website address that you have inserted into the Default Value Property of the Combo Box will open up in the Browser Control.
Select one of the other website addresses you have added to the Table from the Combo Box.
The Browser Window will open the new Website.
If we open other Web Pages by clicking on the Links from the displayed page, then we can navigate (go Back or Forward) between pages by adding a few more lines of code.
Review of the VBA Code.
But, first, let us have a look at the above code to see what is happening there. We have declared a Web Browser Object Variable and a Variant Variable at the Global declaration area of the Module.
Created a separate Function GotoSite() to respond to different Events (Actions) on the Form without duplicating the code everywhere.
For example: when we open the Form the GotoSite() Function opens the Default Value URL, which we set in the Combo Box Property, through the Form_Load() Event Procedure.
When you select a URL from the Combo Box the cboWeb_Click() Event Procedure calls this Function to open the selected Web Page.
If you type a URL in the Web Address control cboWeb and move the Cursor out of the control the Lost_Focus() Event Procedure runs the Function to open the URL you typed in the Address Control.
We will create a few Command Buttons on the Header of the Form, as shown to the right of the Combo box Control on the above design, and write Subroutines with some simple Browser Object Commands to navigate between Web Pages, which we may open from the displayed Web Pages.
Web Navigation Controls
Open myWebBrowser2 Form in Design View.
Display the Toolbox (if it is not visible then select Toolbox from View Menu.
Create five Command Buttons to the right of the Combo Box.
Display the Property Sheet of the first Command Button and change the Name Property and Caption Property Values to Home.
Similarly, change the Name and Caption Property Values of the other Command Buttons with the values given below.
- Back
- Forward
- Refresh
- Stop
Display the Code Module of the Form (View - ->Code), copy and paste the following code into the VBA Module, below the existing Code lines.
Private Sub Home_Click() On Error Resume Next WebObj.GoHome End Sub Private Sub Back_Click() On Error Resume Next WebObj.GoBack End Sub Private Sub Forward_Click() On Error Resume Next WebObj.GoForward End Sub Private Sub Refresh_Click() On Error Resume Next WebObj.Refresh End Sub Private Sub Stop_Click() On Error Resume Next WebObj.Stop End Sub
The On Error Resume Next Statement prevents the Subroutines from running into Error when there are no Web Pages to Navigate to.
To test these Buttons you must click on a few links on the displayed Web Page to open other Pages from the same website and then use these buttons to navigate between those opened pages.
The Home Button will open the Default Home page you set in the Internet Explorer's Tools - -> Internet Options. . . Home Page - -> Address Control, not the default value you set in the Combo Box.