Ok. Here we go. Just follow these steps. When you type in Navigate as a method, it will not show up in the droplist. Don't panic.
Create a table with a field to store web addresses. Type some into your table. Create a form and at the top place a combo box bound(just use the Wizard) to this field with a label like:
Web Address [___________]. Name the combobox WebAddress. Next to it place a command button with the function ADD to allow the users to add new addresses to the table.
If you have Internet Explorer on your computer, you already have the Microsoft Web Browser Control (an ActiveX control). (you know, these are written by X-Men).
1) Go to design view of the form. Click on Insert, ActiveX Control.
2) Select Microsoft Web Browser Control. Click OK. Reposition the control so it doesn't hide the combo box. Resize it with the little squares (sizing handles) so it fills the rest of the form.
3) Bring up it's property sheet. Change the name, call it BrowserControl.
Now you need to write some code. You will use the Navigate method of the control to display a web site.
1) Select the whole form (upper square left hand corner). On the forms property sheet, click on the OnLoad event, click on the build button, select code builder. Type the following:
Private Sub Form_Load() 'don't have to type this
BrowserControl.Navigate "
End Sub
So, when the form opens it will have a site already there.
Return to your form.
Click the Web Address combo box. Bring up its property sheet. Click on the AfterUpdate event, click on the build button, select Code builder.
Type the following line between the Sub and End Sub:
BrowserControl.Navigate WebAddress
It will now navigate to the web address either selected by the dropdown arrow or typed in by the user.
There's alot more you can do by coding, by I grow weary.
Neil