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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Running Internet Explorer from Office VB

Status
Not open for further replies.

ranc

Programmer
Oct 29, 2000
9
IL
Hi,

How can I open an Internet Explorer window (even if it's not the default browser) using VBA ?

10x,
Ran
ran@swapstation.com
 
You can use the CreateObject function generically:

Sub StartIE()
Dim MyWeb As Object
Set MyWeb = CreateObject("InternetExplorer.Application")
MyWeb.Visible = True
MyWeb.navigate "End Sub

Or, you can use the Internet Explorer Object. From Excel Go to Tools>References and add Microsoft Internet Controls. Then you can use this format. (I think this method is easier to use.)

Sub StartIE2()
Dim ie As InternetExplorer
Set ie = New InternetExplorer
ie.Visible = True
ie.AddressBar = True
ie.Navigate ("End Sub

Although I did this in Excel, it should work in any Office VBA macro, assuming you add the reference to MS Internet Controls.

Hope this helps!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top