Home > How-To Library > Internet

How to open a new window of Internet Explorer and browse to a specific file

**************************************************************** * © 2007 CodeItBetter http://www.codeitbetter.com * * This notice MUST stay intact for legal use * ****************************************************************
Sub Main() Dim MyIE As InternetExplorer Set MyIE = New InternetExplorer MyIE.Visible = True MyIE.Navigate2 "C:\MyFile.html" End Sub

If you would like to submit your code here please us. Do not forget to mention your name. We are always thankful to each and everyone of you who submitted their code here.