Upgrading VBA Code from IE to Edge

bepedicino

Board Regular
Joined
Sep 29, 2014
Messages
73
I am looking for some assistance to update the VBA code below to support Microsoft Edge. I am a newbie with VBA so if anyone can assist I would greatly appreciate it.

VBA Code:
    Dim ie As Object
Set ie = CreateObject("INTERNETEXPLORER.APPLICATION")
ie.NAVIGATE "https://global.utas.utc.com/sites/INT_ITCC/Lists/BEclass/2%20Upload.aspx#InplviewHashe2fbdb58-567a-4dba-aa78-26e9d4a37ed0=ShowInGrid%3DTrue"
ie.Visible = True
While ie.busy
 DoEvents
Wend
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
There is a built-in library to interact with IE, but there is none for Edge. So you can't simply update the code. It requires a completely different approach. If you are a newbie this is going to be a daunting problem. Here is one example of an approach to take.
 
Upvote 0
Solution
Thank you 6StringJazzer for your support, much appreciated! That was the same conclusion I am too as well when investigating. As you mentioned I just updated the code to support Edge.
 
Upvote 0

Forum statistics

Threads
1,216,146
Messages
6,129,142
Members
449,488
Latest member
qh017

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