Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

adding and internet explorer window

Status
Not open for further replies.

ronmon

IS-IT--Management
Feb 25, 2002
66
IE
Does anyone know if its possible to add an internet Explorer window into a form in Access
 
hi,

yes, you can use the "Microsoft Web Browser" activeX control (select from 'more controls or the crossed hammer and spanner icon). But you do need to add (and programme) any navigation buttons you might want... as an example add a Microsoft Web Browser control (call it webBrowser) to any form, and add code to the form
Code:
Private Sub Form_Load()
    Me.WebBrowser.Navigate "[URL unfurl="true"]http://www.tek-tips.com/"[/URL]
End Sub
as you can see - it is literally just the HTML parser, any navigation, progress, etc... needs to be (but at least can be) programmed

HTH, Jamie
FAQ219-2884
[deejay]
 
I was trying to get this code to work but get the message method or data member not found. What reference should I have set in the VB editor to make this work.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top