Close IE with vba

PeterOz

New Member
Joined
Jan 7, 2022
Messages
14
Office Version
  1. 365
Platform
  1. Windows
I am trying to help someone with a vba code to close internet explorer.
They were using
Dim URL As String
URL = "www.google.com"
ActiveWorkbook.FollowHyperlink URL

Now how do I close the browser window/tab in VBA?

I advised them to use
Sub Test()
Dim ie As InternetExplorer
Set ie = New InternetExplorer
ie.navigate "Google"
ie.Visible = True
Application.Wait (Now + TimeValue("00.00.05"))
ie.Quit
End Sub

They have now come back with
When I try to open Google it works fine.
But when I try to open a webpage in the intranet of my company (different network not internet!), It opens the right intranet web page, but won't close it.

Any ideas as to what could be wrong ?
In my basic understanding if it opens IE to the internet and then closes Ie I do not understand why the intranet would interfere.
It looks to me to be a simple
Open ie
Quit ie.
Cheers
PeterOz
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.

Forum statistics

Threads
1,214,979
Messages
6,122,552
Members
449,088
Latest member
davidcom

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top