Reading html file from local hard drive

Oldfox

New Member
Joined
Jan 18, 2024
Messages
3
Office Version
  1. 2007
Platform
  1. Windows
I tried to read a html file which is in my local hard drive. It didnt work. I have enabled ActiveX controls and plug-ins.
Here is the code. If you change to the first URL, it works ok.

Sub ReadHtmlPage()

Dim IE As Object
URL = "Supersää" ' this URL works
URL = "d:\example.html" ' this does not work

Set IE = CreateObject("InternetExplorer.Application")

IE.Silent = True
IE.Visible = True
IE.FullScreen = False
IE.Navigate URL

Application.Wait (Now + TimeValue("0:00:02"))

Do Until (IE.ReadyState = 4 And Not IE.Busy)
DoEvents
Loop

IE.ExecWB 17, 2
IE.ExecWB 12, 0

Worksheets("Data").Activate
ActiveSheet.Cells.Clear
ActiveSheet.PasteSpecial Format:="HTML", Link:=False, DisplayAsIcon:=False, NoHTMLFormatting:=True

End Sub
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.

Forum statistics

Threads
1,215,071
Messages
6,122,963
Members
449,094
Latest member
Anshu121

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